:root {
  --navy: #06152e;
  --navy-2: #0a244c;
  --blue: #123f86;
  --royal: #1d5bbf;
  --gold: #d8ae55;
  --gold-light: #f3d68a;
  --gold-dark: #9c7022;
  --ivory: #fffaf0;
  --cream: #f8f1e2;
  --paper: #f3f6fb;
  --ink: #0c1a31;
  --muted: #607089;
  --line: #d8dfeb;
  --sans: "Manrope", Arial, sans-serif;
  --display: "Space Grotesk", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: white; font-family: var(--sans); font-size: 16px; line-height: 1.6; }
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
.skip-link { position: fixed; z-index: 100; top: 1rem; left: 1rem; padding: .7rem 1rem; transform: translateY(-150%); background: white; color: var(--navy); }
.skip-link:focus { transform: translateY(0); }
.demo-bar { position: relative; z-index: 30; padding: .5rem 1.25rem; background: #071B33; color: #d8dfeb; font-size: .75rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.demo-bar-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; gap: 1rem; flex-wrap: wrap; }
.demo-bar strong { color: #fff; }
.demo-bar a { color: var(--gold-light); font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: .25rem; }
.demo-bar a:hover { text-decoration: underline; color: #fff; }

.site-header { position: absolute; z-index: 20; top: 2.65rem; left: 0; width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.5rem clamp(1.25rem, 6vw, 6rem); color: white; }
.brand { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--display); font-size: 1.1rem; font-weight: 700; letter-spacing: .09em; text-decoration: none; }
.brand > span { display: grid; place-items: center; width: 2rem; aspect-ratio: 1; border: 1px solid rgba(243,214,138,.6); border-radius: .55rem; background: linear-gradient(145deg, var(--gold-light), var(--gold-dark)); color: var(--navy); box-shadow: inset 0 1px rgba(255,255,255,.55); }
.brand small { color: rgba(255,255,255,.55); font-size: .55rem; letter-spacing: .13em; }
.site-header nav { display: flex; gap: 2rem; }
.site-header nav a { color: rgba(255,255,255,.78); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.site-header nav a:hover { color: white; }
.header-cta { padding: .65rem 1rem; border: 1px solid rgba(243,214,138,.6); border-radius: 999px; color: var(--gold-light); font-size: .75rem; font-weight: 800; text-decoration: none; text-transform: uppercase; letter-spacing: .08em; }
.header-cta:hover { background: var(--gold); color: var(--navy); }

.hero { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; min-height: 850px; padding: 9.5rem clamp(1.25rem, 6vw, 6rem) 5.5rem; overflow: hidden; background: radial-gradient(circle at 82% 25%, #163c76 0, var(--navy-2) 24%, var(--navy) 62%); color: white; }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to bottom, transparent, black 28%, transparent); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .65; }
.hero-glow-one { width: 560px; height: 560px; right: -140px; top: 40px; background: radial-gradient(circle, rgba(29,91,191,.58), transparent 68%); }
.hero-glow-two { width: 420px; height: 420px; left: -220px; bottom: -120px; background: radial-gradient(circle, rgba(216,174,85,.32), transparent 70%); }
.hero-copy, .hero-product { position: relative; z-index: 2; }
.hero-copy { max-width: 720px; }
.eyebrow { display: flex; align-items: center; gap: .7rem; margin: 0 0 1.2rem; color: var(--gold-light); font-size: .75rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 1.8rem; height: 2px; background: currentColor; }
.eyebrow.light { color: var(--gold-light); }
.gold-ribbon { position: relative; display: inline-flex; align-items: center; gap: .7rem; margin: 0 0 1.2rem -1rem; padding: .48rem 1.2rem .48rem 1rem; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); color: var(--navy); box-shadow: 0 10px 28px rgba(0,0,0,.22); font-size: .7rem; letter-spacing: .08em; transform: rotate(-1deg); }
.gold-ribbon::after { content: ""; position: absolute; right: -1.05rem; top: 0; border-top: 1rem solid var(--gold-light); border-bottom: 1rem solid var(--gold-light); border-right: 1.05rem solid transparent; }
.gold-ribbon span { opacity: .72; font-weight: 800; }
.gold-ribbon strong { padding-left: .7rem; border-left: 1px solid rgba(6,21,46,.3); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); line-height: 1.06; }
h1 { max-width: 650px; margin-bottom: 1.5rem; font-size: clamp(3.3rem, 5.15vw, 5.7rem); letter-spacing: -.055em; }
h2 { font-size: clamp(2.6rem, 4.6vw, 5rem); letter-spacing: -.045em; }
h2 em { color: var(--royal); font-style: normal; }
.hero-lead { max-width: 620px; margin-bottom: 1.8rem; color: rgba(255,255,255,.72); font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.hero-points { display: grid; gap: .55rem; margin: 0 0 2rem; padding: 0; list-style: none; }
.hero-points span, .offer-card li span, .audience-grid span { color: var(--gold-light); font-weight: 800; }
.hero-offer { display: flex; align-items: center; gap: 1.4rem; }
.hero-offer > div { display: grid; grid-template-columns: auto auto; align-items: end; gap: 0 .7rem; }
.hero-offer > div small { grid-column: 1 / -1; }
.hero-offer del { color: rgba(255,255,255,.38); font-size: .8rem; }
.hero-offer small, .price small { color: rgba(255,255,255,.58); font-size: .67rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.hero-offer strong { font-family: var(--display); font-size: 2.4rem; line-height: 1; }
.hero-offer strong span { font-family: var(--sans); font-size: .68rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 2rem; min-height: 3.5rem; padding: .85rem 1.3rem; border: 0; border-radius: .7rem; font-size: .8rem; font-weight: 800; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { border: 1px solid #f5db96; background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--navy); box-shadow: 0 12px 34px rgba(216,174,85,.22); }
.button-primary:hover { background: linear-gradient(135deg, #ffe7a7, var(--gold)); box-shadow: 0 15px 40px rgba(216,174,85,.34); }
.button-light { background: white; color: var(--navy); }
.microcopy { margin: .65rem 0 0; color: rgba(255,255,255,.42); font-size: .72rem; }
.hero-product { display: grid; place-items: center; min-height: 620px; align-self: stretch; padding: 2.5rem 0 1.5rem; }
.hero-product::before { content: ""; position: absolute; width: 76%; aspect-ratio: 1; border: 1px solid rgba(216,174,85,.22); border-radius: 50%; box-shadow: 0 0 0 42px rgba(216,174,85,.035), 0 0 0 84px rgba(216,174,85,.025); }
.hero-product img { position: relative; z-index: 2; width: auto; max-width: min(92%, 620px); height: min(68vh, 650px); object-fit: contain; filter: drop-shadow(0 34px 38px rgba(0,0,0,.4)); }
.product-badge { position: absolute; z-index: 4; top: 10%; right: 8%; display: grid; place-items: center; width: 6.6rem; aspect-ratio: 1; border: 1px solid #ffe5a0; border-radius: 50%; background: radial-gradient(circle at 35% 25%, #ffe8a9, var(--gold) 62%, var(--gold-dark)); color: var(--navy); transform: rotate(9deg); box-shadow: 0 14px 35px rgba(0,0,0,.28), inset 0 0 0 5px rgba(255,255,255,.18); }
.product-badge strong { font-family: var(--display); font-size: 1.2rem; line-height: 1; }
.product-badge span { font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.floating-card { position: absolute; z-index: 3; display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: center; padding: .8rem 1rem; border: 1px solid rgba(255,255,255,.15); border-radius: .75rem; background: rgba(8,25,55,.78); backdrop-filter: blur(12px); box-shadow: 0 16px 36px rgba(0,0,0,.2); }
.floating-card span { color: var(--gold-light); font-family: var(--display); font-size: 1.3rem; }
.floating-card strong { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; }
.card-one { left: 3%; bottom: 12%; }
.card-two { right: 3%; bottom: 8%; }

.benefit-strip { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4,1fr); background: white; box-shadow: 0 20px 65px rgba(11,26,57,.09); }
.benefit-strip > div { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 1.7rem clamp(1rem, 2.5vw, 2.5rem); border-right: 1px solid var(--line); }
.benefit-strip > div:last-child { border: 0; }
.benefit-strip span { color: var(--gold-dark); font-family: var(--display); font-weight: 700; }
.benefit-strip p { margin: 0; color: var(--muted); font-size: .78rem; }
.benefit-strip strong { display: block; color: var(--ink); font-size: .9rem; }

.section { padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 7vw, 7rem); }
.section-kicker { margin-bottom: 1rem; color: var(--gold-dark); font-size: .74rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.problem { background: var(--paper); }
.problem-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(3rem, 9vw, 10rem); align-items: end; }
.problem-grid > div > p { max-width: 680px; color: var(--muted); font-size: 1.05rem; }
.pain-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.pain-list li { display: grid; grid-template-columns: 2rem 1fr; gap: .7rem; padding: 1rem 0; border-bottom: 1px solid var(--line); font-weight: 600; }
.pain-list span { color: var(--gold-dark); font-size: 1.5rem; line-height: 1; }

.transformation { display: grid; grid-template-columns: 1fr 1fr; align-items: center; min-height: 700px; padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 7vw, 7rem); background: linear-gradient(135deg, var(--navy-2), #17498f); color: white; overflow: hidden; }
.transformation-copy { max-width: 650px; }
.transformation-copy p:not(.eyebrow) { color: rgba(255,255,255,.74); font-size: 1.05rem; }
.text-link { display: inline-flex; gap: 2rem; padding-bottom: .3rem; border-bottom: 1px solid rgba(255,255,255,.55); text-decoration: none; font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.framework { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding-left: clamp(1rem, 6vw, 7rem); }
.framework div { min-height: 175px; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.4rem; border: 1px solid rgba(255,255,255,.25); border-radius: 1rem; background: rgba(6,20,47,.18); }
.framework div:nth-child(2), .framework div:nth-child(3) { background: white; color: var(--navy); }
.framework span { margin-bottom: auto; color: var(--gold-light); font-family: var(--display); font-weight: 700; }
.framework strong { font-family: var(--display); font-size: 1.5rem; }
.framework small { opacity: .65; }

.curriculum { background: white; }
.curriculum-heading { display: grid; grid-template-columns: .5fr 1fr .65fr; gap: 2rem; align-items: start; margin-bottom: 4rem; }
.curriculum-heading .section-kicker { padding-top: .6rem; }
.curriculum-heading > p:last-child { color: var(--muted); }
.module-list { border-top: 1px solid var(--line); }
.module { display: grid; grid-template-columns: 4rem 1fr 8rem; gap: 2rem; align-items: center; padding: 1.6rem 0; border-bottom: 1px solid var(--line); transition: padding .25s ease, background .25s ease; }
.module:hover { padding-left: 1rem; padding-right: 1rem; background: var(--paper); }
.module > span { color: var(--gold-dark); font-family: var(--display); font-weight: 700; }
.module h3 { margin-bottom: .35rem; font-size: clamp(1.35rem, 2.2vw, 2rem); }
.module p { margin: 0; color: var(--muted); }
.module small { justify-self: end; color: var(--muted); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }

.bonuses { background: var(--cream); }
.bonuses-heading { max-width: 800px; margin-bottom: 4rem; }
.bonus-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.3rem; }
.bonus { position: relative; min-height: 390px; display: flex; flex-direction: column; padding: 1.7rem; border: 1px solid #e5dfd4; border-radius: 1rem; background: white; }
.bonus.featured { background: var(--navy); color: white; transform: translateY(-1rem); box-shadow: 0 24px 60px rgba(6,20,47,.18); }
.bonus-number { color: var(--gold-dark); font-size: .7rem; font-weight: 800; letter-spacing: .13em; }
.featured .bonus-number { color: var(--gold-light); }
.bonus-icon { display: grid; place-items: center; width: 4rem; aspect-ratio: 1; margin: 3.5rem 0 2rem; border: 1px solid #ead8b2; border-radius: 1rem; background: var(--ivory); color: var(--gold-dark); font-family: var(--display); font-size: 1.4rem; font-weight: 700; transform: rotate(-5deg); }
.featured .bonus-icon { background: linear-gradient(145deg, var(--gold-light), var(--gold)); color: var(--navy); }
.corner-ribbon { position: absolute; top: 1.15rem; right: -0.45rem; padding: .42rem .95rem .42rem 1.25rem; background: linear-gradient(90deg, var(--gold), var(--gold-light)); color: var(--navy); font-size: .63rem; font-weight: 900; letter-spacing: .09em; box-shadow: 0 8px 22px rgba(0,0,0,.2); }
.corner-ribbon::after { content: ""; position: absolute; right: 0; bottom: -.45rem; border-top: .45rem solid #7f5817; border-right: .45rem solid transparent; }
.bonus h3 { font-size: 1.55rem; }
.bonus p { color: var(--muted); }
.featured p { color: rgba(255,255,255,.65); }
.bonus small { margin-top: auto; color: var(--muted); }

.audience { background: white; }
.audience-card { padding: clamp(2rem, 5vw, 5rem); border-radius: 1.5rem; background: var(--paper); text-align: center; }
.audience-card h2 { max-width: 920px; margin-left: auto; margin-right: auto; }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; max-width: 850px; margin: 3rem auto 0; text-align: left; }
.audience-grid p { display: grid; grid-template-columns: 1.5rem 1fr; margin: 0; padding: 1rem; border-radius: .7rem; background: white; font-weight: 600; }

.offer { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(3rem, 8vw, 9rem); background: var(--navy); color: white; }
.offer-product { position: relative; display: grid; place-items: center; }
.offer-product img { max-height: 680px; filter: drop-shadow(0 35px 35px rgba(0,0,0,.35)); }
.offer-seal { position: absolute; z-index: 3; top: 6%; left: 4%; display: grid; place-items: center; width: 7.5rem; aspect-ratio: 1; border: 1px solid #ffe8a8; border-radius: 50%; background: radial-gradient(circle at 35% 25%, #ffe8a8, var(--gold) 62%, var(--gold-dark)); color: var(--navy); text-align: center; transform: rotate(-9deg); box-shadow: 0 18px 38px rgba(0,0,0,.28), inset 0 0 0 5px rgba(255,255,255,.18); }
.offer-seal strong { font-family: var(--display); font-size: 1.45rem; line-height: 1; }
.offer-seal span { max-width: 5.6rem; font-size: .63rem; font-weight: 900; line-height: 1.2; text-transform: uppercase; }
.offer-card { position: relative; padding: clamp(2rem, 4vw, 4rem); border: 1px solid rgba(216,174,85,.34); border-radius: 1.3rem; background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035)); box-shadow: 0 28px 70px rgba(0,0,0,.2); }
.offer-ribbon { margin: -1rem -1rem 2rem; padding: .65rem 1rem; border: 1px solid #f8dd97; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark)); color: var(--navy); text-align: center; font-size: .68rem; font-weight: 900; letter-spacing: .12em; }
.offer-card h2 { margin-bottom: .5rem; }
.offer-subtitle { color: rgba(255,255,255,.63); }
.offer-card ul { display: grid; gap: .8rem; margin: 2rem 0; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); list-style: none; }
.offer-card li { display: grid; grid-template-columns: 1.5rem 1fr; }
.price { display: grid; grid-template-columns: 1fr auto; align-items: end; margin-bottom: 1.5rem; }
.price small { grid-column: 1/-1; }
.price strong { font-family: var(--display); font-size: clamp(3.5rem, 6vw, 6rem); line-height: 1; letter-spacing: -.06em; }
.price > span { padding-bottom: .5rem; color: rgba(255,255,255,.55); font-size: .75rem; }
.offer-card .button { width: 100%; }
.safe-note { margin: .8rem 0 0; color: rgba(255,255,255,.45); text-align: center; font-size: .72rem; }

.faq { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(3rem, 9vw, 10rem); background: white; }
.faq-heading { position: sticky; top: 2rem; align-self: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.4rem 0; cursor: pointer; font-family: var(--display); font-size: 1.12rem; font-weight: 600; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { color: var(--gold-dark); font-size: 1.4rem; transition: transform .2s; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 690px; padding: 0 2rem 1.4rem 0; color: var(--muted); }

.final-cta { position: relative; display: grid; place-items: center; min-height: 620px; padding: 5rem 1.25rem; overflow: hidden; background: linear-gradient(135deg, #0b2b5b, #17498f); color: white; text-align: center; }
.final-cta > div:not(.final-cta-glow) { position: relative; z-index: 2; max-width: 1000px; }
.final-cta h2 { font-size: clamp(3rem, 6vw, 6.5rem); }
.final-cta .eyebrow { justify-content: center; }
.final-cta-glow { position: absolute; width: 650px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(216,174,85,.4), transparent 64%); }

footer { display: grid; grid-template-columns: 1fr 1fr 2fr auto; gap: 2rem; align-items: center; padding: 2rem clamp(1.25rem, 6vw, 6rem); background: #030b1c; color: rgba(255,255,255,.45); font-size: .72rem; }
footer p { margin: 0; }
.footer-brand { color: white; }

.mobile-buy { display: none; }
.demo-modal { width: min(520px, calc(100% - 2rem)); padding: 2.2rem; border: 0; border-radius: 1.2rem; color: var(--ink); box-shadow: 0 30px 90px rgba(0,0,0,.35); }
.demo-modal::backdrop { background: rgba(3,11,28,.8); backdrop-filter: blur(4px); }
.demo-modal h2 { margin-bottom: 1rem; font-size: 2.4rem; }
.demo-modal > p:not(.section-kicker) { color: var(--muted); }
.modal-close { position: absolute; top: 1rem; right: 1rem; border: 0; background: transparent; font-size: 1.8rem; cursor: pointer; }
.modal-icon { display: grid; place-items: center; width: 3.5rem; aspect-ratio: 1; margin-bottom: 1.5rem; border-radius: .8rem; background: var(--navy); color: white; font-family: var(--display); font-weight: 700; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 950px) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 10rem; }
  .hero-product { min-height: 530px; padding-top: 1.5rem; }
  .hero-product img { height: min(62vh, 590px); }
  .benefit-strip { grid-template-columns: 1fr 1fr; }
  .benefit-strip > div:nth-child(2) { border-right: 0; }
  .problem-grid, .transformation, .offer, .faq { grid-template-columns: 1fr; }
  .curriculum-heading { grid-template-columns: 1fr; gap: .6rem; }
  .framework { padding: 3rem 0 0; }
  .bonus-grid { grid-template-columns: 1fr; }
  .bonus, .bonus.featured { min-height: 0; transform: none; }
  .bonus-icon { margin: 2rem 0 1.2rem; }
  .faq-heading { position: static; }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  body { padding-bottom: 4.6rem; }
  .demo-bar { font-size: .61rem; }
  .site-header { top: 2.45rem; padding: 1.1rem 1.25rem; }
  .header-cta { display: none; }
  .hero { min-height: 0; padding: 9rem 1.25rem 3.5rem; }
  h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .hero-offer { align-items: stretch; flex-direction: column; }
  .hero-offer > div { grid-template-columns: 1fr auto; align-items: end; }
  .hero-offer > div small { grid-column: 1/-1; }
  .hero-product { min-height: 400px; margin-top: 2rem; padding: 1rem 0; }
  .hero-product img { width: min(94%, 410px); max-width: 100%; height: auto; max-height: 470px; }
  .product-badge { top: 4%; width: 5.4rem; right: 0; }
  .floating-card { display: none; }
  .benefit-strip { grid-template-columns: 1fr; }
  .benefit-strip > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .section, .transformation { padding: 4.5rem 1.25rem; }
  h2 { font-size: clamp(2.5rem, 12vw, 3.8rem); }
  .framework { grid-template-columns: 1fr; }
  .framework div { min-height: 145px; }
  .module { grid-template-columns: 2.5rem 1fr; gap: 1rem; }
  .module small { display: none; }
  .audience-card { padding: 2rem 1rem; }
  .audience-grid { grid-template-columns: 1fr; }
  .offer { padding-bottom: 5rem; }
  .offer-card { padding: 1.5rem; }
  .offer-product img { max-height: 470px; }
  .final-cta { min-height: 520px; }
  footer { grid-template-columns: 1fr; padding-bottom: 2.5rem; }
  .mobile-buy { position: fixed; z-index: 30; left: 0; right: 0; bottom: 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .7rem 1rem; background: white; box-shadow: 0 -10px 30px rgba(6,20,47,.13); }
  .mobile-buy div { display: grid; line-height: 1.1; }
  .mobile-buy small { color: var(--muted); font-size: .62rem; }
  .mobile-buy strong { color: var(--navy); font-family: var(--display); font-size: 1.35rem; }
  .mobile-buy button { padding: .75rem 1rem; border: 1px solid #e8c46f; border-radius: .6rem; background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--navy); font-size: .73rem; font-weight: 800; text-transform: uppercase; }
}

@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; }
}
