/* ============================================================
   Solfeggio Frequencies — landing page
   Direction: a printed frequency chart / hi-fi spec sheet.
   Warm bone paper, warm black ink. The ONLY color on the page
   comes from the nine real frequency accent values used in the
   app (constants/frequencyData.ts) — color is data here, not
   decoration, so it is never used behind body text.
   ============================================================ */

:root{
  --paper:      #E9E5DC;
  --paper-hi:   #F2EFE9;
  --paper-lo:   #E1DCD1;
  --ink:        #17150F;
  --ink-2:      #4B4639;
  --ink-3:      #6E6759;
  --rule:       #CBC4B4;
  --rule-soft:  #D8D2C5;

  --c: var(--ink);              /* per-row / per-stop accent */
  --active: #EAB308;            /* currently selected frequency */

  --wrap: 1140px;
  --gap: clamp(20px, 5vw, 40px);

  --display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  --body: "Figtree", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

*,*::before,*::after{ box-sizing:border-box; }

html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--body);
  font-size:clamp(1rem, .96rem + .18vw, 1.075rem);
  line-height:1.62;
  font-weight:380;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img{ max-width:100%; display:block; }
canvas{ display:block; max-width:100%; }

a{ color:inherit; }

.wrap{
  width:100%;
  max-width:var(--wrap);
  margin-inline:auto;
  padding-inline:var(--gap);
}

.skip{
  position:absolute; left:-9999px; top:0; z-index:99;
  background:var(--ink); color:var(--paper);
  padding:12px 18px; border-radius:0 0 10px 0;
}
.skip:focus{ left:0; }

:where(a,button,summary,[tabindex]):focus-visible{
  outline:2px solid var(--ink);
  outline-offset:3px;
  border-radius:4px;
}

/* ---------- shared type ---------- */

.eyebrow{
  font-family:var(--mono);
  font-size:.7rem;
  font-weight:500;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--ink-3);
  margin:0 0 18px;
}

.section__title{
  font-family:var(--display);
  font-variation-settings:"wdth" 92, "opsz" 48;
  font-weight:600;
  font-size:clamp(1.95rem, 1.2rem + 2.6vw, 3.1rem);
  line-height:1.03;
  letter-spacing:-.022em;
  margin:0;
  text-wrap:balance;
}

.section__sub{
  margin:20px 0 0;
  max-width:56ch;
  color:var(--ink-2);
  font-size:1.06em;
}

.section{ padding-block:clamp(76px, 9vw, 132px); }
.section--inset{ background:var(--paper-lo); }
.section__head{ margin-bottom:clamp(38px, 5vw, 62px); }

/* ---------- buttons ---------- */

.btn{
  display:inline-flex;
  align-items:center;
  gap:.6em;
  font-family:var(--body);
  font-weight:500;
  font-size:.95rem;
  line-height:1;
  padding:.95em 1.35em;
  border-radius:11px;
  border:1px solid transparent;
  text-decoration:none;
  white-space:nowrap;
  cursor:pointer;
  transition:transform .16s ease, background-color .16s ease, box-shadow .16s ease;
}
.btn--lg{ font-size:1.02rem; padding:1.1em 1.6em; }

.btn--ink{ background:var(--ink); color:var(--paper-hi); }
.btn--ink:hover{ background:#000; transform:translateY(-1px); }

.btn--paper{ background:var(--paper); color:var(--ink); }
.btn--paper:hover{ background:#fff; transform:translateY(-1px); }

.apple{ width:1.15em; height:1.15em; fill:currentColor; flex:none; margin-top:-.12em; }

@media (prefers-reduced-motion: reduce){
  .btn:hover{ transform:none; }
}

/* ============================================================
   MASTHEAD
   ============================================================ */

.masthead{
  position:sticky; top:0; z-index:40;
  background:color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--rule-soft);
}
.masthead__inner{
  display:flex; align-items:center; gap:24px;
  min-height:70px;
}
.brand{ display:flex; align-items:center; gap:11px; text-decoration:none; margin-right:auto; }
.brand__icon{ border-radius:8px; }
.brand__text{ display:flex; flex-direction:column; line-height:1.15; }
.brand__name{ font-family:var(--display); font-variation-settings:"wdth" 90; font-weight:600; font-size:.98rem; letter-spacing:-.01em; }
.brand__meta{ font-family:var(--mono); font-size:.66rem; letter-spacing:.14em; text-transform:uppercase; color:var(--ink-3); }

.masthead__nav{ display:flex; gap:26px; }
.masthead__nav a{
  font-size:.9rem; color:var(--ink-2); text-decoration:none;
  padding-bottom:2px; border-bottom:1px solid transparent;
}
.masthead__nav a:hover{ color:var(--ink); border-bottom-color:var(--ink); }

@media (max-width:860px){
  .masthead__nav{ display:none; }
}
@media (max-width:520px){
  .brand__meta{ display:none; }
  .brand__name{ font-size:.88rem; white-space:nowrap; }
  .masthead__inner{ gap:12px; }
  .masthead__cta{ font-size:.86rem; padding:.85em 1.05em; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero{ padding-block:clamp(52px, 7vw, 96px) clamp(44px, 5vw, 72px); }

.hero__grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1.02fr);
  gap:clamp(40px, 6vw, 76px);
  align-items:center;
}
@media (max-width:960px){
  .hero__grid{ grid-template-columns:1fr; gap:46px; }
}

.hero__title{
  font-family:var(--display);
  font-variation-settings:"wdth" 88, "opsz" 96;
  font-weight:650;
  font-size:clamp(2.6rem, 1.35rem + 4.4vw, 4.35rem);
  line-height:.99;
  letter-spacing:-.032em;
  margin:0;
  text-wrap:balance;
}

.lede{
  margin:26px 0 0;
  max-width:46ch;
  color:var(--ink-2);
  font-size:1.1em;
}

.hero__actions{ margin-top:34px; display:flex; flex-direction:column; align-items:flex-start; gap:16px; }

.hero__rating{
  margin:0;
  display:flex; align-items:baseline; flex-wrap:wrap; gap:4px 9px;
  font-family:var(--mono); font-size:.74rem; letter-spacing:.06em;
  color:var(--ink-3);
}
.stars{ letter-spacing:.1em; color:var(--ink); }

/* ---------- the dial (signature element) ---------- */

.dial{
  margin:0;
  background:var(--paper-hi);
  border:1px solid var(--rule);
  border-radius:16px;
  padding:clamp(18px, 2.4vw, 26px);
  box-shadow:0 1px 0 #fff inset, 0 14px 34px -26px rgba(23,21,15,.5);
}

.dial__head{
  display:flex; align-items:baseline; justify-content:space-between; gap:16px;
  font-family:var(--mono); font-size:.68rem; letter-spacing:.16em; text-transform:uppercase;
  color:var(--ink-3);
  padding-bottom:12px; margin-bottom:14px;
  border-bottom:1px solid var(--rule-soft);
}
.dial__status{ color:var(--ink); display:flex; align-items:center; gap:7px; }
.dial__status::before{
  content:""; width:7px; height:7px; border-radius:50%;
  background:var(--rule); flex:none;
}
.dial.is-live .dial__status::before{ background:var(--active); }

.dial__scope{
  width:100%; height:clamp(120px, 17vw, 168px);
  background:var(--paper-lo);
  border-radius:9px;
}

.dial__readout{
  display:flex; align-items:center; gap:18px;
  margin-top:18px;
}

.power{
  flex:none;
  width:60px; height:60px;
  border-radius:50%;
  border:1px solid var(--ink);
  background:var(--ink);
  color:var(--paper-hi);
  display:grid; place-items:center; gap:0;
  cursor:pointer;
  transition:transform .16s ease, background-color .16s ease;
}
.power:hover{ transform:scale(1.04); }
.power__text{ position:absolute; width:1px; height:1px; overflow:hidden; clip-path:inset(50%); }
.power__glyph{
  width:0; height:0;
  border-left:14px solid currentColor;
  border-top:9px solid transparent;
  border-bottom:9px solid transparent;
  margin-left:4px;
}
.dial.is-live .power{ background:var(--active); border-color:var(--active); color:var(--ink); }
.dial.is-live .power__glyph{
  width:14px; height:15px; margin-left:0;
  border:0;
  background:currentColor;
  border-radius:2px;
}
@media (prefers-reduced-motion: reduce){ .power:hover{ transform:none; } }

.readout{ margin:0; display:flex; align-items:baseline; gap:8px; flex-wrap:wrap; }
.readout__hz{
  font-family:var(--mono); font-weight:500;
  font-size:clamp(2.4rem, 1.6rem + 2.4vw, 3.3rem);
  line-height:1; letter-spacing:-.03em;
  font-variant-numeric:tabular-nums;
}
.readout__unit{ font-family:var(--mono); font-size:1rem; color:var(--ink-3); }
.readout__name{
  font-family:var(--display); font-variation-settings:"wdth" 92;
  font-weight:600; font-size:1rem; letter-spacing:-.01em;
  padding-left:12px; margin-left:4px;
  border-left:3px solid var(--active);
}

/* tuning strip — a printed axis: labels, leader ticks, baseline, needle.
   Geometry is fixed from the bottom so every part lands on one baseline. */
.strip{
  position:relative;
  height:96px;
  margin-top:20px;
  border-top:1px solid var(--rule-soft);
  padding-top:18px;
}
/* baseline + minor ticks every 50 Hz, hanging below the line */
.strip__ticks{
  position:absolute; left:0; right:0; bottom:26px; height:1px;
  background:var(--rule);
}
.strip__ticks i{
  position:absolute; top:1px; width:1px; height:5px; background:var(--rule);
  transform:translateX(-50%);
}
.strip__needle{
  position:absolute; top:30px; bottom:18px;
  left:var(--nx, 45%);
  width:2px;
  background:var(--active);
  transform:translateX(-50%);
  transition:left .42s cubic-bezier(.22,.9,.3,1);
  pointer-events:none;
}
.strip__needle::before{
  content:""; position:absolute; bottom:-7px; left:50%; transform:translateX(-50%);
  border-left:5px solid transparent; border-right:5px solid transparent;
  border-top:7px solid var(--active);
}
@media (prefers-reduced-motion: reduce){ .strip__needle{ transition:none; } }

.strip__stops{ position:absolute; inset:0; }

.stop{
  position:absolute;
  left:var(--x);
  top:0; bottom:0;
  transform:translateX(-50%);
  width:42px;
  padding:0;
  border:0; background:none; cursor:pointer;
  font-family:var(--mono); font-size:.72rem; font-weight:500;
  color:var(--ink-3);
}
.stop span{
  position:absolute; left:50%; transform:translateX(-50%);
  top:18px;
}
/* leader tick runs from under the label down to the baseline */
.stop::after{
  content:"";
  position:absolute; left:50%; transform:translateX(-50%);
  bottom:26px; height:32px; width:1px;
  background:var(--rule);
}
/* stagger every other stop so 396 / 417 never collide */
.stop:nth-child(even) span{ top:38px; }
.stop:nth-child(even)::after{ height:12px; }

.stop:hover{ color:var(--ink); }
.stop:hover::after{ background:var(--ink-3); }
.stop[aria-checked="true"]{ color:var(--ink); }
.stop[aria-checked="true"]::after{ background:var(--c); width:2px; }

.dial__foot{
  margin:18px 0 0;
  font-family:var(--mono); font-size:.68rem; letter-spacing:.05em;
  color:var(--ink-3);
}

@media (max-width:560px){
  .strip{ height:auto; padding-top:18px; }
  .strip__ticks, .strip__needle{ display:none; }
  .strip__stops{ position:static; display:flex; flex-wrap:wrap; gap:7px; }
  .stop{
    position:static; transform:none; width:auto;
    padding:.42em .72em;
    border:1px solid var(--rule); border-radius:999px;
  }
  .stop::after{ display:none; }
  .stop span{ position:static; transform:none; }
  .stop:nth-child(even) span{ top:auto; }
  .stop[aria-checked="true"]{ border-color:var(--ink); background:var(--paper-lo); }
}

/* ============================================================
   THE NINE — chart
   ============================================================ */

.chart{ list-style:none; margin:0; padding:0; border-top:1px solid var(--rule); }

/* flex column, not block: it stops the absolutely-positioned play button's
   static placeholder from generating an empty line box above <details> */
.row{
  position:relative;
  display:flex;
  flex-direction:column;
  border-bottom:1px solid var(--rule-soft);
}

/* the play control sits outside <summary> so it can't toggle the row open */
.row__d{ margin:0; width:100%; }
.row__sum{
  display:grid;
  grid-template-columns:118px minmax(150px, 1fr) 130px minmax(0, 1.35fr);
  align-items:center;
  gap:18px;
  padding:16px 38px 16px 64px;
  cursor:pointer;
  list-style:none;
  position:relative;
}
.row__sum::-webkit-details-marker{ display:none; }
/* plus that becomes a minus, same device as the FAQ */
.row__sum::after{
  content:""; position:absolute; right:10px; top:calc(50% - 1px);
  width:12px; height:1px; background:var(--ink-3);
}
.row__d[open] .row__sum::after{ background:var(--ink); }
.row__sum::before{
  content:""; position:absolute; right:15.5px; top:calc(50% - 6px);
  width:1px; height:12px; background:var(--ink-3);
  transition:transform .2s ease, opacity .2s ease;
}
.row__d[open] .row__sum::before{ transform:rotate(90deg); opacity:0; }
@media (prefers-reduced-motion: reduce){ .row__sum::before{ transition:none; } }

.row__desc{
  margin:0 38px 22px 64px;
  max-width:76ch;
  color:var(--ink-2);
  font-size:.95rem;
}
/* the nine accents run down the edge of the chart as a printed spectrum */
.row::before{
  content:""; position:absolute; left:0; top:6px; bottom:6px; width:4px;
  border-radius:2px;
  background:var(--c); opacity:.5;
  transition:opacity .2s ease, top .2s ease, bottom .2s ease;
}
.row:hover::before, .row:focus-within::before{ opacity:1; top:0; bottom:0; }

.row__play{
  position:absolute; left:12px; top:19px; z-index:2;
  width:38px; height:38px; border-radius:50%;
  border:1px solid var(--rule);
  background:var(--paper-hi);
  cursor:pointer;
  transition:background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.row__play::before{
  content:""; position:absolute; inset:0; margin:auto;
  width:0; height:0;
  border-left:10px solid var(--ink);
  border-top:6.5px solid transparent;
  border-bottom:6.5px solid transparent;
  transform:translateX(1.5px);
}
.row__play:hover{ border-color:var(--c); background:#fff; transform:scale(1.06); }
.row__play[aria-pressed="true"]{ background:var(--c); border-color:var(--c); }
.row__play[aria-pressed="true"]::before{
  width:11px; height:12px; border:0; background:var(--ink);
  border-radius:2px; transform:none;
}
@media (prefers-reduced-motion: reduce){ .row__play:hover{ transform:none; } }

.row__hz{
  font-family:var(--mono); font-weight:500;
  font-size:1.75rem; letter-spacing:-.03em;
  font-variant-numeric:tabular-nums;
  display:flex; align-items:baseline; gap:3px;
}
.row__hz i{ font-style:normal; font-size:.72rem; color:var(--ink-3); }

.row__name{
  font-family:var(--display); font-variation-settings:"wdth" 92;
  font-weight:600; font-size:1.06rem; letter-spacing:-.012em;
  display:flex; align-items:center; gap:9px;
}
.tag{
  font-family:var(--mono); font-size:.6rem; font-weight:500;
  letter-spacing:.12em; text-transform:uppercase;
  padding:.32em .6em; border-radius:999px;
  border:1px solid var(--rule);
  color:var(--ink-3);
}

.row__chakra{
  font-family:var(--mono); font-size:.72rem; letter-spacing:.1em;
  text-transform:uppercase; color:var(--ink-3);
}
.row__note{ color:var(--ink-2); font-size:.95rem; }

.chart__foot{
  margin:22px 0 0;
  font-family:var(--mono); font-size:.72rem; letter-spacing:.05em; color:var(--ink-3);
}

@media (max-width:900px){
  .row__sum{
    grid-template-columns:96px minmax(0,1fr);
    row-gap:4px; column-gap:14px;
    padding-left:58px;
  }
  .row__chakra{ grid-column:1 / -1; }
  .row__note{ grid-column:1 / -1; }
  .row__desc{ margin-left:58px; margin-right:14px; }
  .row__play{ left:8px; top:21px; width:34px; height:34px; }
}

/* ============================================================
   THE LIBRARY — a contents page, deliberately monochrome:
   on this page colour means "which frequency", so it stays
   out of the sound catalogue.
   ============================================================ */

.library{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(238px, 1fr));
  gap:1px;
  background:var(--rule);
  border:1px solid var(--rule);
  border-radius:14px;
  overflow:hidden;
}

.group{
  background:var(--paper);
  padding:clamp(20px, 2.3vw, 26px);
}
.group__head{
  display:flex; align-items:baseline; justify-content:space-between; gap:12px;
  padding-bottom:10px;
  border-bottom:1px solid var(--rule);
}
.group__name{
  margin:0;
  font-family:var(--mono); font-size:.72rem; font-weight:500;
  letter-spacing:.14em; text-transform:uppercase;
}
.group__count{
  font-family:var(--mono); font-size:.72rem; color:var(--ink-3);
  font-variant-numeric:tabular-nums;
}
.group__note{
  margin:12px 0 4px;
  font-size:.82rem; line-height:1.5; color:var(--ink-3);
}

.group ul{ list-style:none; margin:0; padding:0; }
.group li{
  padding-block:9px;
  border-top:1px solid var(--rule-soft);
}
.group li b{
  display:flex; align-items:center; gap:7px;
  font-weight:500; font-size:.93rem;
}
.group li em{
  display:block;
  font-style:normal;
  font-size:.82rem; line-height:1.45;
  color:var(--ink-3);
  margin-top:1px;
}
.group li .tag{ font-size:.55rem; padding:.28em .5em; }

/* ============================================================
   MIXING
   ============================================================ */

.mix__grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:clamp(38px, 6vw, 76px);
  align-items:center;
}
@media (max-width:900px){ .mix__grid{ grid-template-columns:1fr; } }

.ticklist{ list-style:none; margin:30px 0 0; padding:0; }
.ticklist li{
  position:relative;
  padding-left:26px;
  padding-block:7px;
  border-top:1px solid var(--rule-soft);
  font-size:.98rem;
}
.ticklist li:first-child{ border-top:0; }
.ticklist li::before{
  content:""; position:absolute; left:2px; top:calc(50% - 3px);
  width:6px; height:6px; border-radius:50%;
  border:1px solid var(--ink-3);
}

.faders{
  background:var(--paper-hi);
  border:1px solid var(--rule);
  border-radius:16px;
  padding:clamp(20px, 2.6vw, 30px);
}
.faders__title{
  margin:0 0 22px;
  font-family:var(--display); font-variation-settings:"wdth" 92;
  font-weight:600; font-size:1.05rem;
  display:flex; align-items:baseline; gap:10px;
}
.faders__title span{
  font-family:var(--mono); font-size:.62rem; font-weight:400;
  letter-spacing:.14em; text-transform:uppercase; color:var(--ink-3);
}

.fader{
  display:grid;
  grid-template-columns:1fr 46px;
  grid-template-areas:"name val" "track track";
  gap:6px 12px;
  padding-block:12px;
  border-top:1px solid var(--rule-soft);
}
.fader__name{ grid-area:name; font-size:.88rem; color:var(--ink-2); }
.fader__val{
  grid-area:val; text-align:right;
  font-family:var(--mono); font-size:.76rem; color:var(--ink-3);
  font-variant-numeric:tabular-nums;
}
.fader__track{
  grid-area:track;
  height:5px; border-radius:999px;
  background:var(--paper-lo);
  display:block; position:relative; overflow:hidden;
}
.fader__track i{
  position:absolute; inset:0 auto 0 0;
  width:var(--v); background:var(--c); border-radius:999px;
}

/* ============================================================
   SCREENSHOTS — the one dark moment on the page
   ============================================================ */

.shots{ background:var(--ink); color:var(--paper); }
.section__head--light .eyebrow{ color:#9C9484; }
.section__head--light .section__title{ color:var(--paper-hi); }

.shots__rail{
  display:flex;
  gap:clamp(14px, 2vw, 24px);
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-inline:max(var(--gap), calc((100vw - var(--wrap)) / 2 + var(--gap)));
  padding-bottom:12px;
  scrollbar-width:thin;
  scrollbar-color:#3B372C var(--ink);
}
.shots__rail img{
  width:clamp(196px, 24vw, 268px);
  height:auto;
  flex:none;
  border-radius:14px;
  scroll-snap-align:center;
  border:1px solid #2B271C;
}
.shots__rail::-webkit-scrollbar{ height:8px; }
.shots__rail::-webkit-scrollbar-thumb{ background:#3B372C; border-radius:999px; }

/* ============================================================
   FEATURE CARDS
   ============================================================ */

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(232px, 1fr));
  gap:1px;
  background:var(--rule);
  border:1px solid var(--rule);
  border-radius:14px;
  overflow:hidden;
}
.card{ background:var(--paper); padding:clamp(22px, 2.6vw, 30px); }
.card h3{
  margin:0 0 10px;
  font-family:var(--display); font-variation-settings:"wdth" 92;
  font-weight:600; font-size:1.08rem; letter-spacing:-.012em;
}
.card p{ margin:0; color:var(--ink-2); font-size:.95rem; }

/* ============================================================
   PRICING
   ============================================================ */

.plans{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(210px, 1fr));
  gap:14px;
}
.plan{
  background:var(--paper-hi);
  border:1px solid var(--rule);
  border-radius:14px;
  padding:clamp(20px, 2.4vw, 28px);
}
.link{ color:inherit; text-underline-offset:3px; text-decoration-thickness:1px; }
.link:hover{ text-decoration-thickness:2px; }
.plan--pick{ border-color:var(--ink); }
.plan__flag{
  margin:0 0 12px;
  font-family:var(--mono); font-size:.62rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--ink);
}
.plan__name{
  margin:0 0 14px;
  font-family:var(--mono); font-size:.74rem; font-weight:500;
  letter-spacing:.16em; text-transform:uppercase; color:var(--ink-3);
}
.plan__price{
  margin:0;
  font-family:var(--display); font-variation-settings:"wdth" 90;
  font-weight:650; font-size:2.05rem; letter-spacing:-.03em; line-height:1;
  display:flex; align-items:baseline; gap:7px;
}
.plan__price span{
  font-family:var(--mono); font-size:.72rem; font-weight:400;
  letter-spacing:.06em; color:var(--ink-3);
}
.plan__unit{ margin:10px 0 0; font-size:.86rem; color:var(--ink-3); }

.plans__small{
  margin:24px 0 0; max-width:62ch;
  font-size:.82rem; color:var(--ink-3);
}

/* ============================================================
   FAQ
   ============================================================ */

.faq__grid{
  display:grid;
  grid-template-columns:minmax(0,.82fr) minmax(0,1.18fr);
  gap:clamp(32px, 5vw, 68px);
  align-items:start;
}
@media (max-width:900px){ .faq__grid{ grid-template-columns:1fr; } }
.faq__grid .section__head{ margin-bottom:0; }

.faq details{
  border-top:1px solid var(--rule);
  padding-block:4px;
}
.faq details:last-child{ border-bottom:1px solid var(--rule); }
.faq summary{
  cursor:pointer;
  list-style:none;
  padding:18px 34px 18px 0;
  position:relative;
  font-family:var(--display); font-variation-settings:"wdth" 94;
  font-weight:600; font-size:1.03rem; letter-spacing:-.01em;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{
  content:""; position:absolute; right:6px; top:calc(50% - 1px);
  width:13px; height:1px; background:var(--ink);
}
.faq summary::before{
  content:""; position:absolute; right:12px; top:calc(50% - 7px);
  width:1px; height:13px; background:var(--ink);
  transition:transform .2s ease, opacity .2s ease;
}
.faq details[open] summary::before{ transform:rotate(90deg); opacity:0; }
.faq details p{ margin:0 0 20px; color:var(--ink-2); max-width:62ch; font-size:.97rem; }

/* ============================================================
   CLOSER + FOOTER
   ============================================================ */

.closer{ background:var(--ink); color:var(--paper); padding-block:clamp(72px, 9vw, 122px); }
.closer__inner{ display:flex; flex-direction:column; align-items:center; text-align:center; }
.closer__title{
  margin:0 0 32px;
  max-width:20ch;
  font-family:var(--display); font-variation-settings:"wdth" 88, "opsz" 72;
  font-weight:650;
  font-size:clamp(1.9rem, 1.1rem + 3.2vw, 3.1rem);
  line-height:1.04; letter-spacing:-.03em;
  text-wrap:balance;
}
.closer__meta{
  margin:20px 0 0;
  font-family:var(--mono); font-size:.7rem; letter-spacing:.12em;
  text-transform:uppercase; color:#9C9484;
}

.footer{ background:var(--ink); color:#9C9484; padding-block:0 46px; }
.footer__inner{
  border-top:1px solid #2B271C;
  padding-top:36px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:20px 32px;
  align-items:center;
}
.footer__brand{
  display:flex; align-items:center; gap:10px;
  color:var(--paper);
  font-family:var(--display); font-variation-settings:"wdth" 92;
  font-weight:600; font-size:.94rem;
}
.footer__brand img{ border-radius:7px; }
.footer__links{ display:flex; gap:24px; font-size:.88rem; }
.footer__links a{ text-decoration:none; border-bottom:1px solid transparent; }
.footer__links a:hover{ color:var(--paper); border-bottom-color:currentColor; }
.footer__note{
  grid-column:1 / -1;
  margin:0; max-width:66ch;
  font-size:.79rem; line-height:1.6;
}
.footer__copy{
  grid-column:1 / -1;
  margin:0;
  font-family:var(--mono); font-size:.68rem; letter-spacing:.08em;
}
@media (max-width:640px){
  .footer__inner{ grid-template-columns:1fr; }
}
