/* =========================================================================
   Roy K Group — Design System  ·  MIDNIGHT CAPITAL
   Near-black canvas · glowing gold (brand) · bone text · Spectral serif display.
   Dark institutional / private-capital. Hairline gold rules, restrained glow.
   ========================================================================= */

:root{
  /* Palette — gold on near-black */
  --bg:        #0D1014;   /* page */
  --bg-2:      #12161D;   /* alt sections */
  --surface:   #171C24;   /* cards */
  --surface-2: #1E242E;   /* raised panels / inputs */
  --line:      #262D38;   /* hairline */
  --line-2:    #38414F;   /* stronger border */

  --text:      #D7D2C7;   /* body copy */
  --bone:      #F3EEE3;   /* headings / high-emphasis */
  --muted:     #968F81;   /* warm grey */
  --muted-2:   #6B665C;

  /* Gold accent (matches brand mark) */
  --gold:       #C7A24E;
  --gold-bright:#E3C277;  /* links / hover */
  --gold-deep:  #9A7B33;
  --gold-soft:  rgba(199,162,78,.12);  /* washes */
  --gold-line:  rgba(199,162,78,.30);  /* gold hairline */
  --on-accent:  #15110A;               /* readable text on the accent (gold → dark) */

  /* aliases kept so existing markup/inline styles resolve */
  --ink:        var(--bone);
  --ink-2:      #C9C3B6;
  --paper:      var(--bg);
  --paper-2:    var(--bg-2);
  --card:       var(--surface);
  --text-on-gold:#15110A;
  --accent:     var(--gold);
  --accent-600: var(--gold-bright);
  --accent-100: var(--gold-soft);

  /* Type */
  --font-sans:'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-disp:'Spectral', Georgia, 'Times New Roman', serif;
  --font-logo:'Montserrat', var(--font-sans);

  /* Radius / depth / layout */
  --r-sm: 6px;  --r: 10px;  --r-lg: 14px;
  --sh-1: 0 1px 0 rgba(255,255,255,.03) inset, 0 10px 28px -20px rgba(0,0,0,.85);
  --sh-2: 0 28px 64px -30px rgba(0,0,0,.9), 0 1px 0 rgba(255,255,255,.04) inset;
  --sh-3: 0 36px 80px -32px rgba(0,0,0,.95), 0 0 0 1px var(--gold-line);
  --glow: 0 0 0 1px var(--gold-line), 0 20px 60px -26px rgba(199,162,78,.45);
  --maxw: 1160px;
  --gut: clamp(18px, 4vw, 44px);
  --ease:cubic-bezier(.16,1,.3,1); --ease-out:cubic-bezier(.22,.61,.36,1); --dur:.3s;
}

/* ---- Reset ---- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0; font-family:var(--font-sans); color:var(--text);
  background:var(--bg); line-height:1.72; font-size:17px;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
img,svg{ max-width:100%; display:block; }
::selection{ background:rgba(199,162,78,.28); color:var(--bone); }
a{ color:var(--gold-bright); text-decoration:none; }
a:hover{ text-decoration:underline; text-underline-offset:2px; }
h1,h2,h3,h4{ font-family:var(--font-disp); color:var(--bone); line-height:1.08; margin:0 0 .5em;
  font-weight:600; letter-spacing:-.01em; }
h1{ font-size:clamp(2.45rem, 5.4vw, 3.9rem); line-height:1.04; letter-spacing:-.018em; font-weight:600; }
h2{ font-size:clamp(1.8rem, 3.6vw, 2.6rem); line-height:1.08; letter-spacing:-.012em; }
h3{ font-size:1.28rem; line-height:1.3; letter-spacing:-.006em; }
p{ margin:0 0 1rem; line-height:1.72; }
.lead{ font-size:clamp(1.08rem, 1.5vw, 1.22rem); color:var(--muted); line-height:1.66; }
ul{ margin:0 0 1rem; padding-left:1.1rem; }

/* ---- Layout ---- */
.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 var(--gut); }
.section{ padding:clamp(62px, 8.5vw, 118px) 0; }
.section--tight{ padding:clamp(40px, 5.5vw, 74px) 0; }
.section--alt{ background:var(--bg-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.section.page-head{ padding-top:clamp(40px, 5vw, 66px); padding-bottom:0; }
.section.page-head + .section{ padding-top:clamp(16px, 3vw, 38px); }
.center{ text-align:center; }
.eyebrow{ font-family:var(--font-logo); text-transform:uppercase; letter-spacing:.24em;
  font-size:.72rem; font-weight:600; color:var(--gold); margin:0 0 1rem; }
.muted{ color:var(--muted); }
.maxw-sm{ max-width:680px; } .mx-auto{ margin-left:auto; margin-right:auto; }
.grid{ display:grid; gap:24px; }
@media(min-width:720px){ .g-2{ grid-template-columns:repeat(2,1fr); } .g-3{ grid-template-columns:repeat(3,1fr); } .g-4{ grid-template-columns:repeat(4,1fr); } }

/* ---- Buttons ---- */
.btn{ display:inline-flex; align-items:center; gap:.55em; font-family:var(--font-logo);
  font-weight:600; font-size:.97rem; letter-spacing:.01em; padding:.85em 1.5em; border-radius:9px; border:1px solid transparent;
  cursor:pointer; transition:transform .26s var(--ease), box-shadow .26s var(--ease), background .26s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  text-decoration:none; white-space:nowrap; }
.btn:hover{ text-decoration:none; }
/* primary CTA = gold on dark */
.btn--primary{ background:var(--gold); color:var(--text-on-gold); box-shadow:0 10px 30px -14px rgba(199,162,78,.6); }
.btn--primary:hover{ background:var(--gold-bright); transform:translateY(-2px); box-shadow:0 18px 40px -16px rgba(199,162,78,.7); }
/* quieter filled (secondary tier buttons) */
.btn--dark{ background:var(--surface-2); color:var(--bone); border-color:var(--line-2); }
.btn--dark:hover{ background:#252C37; border-color:var(--gold-line); transform:translateY(-2px); }
.btn--gold{ background:var(--gold); color:var(--text-on-gold); }
.btn--gold:hover{ background:var(--gold-bright); transform:translateY(-2px); box-shadow:0 18px 40px -16px rgba(199,162,78,.7); }
.btn--ghost{ background:transparent; color:var(--bone); border-color:var(--line-2); }
.btn--ghost:hover{ border-color:var(--gold); color:var(--gold-bright); background:var(--gold-soft); transform:translateY(-2px); }
.btn--light{ background:var(--bone); color:#15110A; }
.btn--light:hover{ background:#fff; transform:translateY(-2px); box-shadow:var(--sh-2); }
.btn--lg{ padding:1.05em 1.9em; font-size:1.02rem; }
.btn--block{ width:100%; justify-content:center; }
.btn .ic{ width:18px; height:18px; transition:transform .26s var(--ease); }
.btn:hover .ic{ transform:translateX(3px); }
.btn:active{ transform:translateY(0); transition-duration:.05s; }
.btn[disabled]{ pointer-events:none; opacity:.55; }

/* ---- Icons ---- */
.ic{ width:24px; height:24px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.ic--accent{ color:var(--gold); }

/* ---- Focus-visible ---- */
a:focus-visible, button:focus-visible, .btn:focus-visible, summary:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline:2px solid var(--gold); outline-offset:3px; border-radius:5px; }

/* ===================== HEADER ===================== */
.site-header{ position:sticky; top:0; z-index:50; background:rgba(13,16,20,.72);
  backdrop-filter:saturate(150%) blur(12px); -webkit-backdrop-filter:saturate(150%) blur(12px);
  border-bottom:1px solid var(--line); transition:box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease); }
.site-header.scrolled{ background:rgba(13,16,20,.9); border-bottom-color:var(--gold-line);
  box-shadow:0 10px 30px -22px rgba(0,0,0,.9); }
.nav{ display:flex; align-items:center; justify-content:space-between; gap:24px; height:78px; }
.brand{ display:flex; align-items:center; }
.brand .brand-logo{ height:38px; width:auto; display:block; }
@media(max-width:520px){ .brand .brand-logo{ height:30px; } }
.nav-links{ display:none; gap:30px; align-items:center; list-style:none; margin:0; padding:0; }
.nav-links a{ color:var(--text); font-weight:500; font-size:.96rem; position:relative; }
.nav-links a:hover{ color:var(--gold-bright); text-decoration:none; }
.nav-links a[aria-current]{ color:var(--gold-bright); }
.nav-links a::after{ content:""; position:absolute; left:0; right:0; bottom:-7px; height:2px; border-radius:2px;
  background:var(--gold); transform:scaleX(0); transform-origin:left center; transition:transform .3s var(--ease); }
.nav-links a:hover::after, .nav-links a[aria-current]::after{ transform:scaleX(1); }
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-toggle{ display:inline-flex; background:none; border:1px solid var(--line-2); border-radius:8px;
  width:42px; height:42px; align-items:center; justify-content:center; cursor:pointer; color:var(--bone); }
@media(min-width:940px){ .nav-links{ display:flex; } .nav-toggle{ display:none; } }
.mobile-menu{ display:none; border-bottom:1px solid var(--line); background:var(--bg-2); }
.mobile-menu.open{ display:block; }
.mobile-menu ul{ list-style:none; margin:0; padding:14px var(--gut); }
.mobile-menu li{ padding:11px 0; border-bottom:1px solid var(--line); }
.mobile-menu a{ color:var(--text); font-weight:500; }

/* ===================== HERO (centered) ===================== */
.hero{ position:relative; overflow:hidden; background:var(--bg);
  background-image:
    radial-gradient(720px 380px at 50% -10%, rgba(199,162,78,.20), transparent 62%),
    radial-gradient(1100px 600px at 50% 0%, rgba(199,162,78,.06), transparent 70%);
  border-bottom:1px solid var(--line); }
.hero::after{ content:""; position:absolute; left:0; right:0; bottom:0; height:1px;
  background:linear-gradient(90deg, transparent, var(--gold-line), transparent); }
.hero-grid{ display:flex; flex-direction:column; align-items:center; text-align:center;
  gap:8px; padding:clamp(64px,10vw,128px) 0 clamp(56px,8vw,104px); }
.hero-grid > div{ max-width:760px; }
.hero h1{ margin:.35em 0 .2em; }
.hero h1 span{ color:var(--gold-bright); font-style:italic; }
.hero .lead{ max-width:60ch; margin-inline:auto; }
/* thin gold rule under the headline */
.hero h1::after{ content:""; display:block; width:84px; height:2px; margin:.55em auto 0;
  background:linear-gradient(90deg, transparent, var(--gold), transparent); }
.hero-cta{ display:flex; flex-wrap:wrap; gap:14px; margin-top:30px; justify-content:center; }
.hero-art{ display:none; }   /* centered hero: no side illustration */

/* pill / trust */
.pill{ display:inline-flex; align-items:center; gap:.5em; background:var(--gold-soft); color:var(--gold-bright);
  font-weight:600; font-size:.78rem; padding:.5em 1em; border-radius:999px; font-family:var(--font-logo);
  letter-spacing:.04em; border:1px solid var(--gold-line); }
.pill .ic{ width:15px; height:15px; }

.trustbar{ border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:var(--bg-2); }
.trustbar .wrap{ display:flex; flex-wrap:wrap; gap:18px 40px; align-items:center; justify-content:space-between; padding:20px var(--gut); }
.trust-item{ display:flex; align-items:center; gap:10px; color:var(--muted); font-size:.92rem; font-weight:500; }
.trust-item .ic{ width:20px; height:20px; color:var(--gold); }

/* ===================== CARDS ===================== */
.card{ background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg); padding:clamp(24px,3vw,32px); box-shadow:var(--sh-1); }
.feature{ background:transparent; border:0; box-shadow:none; padding:6px 0; }
.feature .fic{ width:52px; height:52px; border-radius:13px; background:var(--gold-soft); color:var(--gold);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px; border:1px solid var(--gold-line);
  transition:transform .32s var(--ease), background .32s var(--ease); }
.feature:hover .fic{ transform:translateY(-3px); background:rgba(199,162,78,.18); }
.feature .fic .ic{ width:24px; height:24px; }
.feature h3{ font-size:1.2rem; }

/* product "cover" — dark plate with gold mark */
.cover{ position:relative; border:1px solid var(--line); border-radius:var(--r);
  background:radial-gradient(120% 120% at 50% 0%, #1B212B, #12161D);
  aspect-ratio:16/10; display:flex; align-items:center; justify-content:center; overflow:hidden;
  transition:border-color .32s var(--ease); }
.cover .cic{ color:var(--gold); display:flex; transition:transform .45s var(--ease); }
.cover .cic .ic{ width:52px; height:52px; stroke-width:1.25; }
.cover .cover-tag{ position:absolute; left:14px; bottom:11px; color:var(--muted); font-family:var(--font-logo);
  font-weight:600; font-size:.78rem; letter-spacing:.02em; }

/* membership banner */
.member-banner{ display:grid; gap:22px; align-items:center; background:var(--surface); border:1px solid var(--line);
  border-radius:var(--r-lg); padding:26px 28px; box-shadow:var(--sh-1); }
@media(min-width:780px){ .member-banner{ grid-template-columns:auto 1fr auto; } }
.member-banner .mb-icon{ width:60px; height:60px; border-radius:14px; background:var(--gold-soft); border:1px solid var(--gold-line);
  color:var(--gold); display:flex; align-items:center; justify-content:center; flex:none; }
.member-banner .mb-icon .ic{ width:30px; height:30px; }
.member-banner h3{ margin:0 0 2px; font-size:1.25rem; }
.member-banner .price{ font-family:var(--font-disp); font-weight:600; font-size:1.7rem; color:var(--bone); white-space:nowrap; }
.member-banner .price .per{ font-size:.95rem; font-weight:500; color:var(--muted); font-family:var(--font-sans); }
.member-banner .mb-buy{ display:flex; flex-direction:column; gap:8px; align-items:stretch; min-width:200px; }

/* product card */
.product-card{ display:flex; flex-direction:column; gap:16px; background:var(--surface); border:1px solid var(--line);
  border-radius:var(--r-lg); padding:20px; box-shadow:var(--sh-1); }
.product-card h3{ margin:0; font-size:1.14rem; }
.product-card .price{ font-family:var(--font-disp); font-weight:600; font-size:1.5rem; color:var(--bone); }
.product-card .price .per{ font-size:.92rem; font-weight:500; color:var(--muted); font-family:var(--font-sans); }
.product-card .pc-body{ display:flex; flex-direction:column; gap:8px; flex:1; }
.product-card .pc-foot{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:6px; }
.badge{ font-family:var(--font-logo); font-size:.66rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  padding:.32em .7em; border-radius:999px; background:var(--gold-soft); color:var(--gold-bright); border:1px solid var(--gold-line); }
.badge--gold{ background:var(--gold); color:var(--text-on-gold); border-color:transparent; }
.badge--dark{ background:var(--surface-2); color:var(--bone); border-color:var(--line-2); }

.meta-row{ display:flex; align-items:center; gap:8px; color:var(--muted); font-size:.88rem; }
.meta-row .ic{ width:16px; height:16px; color:var(--gold); }

/* ===================== PRICING LADDER ===================== */
.pricing{ display:grid; gap:22px; align-items:stretch; }
@media(min-width:880px){ .pricing{ grid-template-columns:repeat(3,1fr); } }
.tier{ position:relative; background:var(--surface); border:1px solid var(--line); border-radius:var(--r-lg); padding:32px 28px;
  display:flex; flex-direction:column; box-shadow:var(--sh-1); }
.tier--featured{ border-color:var(--gold-line); box-shadow:var(--glow); transform:translateY(-4px);
  background:linear-gradient(180deg, rgba(199,162,78,.06), var(--surface) 42%); }
.tier--featured::after{ content:"Most Popular"; position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background:var(--gold); color:var(--text-on-gold); font-family:var(--font-logo); font-weight:700; font-size:.68rem; letter-spacing:.1em;
  text-transform:uppercase; padding:.5em 1em; border-radius:999px; white-space:nowrap; box-shadow:0 8px 20px -10px rgba(199,162,78,.7); }
.tier h3{ font-size:1.3rem; margin-bottom:4px; }
.tier .tier-name{ color:var(--gold-bright); font-family:var(--font-logo); font-weight:600; font-size:.78rem;
  letter-spacing:.12em; text-transform:uppercase; margin-bottom:16px; }
.tier .tier-price{ font-family:var(--font-disp); font-weight:600; font-size:2.7rem; color:var(--bone); line-height:1; }
.tier .tier-price .per{ font-size:1rem; font-weight:500; color:var(--muted); font-family:var(--font-sans); }
.tier .turn{ color:var(--gold-bright); font-weight:600; font-size:.9rem; margin:10px 0 20px; display:flex; align-items:center; gap:6px; }
.tier .turn .ic{ width:16px; height:16px; }
.tier ul.checks{ list-style:none; padding:0; margin:0 0 26px; display:flex; flex-direction:column; gap:11px; flex:1; }
.tier ul.checks li{ display:flex; gap:10px; align-items:flex-start; font-size:.96rem; }
.tier ul.checks .ic{ width:18px; height:18px; color:var(--gold); flex:none; margin-top:3px; }

/* ===================== STEPS / PROCESS ===================== */
.steps{ display:grid; gap:30px; }
@media(min-width:760px){ .steps{ grid-template-columns:repeat(4,1fr); } }
.step .num{ font-family:var(--font-disp); font-weight:600; font-size:1.1rem; width:46px; height:46px; border-radius:50%;
  background:var(--gold-soft); color:var(--gold-bright); border:1px solid var(--gold-line); display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.step h3{ font-size:1.1rem; }

/* ===================== DARK / INK SECTION (already dark; add a gold edge) ===================== */
.section--dark{ background:var(--bg-2); color:var(--text); position:relative; overflow:hidden; border-top:1px solid var(--gold-line); }
.section--dark h2,.section--dark h3{ color:var(--bone); }
.section--dark .muted{ color:var(--muted); }
.section--dark .eyebrow{ color:var(--gold); }

/* ===================== CTA BANNER ===================== */
.cta-banner{ background:linear-gradient(180deg,#161B23,#11151B); color:var(--text); border-radius:var(--r-lg);
  padding:clamp(36px,5vw,60px); text-align:center; box-shadow:var(--glow); position:relative; overflow:hidden;
  border:1px solid var(--gold-line); border-top:3px solid var(--gold); }
.cta-banner::before{ content:""; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(600px 240px at 50% -20%, rgba(199,162,78,.16), transparent 60%); }
.cta-banner h2{ color:var(--bone); position:relative; }
.cta-banner .lead{ color:var(--text); position:relative; }
.cta-banner .mt-3{ position:relative; }

/* ===================== FAQ ===================== */
.faq{ max-width:780px; margin:0 auto; }
.faq details{ border-bottom:1px solid var(--line); padding:20px 4px; }
.faq summary{ cursor:pointer; font-family:var(--font-disp); font-weight:600; font-size:1.12rem; color:var(--bone);
  list-style:none; display:flex; justify-content:space-between; align-items:center; gap:16px; }
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{ content:"+"; font-size:1.5rem; color:var(--gold); font-weight:300; }
.faq details[open] summary::after{ content:"\2013"; }
.faq details p{ margin:.85rem 0 0; color:var(--muted); }

/* ===================== FORMS ===================== */
.field{ margin-bottom:16px; }
.field label{ display:block; font-weight:600; font-size:.88rem; margin-bottom:6px; color:var(--bone); }
.field input,.field textarea,.field select{ width:100%; padding:.8em 1em; border:1px solid var(--line-2); border-radius:var(--r-sm);
  font:inherit; color:var(--bone); background:var(--surface-2); transition:border-color .15s, box-shadow .15s; }
.field input::placeholder,.field textarea::placeholder{ color:var(--muted-2); }
.field input:focus,.field textarea:focus,.field select:focus{ outline:none; border-color:var(--gold);
  box-shadow:0 0 0 3px var(--gold-soft); }
.field textarea{ min-height:130px; resize:vertical; }
.form-note{ font-size:.85rem; color:var(--muted); }
.notice{ padding:14px 16px; border-radius:var(--r-sm); font-size:.95rem; margin-bottom:18px; }
.notice--ok{ background:rgba(74,158,98,.12); color:#9FD9AE; border:1px solid rgba(74,158,98,.34); }
.notice--err{ background:rgba(196,84,60,.12); color:#E6A491; border:1px solid rgba(196,84,60,.34); }
.notice--info{ background:var(--gold-soft); color:var(--gold-bright); border:1px solid var(--gold-line); }

/* ===================== PRODUCT DETAIL ===================== */
.pd-grid{ display:grid; gap:48px; align-items:start; }
@media(min-width:920px){ .pd-grid{ grid-template-columns:1.1fr .9fr; } }
.pd-buy{ position:sticky; top:100px; }
.pd-price{ font-family:var(--font-disp); font-weight:600; font-size:2.5rem; color:var(--bone); }
.pd-price .per{ font-size:1.05rem; font-weight:500; color:var(--muted); font-family:var(--font-sans); }
.pd-includes{ list-style:none; padding:0; margin:18px 0; display:flex; flex-direction:column; gap:11px; }
.pd-includes li{ display:flex; gap:10px; align-items:flex-start; }
.pd-includes .ic{ width:19px; height:19px; color:var(--gold); flex:none; margin-top:4px; }
.kv{ display:flex; gap:10px; align-items:center; color:var(--muted); font-size:.92rem; padding:9px 0; border-top:1px solid var(--line); }
.kv .ic{ width:18px; height:18px; color:var(--gold); }

/* scope box / consent / descriptor */
.scopebox{ background:var(--bg-2); border:1px solid var(--line); border-left:3px solid var(--gold);
  border-radius:var(--r-sm); padding:13px 15px; }
.scopebox strong{ display:block; font-family:var(--font-logo); font-size:.74rem; letter-spacing:.1em;
  text-transform:uppercase; color:var(--gold-bright); margin-bottom:5px; }
.scopebox p{ margin:0; font-size:.85rem; color:var(--muted); line-height:1.55; }
.consent{ display:flex; gap:10px; align-items:flex-start; font-size:.85rem; color:var(--text);
  background:var(--gold-soft); border:1px solid var(--gold-line); border-radius:var(--r-sm); padding:13px 15px; margin-bottom:12px; cursor:pointer; }
.consent input{ margin-top:3px; flex:none; width:17px; height:17px; accent-color:var(--gold); }
.descriptor-note{ display:flex; align-items:center; gap:7px; font-size:.82rem; color:var(--muted); margin:12px 0 0; }
.descriptor-note .ic{ width:15px; height:15px; color:var(--gold); }

/* ===================== CHECKOUT MODAL ===================== */
.rk-modal-ov{ position:fixed; inset:0; background:rgba(5,7,10,.7); backdrop-filter:blur(4px);
  display:flex; align-items:center; justify-content:center; padding:20px; z-index:100; animation:fade .15s ease; }
.rk-modal{ position:relative; background:var(--surface); border:1px solid var(--line-2); border-radius:var(--r-lg); max-width:440px; width:100%;
  padding:34px; box-shadow:var(--sh-3); animation:pop .18s ease; color:var(--text); }
.rk-modal h3{ color:var(--bone); }
.rk-modal-x{ position:absolute; top:12px; right:14px; background:none; border:0; font-size:1.6rem; line-height:1;
  color:var(--muted); cursor:pointer; }
.rk-modal-x:hover{ color:var(--bone); }
@keyframes fade{ from{opacity:0} to{opacity:1} }
@keyframes pop{ from{opacity:0; transform:translateY(10px) scale(.98)} to{opacity:1; transform:none} }

/* ===================== FOOTER (dark) ===================== */
.site-footer{ background:#0A0C10; color:var(--muted); padding:clamp(56px,7vw,84px) 0 36px; border-top:1px solid var(--gold-line); }
.site-footer a{ color:var(--text); }
.site-footer a:hover{ color:var(--gold-bright); }
.footer-grid{ display:grid; gap:34px; }
@media(min-width:760px){ .footer-grid{ grid-template-columns:2fr 1fr 1fr 1.2fr; } }
.site-footer h4{ color:var(--bone); font-family:var(--font-logo); font-size:.78rem; letter-spacing:.14em; text-transform:uppercase; margin-bottom:16px; }
.footer-links{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:11px; }
.footer-links a{ font-size:.95rem; }
.footer-brand .brand-logo{ height:120px; width:auto; margin-bottom:16px; }
.footer-bottom{ border-top:1px solid var(--line); margin-top:44px; padding-top:24px;
  display:flex; flex-wrap:wrap; gap:12px; justify-content:space-between; font-size:.85rem; color:var(--muted-2); }
.disclaimer{ font-size:.82rem; color:var(--muted-2); max-width:680px; line-height:1.65; }

/* ---- utilities ---- */
.mt-0{margin-top:0} .mt-1{margin-top:8px} .mt-2{margin-top:16px} .mt-3{margin-top:24px} .mt-4{margin-top:32px}
.mb-0{margin-bottom:0} .stack>*+*{ margin-top:14px; }
.flex{ display:flex; } .gap{ gap:14px; } .wrap-flex{ flex-wrap:wrap; } .items-center{ align-items:center; }
.hide{ display:none; }

/* =========================================================================
   SCROLL REVEAL — fade-up, once, staggered. Gated by html.anim.
   ========================================================================= */
@media (prefers-reduced-motion: no-preference){
  html.anim .hero h1, html.anim .hero .lead, html.anim .hero .pill, html.anim .hero .hero-cta,
  html.anim .section .eyebrow, html.anim .section h2, html.anim .section .lead,
  html.anim .card, html.anim .feature, html.anim .tier, html.anim .product-card, html.anim .member-banner,
  html.anim .step, html.anim .trust-item, html.anim .cta-banner, html.anim .faq details, html.anim .pd-grid > *{
    opacity:0; transform:translateY(18px);
    transition:opacity .6s var(--ease), transform .6s var(--ease);
  }
  html.anim .is-visible{ opacity:1 !important; transform:none !important; }
}

/* ---- Respect reduced motion globally ---- */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important;
    transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

/* ---- Card hover lift ---- */
.card:not(.feature), .tier, .member-banner, .product-card{
  transition:transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease); }
.card:not(.feature):hover, .member-banner:hover{ transform:translateY(-4px); box-shadow:var(--sh-2); border-color:var(--gold-line); }
.product-card:hover{ transform:translateY(-5px); box-shadow:var(--sh-2); border-color:var(--gold-line); }
.product-card:hover .cover{ border-color:var(--gold-line); }
.product-card:hover .cover .cic{ transform:scale(1.08); }
.tier:hover{ transform:translateY(-4px); box-shadow:var(--sh-2); border-color:var(--gold-line); }
.tier--featured:hover{ transform:translateY(-8px); box-shadow:var(--glow); }

/* =========================================================================
   MOTION / ANIMATION LAYER  ·  Midnight Capital
   Tasteful, cohesive, motion-safe (the reduced-motion block below disables it).
   ========================================================================= */

/* ---- Scroll progress bar (gold) ---- */
.scroll-prog{ position:fixed; top:0; left:0; height:3px; width:0;
  background:linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-bright));
  box-shadow:0 0 12px rgba(199,162,78,.6); z-index:60; transition:width .12s linear; }

/* ---- Hero: breathing gold glow + mouse parallax position ---- */
.hero{ --gx:50%; }
.hero::before{ content:""; position:absolute; inset:-12% 0 auto 0; height:78%; z-index:0; pointer-events:none;
  background:radial-gradient(700px 360px at var(--gx) -10%, rgba(199,162,78,.22), transparent 62%);
  animation:heroBreathe 9s var(--ease) infinite; }
.hero .wrap{ position:relative; z-index:1; }
@keyframes heroBreathe{ 0%,100%{ opacity:.72; } 50%{ opacity:1; } }

/* ---- Hero accent word: shimmering gold gradient text ---- */
.hero h1 span{ font-style:italic;
  background:linear-gradient(100deg, var(--gold) 18%, #F6E2A8 50%, var(--gold) 82%);
  background-size:220% auto; -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; color:transparent;
  animation:goldShimmer 5s linear infinite; }
@keyframes goldShimmer{ to{ background-position:220% center; } }

/* ---- Hero gold rule: draw-in on load ---- */
@media (prefers-reduced-motion: no-preference){
  html.anim .hero h1::after{ width:0; animation:ruleGrow 1s var(--ease) .35s forwards; }
}
@keyframes ruleGrow{ from{ width:0; opacity:0; } to{ width:84px; opacity:1; } }

/* ---- Primary/gold buttons: light sheen sweep on hover ---- */
.btn--primary, .btn--gold{ position:relative; overflow:hidden; }
.btn--primary::before, .btn--gold::before{ content:""; position:absolute; top:0; bottom:0; left:-60%; width:55%;
  background:linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent);
  transform:skewX(-18deg); transition:left .6s var(--ease); pointer-events:none; }
.btn--primary:hover::before, .btn--gold:hover::before{ left:135%; }

/* ---- Featured tier: gentle glow pulse + crisp numerals ---- */
.tier--featured{ animation:featuredPulse 4.5s var(--ease) infinite; }
@keyframes featuredPulse{
  0%,100%{ box-shadow:0 0 0 1px var(--gold-line), 0 18px 52px -28px rgba(199,162,78,.4); }
  50%    { box-shadow:0 0 0 1px rgba(199,162,78,.5), 0 26px 70px -24px rgba(199,162,78,.6); } }
.tier-price, .pd-price, .member-banner .price, .product-card .price{ font-variant-numeric:tabular-nums; }
.count-target{ font-variant-numeric:tabular-nums; }

/* ---- Icon micro-motion ---- */
.feature:hover .fic .ic{ transform:scale(1.08); transition:transform .32s var(--ease); }
.step .num{ transition:transform .32s var(--ease), border-color .32s var(--ease), color .2s; }
.step:hover .num{ transform:translateY(-3px) rotate(-6deg); border-color:var(--gold); color:var(--gold-bright); }
.trust-item{ transition:color .25s var(--ease); }
.trust-item:hover{ color:var(--bone); }
.trust-item:hover .ic{ color:var(--gold-bright); }
.pill{ transition:transform .32s var(--ease), border-color .32s var(--ease); }
.pill:hover{ transform:translateY(-1px); border-color:var(--gold); }

/* ---- FAQ marker spin ---- */
.faq summary::after{ transition:transform .25s var(--ease), color .2s; }
.faq details[open] summary::after{ transform:rotate(180deg); }
.faq summary:hover{ color:var(--gold-bright); }

/* ---- Richer reveal: fade + slight rise & scale, staggered (cards) ---- */
@media (prefers-reduced-motion: no-preference){
  html.anim .card, html.anim .tier, html.anim .product-card, html.anim .member-banner, html.anim .feature, html.anim .step{
    transform:translateY(22px) scale(.985); }
  html.anim .hero .pill{ transform:translateY(10px); }
  html.anim .is-visible{ opacity:1 !important; transform:none !important; }
}

/* ---- Mobile refinements ---- */
@media (max-width:939px){
  .nav-cta .btn{ display:none; }            /* declutter the header; nav lives in the menu */
}
@media (max-width:560px){
  .hero-cta{ flex-direction:column; align-items:stretch; }
  .hero-cta .btn{ width:100%; justify-content:center; }
}
