/* =====================================================================
   HUNTER GRANT · SERAPHIM — landing  (THE COURT revamp)
   Single Court palette. No theme toggle. No 3D. Duotone figure cards,
   film-grain, diagonal hover shimmer. Self-contained, no build step.
   Spec: design/02-COURT-PALETTE.md
   ===================================================================== */

/* ---------- TOKENS (single default — the Court palette) ---------- */
:root {
  --bg:        #0B1712;   /* deepest forest-black base */
  --bg-2:      #10211A;   /* raised panel / nav */
  --bg-3:      #163025;   /* card base before figure */
  --line:      rgba(228, 220, 196, 0.10);   /* hairline rules — quieter for Vogue */
  --line-warm: rgba(201, 168, 106, 0.22);   /* brass hairline on accents */
  --parch:     #E4DCC4;   /* primary text — bone/parchment */
  --parch-dim: #A7A28C;   /* secondary mono */
  --brass:     #C9A86A;   /* singular warm accent: CTA, active */
  --ink-text:  #0B1712;   /* text on bone/brass buttons */
  --radius:    2px;       /* tighter, more editorial than the old 4px */
  /* no global drop-shadow — the look is editorial, not material design.
     Hairlines + whitespace + light do the elevation work. */

  /* duotone god hues  {deep / mid / light} */
  --teal-deep:    #08221B; --teal-mid:    #2C7E68; --teal-light:    #BFE3D2;
  --crimson-deep: #240C0C; --crimson-mid: #8A2E22; --crimson-light: #D98C7A;
  --amber-deep:   #241806; --amber-mid:   #B07B2E; --amber-light:   #E8C98C;
  --blue-deep:    #0B1E38; --blue-mid:    #2E5E92; --blue-light:    #A8C6E6;
  --green-deep:   #0C2417; --green-mid:   #3C7A45; --green-light:   #BFE0BE;
  --violet-deep:  #1A1230; --violet-mid:  #5A4A8C; --violet-light:  #C3B6E8;
  --steel-deep:   #14222B; --steel-mid:   #4A6470; --steel-light:   #AEC4CE;

  /* per-card defaults (overridden by .god--<hue> / .plan--<hue>) */
  --c-deep:  var(--teal-deep);
  --c-mid:   var(--teal-mid);
  --c-light: var(--teal-light);

  /* type */
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-mono: "Courier Prime", ui-monospace, "Courier New", monospace;
  --font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* motion / rhythm — bigger vertical breathing room, editorial scale */
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --dur: 0.18s;
  --pad-x: clamp(1.5rem, 6vw, 7rem);
  --band-y: clamp(5.5rem, 14vh, 11rem);
  --maxw: 1320px;

  /* shared film-grain (parchment-tinted fractal noise) — used by body + .has-grain cards */
  --grain-url: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'%3E%3Cfilter%20id='n'%3E%3CfeTurbulence%20type='fractalNoise'%20baseFrequency='0.85'%20numOctaves='2'%20stitchTiles='stitch'/%3E%3CfeColorMatrix%20values='0%200%200%200%200.9%200%200%200%200%200.86%200%200%200%200%200.77%200%200%200%200.55%200'/%3E%3C/filter%3E%3Crect%20width='160'%20height='160'%20filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth; -webkit-text-size-adjust: 100%;
  background-color: #08140F;   /* deepest base — the film stays graded over this */
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  position: relative;
  background: transparent;   /* the graded film surface lives on html + body::before */
  color: var(--parch);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

/* ===== THE FILM SURFACE — one continuous graded duotone-green frame =====
   A FIXED, STATIC tonal field behind all content: faint teal pool upper-right
   (where the Oracle emerges), deep-green sink lower-left, graded base. This is
   what makes the WHOLE page read like one cinematic frame instead of stacked
   flat blocks. Static = composited once = cheap. */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(115% 80% at 82% 14%, rgba(44, 126, 104, 0.16), transparent 52%),
    radial-gradient(100% 75% at 10% 92%, rgba(8, 28, 19, 0.65), transparent 58%),
    radial-gradient(140% 120% at 50% 50%, transparent 60%, rgba(4, 10, 7, 0.55) 100%),
    linear-gradient(176deg, #0C1B14 0%, #0A1610 46%, #06110C 100%);
  background-attachment: fixed;
}
/* fixed film-grain over the whole page — the "shot on film" texture sits on
   top of everything so the grain is consistent edge to edge, like Hermes-OS. */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 2;
  pointer-events: none;
  background-image: var(--grain-url);
  background-size: 140px 140px;
  opacity: 0.07; mix-blend-mode: overlay;
}

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

/* ===== THE DOT FIELD — subtle turquoise-green print-grid motif =====
   Small, low-opacity dots on a tight grid. The repeated visual motif that
   reads "premium technical print," not SaaS. Applied behind chosen sections. */
.dot-field { position: relative; }
.dot-field::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(58, 150, 126, 0.22) 1px, transparent 1.6px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 78%);
          mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 78%);
  opacity: 0.6;
}
.dot-field > * { position: relative; z-index: 1; }

/* ===== SCROLL REVEAL — the immersive descent =====
   Sections rise + fade as they enter the viewport. JS adds .is-in.
   Defined only when motion is welcome; reduced-motion users see content
   in place with no movement. */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out); }
  .reveal.is-in { opacity: 1; transform: none; }
  .reveal-stagger > * { opacity: 0; transform: translateY(18px);
    transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out); }
  .reveal-stagger.is-in > * { opacity: 1; transform: none; }
  .reveal-stagger.is-in > *:nth-child(2) { transition-delay: 0.05s; }
  .reveal-stagger.is-in > *:nth-child(3) { transition-delay: 0.10s; }
  .reveal-stagger.is-in > *:nth-child(4) { transition-delay: 0.15s; }
  .reveal-stagger.is-in > *:nth-child(5) { transition-delay: 0.20s; }
  .reveal-stagger.is-in > *:nth-child(6) { transition-delay: 0.25s; }
  .reveal-stagger.is-in > *:nth-child(7) { transition-delay: 0.30s; }
  .reveal-stagger.is-in > *:nth-child(8) { transition-delay: 0.35s; }
}
.mono { font-family: var(--font-mono); }
a { color: inherit; text-decoration: none; }

/* ---------- FOCUS / A11Y ---------- */
:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: var(--radius);
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--brass); color: var(--ink-text);
  padding: 0.6rem 1rem; font-family: var(--font-mono); font-weight: 700;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* ---------- SHARED FILM-GRAIN OVERLAY ---------- */
/* applied to .has-grain elements via ::before; opacity rises on hover */
.has-grain { position: relative; }
.has-grain::before {
  content: ""; position: absolute; inset: 0; z-index: 3;
  pointer-events: none;
  background-image: var(--grain-url);
  background-size: 180px 180px;
  opacity: 0.06; mix-blend-mode: overlay;
  transition: opacity var(--dur) var(--ease-out);
}
.has-grain:hover::before,
.has-grain:focus-visible::before,
.has-grain:focus-within::before { opacity: 0.12; }

/* ---------- NAV — compact, editorial, brought-forward ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.95rem var(--pad-x);
  background: color-mix(in srgb, #0A1610 80%, transparent);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  border-bottom: 1px solid var(--line-warm);
}
/* brand: a brass Court-ring glyph + wordmark */
.nav__brand { display: flex; align-items: center; gap: 0.7rem; line-height: 1; }
.nav__brand::before {
  content: ""; width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--brass); flex: none;
  background: radial-gradient(circle, var(--brass) 0 2px, transparent 2.5px);
}
.nav__brand-line {
  font-family: var(--font-display); font-weight: 500; font-size: 19px;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--parch);
  display: block;
}
.nav__brand-sub {
  font-family: var(--font-mono); font-size: 8.5px; font-weight: 700;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--brass); display: block; margin-top: 2px;
}
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.6vw, 2.2rem); }
.nav__links a:not(.nav__cta) {
  position: relative;
  font-family: var(--font-mono); font-weight: 700; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--parch-dim); padding: 0.4rem 0;
  transition: color var(--dur) var(--ease-out);
}
/* underline that draws in from the left on hover / current page */
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--brass); transform: scaleX(0); transform-origin: left;
  transition: transform 0.32s var(--ease-out);
}
.nav__links a:not(.nav__cta):hover { color: var(--parch); }
.nav__links a:not(.nav__cta):hover::after,
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__links a[aria-current="page"] { color: var(--parch); }
.nav__cta {
  position: relative; overflow: hidden;
  background: var(--brass); color: var(--ink-text) !important;
  padding: 0.58rem 1.15rem; border-radius: var(--radius);
  font-family: var(--font-mono) !important; font-weight: 700; font-size: 11px;
  letter-spacing: 0.12em;
  transition: filter var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.nav__cta:hover { filter: brightness(1.07); box-shadow: 0 0 18px rgba(201, 168, 106, 0.35); }
/* keep anchor-jump targets clear of the sticky nav */
#council, #build, #pricing, #top { scroll-margin-top: 92px; }

/* ---------- BADGE ---------- */
.badge-row { padding: clamp(1.4rem, 4vh, 2.6rem) var(--pad-x) 0; max-width: var(--maxw); margin: 0 auto; }
.badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--parch-dim);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.5rem 0.85rem;
}
.badge__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--brass);
  box-shadow: 0 0 0 0 var(--brass);
  animation: pulse 2.6s var(--ease-out) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201, 168, 106, 0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(201, 168, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 168, 106, 0); }
}
@media (prefers-reduced-motion: reduce) { .badge__dot { animation: none; } }

/* ---------- HERO — the Oracle dissolves into the film surface ---------- */
.hero {
  position: relative;
  min-height: clamp(580px, 86vh, 860px);
  padding: clamp(3rem, 9vh, 7rem) 0 var(--band-y);
  overflow: hidden;
  display: flex; align-items: center;
}
/* left scrim grounds the headline over the bleeding figure */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(100deg,
    #08140F 0%, rgba(8, 20, 15, 0.92) 30%, rgba(8, 20, 15, 0.42) 52%, transparent 72%);
}
.hero__copy {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad-x);
}
.hero__title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2.9rem, 8.6vw, 6rem);
  line-height: 0.95; letter-spacing: 0.01em; text-transform: uppercase;
  color: var(--parch);
}
.hero__title em { font-style: italic; color: var(--brass); font-weight: 400; }
.hero__sub {
  margin-top: 1.6rem; max-width: 46ch;
  font-size: 13px; line-height: 1.7; letter-spacing: 0.01em;
  color: var(--parch); opacity: 0.82;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.hero__terminal {
  margin-top: 2rem; font-size: 12px; letter-spacing: 0.02em;
  color: var(--parch-dim);
  border-top: 1px solid var(--line); padding-top: 1rem;
}
.hero__prompt { color: var(--brass); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 700; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.9rem 1.4rem; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer;
  transition: transform var(--dur) var(--ease-out), filter var(--dur) var(--ease-out),
              background var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--brass); color: var(--ink-text); }
.btn--primary:hover { filter: brightness(1.06); }
.btn--ghost { background: transparent; color: var(--parch); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brass); color: var(--brass); }
.btn--bone { background: var(--parch); color: var(--ink-text); }
.btn--bone:hover { filter: brightness(1.04); }

/* ---------- HERO STAGE — the Oracle, full-bleed, masked into the surface ---------- */
.hero__stage {
  position: absolute; top: 0; right: 0; bottom: 0; z-index: 0;
  width: min(72%, 940px);
  border: 0; background: none; border-radius: 0; overflow: visible;
  /* dissolve the figure into the green: fade left (toward the copy) and bottom */
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 40%),
    linear-gradient(to bottom, #000 68%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 40%),
    linear-gradient(to bottom, #000 68%, transparent 100%);
  mask-composite: intersect;
}
.hero__figure {
  position: absolute; inset: 0; z-index: 1;
  background: var(--god-img, none) center / cover no-repeat;
}
/* duotone teal wash so the figure reads as part of the green film, not a photo */
.hero__figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(155deg, var(--teal-deep) 0%, var(--teal-mid) 48%, transparent 108%);
  mix-blend-mode: multiply; opacity: 0.4;
}
.hero__svg { display: none; }
.hero__scrim { display: none; }   /* replaced by the stage masks + .hero::before */
.hero__caption {
  position: absolute; right: clamp(1.2rem, 5vw, 4rem); bottom: clamp(1.4rem, 4vh, 2.6rem);
  z-index: 3;
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--parch); opacity: 0.8;
}

/* ---------- BAND HEADERS ---------- */
.band-head { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }
.band-kicker {
  display: inline-block;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--brass);
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line-warm);
}
.band-title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2.2rem, 6vw, 3.8rem); line-height: 0.98;
  letter-spacing: 0.005em; text-transform: none; margin-top: 1.1rem;
  color: var(--parch);
  max-width: 22ch;
}
.band-title em { font-style: italic; color: var(--brass); font-weight: 400; }
.band-lede {
  margin-top: 0.9rem; max-width: 54ch;
  font-size: 12px; letter-spacing: 0.02em; color: var(--parch-dim);
}

/* ---------- WHAT HAPPENS WHEN YOU JOIN — 3-step strip ---------- */
.onramp { padding: clamp(2.4rem, 6vh, 4rem) 0 0; }
.onramp__grid {
  list-style: none;
  max-width: var(--maxw); margin: 2.6rem auto 0; padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 4vw, 3rem);
}
.step { padding-top: 1.6rem; border-top: 1px solid var(--line-warm); }
.step__no {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 2.6rem); line-height: 0.9;
  letter-spacing: -0.01em; color: var(--brass);
}
.step__head {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 1.6rem); letter-spacing: 0.005em;
  text-transform: none; margin-top: 0.7rem; color: var(--parch);
}
.step__body { margin-top: 0.7rem; font-size: 13.5px; line-height: 1.7; color: var(--parch); opacity: 0.82; max-width: 32ch; }
.onramp__proof {
  max-width: var(--maxw); margin: 1.2rem auto 0; padding: 0 var(--pad-x);
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--parch-dim);
}
.onramp__proof b { color: var(--brass); }
@media (max-width: 720px) { .onramp__grid { grid-template-columns: 1fr; } }

/* ---------- THE COUNCIL — FIGURE CARDS ---------- */
.council { padding: var(--band-y) 0; }
.council__grid {
  list-style: none; max-width: var(--maxw); margin: 2.6rem auto 0;
  padding: 0 var(--pad-x);
  display: grid; gap: clamp(0.9rem, 1.6vw, 1.2rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* the figure card */
.god {
  position: relative; aspect-ratio: 3 / 4; min-height: 0;
  background: var(--bg-3);
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  display: flex; align-items: flex-end;
  transition: transform var(--dur) var(--ease-out),
              filter var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out);
}
/* duotone figure layer: deep→mid→light wash over the original SVG silhouette */
.god__figure {
  position: absolute; inset: 0; z-index: 1;
  background:
    var(--god-img, none) center top / cover no-repeat,
    linear-gradient(160deg, var(--teal-deep) 0%, var(--teal-mid) 62%, var(--teal-light) 130%);
  /* pull every portrait toward the one green film: kill the source saturation
     so the rainbow JPGs collapse into the duotone, then recolor with the wash. */
  filter: saturate(0.32) brightness(0.84) contrast(1.05);
}
/* the unifying teal-green duotone wash — recolors the photo's luminance to the
   Court green so all 7 Council portraits read as ONE continuous film surface. */
.god__figure::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(165deg, var(--teal-deep) 0%, var(--teal-mid) 58%, var(--teal-light) 122%);
  mix-blend-mode: color; opacity: 0.7;
}
.god__art { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; }
.god.has-art .god__art { display: none; }   /* real render present → drop the SVG placeholder */
.god__scrim {
  position: absolute; inset: 0; z-index: 4; pointer-events: none;
  background: linear-gradient(to top, var(--bg-3) 10%, rgba(22,48,37,0.15) 52%, transparent 78%);
}
.god__body { position: relative; z-index: 6; padding: 1.2rem; width: 100%; }
.god__no {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.2em; color: var(--parch-dim); display: block; margin-bottom: 0.4rem;
}
.god__name {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.25rem, 0.95rem + 0.7vw, 1.5rem);
  letter-spacing: 0.015em; text-transform: uppercase; line-height: 1.05;
  color: var(--parch); overflow-wrap: normal; hyphens: none;
}
.god__alias {
  margin-top: 0.45rem; font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--brass); opacity: 0.85;
}
.god__role {
  margin-top: 0.4rem; font-size: 10.5px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--parch-dim);
}
/* the whole figure card is a link → the dashboard breakdown (stretched link) */
.god__link {
  position: absolute; inset: 0; z-index: 7; border-radius: inherit;
  text-indent: -9999px; overflow: hidden;
}
.god { transition: filter 0.3s var(--ease-out), border-color 0.3s var(--ease-out); }
.god:hover, .god:focus-within { filter: brightness(1.08); border-color: var(--brass); }
/* a faint cue on the card label number when hovered */
.god:hover .god__no, .god:focus-within .god__no { color: var(--brass); }

/* ====================================================================
   THE BREATH — Hermes-OS continuous specular highlight that wanders
   slowly across every portrait. Soft, slow, organic. Pure CSS, GPU-
   friendly (one ::before per card animating transform+opacity).
   This is the signature shimmer — applied to every figure on the site.
   ==================================================================== */
/* THE BREATH — opacity-only pulse of a soft warm specular highlight,
   applied to the marquee portraits (Council cards + hero + about). Only
   opacity animates, so the GPU compositor doesn't re-rasterize the
   blended region every frame — cheap, smooth, and still reads as living
   light. The dashboard agent thumbnails get the same highlight STATIC
   (no animation) — too many simultaneous animated blend layers hit the
   compositor too hard. */
.god__figure::before,
.hero__figure::before,
.agent__thumb::before,
.story__portrait .god__figure::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(
    ellipse 55% 70% at 38% 28%,
    rgba(255, 248, 230, 0.34) 0%,
    rgba(228, 220, 196, 0.14) 30%,
    rgba(201, 168, 106, 0.05) 52%,
    transparent 72%
  );
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 2;
  opacity: 0.55;
}
/* the breath itself — applies only where there are few simultaneous
   instances: the Council on the landing, the hero, the about portrait. */
.god__figure::before,
.hero__figure::before,
.story__portrait .god__figure::before {
  animation: breath 7s ease-in-out infinite alternate;
}
@keyframes breath {
  from { opacity: 0.35; }
  to   { opacity: 0.85; }
}
/* stagger so the Council cards don't pulse in unison */
.council__grid > li:nth-child(2) .god__figure::before { animation-delay: -1.1s; }
.council__grid > li:nth-child(3) .god__figure::before { animation-delay: -2.2s; }
.council__grid > li:nth-child(4) .god__figure::before { animation-delay: -3.3s; }
.council__grid > li:nth-child(5) .god__figure::before { animation-delay: -4.4s; }
.council__grid > li:nth-child(6) .god__figure::before { animation-delay: -5.5s; }
.council__grid > li:nth-child(7) .god__figure::before { animation-delay: -2.7s; }

/* the cursor-tracked sheen is a SECOND, brighter layer on top of the breath
   when the user hovers a card — the cinema-on-a-hover moment. */
/* THE COLOR-REVEAL — the card stays in the green film, but on hover the ORIGINAL
   full-color art (red Rainmaker, gold Herald, etc.) bleeds back through a soft
   circle that tracks the cursor. The sweep paints the un-graded photo, masked to
   a torch at --mx/--my; everything outside the torch stays the unified green. */
.god__sweep {
  position: absolute; inset: 0; z-index: 5; pointer-events: none;
  border-radius: inherit; opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  background: var(--god-img, none) center top / cover no-repeat;
  -webkit-mask-image: radial-gradient(circle 198px at var(--mx, 50%) var(--my, 50%),
    #000 20%, rgba(0,0,0,0.5) 46%, transparent 70%);
          mask-image: radial-gradient(circle 198px at var(--mx, 50%) var(--my, 50%),
    #000 20%, rgba(0,0,0,0.5) 46%, transparent 70%);
}
/* JS toggles .is-lit on pointerenter/leave so the torch ALWAYS clears when the
   cursor leaves — fixes the lingering color from sticky :hover / click-focus. */
.god.is-lit .god__sweep { opacity: 1; }

/* HERMES INTERFERENCE — faint CRT scanlines that appear while hovering, and a
   brief image-flicker burst the moment the cursor enters. The cursor sheen
   (above) tracks the pointer; together they're the "the image flickers and
   has the cool effect" interaction. */
.god__sweep::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: repeating-linear-gradient(
    0deg, rgba(191, 227, 210, 0.06) 0 1px, transparent 1px 3px);
  opacity: 0; transition: opacity 0.3s var(--ease-out);
  mix-blend-mode: overlay;
}
.god:hover .god__sweep::after, .god:focus-within .god__sweep::after { opacity: 1; }
.god:hover .god__figure, .god:focus-within .god__figure {
  animation: god-flicker 0.85s steps(1, end);
}
@keyframes god-flicker {
  0%   { opacity: 1;    }
  6%   { opacity: 0.72; }
  9%   { opacity: 1;    }
  17%  { opacity: 0.86; }
  20%  { opacity: 1;    }
  46%  { opacity: 0.93; }
  48%  { opacity: 1;    }
  100% { opacity: 1;    }
}

@media (prefers-reduced-motion: reduce) {
  .god:hover .god__figure, .god:focus-within .god__figure { animation: none; }
  .god__figure::before, .hero__figure::before,
  .agent__thumb::before, .story__portrait .god__figure::before {
    animation: none; opacity: 0.4;
  }
}

/* per-god hue bindings */
.god--teal   { --c-deep: var(--teal-deep);   --c-mid: var(--teal-mid);   --c-light: var(--teal-light); }
.god--crimson{ --c-deep: var(--crimson-deep);--c-mid: var(--crimson-mid);--c-light: var(--crimson-light); }
.god--amber  { --c-deep: var(--amber-deep);  --c-mid: var(--amber-mid);  --c-light: var(--amber-light); }
.god--blue   { --c-deep: var(--blue-deep);   --c-mid: var(--blue-mid);   --c-light: var(--blue-light); }
.god--green  { --c-deep: var(--green-deep);  --c-mid: var(--green-mid);  --c-light: var(--green-light); }
.god--violet { --c-deep: var(--violet-deep); --c-mid: var(--violet-mid); --c-light: var(--violet-light); }
.god--steel  { --c-deep: var(--steel-deep);  --c-mid: var(--steel-mid);  --c-light: var(--steel-light); }

/* The eighth seat — YOU (the operator). Brass invitation, not a god. */
.god--you {
  background: linear-gradient(160deg, var(--bg-2), var(--bg-3));
  border-color: var(--brass);
  align-items: stretch;
}
.god--you .god__body {
  display: flex; flex-direction: column; justify-content: space-between; height: 100%;
}
.god--you .god__no { color: var(--brass); }
.god--you .god__name { color: var(--parch); }
.god--you .god__alias { color: var(--brass); }
.god--you .god__join {
  margin-top: 1rem; align-self: flex-start;
}

@media (max-width: 920px) { .council__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 540px) { .council__grid { grid-template-columns: 1fr; } }

/* ---------- WHAT YOU'LL BUILD ---------- */
.build { padding: var(--band-y) 0; }   /* transparent — the film surface shows through */
.build__grid {
  max-width: var(--maxw); margin: 2.6rem auto 0; padding: 0 var(--pad-x);
  display: grid; gap: clamp(1.2rem, 2.6vw, 2.2rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}
.feature {
  display: flex; flex-direction: column;
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem 1.3rem;
}
.feature__no { font-family: var(--font-mono); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; color: var(--brass); }
.feature__head {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 1.9rem); line-height: 1.04;
  letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--parch); margin-top: 0.3rem;
}
.feature__cap {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--parch-dim); margin-top: 0.5rem;
}
.feature__body {
  margin-top: 1.05rem; font-size: 13px; line-height: 1.62;
  color: var(--parch); opacity: 0.82;
}
.build__note { margin-top: clamp(3rem, 7vh, 5rem); text-align: center; }

/* ---------- PROOF STRIP — editorial dateline, NOT a gold bar ---------- */
.proof {
  padding: clamp(1.5rem, 4vh, 2.6rem) var(--pad-x);
  border-block: 1px solid var(--line-warm);
  background: rgba(8, 28, 19, 0.32);   /* barely-there lift inside the film surface */
  overflow: hidden;
}
.proof__text {
  max-width: var(--maxw); margin: 0 auto;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  text-align: center; color: var(--parch-dim); white-space: normal;
}
.proof__text b { color: var(--brass); font-weight: 700; }

/* ---------- PRICING — THREE LANES ---------- */
.pricing { padding: var(--band-y) 0; }
.pricing__grid {
  max-width: var(--maxw); margin: 2.6rem auto 0; padding: 0 var(--pad-x);
  display: grid; gap: 1.4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
@media (max-width: 920px) { .pricing__grid { grid-template-columns: 1fr; max-width: 560px; } }

.plan {
  position: relative; display: flex; flex-direction: column;
  padding: 2rem 1.6rem 1.8rem;
  border-top: 1px solid var(--line-warm);
  transition: background var(--dur) var(--ease-out);
}
.plan:hover { background: rgba(228, 220, 196, 0.02); }
.plan__hue { display: none; }   /* killed the SaaS color-bar */
.plan__flag {
  position: absolute; top: 4px; right: 1.2rem; z-index: 3;
  background: var(--brass); color: var(--ink-text);
  font-size: 9px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 0.3rem 0.6rem;
  border-radius: 0 0 var(--radius) var(--radius);
}
.plan__name {
  font-family: var(--font-display); font-weight: 400; font-size: 1.5rem;
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--parch);
  margin-top: 0.3rem;
}
.plan__price {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3rem); line-height: 1;
  text-transform: uppercase; color: var(--parch); margin-top: 0.6rem;
}
.plan__price-note {
  display: block; font-family: var(--font-mono); font-size: 10px;
  font-weight: 700; letter-spacing: 0.14em; color: var(--parch-dim);
  margin-top: 0.4rem;
}
.plan__tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--parch-dim); margin-top: 0.8rem;
}
.plan__list { list-style: none; margin: 1.3rem 0 1.4rem; display: grid; gap: 0.7rem; }
.plan__list li {
  position: relative; padding-left: 1.3rem; font-size: 12.5px;
  line-height: 1.5; color: var(--parch); opacity: 0.9;
}
.plan__list li::before {
  content: "+"; position: absolute; left: 0; top: 0;
  font-family: var(--font-mono); font-weight: 700; color: var(--parch-dim);
}
.plan__guarantee {
  margin: 0 0 1.4rem; font-family: var(--font-mono); font-size: 10.5px;
  line-height: 1.5; letter-spacing: 0.02em; color: var(--parch-dim);
  border-left: 1px solid var(--line-warm); padding: 0.2rem 0 0.2rem 0.7rem;
}
.plan__cta { margin-top: auto; width: 100%; }

/* ---------- FOOTER ---------- */
.footer { background: var(--bg); padding: var(--band-y) 0 2.4rem; overflow: hidden; border-top: 1px solid var(--line); }
.footer__wordmark {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(5rem, 27vw, 26rem); line-height: 0.74;
  letter-spacing: 0.01em; text-transform: uppercase;
  color: var(--parch); text-align: center; white-space: nowrap;
  margin: 0 calc(var(--pad-x) * -0.4);
  transform: translateY(8%); opacity: 0.14;
}
.footer__cta { text-align: center; margin: 0.4rem 0 0; }
.footer__fine {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem; max-width: var(--maxw); margin: 1.6rem auto 0; padding: 0 var(--pad-x);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--parch-dim);
}
.footer__nav { display: flex; gap: 1.2rem; }
.footer__nav a { transition: color var(--dur) var(--ease-out); }
.footer__nav a:hover { color: var(--brass); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .hero { display: flex; flex-direction: column; min-height: 0; padding: clamp(1.25rem, 5vh, 2.5rem) 0 var(--band-y); }
  .hero::before { display: none; }
  .hero__stage {
    order: -1; position: relative; width: 100%; height: clamp(300px, 56vh, 460px);
    margin-bottom: 1.8rem;
    -webkit-mask-image: linear-gradient(to bottom, #000 68%, transparent 100%);
            mask-image: linear-gradient(to bottom, #000 68%, transparent 100%);
  }
  .nav__brand-line { font-size: 16px; }
}
@media (max-width: 560px) {
  .nav { flex-wrap: wrap; gap: 0.6rem; }
  .nav__links { width: 100%; justify-content: space-between; gap: 0.6rem; }
  .proof__text { white-space: normal; }
}

/* ====================================================================
   NEWSLETTER BAR  (top-of-funnel, replaces the old badge)
   ==================================================================== */
.newsletter {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 0.7rem 1.1rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: color-mix(in srgb, var(--bg-2) 80%, transparent);
  padding: 0.7rem 0.9rem;
}
.newsletter__copy {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em;
  line-height: 1.5; text-transform: uppercase; color: var(--parch-dim);
}
.newsletter__copy b { color: var(--brass); font-weight: 700; white-space: nowrap; }
.newsletter__dot {
  display: inline-block; vertical-align: middle; margin-right: 0.5rem;
  width: 7px; height: 7px; border-radius: 50%; background: var(--brass);
  box-shadow: 0 0 0 0 var(--brass);
  animation: pulse 2.6s var(--ease-out) infinite;
}
.newsletter__field { display: flex; align-items: stretch; gap: 0.5rem; flex: 1 1 320px; }
.newsletter__field input {
  flex: 1 1 auto; min-width: 0;
  background: var(--bg); color: var(--parch);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.7rem 0.85rem; font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.02em; transition: border-color var(--dur) var(--ease-out);
}
.newsletter__field input::placeholder { color: var(--parch-dim); opacity: 0.7; }
.newsletter__field input:focus { outline: none; border-color: var(--brass); }
.newsletter__field .btn { flex: none; padding-block: 0.7rem; }
@media (max-width: 620px) {
  .newsletter { flex-direction: column; align-items: stretch; }
  /* reset the row-layout grow/basis so the basis doesn't become a tall height
     in the column layout — keep the email field + button at natural height */
  .newsletter__copy { align-items: flex-start; }
  .newsletter__field { flex: 0 0 auto; width: 100%; }
}

/* ====================================================================
   SHARED SUB-PAGE SYSTEM  (/about, /dashboard, /consulting)
   ==================================================================== */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }
.wrap--narrow { max-width: 860px; }

.backlink {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--parch-dim);
  transition: color var(--dur) var(--ease-out);
}
.backlink:hover { color: var(--brass); }

/* page hero */
.page-hero { padding: clamp(2.6rem, 7vh, 5rem) 0 clamp(1.6rem, 4vh, 3rem); }
.page-hero__kicker {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--brass);
}
.page-hero__title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2.4rem, 6.4vw, 4.4rem); line-height: 1.0;
  letter-spacing: 0.02em; text-transform: uppercase; margin-top: 0.5rem;
  color: var(--parch); max-width: 18ch;
}
.page-hero__title em { font-style: italic; color: var(--brass); font-weight: 400; }
.page-hero__lede {
  margin-top: 1.3rem; max-width: 58ch;
  font-size: 15px; line-height: 1.7; color: var(--parch); opacity: 0.86;
}

/* generic band on sub-pages */
.band { padding: clamp(2.4rem, 6vh, 4.5rem) 0; }
.band--panel { background: rgba(8, 28, 19, 0.32); border-block: 1px solid var(--line-warm); }

/* long-form prose (about story) */
.prose { max-width: 64ch; }
.prose p { font-size: 15.5px; line-height: 1.85; color: var(--parch); opacity: 0.9; }
.prose p + p { margin-top: 1.15rem; }
.prose strong { color: var(--brass); font-weight: 600; }

/* about: portrait + story two-up */
.story {
  display: grid; gap: clamp(1.8rem, 4vw, 3.4rem);
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
}
.story__portrait {
  position: relative; width: 100%; aspect-ratio: 4 / 5;
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--bg-3);
  --c-deep: var(--teal-deep); --c-mid: var(--teal-mid); --c-light: var(--teal-light);
}
.story__portrait .god__figure {
  position: absolute; inset: 0; z-index: 1;
  /* image-only (no opaque gradient fallback) so the monogram shows until a
     real /img/hunter.jpg is dropped in — then the photo covers it. */
  background: var(--god-img, none) center top / cover no-repeat;
}
.story__portrait::after {
  content: "HG"; position: absolute; inset: 0; z-index: 0;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 300; font-size: clamp(4rem, 11vw, 7rem);
  letter-spacing: 0.06em; color: rgba(201, 168, 106, 0.22);
}
.story__portrait .god__scrim { position: absolute; inset: 0; z-index: 4; pointer-events: none;
  background: linear-gradient(to top, var(--bg-3) 8%, transparent 60%); }
.story__caption {
  position: absolute; left: 1rem; bottom: 0.9rem; z-index: 6;
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--parch); opacity: 0.9;
}
@media (max-width: 820px) {
  .story { grid-template-columns: 1fr; }
  .story__portrait { max-width: 380px; }
}

/* facts / credentials panel — no card, hairlines + brass index marks */
.facts {
  list-style: none; display: grid; gap: 0;
}
.facts li {
  position: relative; padding: 0.85rem 0 0.85rem 1.6rem;
  font-family: var(--font-mono); font-size: 11.5px; line-height: 1.65;
  letter-spacing: 0.02em; color: var(--parch); opacity: 0.86;
  border-top: 1px solid var(--line);
}
.facts li:last-child { border-bottom: 1px solid var(--line); }
.facts li::before {
  content: "+"; position: absolute; left: 0; top: 0.85rem;
  font-family: var(--font-mono); color: var(--brass); font-weight: 700;
}

/* pull quote */
.pullquote {
  font-family: var(--font-display); font-weight: 300; font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.3rem); line-height: 1.3;
  color: var(--parch); max-width: 24ch;
  border-left: 2px solid var(--brass); padding-left: 1.2rem;
}

/* agent breakdown rows (dashboard page) — editorial, no card chrome */
.agent-list { list-style: none; margin-top: 2.6rem; }
.agent {
  display: grid; grid-template-columns: 110px 1fr; gap: 1.6rem; align-items: start;
  padding: 1.5rem 0; border-top: 1px solid var(--line);
  transition: background var(--dur) var(--ease-out);
}
.agent:last-child { border-bottom: 1px solid var(--line); }
.agent:hover { background: rgba(228, 220, 196, 0.025); }
/* Dashboard agent thumbnails keep their ORIGINAL colors (operator preference) —
   no green unification here, just the real art. */
.agent__thumb {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 5;
  background:
    var(--god-img, none) center top / cover no-repeat,
    linear-gradient(160deg, var(--teal-deep) 0%, var(--teal-mid) 70%, var(--teal-light) 130%);
}
.agent__thumb::after { display: none; }    /* no teal wash on the dashboard rows */
.agent__thumb::before { display: none; }   /* no specular highlight — keep colors true */
.agent__reveal { display: none; }          /* no hover-reveal needed — already original color */
.agent__txt { min-width: 0; }
.agent__name {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(1.5rem, 2.4vw, 1.8rem);
  letter-spacing: 0.005em; text-transform: none; line-height: 1; color: var(--parch);
}
.agent__alias {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass); margin-top: 0.5rem;
}
.agent__benefit { margin-top: 0.9rem; font-size: 14px; line-height: 1.7; color: var(--parch); opacity: 0.86; max-width: 60ch; }
.agent--teal   { --c-deep: var(--teal-deep);   --c-mid: var(--teal-mid);   --c-light: var(--teal-light); }
.agent--crimson{ --c-deep: var(--crimson-deep);--c-mid: var(--crimson-mid);--c-light: var(--crimson-light); }
.agent--amber  { --c-deep: var(--amber-deep);  --c-mid: var(--amber-mid);  --c-light: var(--amber-light); }
.agent--blue   { --c-deep: var(--blue-deep);   --c-mid: var(--blue-mid);   --c-light: var(--blue-light); }
.agent--green  { --c-deep: var(--green-deep);  --c-mid: var(--green-mid);  --c-light: var(--green-light); }
.agent--violet { --c-deep: var(--violet-deep); --c-mid: var(--violet-mid); --c-light: var(--violet-light); }
.agent--steel  { --c-deep: var(--steel-deep);  --c-mid: var(--steel-mid);  --c-light: var(--steel-light); }
@media (max-width: 540px) { .agent { grid-template-columns: 64px 1fr; gap: 0.9rem; } }

/* numbered build-module list — editorial, hairline rules, no cards */
.modules { list-style: none; counter-reset: mod; margin-top: 2.6rem; }
.module {
  counter-increment: mod; position: relative;
  display: grid; grid-template-columns: 56px 1fr; gap: 1.6rem; align-items: baseline;
  padding: 1.4rem 0; border-top: 1px solid var(--line);
}
.modules .module:last-child { border-bottom: 1px solid var(--line); }
.module::before {
  content: counter(mod, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 300; font-size: 1.7rem;
  line-height: 0.9; letter-spacing: -0.01em; color: var(--brass);
}
.module__txt { font-size: 14px; line-height: 1.7; color: var(--parch); opacity: 0.88; max-width: 62ch; }
.module__txt b {
  display: block; margin-bottom: 0.35rem;
  font-family: var(--font-display); font-weight: 400; font-size: 1.2rem;
  letter-spacing: 0.005em; color: var(--parch); opacity: 1;
}

/* offer ladder (consulting) — editorial, hairline rules, no cards */
.ladder { margin-top: 2.6rem; }
.rung {
  display: grid; grid-template-columns: minmax(160px, 0.32fr) 1fr; gap: 2rem;
  padding: 1.8rem 0; border-top: 1px solid var(--line);
  align-items: start;
}
.ladder .rung:last-child { border-bottom: 1px solid var(--line); }
.rung__price {
  font-family: var(--font-display); font-weight: 300; font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1; letter-spacing: -0.01em; color: var(--brass);
}
.rung__price small {
  display: block; font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; color: var(--parch-dim); margin-top: 0.6rem;
}
.rung__name {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  letter-spacing: 0.005em; text-transform: none; color: var(--parch);
}
.rung__body { margin-top: 0.55rem; font-size: 13.5px; line-height: 1.7; color: var(--parch); opacity: 0.84; max-width: 60ch; }
@media (max-width: 620px) { .rung { grid-template-columns: 1fr; gap: 0.7rem; padding: 1.4rem 0; } }

/* free-resources list — editorial download rows, no cards */
.res-list { margin-top: 2.6rem; }
.res {
  display: grid; grid-template-columns: 1fr auto; gap: 1.4rem 2.4rem; align-items: center;
  padding: 2rem 0; border-top: 1px solid var(--line-warm);
}
.res-list .res:last-child { border-bottom: 1px solid var(--line-warm); }
.res__no { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; color: var(--parch-dim); }
.res__title {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: 0.005em; line-height: 1.05; color: var(--parch); margin-top: 0.35rem;
}
.res__title em { font-style: italic; color: var(--brass); font-weight: 400; }
.res__sub {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--brass); opacity: 0.85; margin-top: 0.55rem;
}
.res__desc { margin-top: 0.8rem; font-size: 13.5px; line-height: 1.7; color: var(--parch); opacity: 0.84; max-width: 64ch; }
.res__meta { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--parch-dim); margin-top: 0.7rem; }
.res__action { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; white-space: nowrap; }
@media (max-width: 680px) {
  .res { grid-template-columns: 1fr; gap: 1.1rem; }
  .res__action { align-items: flex-start; }
}

/* which-tier compare (two cards) */
.compare { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-top: 2rem; }
.compare__col {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-3); padding: 1.5rem 1.4rem;
}
.compare__col--flag { border-color: var(--brass); }
.compare__name { font-family: var(--font-display); font-weight: 400; font-size: 1.4rem; text-transform: uppercase; letter-spacing: 0.02em; color: var(--parch); }
.compare__price { font-family: var(--font-display); font-weight: 300; font-size: 2.2rem; color: var(--brass); margin-top: 0.4rem; line-height: 1; }
.compare__price small { display: block; font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; color: var(--parch-dim); margin-top: 0.4rem; }
@media (max-width: 620px) { .compare { grid-template-columns: 1fr; } }

/* FAQ / objections */
.faq { display: grid; gap: 0.7rem; margin-top: 2rem; max-width: 820px; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-2); overflow: hidden; }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 1rem 1.2rem;
  font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.01em; color: var(--parch);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-family: var(--font-mono); color: var(--brass); font-weight: 700; }
.faq__item[open] summary::after { content: "–"; }
.faq__item p { padding: 0 1.2rem 1.1rem; font-size: 13px; line-height: 1.65; color: var(--parch-dim); }

/* bottom CTA band */
.cta-band { text-align: center; padding: clamp(3rem, 8vh, 5.5rem) var(--pad-x); }
.cta-band__title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.05; text-transform: uppercase;
  letter-spacing: 0.02em; color: var(--parch); max-width: 20ch; margin: 0 auto;
}
.cta-band__sub { margin: 1rem auto 0; max-width: 52ch; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.02em; color: var(--parch-dim); }
.cta-band__row { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: 1.8rem; }

/* ====================================================================
   EDITORIAL PATTERNS — the Vogue layer.
   Used to kill the SaaS-y "row of equal cards" feel everywhere.
   ==================================================================== */

/* a magazine-style chapter mark — oversized brass numeral, a label, a rule */
.chapter-mark {
  display: flex; align-items: baseline; gap: 1.2rem;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--brass);
}
.chapter-mark::before {
  content: attr(data-no);
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2.6rem, 5vw, 4rem); line-height: 0.85;
  letter-spacing: -0.01em; color: var(--brass);
  border-right: 1px solid var(--line-warm); padding-right: 1.2rem;
}

/* a magazine-style two-up: one big editorial feature + a side stack */
.spread {
  display: grid; gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  align-items: start;
}
@media (max-width: 920px) { .spread { grid-template-columns: 1fr; } }

/* the FEATURED side of a spread — type-led, no card chrome */
.feature-big {
  position: relative;
}
.feature-big__no {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(4rem, 9vw, 7rem); line-height: 0.85;
  letter-spacing: -0.02em; color: var(--brass);
  opacity: 0.55;
}
.feature-big__cap {
  display: block; margin-top: 1rem;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--parch-dim);
}
.feature-big__head {
  margin-top: 0.6rem;
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.0;
  letter-spacing: 0.005em; color: var(--parch);
  max-width: 14ch;
}
.feature-big__head em { font-style: italic; color: var(--brass); font-weight: 400; }
.feature-big__body {
  margin-top: 1.6rem; max-width: 46ch;
  font-size: 15px; line-height: 1.7; color: var(--parch); opacity: 0.86;
}
.feature-big__body strong { color: var(--brass); font-weight: 600; }

/* the side stack of smaller features — no boxes, just type with hairline rules */
.stack { display: grid; gap: 0; }
.stack__item {
  padding: 1.4rem 0; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: baseline;
}
.stack__item:last-child { border-bottom: 1px solid var(--line); }
.stack__no {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; color: var(--brass);
}
.stack__head {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem); line-height: 1.1;
  letter-spacing: 0.01em; color: var(--parch);
}
.stack__body {
  grid-column: 2;
  margin-top: 0.5rem; font-size: 13px; line-height: 1.6; color: var(--parch); opacity: 0.78;
}

/* THE MANIFESTO — a single oversized typographic beat. No cards, just type. */
.manifesto {
  padding: clamp(4rem, 12vh, 9rem) var(--pad-x);
  max-width: 1100px; margin: 0 auto;
  border-block: 1px solid var(--line);
}
.manifesto__mark {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--brass);
}
.manifesto__text {
  margin-top: 1.4rem;
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(1.8rem, 3.8vw, 2.9rem); line-height: 1.25;
  letter-spacing: 0.005em; color: var(--parch); max-width: 24ch;
}
.manifesto__text em { font-style: italic; color: var(--brass); font-weight: 400; }
.manifesto__sig {
  margin-top: 2rem;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--parch-dim);
}

/* RECOMMENDED ribbon — for the default pricing tier */
.plan--recommended {
  position: relative;
  border: 1px solid var(--brass);
  border-radius: var(--radius);
}
.plan--recommended::after {
  content: 'Recommended'; position: absolute; top: -11px; left: 1.4rem;
  background: var(--brass); color: var(--ink-text);
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.32rem 0.7rem; border-radius: 2px;
}

/* scarcity / note ribbon reused across pages */
.note-ribbon {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--parch-dim);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 0.45rem 0.8rem;
}
.note-ribbon b { color: var(--brass); }

/* reduced-motion: kill transforms / sweeps */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
  .btn:hover, .nav__cta:hover, .god:hover, .god:focus-within,
  .plan:hover, .agent:hover { transform: none; }
  .god__sweep { display: none; }
}

/* ====================================================================
   MOBILE — fit the phone instead of squishing the desktop into it.
   (Any element wider than the viewport makes phones zoom the whole page
   out; these rules kill every horizontal overflow + adapt the layout.)
   ==================================================================== */
html, body { overflow-x: clip; }   /* hard stop on horizontal scroll/zoom-out */

@media (max-width: 760px) {
  /* NAV — wrap so nothing is clipped; JOIN FREE always reachable */
  .nav { flex-wrap: wrap; gap: 0.5rem 0.8rem; padding: 0.6rem var(--pad-x); }
  .nav__links { width: 100%; flex-wrap: wrap; align-items: center;
    justify-content: flex-start; gap: 0.5rem 1.05rem; }
  .nav__links a:not(.nav__cta) { font-size: 10.5px; letter-spacing: 0.13em; }
  .nav__cta { margin-left: auto; padding: 0.5rem 0.95rem; }

  /* NEWSLETTER — compact banner so the hero shows immediately */
  .badge-row { padding-top: 0.85rem; }
  .newsletter { padding: 0.6rem 0.75rem; gap: 0.45rem 0.8rem; }
  .newsletter__copy { font-size: 10px; letter-spacing: 0.04em; line-height: 1.4; }
  .newsletter__field input { padding: 0.6rem 0.7rem; font-size: 11px; }
  .newsletter__field .btn { padding: 0.6rem 0.9rem; }

  /* HERO — headline FIRST (moved up), figure below it */
  .hero { padding-top: 1rem; }
  .hero__stage { order: 1; height: clamp(260px, 50vh, 400px); margin: 1.5rem 0 0; }
  .hero__title { font-size: clamp(2.6rem, 13vw, 4rem); }
  .hero__sub { font-size: 12.5px; margin-top: 1.1rem; }
  .hero__cta { margin-top: 1.4rem; }

  /* FOOTER — stop the wordmark + nav from overflowing the viewport */
  .footer__wordmark { font-size: 19vw; }
  .footer__nav { flex-wrap: wrap; justify-content: center; gap: 0.5rem 1rem; }
  .footer__fine { justify-content: center; text-align: center; }
}

/* TOUCH devices have no cursor, so the green-to-color torch can never fire.
   Show the Council in its ORIGINAL colors instead of the grayed-green base. */
@media (hover: none) {
  .god__figure { filter: none; }
  .god__figure::after { display: none; }   /* drop the unifying teal wash */
  .god__sweep { display: none; }            /* no torch layer on touch */
}
