:root {
  --purple: #311e33;
  --purple-deep: #211323;
  --purple-soft: #5a365d;
  --gold: #eebd4a;
  --gold-light: #f7d983;
  --cream: #f8f5ef;
  --white: #fffdf9;
  --mist: #eee7ee;
  --ink: #241a25;
  --muted: #726873;
  --border: rgba(49, 30, 51, 0.12);
  --shadow: 0 24px 70px rgba(31, 16, 33, 0.16);
  --shadow-soft: 0 16px 42px rgba(31, 16, 33, 0.10);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--gold); color: var(--purple-deep); }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 112px 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 9999; transform: translateY(-160%);
  background: var(--gold); color: var(--purple-deep); padding: 12px 16px; border-radius: 8px;
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.page-progress {
  position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 1001; pointer-events: none;
  background: transparent;
}
.page-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
  background: rgba(33, 19, 35, .91);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 35px rgba(20, 10, 22, .18);
}
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--white); letter-spacing: .12em; }
.brand img { width: 50px; height: 50px; object-fit: contain; }
.brand > span { display: flex; flex-direction: column; font-family: var(--serif); font-size: 18px; font-weight: 700; line-height: .92; }
.brand small { font-family: var(--sans); color: var(--gold); font-size: 9px; letter-spacing: .48em; margin-top: 7px; }
.primary-nav { display: flex; align-items: center; gap: 28px; color: rgba(255,255,255,.86); font-size: 13px; font-weight: 600; }
.primary-nav > a:not(.button) { position: relative; padding: 8px 0; }
.primary-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; bottom: 2px; width: 0; height: 1px; background: var(--gold); transition: width .2s ease; }
.primary-nav > a:not(.button):hover::after { width: 100%; }
.menu-button { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); border-radius: 12px; padding: 11px; }
.menu-button > span:not(.sr-only) { display: block; height: 2px; background: var(--white); margin: 4px 0; border-radius: 2px; }

.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 56px;
  padding: 0 26px; border-radius: 999px; border: 1px solid transparent;
  font-size: 13px; font-weight: 700; letter-spacing: .015em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold {
  color: var(--purple-deep); background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 14px 32px rgba(238, 189, 74, .25), inset 0 1px 0 rgba(255,255,255,.7);
}
.button-gold:hover { box-shadow: 0 18px 38px rgba(238, 189, 74, .34), inset 0 1px 0 rgba(255,255,255,.75); }
.button-small { min-height: 44px; padding-inline: 19px; font-size: 12px; }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--white); font-size: 13px; font-weight: 600; }
.text-link span { color: var(--gold); transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.eyebrow {
  display: flex; align-items: center; gap: 12px; margin: 0 0 20px;
  color: var(--gold-light); font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
}
.eyebrow span { width: 28px; height: 1px; background: var(--gold); }
.eyebrow-dark { color: var(--purple-soft); }
.eyebrow-dark span { background: var(--gold); }

.hero {
  position: relative; min-height: 850px; display: flex; flex-direction: column; justify-content: center;
  overflow: hidden; color: var(--white); background:
    radial-gradient(circle at 75% 30%, rgba(238,189,74,.12), transparent 30%),
    radial-gradient(circle at 18% 70%, rgba(117,70,120,.36), transparent 33%),
    linear-gradient(135deg, var(--purple-deep) 0%, var(--purple) 48%, #3d2340 100%);
  padding: 142px 0 56px;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0; height: 160px;
  background: linear-gradient(to top, rgba(20,11,21,.22), transparent); pointer-events: none;
}
.hero-noise {
  position: absolute; inset: 0; opacity: .11; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E");
}
.hero-orbit { position: absolute; border: 1px solid rgba(238,189,74,.16); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 680px; height: 680px; right: -170px; top: 70px; }
.orbit-two { width: 420px; height: 420px; right: -20px; top: 200px; border-color: rgba(255,255,255,.08); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 72px; }
.hero-copy h1 {
  margin: 0; max-width: 720px; font-family: var(--serif); font-weight: 600; font-size: clamp(58px, 7vw, 98px);
  line-height: .92; letter-spacing: -.035em;
}
.hero-copy h1 em { color: var(--gold-light); font-style: normal; }
.hero-lead { max-width: 660px; margin: 30px 0 0; color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 34px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 28px; color: rgba(255,255,255,.68); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.trust-row i { color: var(--gold); font-style: normal; margin-right: 5px; }
.hero-art { position: relative; min-height: 560px; display: grid; place-items: center; }
.logo-halo { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(238,189,74,.24), rgba(238,189,74,.05) 46%, transparent 70%); filter: blur(6px); }
.hero-logo { position: relative; z-index: 2; width: min(100%, 500px); filter: drop-shadow(0 24px 34px rgba(0,0,0,.34)); animation: float-logo 6s ease-in-out infinite; }
@keyframes float-logo { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }
.hero-card {
  position: absolute; z-index: 3; min-width: 190px; padding: 15px 18px; border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px; background: rgba(255,255,255,.075); backdrop-filter: blur(15px); box-shadow: 0 20px 45px rgba(15,7,16,.18);
}
.hero-card strong { display: block; color: var(--gold-light); font-family: var(--serif); font-size: 22px; line-height: 1; }
.hero-card span { display: block; margin-top: 5px; color: rgba(255,255,255,.66); font-size: 10px; text-transform: uppercase; letter-spacing: .07em; }
.hero-card-one { left: 4%; top: 17%; }
.hero-card-two { right: 0; bottom: 13%; }
.hero-footnote { position: relative; z-index: 2; margin-top: 40px; color: rgba(255,255,255,.45); font-family: var(--serif); font-size: 22px; letter-spacing: .11em; text-align: center; }

.trust-band { background: #251527; color: rgba(255,255,255,.72); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.trust-band-inner { min-height: 74px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 16px 24px; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; }
.trust-band-inner i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.questions-section { background: var(--cream); }
.split-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }
.section-kicker { color: var(--purple-soft); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; padding-top: 13px; }
.section-copy h2, .section-heading h2, .difference-copy h2, .access-copy h2, .faq-heading h2, .final-cta h2 {
  margin: 0; font-family: var(--serif); color: var(--purple); font-weight: 600; line-height: .98; letter-spacing: -.025em;
}
.section-copy h2 { max-width: 820px; font-size: clamp(48px, 5vw, 74px); }
.section-copy > p { max-width: 760px; color: var(--muted); font-size: 16px; }
.question-list { display: grid; gap: 0; margin: 34px 0; border-top: 1px solid var(--border); }
.question-list p { margin: 0; padding: 19px 0; border-bottom: 1px solid var(--border); font-family: var(--serif); color: var(--purple); font-size: 28px; line-height: 1.25; }
.accent-copy { color: var(--purple) !important; font-weight: 600; }

.guides-section { background: var(--white); }
.section-heading { max-width: 740px; margin: 0 auto 58px; }
.section-heading.centered { text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2 { font-size: clamp(48px, 5vw, 72px); }
.section-heading > p:not(.eyebrow) { margin: 18px auto 0; color: var(--muted); font-size: 15px; }
.guide-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.guide-card {
  position: relative; min-height: 330px; padding: 34px 26px; overflow: hidden;
  border: 1px solid var(--border); border-radius: var(--radius-md); background: linear-gradient(180deg, #fff, #fbf8f4);
  box-shadow: 0 14px 35px rgba(39, 22, 41, .05); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.guide-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-soft); border-color: rgba(238,189,74,.58); }
.guide-card::after { content: ""; position: absolute; inset: auto -60px -80px auto; width: 150px; height: 150px; border-radius: 50%; background: rgba(238,189,74,.08); }
.guide-number { color: rgba(49,30,51,.28); font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.guide-icon { width: 52px; height: 52px; display: grid; place-items: center; margin-top: 42px; border: 1px solid rgba(238,189,74,.65); border-radius: 50%; color: var(--gold); font-family: var(--serif); font-size: 27px; }
.guide-card h3 { margin: 23px 0 10px; color: var(--purple); font-family: var(--serif); font-size: 28px; line-height: 1.04; }
.guide-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.centered-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 42px; }
.centered-cta span { color: var(--muted); font-size: 11px; }

.difference-section { background: var(--cream); }
.difference-layout { display: grid; grid-template-columns: .93fr 1.07fr; gap: 84px; align-items: center; }
.difference-visual { position: relative; }
.difference-visual::before { content: ""; position: absolute; inset: -28px 32px 32px -28px; border: 1px solid rgba(238,189,74,.5); border-radius: var(--radius-lg); }
.editorial-card {
  position: relative; min-height: 540px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 54px; border-radius: var(--radius-lg); color: var(--white); overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(238,189,74,.14), transparent 30%),
    linear-gradient(145deg, #29162b, #48294b);
  box-shadow: var(--shadow);
}
.editorial-card::after { content: ""; position: absolute; width: 370px; height: 370px; right: -120px; top: -100px; border: 1px solid rgba(238,189,74,.20); border-radius: 50%; }
.editorial-label { position: absolute; top: 42px; left: 46px; color: var(--gold-light); font-size: 10px; letter-spacing: .24em; font-weight: 700; }
.editorial-card blockquote { position: relative; z-index: 1; margin: 0; font-family: var(--serif); font-size: clamp(42px, 4vw, 60px); line-height: .98; }
.editorial-rule { width: 60px; height: 1px; margin: 30px 0 20px; background: var(--gold); }
.editorial-card p { position: relative; z-index: 1; max-width: 350px; margin: 0; color: rgba(255,255,255,.65); font-size: 13px; }
.difference-copy h2 { font-size: clamp(46px, 5vw, 70px); }
.difference-copy .lead { color: var(--purple); font-family: var(--serif); font-size: 25px; line-height: 1.35; }
.feature-list { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 18px; }
.feature-list li { display: flex; align-items: flex-start; gap: 14px; }
.feature-list li > span { flex: 0 0 28px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: rgba(238,189,74,.16); color: #ad7910; font-size: 13px; font-weight: 800; }
.feature-list strong { display: block; color: var(--purple); font-size: 13px; }
.feature-list small { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; }

.steps-section { background: var(--purple); color: var(--white); }
.section-heading.compact { max-width: 650px; margin: 0 0 52px; }
.section-heading.compact h2 { color: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.step-card { padding: 36px; border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius-md); background: rgba(255,255,255,.045); }
.step-card > span { color: var(--gold); font-family: var(--serif); font-size: 46px; }
.step-card h3 { margin: 22px 0 9px; font-family: var(--serif); font-size: 29px; }
.step-card p { margin: 0; color: rgba(255,255,255,.62); font-size: 13px; }

.access-section { position: relative; overflow: hidden; background: linear-gradient(180deg, #fffdf9, #f5eff5); }
.access-glow { position: absolute; width: 540px; height: 540px; left: -200px; bottom: -270px; border-radius: 50%; background: radial-gradient(circle, rgba(238,189,74,.22), transparent 68%); }
.access-layout { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 78px; align-items: center; }
.access-copy h2 { font-size: clamp(50px, 5vw, 76px); }
.access-copy > p:not(.eyebrow) { max-width: 560px; color: var(--muted); font-size: 15px; }
.included-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin-top: 32px; }
.included-list span { position: relative; padding-left: 23px; color: var(--purple); font-size: 12px; font-weight: 600; }
.included-list span::before { content: "✓"; position: absolute; left: 0; color: #b27f17; }
.signup-card { padding: 44px; border: 1px solid rgba(238,189,74,.45); border-radius: var(--radius-lg); background: rgba(255,255,255,.88); box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.gift-label { color: #9c6a06; font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.signup-heading h2 { margin: 8px 0 8px; font-family: var(--serif); color: var(--purple); font-size: 43px; line-height: 1; }
.signup-heading p { margin: 0; color: var(--muted); font-size: 12px; }
.omnisend-shell { position: relative; min-height: 260px; margin-top: 26px; }
.omnisend-loading { position: absolute; inset: 0; display: grid; place-items: center; align-content: center; gap: 12px; color: var(--muted); font-size: 12px; transition: opacity .2s ease, visibility .2s ease; }
.omnisend-loading span { width: 34px; height: 34px; border: 2px solid rgba(49,30,51,.13); border-top-color: var(--gold); border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.omnisend-shell.is-ready .omnisend-loading { opacity: 0; visibility: hidden; }
.omnisend-shell.is-unconfigured .omnisend-loading span { display: none; }
.omnisend-shell.is-unconfigured .omnisend-loading { position: static; min-height: 180px; padding: 24px; border: 1px dashed rgba(49,30,51,.2); border-radius: 16px; text-align: center; }
.omnisend-shell input, .omnisend-shell select, .omnisend-shell textarea {
  min-height: 52px !important; border: 1px solid rgba(49,30,51,.14) !important; border-radius: 12px !important;
  background: #fff !important; color: var(--ink) !important; font-family: var(--sans) !important;
}
.omnisend-shell button, .omnisend-shell [type="submit"] {
  min-height: 54px !important; border: 0 !important; border-radius: 999px !important;
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important; color: var(--purple-deep) !important;
  font-family: var(--sans) !important; font-weight: 800 !important;
}
.privacy-mini { display: flex; gap: 10px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border); color: var(--muted); }
.privacy-mini span { color: var(--gold); font-size: 9px; margin-top: 5px; }
.privacy-mini p { margin: 0; font-size: 9px; line-height: 1.65; }

.faq-section { background: var(--cream); }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 88px; align-items: start; }
.faq-heading h2 { font-size: clamp(46px, 5vw, 68px); }
.faq-list { border-top: 1px solid var(--border); }
details { border-bottom: 1px solid var(--border); }
summary { position: relative; list-style: none; padding: 24px 48px 24px 0; cursor: pointer; color: var(--purple); font-family: var(--serif); font-size: 25px; font-weight: 600; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 0; top: 21px; width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid rgba(49,30,51,.15); border-radius: 50%; font-family: var(--sans); font-size: 17px; }
details[open] summary::after { content: "−"; }
details p { max-width: 700px; margin: -6px 0 24px; color: var(--muted); font-size: 13px; }

.final-cta { padding: 42px 0; background: #241426; color: var(--white); border-top: 1px solid rgba(255,255,255,.06); }
.final-cta-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.final-cta img { width: 88px; height: 88px; object-fit: contain; }
.final-cta p { margin: 0 0 6px; color: var(--gold); font-size: 9px; letter-spacing: .18em; font-weight: 700; }
.final-cta h2 { color: var(--white); font-size: 40px; }

.site-footer { background: #1b0f1d; color: rgba(255,255,255,.66); }
.footer-main { min-height: 230px; display: grid; grid-template-columns: .75fr 1.25fr .7fr; gap: 60px; align-items: center; }
.footer-brand { display: inline-flex; align-items: center; gap: 14px; color: var(--white); }
.footer-brand img { width: 74px; height: 74px; object-fit: contain; }
.footer-brand span { display: flex; flex-direction: column; font-family: var(--serif); line-height: .9; letter-spacing: .09em; }
.footer-brand strong { font-size: 21px; }
.footer-brand small { margin-top: 8px; color: var(--gold); font-family: var(--sans); font-size: 9px; letter-spacing: .45em; }
.footer-main > p { max-width: 510px; margin: 0; font-size: 12px; line-height: 1.8; }
.footer-main nav { display: grid; justify-items: start; gap: 10px; font-size: 11px; font-weight: 600; }
.footer-main nav a:hover { color: var(--gold-light); }
.footer-bottom { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.06); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }

.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Secondary pages */
.subpage { min-height: 100vh; background: var(--cream); }
.subpage-header { padding: 120px 0 70px; color: var(--white); background: linear-gradient(135deg, var(--purple-deep), var(--purple)); }
.subpage-header h1 { max-width: 850px; margin: 18px 0 0; font-family: var(--serif); font-size: clamp(54px, 7vw, 88px); line-height: .95; }
.subpage-content { width: min(840px, calc(100% - 40px)); margin: 0 auto; padding: 80px 0 120px; }
.subpage-content h2 { margin: 48px 0 12px; color: var(--purple); font-family: var(--serif); font-size: 34px; }
.subpage-content p, .subpage-content li { color: var(--muted); font-size: 14px; }
.subpage-content a { color: #91630a; text-decoration: underline; }
.return-link { display: inline-flex; margin-top: 32px; color: var(--purple); font-weight: 700; }

@media (max-width: 1020px) {
  .primary-nav { gap: 18px; }
  .hero-layout, .difference-layout, .access-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-copy { max-width: 760px; }
  .hero-art { min-height: 460px; }
  .guide-grid { grid-template-columns: 1fr 1fr; }
  .split-layout, .faq-layout { grid-template-columns: 1fr; gap: 38px; }
  .difference-visual { max-width: 680px; }
  .access-copy { max-width: 720px; }
  .footer-main { grid-template-columns: 1fr 1.5fr; }
  .footer-main nav { grid-column: 1 / -1; grid-template-columns: repeat(3,auto); }
}

@media (max-width: 780px) {
  :root { --container: min(100% - 28px, 1180px); }
  .section { padding: 82px 0; }
  .site-header { background: rgba(33,19,35,.92); backdrop-filter: blur(18px); }
  .header-inner { min-height: 70px; }
  .brand img { width: 44px; height: 44px; }
  .brand > span { font-size: 16px; }
  .menu-button { display: block; }
  .primary-nav {
    position: absolute; left: 14px; right: 14px; top: 76px; display: none; flex-direction: column; align-items: stretch; gap: 5px;
    padding: 18px; border: 1px solid rgba(255,255,255,.09); border-radius: 18px; background: rgba(33,19,35,.98); box-shadow: var(--shadow);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a { padding: 12px; }
  .hero { padding-top: 118px; }
  .hero-layout { gap: 28px; }
  .hero-copy h1 { font-size: clamp(51px, 15vw, 74px); }
  .hero-lead { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button, .hero-actions .text-link { width: 100%; justify-content: center; }
  .hero-art { min-height: 390px; }
  .hero-logo { width: min(88vw, 410px); }
  .hero-card { min-width: 160px; padding: 12px 14px; }
  .hero-card-one { left: 0; top: 10%; }
  .hero-card-two { right: 0; bottom: 8%; }
  .hero-card strong { font-size: 18px; }
  .hero-footnote { font-size: 16px; letter-spacing: .08em; }
  .trust-band-inner { padding: 18px 0; gap: 10px 14px; }
  .trust-band-inner i { display: none; }
  .trust-band-inner span { width: 46%; text-align: center; }
  .section-copy h2, .section-heading h2, .difference-copy h2, .access-copy h2, .faq-heading h2 { font-size: 48px; }
  .question-list p { font-size: 23px; }
  .guide-grid, .steps-grid, .included-list { grid-template-columns: 1fr; }
  .guide-card { min-height: 260px; }
  .difference-layout { gap: 58px; }
  .editorial-card { min-height: 460px; padding: 38px; }
  .editorial-card blockquote { font-size: 42px; }
  .steps-grid { gap: 14px; }
  .signup-card { padding: 30px 22px; }
  .signup-heading h2 { font-size: 37px; }
  .final-cta-inner { grid-template-columns: auto 1fr; }
  .final-cta .button { grid-column: 1 / -1; }
  .footer-main { grid-template-columns: 1fr; gap: 24px; padding: 52px 0 36px; }
  .footer-main nav { grid-column: auto; grid-template-columns: 1fr; }
  .footer-bottom { padding: 20px 0 82px; flex-direction: column; align-items: flex-start; }
  .mobile-cta {
    position: fixed; z-index: 999; left: 12px; right: 12px; bottom: 12px; display: flex; align-items: center; justify-content: space-between;
    min-height: 58px; padding: 8px 8px 8px 17px; border: 1px solid rgba(238,189,74,.35); border-radius: 18px;
    background: rgba(33,19,35,.96); color: var(--white); box-shadow: 0 16px 42px rgba(20,10,22,.28); backdrop-filter: blur(14px);
    transform: translateY(120%); transition: transform .25s ease;
  }
  .mobile-cta.is-visible { transform: translateY(0); }
  .mobile-cta span { font-size: 11px; font-weight: 700; }
  .mobile-cta a { padding: 10px 15px; border-radius: 12px; background: var(--gold); color: var(--purple-deep); font-size: 11px; font-weight: 800; }
}

@media (max-width: 460px) {
  .hero-card { display: none; }
  .hero-art { min-height: 320px; }
  .hero-footnote { margin-top: 20px; }
  .trust-row { gap: 10px 15px; }
  .trust-band-inner span { width: 100%; }
  .section-copy h2, .section-heading h2, .difference-copy h2, .access-copy h2, .faq-heading h2 { font-size: 42px; }
  .editorial-card { min-height: 420px; padding: 30px; }
  .editorial-card blockquote { font-size: 36px; }
  .final-cta-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .final-cta h2 { font-size: 34px; }
}

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