/* ==========================================================================
   DECODED GLOBAL — "Luxe Decoded" design system
   Palette: night navy #07071A · cream #F7F4EE · gold #C8A15A · amber glass
   Type: Clash Display (display) · Caveat (script accent) · Inter (body)
   ========================================================================== */

:root {
  --navy: #07071A;
  --navy-soft: #0D0D26;
  --navy-glass: rgba(13, 13, 38, 0.72);
  --cream: #F7F4EE;
  --cream-deep: #EFEAE0;
  --gold: #C8A15A;
  --gold-light: #E2C892;
  --gold-deep: #A47F3B;
  --amber: #E8B36A;
  --ink: #07071A;
  --ink-soft: rgba(7, 7, 26, 0.62);
  --ink-faint: rgba(7, 7, 26, 0.38);
  --white-soft: rgba(255, 255, 255, 0.78);
  --white-faint: rgba(255, 255, 255, 0.45);

  --font-d: 'Clash Display', 'Inter', sans-serif;
  --font-s: 'Caveat', cursive;
  --font-b: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --r-band: clamp(40px, 7vw, 96px);
  --r-card: 24px;
  --r-pill: 999px;

  --shadow-card: 0 20px 60px rgba(7, 7, 26, 0.10);
  --shadow-float: 0 30px 80px rgba(7, 7, 26, 0.35);
  --shadow-gold: 0 12px 40px rgba(200, 161, 90, 0.35);

  --wrap: 1200px;
  --pad: clamp(20px, 4vw, 48px);
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--pad); }

::selection { background: var(--gold); color: var(--navy); }

/* ---- Typography ---- */
.d-xxl {
  font-family: var(--font-d);
  font-weight: 600;
  font-size: clamp(3.2rem, 9.2vw, 8rem);
  line-height: 0.97;
  letter-spacing: -0.035em;
}
.d-xl {
  font-family: var(--font-d);
  font-weight: 600;
  font-size: clamp(2.3rem, 5.4vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
}
.d-lg {
  font-family: var(--font-d);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.thin { font-weight: 220; }          /* the eduwerks mixed-weight trick — bigger contrast */
.muted-w { opacity: 0.42; }          /* muted word inside a headline */

.script {
  font-family: var(--font-s);
  font-weight: 600;
  color: var(--gold);
  font-size: 1.22em;
  line-height: 1;
  letter-spacing: 0;
  transform: rotate(-2deg);
  display: inline-block;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); }

.lede { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: var(--ink-soft); max-width: 32em; }
.on-dark .lede { color: var(--white-soft); }

/* Gold hand-drawn squiggles (inline SVGs) */
.squiggle { display: block; }
.squiggle path { stroke: var(--gold); stroke-width: 4; fill: none; stroke-linecap: round; }
.js .squiggle path { stroke-dasharray: var(--len, 300); stroke-dashoffset: var(--len, 300); }
.squiggle.is-drawn path, .no-js .squiggle path { stroke-dashoffset: 0; transition: stroke-dashoffset 1.1s cubic-bezier(.6,0,.2,1) .15s; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 30px;
  border-radius: var(--r-pill);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.97); }
.btn:focus-visible, .pill-nav a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn svg { flex: none; transition: transform .25s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn-gold { background: var(--gold); color: var(--navy); box-shadow: var(--shadow-gold); }
.btn-gold:hover { background: var(--gold-light); }
.btn-ghost { border: 1px solid rgba(255,255,255,.28); color: var(--cream); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-ink { background: var(--navy); color: var(--cream); }
.btn-ink:hover { background: var(--navy-soft); }
.btn-sm { padding: 11px 20px; font-size: 13.5px; }
.btn[disabled] { opacity: .6; cursor: wait; transform: none; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Fixed logo (top-left) ---- */
.brand-fixed {
  position: fixed;
  top: clamp(16px, 2.6vw, 28px);
  left: clamp(16px, 3vw, 36px);
  z-index: 90;
  display: block;
  transition: opacity .3s ease;
}
.brand-fixed img { height: 30px; width: auto; }
.brand-fixed .logo-dark { display: none; }
.on-cream .brand-fixed .logo-dark { display: block; }
.on-cream .brand-fixed .logo-light { display: none; }

/* ---- Floating pill nav (bottom-center, eduwerks-style) ---- */
.pill-nav {
  position: fixed;
  bottom: clamp(14px, 3vh, 28px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 6px;
  border-radius: var(--r-pill);
  background: var(--navy-glass);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-float);
}
.pill-nav a {
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--white-soft);
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}
.pill-nav a:hover { color: #fff; background: rgba(255,255,255,.07); }
.pill-nav a.is-active { color: #fff; background: rgba(255,255,255,.1); }
.pill-nav .pill-cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  margin-left: 4px;
}
.pill-nav .pill-cta:hover { background: var(--gold-light); color: var(--navy); }

/* ==========================================================================
   HERO (dark)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: clamp(90px, 14vh, 140px) var(--pad) clamp(120px, 18vh, 180px);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-media video, .hero-media .hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  transform: scale(1.04);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 46% 34% at 50% 42%, rgba(200,161,90,.14), transparent 68%),
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(7,7,26,0) 0%, rgba(7,7,26,.78) 78%, var(--navy) 100%),
    linear-gradient(to bottom, rgba(7,7,26,.6), rgba(7,7,26,.12) 30%, rgba(7,7,26,.12) 65%, var(--navy) 98%);
}

/* Glass accents (bundle band) */
.glass {
  position: absolute;
  pointer-events: none;
  will-change: transform;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.55)) drop-shadow(0 0 46px rgba(200,161,90,.16));
}
.glass img { width: 100%; height: auto; }

/* Kinetic headline — letters of the bold word rise one by one; the gold
   light-sweep gradient lives on EACH letter (background-clip:text breaks if a
   transformed descendant carries the text). Without JS the word stays white. */
.kinetic { color: #fff; }
.kinetic span.ch {
  display: inline-block;
  will-change: transform;
  background: linear-gradient(105deg,
    #ffffff 0%, #ffffff 38%,
    var(--gold-light) 46%, #fff8e8 50%, var(--gold) 54%,
    #ffffff 62%, #ffffff 100%);
  background-size: 600% 100%;
  background-position: 120% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* idle float for non-hero glass accents (bundle band) — uses the independent
   translate/rotate properties so it composes with GSAP transforms */
@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -16px; }
}
.bundle-band .glass { animation: floaty var(--dur, 7s) ease-in-out infinite; }

.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero h1 { color: #fff; }
.hero h1 .script { font-size: 1.12em; margin: 0 .06em; }
.hero .hero-squiggle { width: clamp(120px, 16vw, 210px); margin: 4px auto 0; }
.hero .lede { margin: 22px auto 0; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

/* Floating proof card */
.hero-proof {
  position: absolute;
  z-index: 2;
  right: clamp(12px, 6vw, 96px);
  bottom: clamp(88px, 16vh, 150px);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-float);
}
.hero-proof img { width: 44px; border-radius: 8px; }
.hero-proof strong { display: block; font-size: 13.5px; color: #fff; font-weight: 600; line-height: 1.3; }
.hero-proof span { font-size: 12px; color: var(--gold-light); }

.hero-scroll-hint {
  position: absolute;
  bottom: clamp(74px, 12vh, 110px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white-faint);
}

/* ==========================================================================
   CREAM SHEET — the big rounded band holding the light sections
   ========================================================================== */
.sheet {
  position: relative;
  z-index: 3;
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--r-band);
  margin-top: calc(-1 * var(--r-band) + 8px);
  box-shadow: 0 -30px 80px rgba(0,0,0,.35);
}
.sheet section { padding: clamp(64px, 9vw, 120px) 0; }
.sheet section + section { padding-top: 0; }

/* ---- Trust strip ---- */
.trust { padding: clamp(36px, 5vw, 56px) 0 !important; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 3vw, 40px);
  border-bottom: 1px solid rgba(7,7,26,.08);
  padding-bottom: clamp(28px, 4vw, 44px);
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--ink-soft); }
.trust-item svg { color: var(--gold-deep); flex: none; }

/* ---- About one-liner ---- */
.about { text-align: center; }
.about h2 { max-width: 15em; margin: 18px auto 0; }
.about .soon { margin-top: 18px; font-size: 15px; color: var(--ink-faint); font-weight: 500; }
.about .soon .script { font-size: 1.35em; margin-right: 2px; }

/* ==========================================================================
   STORE GRID — the centrepiece
   ========================================================================== */
.store-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(28px, 4vw, 44px); }
.store-head .lede { margin-top: 14px; }

.store-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.8vw, 24px);
}

.guide-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .28s ease;
}
.guide-card:hover { transform: translateY(-6px); box-shadow: 0 30px 70px rgba(7,7,26,.16); }
.guide-card .cover { aspect-ratio: 2 / 3; overflow: hidden; background: var(--cream-deep); }
.guide-card .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease-out; }
.guide-card:hover .cover img { transform: scale(1.04); }
.guide-card .meta { display: flex; flex-direction: column; gap: 10px; padding: 16px 16px 18px; flex: 1; }
.guide-card h3 { font-family: var(--font-d); font-weight: 500; font-size: 16.5px; line-height: 1.25; letter-spacing: 0; }
.guide-card .row { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.guide-card .price { font-family: var(--font-d); font-weight: 600; font-size: 19px; }
.guide-card .price small { font-size: 11px; font-weight: 500; color: var(--ink-faint); display: block; letter-spacing: .02em; }

/* Featured flagship card — full-width banner, cover shown at its exact 2:3 ratio (no crop) */
.guide-card--flagship { grid-column: 1 / -1; flex-direction: row; align-items: stretch; background: var(--navy); color: var(--cream); }
.guide-card--flagship .cover { flex: 0 0 clamp(220px, 24vw, 300px); aspect-ratio: 2 / 3; min-height: auto; }
.guide-card--flagship .meta { flex: 1; padding: clamp(24px, 3vw, 48px); gap: 14px; justify-content: center; }
.guide-card--flagship h3 { font-size: clamp(22px, 2.4vw, 32px); color: #fff; max-width: 16em; }
.guide-card--flagship .flag { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.guide-card--flagship p { font-size: 14.5px; color: var(--white-soft); max-width: 44em; }
.guide-card--flagship .stats { font-size: 12.5px; letter-spacing: .06em; color: var(--gold-light); font-weight: 500; }
.guide-card--flagship .price { font-size: 26px; color: var(--gold-light); }
.guide-card--flagship .row { justify-content: flex-start; gap: 26px; margin-top: 12px; }

/* ==========================================================================
   BUNDLE — dark rounded band inside the cream sheet
   ========================================================================== */
.bundle-band {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--r-band);
  padding: clamp(56px, 8vw, 100px) var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bundle-band .glass { opacity: .85; }
.bundle-band h2 { color: #fff; position: relative; z-index: 1; }
.bundle-price { display: flex; align-items: baseline; justify-content: center; gap: 16px; margin-top: 28px; position: relative; z-index: 1; }
.bundle-price .now { font-family: var(--font-d); font-weight: 600; font-size: clamp(3rem, 6vw, 4.4rem); color: #fff; line-height: 1; }
.bundle-price .was { font-size: 17px; color: var(--white-faint); text-decoration: line-through; }
.save-chip {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  background: rgba(200,161,90,.14);
  border: 1px solid rgba(200,161,90,.45);
  color: var(--gold-light);
  font-size: 13.5px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.bundle-band .btn { margin-top: 30px; position: relative; z-index: 1; }
.bundle-note { margin-top: 16px; font-size: 13px; color: var(--white-faint); position: relative; z-index: 1; }

/* ==========================================================================
   CONSULTATION
   ========================================================================== */
.consult-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  background: #fff;
  border-radius: var(--r-band);
  padding: clamp(32px, 5vw, 72px);
  box-shadow: var(--shadow-card);
}
.consult-card ul { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.consult-card li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--ink-soft); }
.consult-card li svg { color: var(--gold-deep); flex: none; margin-top: 3px; }
.consult-aside { text-align: center; background: var(--cream); border-radius: var(--r-card); padding: clamp(28px, 3vw, 44px); }
.consult-aside .price { font-family: var(--font-d); font-weight: 600; font-size: 3rem; line-height: 1; }
.consult-aside .per { font-size: 13px; color: var(--ink-faint); margin-top: 6px; }
.consult-aside .btn { margin-top: 22px; width: 100%; justify-content: center; }

/* ==========================================================================
   FOUNDERS
   ========================================================================== */
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 3vw, 32px); margin-top: clamp(28px, 4vw, 44px); }
.founder {
  display: flex;
  gap: 20px;
  align-items: center;
  background: #fff;
  border-radius: var(--r-card);
  padding: clamp(18px, 2.4vw, 28px);
  box-shadow: var(--shadow-card);
}
.founder img { width: clamp(84px, 9vw, 116px); height: clamp(84px, 9vw, 116px); object-fit: cover; border-radius: 20px; }
.founder h3 { font-family: var(--font-d); font-weight: 500; font-size: 19px; }
.founder .role { font-size: 12.5px; color: var(--gold-deep); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin: 2px 0 8px; }
.founder p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

/* ==========================================================================
   PROOF — editorial testimonial layout (real reviews only)
   ========================================================================== */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 28px); margin-top: clamp(28px, 4vw, 44px); }
.review {
  background: #fff;
  border-radius: var(--r-card);
  padding: 26px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review blockquote { font-size: 15px; color: var(--ink); line-height: 1.6; }
.review .who { font-size: 13px; color: var(--ink-faint); font-weight: 500; }
.review--slot { border: 1.5px dashed rgba(7,7,26,.18); background: transparent; box-shadow: none; align-items: flex-start; justify-content: center; }
.review--slot p { font-size: 14.5px; color: var(--ink-soft); }

/* ==========================================================================
   FINAL CTA (dark, after the sheet) + FOOTER
   ========================================================================== */
.final-cta {
  position: relative;
  text-align: center;
  padding: clamp(110px, 16vw, 200px) var(--pad) clamp(80px, 11vw, 140px);
  margin-top: calc(-1 * var(--r-band));
  overflow: hidden;
}
.final-cta .cta-media { position: absolute; inset: 0; pointer-events: none; }
.final-cta .cta-media video, .final-cta .cta-media img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.final-cta .cta-media::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 75% 70% at 50% 60%, rgba(7,7,26,.1), var(--navy) 92%); }
.final-cta > * { position: relative; }
.final-cta h2 { color: #fff; max-width: 12em; margin: 0 auto; }
.final-cta .btn { margin-top: 34px; }
.final-cta .sub { margin-top: 16px; font-size: 13.5px; color: var(--white-faint); }

.footer { padding: 0 var(--pad) clamp(90px, 12vh, 120px); }
.footer-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer img { height: 26px; }
.footer nav { display: flex; flex-wrap: wrap; gap: 22px; font-size: 13.5px; color: var(--white-faint); }
.footer nav a:hover { color: var(--gold-light); }
.footer .fine { width: 100%; font-size: 12px; color: rgba(255,255,255,.3); }

/* ==========================================================================
   GUIDE BUY PAGES  (/guide/<slug>) + CONSULTATION PAGE
   ========================================================================== */
.buy-hero { padding: clamp(110px, 15vh, 150px) 0 clamp(40px, 6vw, 64px); }
.buy-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.buy-cover { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-card); position: sticky; top: 40px; }
.buy-panel h1 { margin-top: 10px; }
.bullets { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 13px; }
.bullets li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink-soft); }
.bullets li svg { color: var(--gold-deep); flex: none; margin-top: 4px; }
.buy-box { margin-top: 32px; background: #fff; border-radius: var(--r-card); padding: 26px; box-shadow: var(--shadow-card); display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.buy-box .price { font-family: var(--font-d); font-weight: 600; font-size: 2.2rem; line-height: 1; }
.buy-box .price small { display: block; font-size: 12px; font-weight: 500; color: var(--ink-faint); margin-top: 6px; }
.related { padding-bottom: clamp(80px, 10vw, 120px) !important; }
.related .store-grid { grid-template-columns: repeat(3, 1fr); }

/* ---- Light pages (guide buy pages, consultation) ---- */
body.page-light { background: var(--cream); color: var(--ink); }
.page-light .brand-fixed .logo-light { display: none; }
.page-light .brand-fixed .logo-dark { display: block; }
.page-light .lede { color: var(--ink-soft); }
.page-light .footer-inner { border-top-color: rgba(7,7,26,.1); }
.page-light .footer nav { color: var(--ink-faint); }
.page-light .footer nav a:hover { color: var(--gold-deep); }
.page-light .footer .fine { color: rgba(7,7,26,.35); }

/* ==========================================================================
   MOTION / REVEALS
   ========================================================================== */
.js [data-reveal] { opacity: 0; transform: translateY(28px); }
.js [data-reveal].is-in { opacity: 1; transform: none; transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1); }
.js [data-reveal="fade"] { transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .glass { animation: none !important; }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .js .squiggle path { stroke-dashoffset: 0 !important; transition: none !important; }
  .btn, .guide-card, .guide-card .cover img { transition: none !important; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1020px) {
  .store-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 780px) {
  .store-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-card--flagship { flex-direction: column; }
  .guide-card--flagship .cover { aspect-ratio: 4 / 3; width: 100%; flex: none; }
  .guide-card--flagship .cover img { object-position: center top; }
  .guide-card--flagship .row { flex-wrap: wrap; gap: 14px; }
  .consult-card { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .buy-layout { grid-template-columns: 1fr; }
  .buy-cover { position: static; max-width: 420px; }
  .related .store-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-proof { display: none; }
  .pill-nav a { padding: 9px 13px; font-size: 12.5px; }
}
@media (max-width: 440px) {
  .guide-card .meta { padding: 12px 12px 14px; }
  .guide-card h3 { font-size: 14.5px; }
  .pill-nav { max-width: calc(100vw - 16px); overflow-x: auto; }
  .pill-nav a { padding: 9px 11px; font-size: 12px; }
  .brand-fixed img { height: 24px; }
}
