/* Outis — the landing. Loaded on / only, after site.css.

   The page is the story of the name: the Cyclops asked Odysseus who he was
   and he said "Nobody". A field of points (public/hero.js) sits fixed behind
   everything and re-forms per section — the eye, the loop, the shredder, the
   word. Red is reserved for the watcher: the eye, its scan, the shredder's
   blade. Everything that is you stays white. */

:root { --red: #ff3b24; --red-dim: rgba(255, 59, 36, .22); }

.home { background: var(--bg); }
.home #site { position: relative; }
.home main, .home footer.site { position: relative; z-index: 1; }
.home footer.site { background: linear-gradient(transparent, var(--bg) 120px); }

/* The field. Hidden until hero.js has a WebGL context, so no-JS and no-GL
   visitors get the plain page. */
.field { position: fixed; inset: 0; width: 100vw; height: 100vh; z-index: 0; pointer-events: none; opacity: 0; transition: opacity 1.6s ease; }
.gl .field { opacity: 1; }

.home .top { background: linear-gradient(rgba(5, 5, 5, .82), rgba(5, 5, 5, 0)); border-bottom-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }

.lbl { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.idx { display: block; color: var(--fg-3); margin-bottom: 18px; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

/* ---------------------------------------------------------------- hero */

.hero {
  position: relative; min-height: calc(100svh - 56px); padding: 28px 0 28px;
  display: flex; flex-direction: column;
}
.gl .hero { cursor: crosshair; }
.gl .hero a, .gl .hero button { cursor: pointer; }
.boot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--fg-3); padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.boot b { color: var(--fg); font-weight: 500; letter-spacing: .2em; }
.pill { display: inline-flex; align-items: center; gap: 10px; color: var(--fg-2); text-decoration: none; }
.pill:hover { color: var(--fg); }
.pill .dot { width: 7px; height: 7px; background: var(--ok); }

.hero h1 { margin: auto 0 0; padding-top: 48px; font-weight: 400; }
.hero h1 .k {
  display: block; margin-bottom: 26px;
  font-family: var(--mono); font-size: 12px; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-2);
}
.hero h1 .k::before { content: ""; display: inline-block; width: 28px; height: 1px; margin-right: 12px; vertical-align: 4px; background: var(--red); }
.hero h1 .big {
  display: block; max-width: 10ch;
  font-size: clamp(54px, 9.6vw, 164px); line-height: .84; letter-spacing: -.035em;
  font-weight: 900; font-stretch: 125%; text-transform: uppercase;
  mix-blend-mode: difference;
}
.hero h1 em { padding: 0 .06em; margin: 0; }
.hero-row { display: flex; align-items: end; justify-content: space-between; gap: 32px 48px; flex-wrap: wrap; margin-top: 40px; }
.hero .sub { margin: 0; max-width: 44ch; font-size: 17px; line-height: 1.55; color: var(--fg-2); }
.hero .sub strong { color: var(--fg); font-weight: 500; }
.hero .cta { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-foot { display: flex; justify-content: space-between; gap: 16px; margin-top: 48px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--fg-3); }
.hero-foot .hint { color: var(--fg-2); }
.hero-foot .hint::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 10px; background: var(--red); vertical-align: 0; }
html:not(.gl) .hero-foot .hint { visibility: hidden; }

@media (prefers-reduced-motion: no-preference) {
  .pill .dot, .hero-foot .hint::before { animation: blink 1.6s steps(1) infinite; }
  .boot, .hero h1 .k, .hero-row, .hero-foot { animation: rise .9s cubic-bezier(.2, .7, .2, 1) both; }
  .hero h1 .k { animation-delay: .5s; }
  .hero-row { animation-delay: 1.1s; }
  .hero-foot { animation-delay: 1.5s; }
  .hero h1 .big { animation: unblur 1.3s cubic-bezier(.2, .7, .2, 1) .25s both; }
  .hero h1 em { animation-delay: 1.6s; }
}
@keyframes blink { 50% { opacity: .15; } }
@keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes unblur { from { opacity: 0; filter: blur(18px); letter-spacing: .04em; } to { opacity: 1; filter: none; } }

/* ---------------------------------------------------------------- HUD */

.hud { position: fixed; inset: 0; z-index: 30; pointer-events: none; opacity: 0; transition: opacity .25s ease; }
.hud.on { opacity: 1; }
.gaze { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.gaze line { stroke: var(--red); stroke-width: 1; stroke-dasharray: 2 5; opacity: .55; }
.hud:has(.found) .gaze line { stroke: var(--fg); opacity: .25; }
.reticle { position: absolute; left: 0; top: 0; width: 0; height: 0; --k: 0; }
.reticle .c { position: absolute; width: 16px; height: 16px; border: 0 solid var(--red); transition: border-color .2s ease; --o: calc(-38px + 16px * var(--k)); }
.reticle .tl { left: var(--o); top: var(--o); border-width: 2px 0 0 2px; }
.reticle .tr { right: var(--o); top: var(--o); border-width: 2px 2px 0 0; }
.reticle .bl { left: var(--o); bottom: var(--o); border-width: 0 0 2px 2px; }
.reticle .br { right: var(--o); bottom: var(--o); border-width: 0 2px 2px 0; }
.reticle.found .c { border-color: var(--fg); }
.readout {
  position: absolute; left: 44px; top: 30px; width: 214px; padding: 10px 12px 11px;
  background: #080808; border: 1px solid var(--line-2); border-left: 2px solid var(--red);
  font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; line-height: 1.9;
}
.readout.left { left: auto; right: 44px; }
.readout > div { display: flex; justify-content: space-between; gap: 12px; }
.readout em { font-style: normal; color: var(--fg-3); }
.readout b { font-weight: 400; color: var(--fg-2); }
.readout .meter { display: block; height: 2px; margin: 7px 0 6px; background: var(--red-dim); }
.readout .meter i { display: block; height: 100%; background: var(--red); transform-origin: 0 0; transform: scaleX(0); }
.readout .res b { color: var(--red); font-weight: 500; }
.reticle.found .readout { border-left-color: var(--fg); }
.reticle.found .meter i { background: var(--fg); }
.reticle.found .res b { color: var(--bg); background: var(--fg); padding: 0 6px; letter-spacing: .2em; }

/* The label on the loop's gap. */
.gap-tag { position: fixed; left: 0; top: 0; z-index: 2; pointer-events: none; opacity: 0; transition: opacity .5s ease; }
.gap-tag.on { opacity: 1; }
.gap-tag > div {
  position: absolute; left: 0; top: 0; transform: translate(26px, -50%); white-space: nowrap;
  display: flex; flex-direction: column; gap: 2px; padding-left: 12px; border-left: 1px solid var(--red);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
}
.gap-tag > div::before { content: ""; position: absolute; right: 100%; top: 50%; width: 26px; height: 1px; background: var(--red); }
.gap-tag span { color: var(--fg-3); }
.gap-tag b { font-weight: 500; color: var(--fg); }

/* ---------------------------------------------------------------- ticker */

.ticker { position: relative; z-index: 1; overflow: hidden; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); background: rgba(5, 5, 5, .9); }
.ticker-track { display: flex; width: max-content; }
.ticker-run { display: flex; }
.ticker a {
  display: inline-flex; align-items: baseline; gap: 12px; padding: 14px 28px; border-right: 1px solid var(--line);
  font-family: var(--sans); font-size: 20px; font-weight: 900; font-stretch: 125%; text-transform: uppercase; letter-spacing: -.01em;
  color: var(--fg); text-decoration: none; white-space: nowrap; transition: background .12s ease, color .12s ease;
}
.ticker a b { font-family: var(--mono); font-size: 11px; font-weight: 400; font-stretch: 100%; letter-spacing: .04em; color: var(--fg-3); }
.ticker a:hover { background: var(--fg); color: var(--bg); }
.ticker a:hover b { color: var(--bg); }
@media (prefers-reduced-motion: no-preference) {
  .ticker-track { animation: tick 70s linear infinite; }
  .ticker:hover .ticker-track { animation-play-state: paused; }
}
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------------------------------------------------------------- myth */

.myth { padding: 26vh 0 22vh; }
.myth p {
  margin: 0; max-width: 21em;
  font-size: clamp(28px, 4vw, 60px); line-height: 1.08; letter-spacing: -.025em;
  font-weight: 700; font-stretch: 112%;
}
.myth b { font-weight: 900; font-stretch: 125%; text-transform: uppercase; }
.scrub .myth .w { color: #262626; transition: color .4s ease, background-color .4s ease; }
.scrub .myth .w.on { color: var(--fg); }
.scrub .myth b .w.on { color: var(--bg); background: var(--fg); padding: 0 .08em; }

/* ---------------------------------------------------------------- bands */

.band { position: relative; padding-top: 16vh; }
.band-head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 24px; margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid var(--line-2); }
.band-head .idx { margin-bottom: 16px; }
.band h2, .loop-band h2, .shred-band h2, .closer h2 {
  margin: 0; font-weight: 900; font-stretch: 125%; text-transform: uppercase; letter-spacing: -.02em; line-height: .9;
}
.band h2 { font-size: clamp(28px, 4vw, 52px); }
.band h2 em, .loop-band h2 em, .shred-band h2 em, .closer h2 em { padding: 0 .08em; margin: 0; }
.band .aside { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-2); text-decoration: none; white-space: nowrap; }
.band .aside:hover { color: var(--fg); }

/* ---------------------------------------------------------------- dossier */

.dossier { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 56px; align-items: start; }
.ask label { display: block; color: var(--fg-3); margin-bottom: 14px; }
.ask-row { border: 1px solid var(--line-3); background: rgba(5, 5, 5, .7); }
.ask input {
  display: block; width: 100%; height: 76px; padding: 0 20px; border: 0; outline: 0; background: transparent; color: var(--fg);
  font-family: var(--sans); font-size: 34px; font-weight: 900; font-stretch: 125%; letter-spacing: -.02em; text-transform: lowercase;
  caret-color: var(--red);
}
.ask-row:focus-within { border-color: var(--fg); }
.chips { display: flex; border-top: 1px solid var(--line-2); }
.chips button {
  flex: 1; height: 40px; border: 0; background: none; color: var(--fg-2); cursor: pointer;
  font-family: var(--mono); font-size: 12px; letter-spacing: .06em;
}
.chips button + button { border-left: 1px solid var(--line-2); }
.chips button:hover { color: var(--fg); }
.chips button[aria-pressed="true"] { background: var(--fg); color: var(--bg); }
.ask p { margin: 16px 0 0; max-width: 40ch; font-size: 13.5px; color: var(--fg-3); line-height: 1.6; }

.card { position: relative; border: 1px solid var(--line-2); background: rgba(8, 8, 8, .82); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.card-head { position: relative; display: grid; gap: 6px; padding: 20px 22px 18px; border-bottom: 1px solid var(--line-2); overflow: hidden; }
.card-head .lbl { color: var(--fg-3); }
.card-head b { font-size: clamp(22px, 2.6vw, 34px); font-weight: 900; font-stretch: 125%; letter-spacing: -.02em; line-height: 1.05; word-break: break-all; }
.stampmark {
  position: absolute; right: 18px; top: 50%; padding: 6px 10px 5px;
  border: 2px solid var(--red); color: var(--red);
  font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  transform: translateY(-50%) rotate(-7deg);
}
.stamp .stampmark { animation: stamp .45s cubic-bezier(.2, 1.4, .4, 1) both; }
@keyframes stamp { from { opacity: 0; transform: translateY(-50%) rotate(-16deg) scale(1.9); } to { opacity: 1; transform: translateY(-50%) rotate(-7deg) scale(1); } }
.card table { width: 100%; border-collapse: collapse; font-size: 14px; }
.card th { padding: 12px 22px; text-align: left; color: var(--fg-3); font-weight: 400; border-bottom: 1px solid var(--line); }
.card td { padding: 12px 22px; border-bottom: 1px solid var(--line); vertical-align: top; }
.card tr:last-child td { border-bottom: 0; }
.card td:first-child { color: var(--fg-2); width: 34%; }
.card td:nth-child(2) { color: var(--fg-3); text-decoration: line-through; text-decoration-color: var(--red); text-decoration-thickness: 1px; }
.card td:nth-child(3) { color: var(--fg); font-family: var(--mono); font-size: 12.5px; letter-spacing: .02em; }
.card td:nth-child(3)::before { content: "∅ "; color: var(--fg-3); }

/* ---------------------------------------------------------------- loop */

.loop-band { min-height: 108vh; display: flex; align-items: center; padding: 12vh 0; }
.loop-band > div { max-width: 540px; }
.loop-band h2 { font-size: clamp(52px, 7.8vw, 128px); line-height: .86; }
.loop-band p { margin: 36px 0 0; max-width: 42ch; font-size: 17px; line-height: 1.6; color: var(--fg-2); }
.loop-band strong { color: var(--fg); font-weight: 500; }

/* agents: the step list drives the terminal */
.agent-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); border: 1px solid var(--line-2); background: rgba(6, 6, 6, .8); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.steps { list-style: none; margin: 0; padding: 0; border-right: 1px solid var(--line-2); }
.steps li + li { border-top: 1px solid var(--line); }
.steps button {
  position: relative; display: grid; grid-template-columns: 44px 1fr; column-gap: 8px; width: 100%; padding: 18px 20px;
  background: none; border: 0; color: var(--fg-2); text-align: left; cursor: pointer; font: inherit;
  transition: background .15s ease, color .15s ease;
}
.steps .n { grid-row: span 2; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; color: var(--fg-3); padding-top: 3px; }
.steps b { font-size: 15px; font-weight: 800; font-stretch: 125%; text-transform: uppercase; letter-spacing: .01em; color: var(--fg); }
.steps small { margin-top: 4px; font-size: 13.5px; line-height: 1.5; }
.steps button:hover { color: var(--fg); }
.steps button[aria-selected="true"] { background: var(--fg); color: var(--bg); }
.steps button[aria-selected="true"] b, .steps button[aria-selected="true"] .n { color: var(--bg); }
.steps button::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--red); }
@media (prefers-reduced-motion: no-preference) {
  .steps.auto button[aria-selected="true"]::after { animation: prog var(--step, 5s) linear both; }
}
@keyframes prog { to { width: 100%; } }

.term { position: relative; min-width: 0; }
.term-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; height: 38px; padding-left: 16px; border-bottom: 1px solid var(--line-2); color: var(--fg-3); font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.term pre { margin: 0; padding: 20px; overflow-x: auto; min-height: 280px; font-family: var(--mono); font-size: 12.5px; line-height: 1.8; color: var(--fg-2); }
.term .p { color: var(--fg-3); user-select: none; }
.term .c, .term .k { color: var(--fg); }
.term .s { color: var(--fg-2); }
.term .n { color: var(--bg); background: var(--fg); padding: 0 3px; }
.term .d { color: var(--fg-3); }
.term-live { display: inline-flex; align-items: center; gap: 8px; padding: 0 16px; }
.term-live .dot { width: 6px; height: 6px; background: var(--ok); }
@media (prefers-reduced-motion: no-preference) {
  .term-live .dot { animation: blink 1.6s steps(1) infinite; }
  .term pre:not(.hidden) { animation: print .7s steps(14) both; }
}
@keyframes print { from { clip-path: inset(0 0 100% 0); } to { clip-path: inset(0 0 0 0); } }

/* ---------------------------------------------------------------- shredder */

.shred-band { min-height: 120vh; display: flex; align-items: center; padding: 18vh 0 12vh; }
.shred-copy { max-width: 520px; }
.shred-band h2 { font-size: clamp(40px, 5.4vw, 84px); line-height: .88; }
.tenets { list-style: none; margin: 44px 0 0; padding: 0; border-top: 1px solid var(--line-2); }
.tenets li { display: grid; grid-template-columns: 44px 1fr; padding: 18px 0; border-bottom: 1px solid var(--line); }
.tenets .n { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; color: var(--red); padding-top: 3px; }
.tenets b { display: block; font-size: 15px; font-weight: 800; font-stretch: 125%; text-transform: uppercase; letter-spacing: .01em; }
.tenets p { margin: 6px 0 0; font-size: 14px; line-height: 1.6; color: var(--fg-2); }
.rv .tenets li { opacity: 0; transform: translateX(-14px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1); }
.rv .in .tenets li { opacity: 1; transform: none; }
.rv .in .tenets li:nth-child(2) { transition-delay: .1s; }
.rv .in .tenets li:nth-child(3) { transition-delay: .2s; }
.rv .in .tenets li:nth-child(4) { transition-delay: .3s; }

/* ---------------------------------------------------------------- pricing */

.receipt { border-top: 1px solid var(--line-2); }
.receipt > a, .receipt .total { display: grid; grid-template-columns: auto 1fr auto; align-items: end; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.receipt .what b { display: block; font-size: clamp(22px, 2.6vw, 34px); font-weight: 900; font-stretch: 125%; text-transform: uppercase; letter-spacing: -.01em; line-height: 1; }
.receipt .what small { display: block; margin-top: 10px; max-width: 44ch; font-size: 13.5px; color: var(--fg-3); }
.receipt .lead { height: 1px; margin-bottom: 14px; background: repeating-linear-gradient(90deg, var(--line-3) 0 2px, transparent 2px 7px); }
.receipt .amt { font-size: clamp(40px, 5.6vw, 84px); font-weight: 900; font-stretch: 125%; letter-spacing: -.04em; line-height: .85; font-variant-numeric: tabular-nums; text-align: right; }
.receipt .amt small { display: block; margin-top: 8px; font-family: var(--mono); font-size: 11px; font-weight: 400; font-stretch: 100%; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-3); }
.receipt > a:hover .amt { color: var(--bg); background: var(--fg); }
.receipt .total { padding: 16px 0; border-bottom: 0; align-items: center; color: var(--fg-2); }
.receipt .total span:last-child { color: var(--bg); background: var(--fg); padding: 2px 8px; }
.receipt .total .lead { margin: 0; }

/* ---------------------------------------------------------------- questions */

.faq { counter-reset: q; }
.faq details { border-bottom: 1px solid var(--line); counter-increment: q; }
.faq summary {
  list-style: none; cursor: pointer; display: grid; grid-template-columns: 56px 1fr 12px; align-items: center; gap: 16px;
  padding: 20px 0; font-size: 18px; font-weight: 600; letter-spacing: -.01em; color: var(--fg);
}
.faq summary::before { content: counter(q, decimal-leading-zero); font-family: var(--mono); font-size: 11px; font-weight: 400; color: var(--fg-3); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; width: 12px; height: 12px;
  background: linear-gradient(currentColor, currentColor) center / 12px 1.5px no-repeat, linear-gradient(currentColor, currentColor) center / 1.5px 12px no-repeat;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); color: var(--red); }
.faq summary:hover { padding-left: 8px; transition: padding .2s ease; }
.faq details p { margin: -6px 0 22px 72px; max-width: 68ch; font-size: 15px; line-height: 1.65; color: var(--fg-2); }
.faq details a { color: var(--fg); text-underline-offset: 3px; text-decoration-color: var(--line-3); }

/* ---------------------------------------------------------------- closer */

.closer { min-height: 125vh; display: flex; align-items: end; padding: 0 0 12vh; }
.closer-in { padding-top: 22px; border-top: 1px solid var(--line-2); }
.closer .eq { display: block; color: var(--fg-3); margin-bottom: 18px; }
.closer h2 { font-size: clamp(40px, 6.4vw, 104px); }
.closer .row { display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; margin-top: 36px; }
.closer p { margin: 0; max-width: 48ch; font-size: 16px; color: var(--fg-2); }
.closer .cta { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------------------------------------------------------------- reveals */

/* html.rv is only set by hero.js: no script, nothing hidden. */
.rv [data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity 1s cubic-bezier(.2, .7, .2, 1), transform 1s cubic-bezier(.2, .7, .2, 1); }
.rv [data-reveal].in { opacity: 1; transform: none; }
.rv [data-reveal] h2 em { color: var(--fg); background: linear-gradient(var(--fg), var(--fg)) no-repeat 0 0 / 0% 100%; }
.rv [data-reveal].in h2 em { animation: redact .55s cubic-bezier(.7, 0, .2, 1) .9s forwards; }

/* ---------------------------------------------------------------- narrow */

@media (max-width: 900px) {
  .dossier { grid-template-columns: 1fr; gap: 36px; }
  .agent-grid { grid-template-columns: minmax(0, 1fr); }
  .steps { border-right: 0; border-bottom: 1px solid var(--line-2); }
  .faq details p { margin-left: 0; }
}
@media (max-width: 799px) {
  /* The field's forms sit above the copy instead of beside it. */
  .gl .hero { padding-top: 44svh; }
  .hero h1 { padding-top: 0; }
  .hero h1 .big { font-size: 10.4vw; }
  .hero-row { margin-top: 28px; }
  .gl .loop-band { align-items: end; padding-top: 52vh; min-height: 0; }
  .shred-band { min-height: 0; }
  .gl .shred-band { padding-top: 62vh; }
  .closer .row { flex-direction: column; align-items: flex-start; }
  .closer { min-height: 100vh; }
  .myth { padding: 16vh 0; }
  .gap-tag { display: none; }
}
@media (max-width: 560px) {
  .boot .hide-s { display: none; }
  .hero-foot .hint { display: none; }
  .ask input { font-size: 26px; height: 64px; }
  .stampmark { position: static; justify-self: start; margin-top: 10px; transform: rotate(-4deg); }
  @keyframes stamp { from { opacity: 0; transform: rotate(-12deg) scale(1.8); } to { opacity: 1; transform: rotate(-4deg) scale(1); } }
  .card th, .card td { padding: 10px 14px; }
  .card td:first-child { width: auto; }
  .card thead th:nth-child(2), .card td:nth-child(2) { display: none; }
  .term pre { font-size: 11px; padding: 16px; }
  .ticker a { font-size: 16px; padding: 12px 20px; }
  .receipt > a { grid-template-columns: 1fr auto; }
  .receipt .lead { display: none; }
  .receipt .total { grid-template-columns: 1fr auto; }
  .faq summary { grid-template-columns: 32px 1fr 12px; font-size: 16px; }
}
