/* ============================================================================
   LONG HAIR. WE CARE. — "THE SANCTUARY"
   Ground-up redesign by WadeGlobal AI · Fable design pass
   Concept: a candlelit sanctuary. Night-indigo throughout, gold as structure,
   her turquoise→lavender gradient as the light, ONE parchment "covenant"
   moment (the Founding 100). The page reads as chapters of a liturgy (I–VIII).
   Palette (hers, verified): turquoise #81D8D0 · lavender #9B88D6 ·
   indigo #1A1A2E · gold #C9A227. Fonts: Playfair Display · Archivo · Inter.
   ========================================================================== */

:root {
  --night: #0E0C1D;        /* deepest sanctuary night */
  --night-2: #151329;      /* raised night */
  --night-3: #1D1A36;      /* panel night */
  --panel: rgba(255, 255, 255, 0.035);
  --panel-line: rgba(255, 255, 255, 0.08);

  --primary: #81D8D0;      /* Tiffany turquoise — the light */
  --accent: #9B88D6;       /* lavender */
  --accent-deep: #6E58B8;

  --gold: #C9A227;
  --gold-soft: #E4C25A;
  --gold-line: rgba(201, 162, 39, 0.45);
  --gold-line-soft: rgba(201, 162, 39, 0.22);

  --parchment: #F6F1E6;    /* the covenant page */
  --parchment-2: #EFE7D6;
  --ink: #221F33;          /* text on parchment */
  --ink-soft: #4D4960;

  --t-hi: rgba(255, 255, 255, 0.92);
  --t-mid: rgba(255, 255, 255, 0.74);
  --t-low: rgba(255, 255, 255, 0.55);

  --font-display: "Playfair Display", Georgia, serif;
  --font-label: "Archivo", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --shadow-glow: 0 30px 90px rgba(0, 0, 0, 0.55);
  --maxw: 1200px;
  --ease-lux: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  font-family: var(--font-body);
  color: var(--t-mid);
  background: var(--night);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(201, 162, 39, 0.35); color: #fff; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }

/* -------------------------------------------------- accessibility */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--night); color: #fff; padding: 12px 22px;
  font-family: var(--font-label); font-size: .8rem; letter-spacing: .08em;
  border: 1px solid var(--gold);
}
.skip-link:focus { left: 14px; top: 14px; }
:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 3px; }

/* -------------------------------------------------- type system */
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.1; letter-spacing: -0.012em; color: var(--t-hi); }
h2.section-title { font-size: clamp(2.2rem, 4.6vw, 3.6rem); margin-bottom: 18px; }
.lead { font-size: clamp(1.02rem, 1.6vw, 1.2rem); max-width: 62ch; line-height: 1.8; font-weight: 300; color: var(--t-mid); }
.lead strong { font-weight: 600; color: var(--t-hi); }

.eyebrow {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px 14px;
  flex-wrap: wrap; max-width: 100%; text-align: center;
  font-family: var(--font-label); text-transform: uppercase;
  letter-spacing: 0.34em; font-size: 0.68rem; font-weight: 600;
  color: var(--primary); margin-bottom: 20px;
}
.chap {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 1.15rem; letter-spacing: 0; text-transform: none;
  color: var(--gold-soft); line-height: 1;
  padding-right: 14px; border-right: 1px solid var(--gold-line);
}

/* gold ornaments */
.divider, .ornament { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 4px auto 28px; }
.divider::before, .divider::after,
.ornament::before, .ornament::after { content: ""; height: 1px; width: 58px; background: linear-gradient(90deg, transparent, var(--gold)); }
.divider::after, .ornament::after { background: linear-gradient(90deg, var(--gold), transparent); }
.divider span, .ornament span { color: var(--gold); font-size: 0.85rem; line-height: 1; }

/* -------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-label); font-weight: 600; font-size: 0.74rem;
  letter-spacing: 0.24em; text-transform: uppercase; text-align: center;
  padding: 17px 36px; border-radius: 2px; cursor: pointer; border: 1px solid transparent;
  transition: transform .25s var(--ease-lux), box-shadow .25s var(--ease-lux),
              background-color .25s ease, border-color .25s ease, color .25s ease, filter .25s ease;
  white-space: nowrap;
}
.btn-primary, .btn-gold {
  background: linear-gradient(115deg, var(--gold) 0%, var(--gold-soft) 55%, var(--gold) 100%);
  color: #14111f;
  box-shadow: 0 8px 26px rgba(201, 162, 39, 0.25);
}
.btn-primary:hover, .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(201, 162, 39, 0.4);
  filter: brightness(1.06);
  color: #14111f;
}
.btn-primary:active, .btn-gold:active { transform: translateY(0); filter: brightness(0.98); }
.btn-ghost, .btn-ghost-dark { background: transparent; border-color: rgba(255,255,255,.32); color: var(--t-hi); }
.btn-ghost:hover, .btn-ghost-dark:hover { border-color: var(--gold-soft); color: var(--gold-soft); background: rgba(228,194,90,.06); }

/* ---------------------------------------------------------------- header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: rgba(14, 12, 29, 0.86); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-line-soft);
  transition: transform .35s var(--ease-lux);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand-lockup { display: flex; align-items: center; gap: 13px; flex: none; }
.brand-lockup img { height: 40px; width: auto; }
.brand-lockup .bl-text { font-family: var(--font-display); font-weight: 500; font-size: 1.02rem; letter-spacing: .01em; line-height: 1; white-space: nowrap; color: var(--t-hi); }
.brand-lockup .bl-text small { display: block; font-family: var(--font-label); font-size: .54rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-soft); margin-top: 5px; font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: clamp(14px, 1.7vw, 24px); }
.nav-links a { font-family: var(--font-label); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--t-mid); font-weight: 500; transition: color .2s; position: relative; padding: 4px 0; white-space: nowrap; }
.nav-links a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--gold-soft); transition: right .3s var(--ease-lux); }
.nav-links a:not(.btn):hover { color: var(--gold-soft); }
.nav-links a:not(.btn):hover::after { right: 0; }
.nav-cta { margin-left: 10px; padding: 12px 26px; font-size: .62rem; letter-spacing: .18em; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 1.5px; background: var(--t-hi); margin: 5.5px 0; transition: .3s; }

/* ---------------------------------------------------------------- hero — the sanctuary */
.hero {
  position: relative; display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(155,136,214,0.22), transparent 55%),
    radial-gradient(circle at 12% 40%, rgba(129,216,208,0.10), transparent 40%),
    radial-gradient(circle at 88% 55%, rgba(155,136,214,0.10), transparent 42%),
    radial-gradient(ellipse at 50% 115%, rgba(201,162,39,0.14), transparent 60%),
    linear-gradient(180deg, #0C0A19 0%, #12101F 55%, #17142B 100%);
  color: #fff; overflow: hidden; padding: 156px 0 0;
}
.hero-stack { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 2; }
.hero-stack > * { max-width: 100%; }
.hero-eyebrow { margin-bottom: 26px; }
.hero-title {
  font-size: clamp(3.4rem, 9vw, 7rem); line-height: 1.0; margin-bottom: 10px;
  font-weight: 500; letter-spacing: -0.015em;
}
.hero-title span { display: block; padding-bottom: 0.07em;
  background: linear-gradient(96deg, var(--primary) 0%, #cbb9f2 52%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-title .ht-god {
  font-style: italic;
  background: linear-gradient(96deg, var(--gold-soft) 0%, var(--gold) 55%, #f0d67e 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-orn { margin: 18px auto 26px; }
.hero .kicker { font-family: var(--font-display); font-style: italic; font-size: clamp(1.2rem, 2.2vw, 1.65rem); color: var(--t-hi); margin-bottom: 16px; font-weight: 500; max-width: 34ch; }
.hero p.sub { max-width: 52ch; color: var(--t-mid); font-size: clamp(1rem, 1.4vw, 1.12rem); font-weight: 300; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-meta { margin-top: 34px; display: flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 12px 18px; font-family: var(--font-label); text-transform: uppercase; letter-spacing: .22em; font-size: .64rem; color: var(--t-low); }
.hero-meta span { display: inline-flex; align-items: center; }
.hero-meta span + span::before { content: ""; width: 4px; height: 4px; transform: rotate(45deg); background: var(--gold); margin-right: 18px; opacity: .85; }

/* the sanctuary window — monumental arched product */
.hero-product { position: relative; display: flex; flex-direction: column; align-items: center; margin: 58px 0 0; }
.hp-frame {
  position: relative; z-index: 2; display: block; padding: 14px 14px 0;
  border: 1px solid var(--gold-line);
  border-bottom-color: transparent;
  border-radius: 999px 999px 0 0;
}
.hp-frame::before {
  content: ""; position: absolute; inset: -13px; bottom: 0; pointer-events: none;
  border: 1px solid rgba(201, 162, 39, 0.2); border-bottom: none;
  border-radius: 999px 999px 0 0;
}
.hp-frame img {
  width: min(430px, 80vw);
  border-radius: 999px 999px 0 0;
  box-shadow: var(--shadow-glow);
}
.hero-glow {
  position: absolute; z-index: 1; top: 46%; left: 50%; transform: translate(-50%, -50%);
  width: 130%; height: 90%; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(201,162,39,.28), rgba(129,216,208,.10) 45%, transparent 70%);
  filter: blur(20px);
}
.hero-product figcaption { position: relative; z-index: 2; margin: 20px 0 34px; font-family: var(--font-label);
  text-transform: uppercase; letter-spacing: .24em; font-size: .66rem; color: var(--t-low); }
.hero-product figcaption em { color: var(--primary); font-style: normal; }

/* ---------------------------------------------------------------- gold couture ribbon */
.ribbon {
  overflow: hidden; white-space: nowrap;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 30%, var(--gold) 60%, var(--gold-soft) 100%);
  border-top: 1px solid rgba(255,255,255,.25);
  border-bottom: 1px solid rgba(0,0,0,.25);
  padding: 12px 0;
}
.ribbon-track { display: inline-flex; align-items: center; gap: 34px; animation: ribbon-run 30s linear infinite; will-change: transform; }
.ribbon-track span {
  font-family: var(--font-label); font-size: .68rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase; color: #171430;
}
.ribbon-track i { font-style: normal; font-size: .7rem; color: rgba(23,20,48,.75); }
@keyframes ribbon-run { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------------------------------------------------------- trust colophon */
.trust-bar {
  background: var(--night-2); color: #fff;
  border-bottom: 1px solid var(--gold-line-soft);
  padding: 34px 0;
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.trust-item h3 { font-family: var(--font-label); font-size: .66rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 7px; }
.trust-item p { font-size: .82rem; color: var(--t-low); font-weight: 300; line-height: 1.55; }
@media (min-width: 801px) { .trust-item + .trust-item { border-left: 1px solid var(--panel-line); } }

/* ---------------------------------------------------------------- section fabric */
section { padding: clamp(88px, 10vw, 150px) 0; }
.trust-bar { padding: 34px 0; }
.section-night { background: linear-gradient(180deg, var(--night) 0%, var(--night-2) 100%); position: relative; }
.section-night.deep {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(155,136,214,0.10), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(129,216,208,0.06), transparent 55%),
    linear-gradient(180deg, #0C0A19, #141227);
}
.section-night + .section-night { border-top: 1px solid var(--panel-line); }

.section-head { text-align: center; max-width: 820px; margin: 0 auto 68px; position: relative; }
.section-head > * { position: relative; z-index: 1; }
.section-head .lead { margin: 0 auto; }
.section-head .eyebrow { justify-content: center; }
/* ghost chapter numeral — the liturgy watermark */
.section-head[data-chap]::before {
  content: attr(data-chap);
  position: absolute; left: 50%; top: -0.42em; transform: translateX(-50%);
  z-index: 0; pointer-events: none;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(7rem, 16vw, 12.5rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(201, 162, 39, 0.16);
}
@supports not (-webkit-text-stroke: 1px black) {
  .section-head[data-chap]::before { color: rgba(201, 162, 39, 0.06); }
}

/* ---------------------------------------------------------------- the covenant (parchment) */
.section-covenant {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,162,39,0.10), transparent 50%),
    linear-gradient(180deg, var(--parchment) 0%, var(--parchment-2) 100%);
  color: var(--ink);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.section-covenant .section-title { color: var(--ink); }
.section-covenant .eyebrow, .section-covenant .eyebrow.on-dark { color: var(--accent-deep); }
.section-covenant .chap { color: var(--gold); }
.section-covenant .lead, .section-covenant .lead.on-dark { color: var(--ink-soft); }
.section-covenant .lead em { color: var(--ink); }
.section-covenant .section-head[data-chap]::before { -webkit-text-stroke-color: rgba(201, 162, 39, 0.28); }

/* ---------------------------------------------------------------- honest availability note */
.avail-note {
  margin-top: 26px; font-size: .92rem; color: var(--t-mid);
  background: var(--panel); border: 1px solid var(--gold-line);
  border-radius: 3px; padding: 14px 24px; display: inline-block; line-height: 1.6;
}
.avail-note strong { color: var(--gold-soft); font-weight: 600; }

/* ---------------------------------------------------------------- the collection */
.system-grid { display: grid; grid-template-columns: 1.02fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.system-media { position: relative; }
.system-media::before {
  content: ""; position: absolute; top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 1px solid var(--gold-line); border-radius: 6px;
}
.system-media img { position: relative; border-radius: 4px; box-shadow: var(--shadow-glow); }
.system-media .badge {
  position: absolute; z-index: 2; top: 20px; left: 20px; background: rgba(12,10,25,.85); color: var(--t-hi);
  font-family: var(--font-label); font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 2px; border: 1px solid var(--gold-line);
  backdrop-filter: blur(4px);
}
.step { display: flex; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--panel-line); }
.step:first-child { padding-top: 0; }
.step:last-of-type { border-bottom: none; }
.step .num {
  flex: none; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--gold-soft);
  background: transparent; border: 1px solid var(--gold-line);
}
.step h3 { font-size: 1.45rem; margin-bottom: 6px; }
.step .tag { font-family: var(--font-label); text-transform: uppercase; letter-spacing: .2em; font-size: .64rem; font-weight: 600; color: var(--primary); margin-bottom: 10px; }
.step p { color: var(--t-mid); font-size: .96rem; font-weight: 300; }
.ingredient-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.ingredient-tags span {
  font-family: var(--font-label); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase;
  background: var(--panel); color: var(--t-low); padding: 6px 12px;
  border-radius: 2px; border: 1px solid var(--panel-line);
}
.system-tagline { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--primary); margin-top: 18px; }

/* ---------------------------------------------------------------- retention truth */
.retention { text-align: center; }
.retention .big-quote { font-family: var(--font-display); font-size: clamp(2rem, 4.8vw, 3.4rem); line-height: 1.22; max-width: 21ch; margin: 0 auto 26px; color: var(--t-hi); }
.retention .big-quote em { color: var(--primary); font-style: italic; }
.retention-lead { margin: 0 auto 12px; }
.retention-tagline { font-family: var(--font-display); font-style: italic; font-size: 1.35rem; color: var(--gold-soft); }

/* ---------------------------------------------------------------- crown levels — jewel ledger */
.levels-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.level-card {
  position: relative; border-radius: 4px; padding: 34px 26px 28px;
  background: linear-gradient(170deg, #1B1832 0%, #221E3F 100%);
  border: 1px solid var(--panel-line); display: flex; flex-direction: column;
  transition: transform .3s var(--ease-lux), box-shadow .3s var(--ease-lux), border-color .3s ease;
}
.level-card::before {
  content: ""; position: absolute; top: -1px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform .4s var(--ease-lux);
}
.level-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(0,0,0,.45); border-color: var(--gold-line); }
.level-card:hover::before { transform: scaleX(1); }
.level-card.featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), 0 24px 70px rgba(201,162,39,.16); }
.level-card.featured::before { transform: scaleX(1); }
.level-card.legacy { background: linear-gradient(170deg, #2A2450 0%, #38305F 100%); border-color: var(--gold-line); }
.level-card .lvl { font-family: var(--font-label); font-size: .6rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-soft); }
.level-card h3 { font-size: 1.32rem; margin: 9px 0 0; color: var(--t-hi); }
.level-card .price { font-family: var(--font-display); font-style: italic; font-size: 2.2rem; font-weight: 500; color: var(--gold-soft); margin: 10px 0 0; }
.level-card .price::after { content: ""; display: block; width: 36px; height: 1px; background: var(--gold-line); margin-top: 14px; }
.level-card ul { list-style: none; margin: 18px 0 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.level-card li { position: relative; padding-left: 22px; font-size: .85rem; line-height: 1.55; color: var(--t-mid); font-weight: 300; }
.level-card li::before { content: "♛"; position: absolute; left: 0; top: 1px; color: var(--gold); font-size: .72rem; opacity: .9; }
.level-card .badge-pop {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(115deg, var(--gold), var(--gold-soft)); color: #14111f;
  font-family: var(--font-label); font-size: .58rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 2px; white-space: nowrap;
}
.level-card .btn { justify-content: center; width: 100%; padding: 13px; font-size: .66rem; letter-spacing: .2em; }

.secure-note {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 40px; font-family: var(--font-label); font-size: .68rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--t-low);
}
.secure-note svg { color: var(--gold-soft); flex: none; }

.disclaimer { font-size: .76rem; color: var(--t-low); max-width: 74ch; margin: 18px auto 0; text-align: center; line-height: 1.65; }
.disclaimer strong { font-weight: 600; }
.section-covenant .disclaimer { color: var(--ink-soft); }

/* ---------------------------------------------------------------- the covenant — founding 100 */
.founding { text-align: center; }
.founding .lead { max-width: 58ch; }
.founding .lead::first-letter {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 3.1em; float: left; line-height: .82; padding: 4px 10px 0 0;
  color: var(--gold);
}
.founding-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin: 48px 0 12px; text-align: left; }
.founding-benefits .fb {
  background: rgba(255, 255, 255, 0.5); border: 1px solid var(--gold-line-soft);
  border-top: 1px solid var(--gold-line); border-radius: 4px; padding: 30px 26px;
  transition: border-color .3s ease, background-color .3s ease;
}
.founding-benefits .fb:hover { border-color: var(--gold-line); background: rgba(255,255,255,.72); }
.founding-benefits .fb h4 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; margin-bottom: 10px; color: var(--accent-deep); }
.founding-benefits .fb p { font-size: .88rem; color: var(--ink-soft); font-weight: 300; line-height: 1.65; }
.founding .scarcity { font-family: var(--font-display); font-style: italic; font-size: clamp(1.35rem, 3vw, 1.9rem); margin: 22px auto 34px; max-width: 34ch; color: var(--ink); }

/* ---------------------------------------------------------------- founder — night portrait */
.founder-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.founder-media { position: relative; order: 2; }
.fm-frame {
  position: relative; display: block; padding: 12px;
  border: 1px solid var(--gold-line);
  border-radius: 999px 999px 8px 8px;
}
.fm-frame::before {
  content: ""; position: absolute; inset: -11px; pointer-events: none;
  border: 1px solid var(--gold-line-soft);
  border-radius: 999px 999px 12px 12px;
}
.fm-frame img { border-radius: 999px 999px 4px 4px; box-shadow: var(--shadow-glow); }
.founder-media .sig { font-family: var(--font-display); font-style: italic; font-size: 1.35rem; color: var(--primary); margin-top: 24px; text-align: center; }
.founder-creds { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 2px 0 30px; padding: 0; }
.founder-creds li {
  font-family: var(--font-label); font-size: .62rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--t-hi); background: var(--panel); border: 1px solid var(--gold-line-soft);
  padding: 8px 14px; border-radius: 2px;
}
.acts { display: flex; flex-direction: column; gap: 24px; margin: 0 0 28px; border-left: 1px solid var(--gold-line); }
.act { position: relative; padding-left: 26px; }
.act::before { content: ""; position: absolute; left: -4.5px; top: 7px; width: 8px; height: 8px; transform: rotate(45deg); background: var(--gold); }
.act h4 { font-family: var(--font-label); text-transform: uppercase; letter-spacing: .2em; font-size: .68rem; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.act p { font-size: .93rem; color: var(--t-mid); font-weight: 300; }
.act p em { color: var(--t-hi); }
.scripture { font-family: var(--font-display); font-style: italic; font-size: 1.18rem; color: var(--t-hi); border-top: 1px solid var(--gold-line-soft); padding-top: 24px; }

/* ---------------------------------------------------------------- mission — the litany */
.rs-grid { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 48px; }
.rs { text-align: center; padding: 18px 14px; background: none; border-left: 1px solid var(--gold-line-soft); }
.rs:first-child { border-left: none; }
.rs .r { font-family: var(--font-display); font-style: italic; font-size: 3.2rem; color: var(--gold-soft); line-height: 1; }
.rs h4 { font-family: var(--font-label); text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; font-weight: 600; margin-top: 14px; color: var(--t-hi); }
.mission-tagline { text-align: center; font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--gold-soft); margin-top: 48px; }

/* ---------------------------------------------------------------- faq — hairline ledger */
.faq-list { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--panel-line); }
.faq-item { border-bottom: 1px solid var(--panel-line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 26px 52px 26px 0; position: relative;
  font-family: var(--font-display); font-size: 1.22rem; color: var(--t-hi); transition: color .2s ease;
}
.faq-q:hover { color: var(--gold-soft); }
.faq-q::after {
  content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-body); font-weight: 300; font-size: 1.5rem; color: var(--gold);
  transition: transform .3s var(--ease-lux);
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-lux); }
.faq-a p { padding: 0 0 26px; color: var(--t-mid); font-weight: 300; max-width: 64ch; }

/* ---------------------------------------------------------------- claim — the altar call */
.claim {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(155,136,214,0.14), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(201,162,39,0.10), transparent 55%),
    linear-gradient(180deg, #0C0A19 0%, #161331 100%);
  color: #fff; position: relative;
}
.claim::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-line), transparent); }
.claim .section-title { color: var(--t-hi); }
.claim-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.claim-lead { margin-bottom: 0; }
.claim-copy .scripture-lite { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--primary); margin-top: 22px; }
.claim-form {
  background: var(--panel); border: 1px solid var(--gold-line);
  border-radius: 8px; padding: clamp(28px, 4vw, 46px); position: relative;
}
.claim-form::before {
  content: "♛"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: #121022; color: var(--gold-soft); padding: 0 14px; font-size: .9rem; line-height: 1.6;
}
.claim-form h3 { font-size: 1.6rem; margin-bottom: 6px; }
.claim-form .form-sub { color: var(--t-low); font-size: .9rem; font-weight: 300; margin-bottom: 24px; }
.claim-form .ff { margin-bottom: 18px; }
.claim-form label { display: block; font-family: var(--font-label); font-size: .66rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--t-mid); margin-bottom: 8px; }
.claim-form label .opt { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--t-low); }
.claim-form input, .claim-form select, .claim-form textarea {
  width: 100%; padding: 13px 15px; border-radius: 2px; border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05); color: #fff; font-family: var(--font-body); font-size: .95rem;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.claim-form input::placeholder, .claim-form textarea::placeholder { color: rgba(255,255,255,.36); }
.claim-form input:focus, .claim-form select:focus, .claim-form textarea:focus {
  outline: none; border-color: var(--gold-soft); box-shadow: 0 0 0 1px var(--gold-soft); background: rgba(255,255,255,.08);
}
.claim-form select option { color: var(--ink); }
.claim-form .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form-success { display: none; text-align: center; padding: 24px 0; }
.form-success.show { display: block; }
.form-success .crown { font-size: 2.6rem; color: var(--gold-soft); }
.form-success h3 { color: #fff; font-family: var(--font-display); margin-top: 8px; }
.form-success p { color: var(--t-mid); font-weight: 300; margin-top: 10px; }
.form-note { font-size: .72rem; color: var(--t-low); margin-top: 16px; text-align: center; line-height: 1.6; }

/* ---------------------------------------------------------------- footer */
.site-footer { background: #0B0918; color: var(--t-mid); padding: 78px 0 34px; border-top: 1px solid var(--gold-line-soft); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; margin-bottom: 50px; }
.footer-brand img { height: 74px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: .88rem; max-width: 40ch; font-weight: 300; line-height: 1.7; }
.footer-col h5 { font-family: var(--font-label); text-transform: uppercase; letter-spacing: .24em; font-size: .66rem; font-weight: 600; color: var(--gold-soft); margin-bottom: 18px; }
.footer-col a { display: block; font-size: .88rem; margin-bottom: 11px; color: var(--t-mid); transition: color .2s; font-weight: 300; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-loc { font-size: .82rem; color: var(--t-low); display: block; margin-top: 8px; font-weight: 300; }
.footer-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid var(--panel-line); padding-top: 26px; font-size: .76rem; font-weight: 300; }
.footer-tag { font-family: var(--font-display); font-style: italic; color: var(--gold-soft); font-size: .95rem; }
.footer-disclaimer { font-size: .7rem; color: rgba(255,255,255,.38); margin-top: 16px; line-height: 1.65; max-width: 90ch; font-weight: 300; }

/* ---------------------------------------------------------------- sticky mobile CTA */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 55; padding: 12px 16px; display: none;
  background: rgba(11, 9, 24, .95); backdrop-filter: blur(10px); border-top: 1px solid var(--gold-line); }
.sticky-cta .btn { width: 100%; justify-content: center; }

/* ---------------------------------------------------------------- cookie banner */
.cookie-banner { position: fixed; bottom: 18px; left: 18px; right: 18px; max-width: 520px; z-index: 80;
  background: var(--night-3); border: 1px solid var(--gold-line); border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6); padding: 20px 22px; display: none; }
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: .84rem; color: var(--t-mid); margin-bottom: 14px; font-weight: 300; line-height: 1.6; }
.cookie-banner .cb-actions { display: flex; gap: 10px; }
.cookie-banner .btn { padding: 10px 20px; font-size: .64rem; }
.cookie-banner .cookie-decline { border-color: rgba(255,255,255,.25); color: var(--t-mid); }

/* ---------------------------------------------------------------- reveal on scroll */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease-lux), transform .9s var(--ease-lux); }
.reveal.in { opacity: 1; transform: none; }

/* ---------------------------------------------------------------- motion guard */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .ribbon-track { animation: none; }
}

/* ---------------------------------------------------------------- responsive */
@media (max-width: 1180px) {
  .brand-lockup .bl-text { display: none; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: .68rem; letter-spacing: .08em; }
  .nav-cta { padding: 11px 18px; font-size: .6rem; }
}
@media (max-width: 1080px) {
  .levels-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .brand-lockup .bl-text { display: block; }
  .nav-links { position: fixed; inset: 76px 0 auto 0; flex-direction: column; background: var(--night-2);
    padding: 26px 24px 30px; gap: 20px; box-shadow: 0 30px 60px rgba(0,0,0,.5); border-bottom: 1px solid var(--gold-line-soft);
    transform: translateY(-140%); transition: transform .4s var(--ease-lux); }
  .nav-links a { font-size: .78rem; letter-spacing: .1em; }
  .nav-links.open { transform: translateY(0); }
  .menu-toggle { display: block; }
  .nav-cta { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 26px 20px; }
  .system-grid, .founder-grid, .claim-grid { grid-template-columns: 1fr; }
  .founder-media { order: 0; max-width: 400px; margin: 0 auto; }
  .system-media { margin-bottom: 12px; }
  .founding-benefits { grid-template-columns: repeat(2, 1fr); }
  .rs-grid { grid-template-columns: repeat(3, 1fr); }
  .rs { border-left: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hp-frame img { width: min(330px, 76vw); }
  .section-head[data-chap]::before { font-size: clamp(6rem, 20vw, 9rem); }
}
@media (max-width: 680px) {
  .hero { padding-top: 128px; }
  .levels-grid { grid-template-columns: 1fr; }
  .founding-benefits { grid-template-columns: 1fr; }
  .rs-grid { grid-template-columns: repeat(2, 1fr); }
  .rs:last-child { grid-column: 1 / -1; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .footer-meta { justify-content: center; text-align: center; }
  .sticky-cta { display: block; }
  .secure-note { letter-spacing: .14em; text-align: center; }
  .system-media::before { top: 12px; left: 12px; right: -12px; bottom: -12px; }
  .ribbon-track span { font-size: .6rem; letter-spacing: .24em; }
  body { padding-bottom: 64px; }
}
@media (max-width: 520px) {
  .chap { font-size: 1rem; padding-right: 10px; }
  .eyebrow { gap: 8px 10px; letter-spacing: .2em; font-size: .62rem; }
}
@media (max-width: 420px) {
  .trust-grid { grid-template-columns: 1fr; gap: 22px; }
  .hero-meta { flex-direction: column; gap: 10px; }
  .hero-meta span + span::before { display: none; }
}
