/* ═══════════════════════════════════════════════════════════════
   The Content to Currency Challenge — Premium landing page
   ═══════════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Rich warm palette — deep chocolate & warm gold */
  --cream: #F7F0E9;
  --cream-dark: #EDE3DA;
  --cream-mid: #E4D6CB;

  /* Warm gold — the hero colour */
  --gold: #C49A6C;
  --gold-dark: #A0734A;
  --gold-light: #DDB98A;
  --gold-glow: rgba(196, 154, 108, 0.35);

  /* Soft rose for accents */
  --rose: #C9A898;
  --rose-soft: #EDE0D8;

  /* Nude card backgrounds */
  --nude: #DEC9BC;
  --nude-light: #F4EDE7;

  /* Deep chocolate — headings & buttons */
  --chocolate: #1E0F08;
  --chocolate-deep: #120805;
  --dark: #1E0F08;
  --mocha: #2E1A10;
  --mocha-mid: #3D2818;

  /* Body text */
  --text: #2E1A10;
  --text-muted: #7A6558;

  /* Button */
  --btn: #1E0F08;
  --btn-hover: #2E1A10;

  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-soft: 0 20px 60px rgba(30, 15, 8, 0.1);
  --shadow-gold: 0 12px 40px rgba(196, 154, 108, 0.25);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* Fine grain texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 10001;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transition: width 0.05s linear;
}

/* Soft floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 20s ease-in-out infinite alternate;
}

.orb-gold {
  background: radial-gradient(circle, rgba(196, 154, 108, 0.22), rgba(196, 154, 108, 0.06));
}

.orb-nude {
  background: radial-gradient(circle, rgba(222, 201, 188, 0.25), rgba(222, 201, 188, 0.06));
}

.orb-rose {
  background: radial-gradient(circle, rgba(201, 168, 152, 0.18), rgba(201, 168, 152, 0.04));
}

@keyframes orbFloat {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(40px, -50px) scale(1.12);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  /* Deep chocolate — user's direction: dark brown buttons */
  background: var(--btn);
  color: var(--cream);
  box-shadow: 0 8px 28px rgba(44, 24, 16, 0.22);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: shimmer 4s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: var(--btn-hover);
  box-shadow: 0 14px 36px rgba(44, 24, 16, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250, 248, 245, 0.45);
}

.btn-ghost:hover {
  background: rgba(250, 248, 245, 0.1);
  border-color: var(--cream);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: var(--cream);
}

.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(42, 29, 25, 0.25);
  background: var(--mocha);
}

@keyframes shimmer {

  0%,
  70%,
  100% {
    transform: translateX(-120%);
  }

  85% {
    transform: translateX(120%);
  }
}

/* Reveals */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* Section primitives */
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
  padding: 0 1.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.section-header h2,
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-header h2 em,
.section-title em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 300;
}

.section-header p,
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ── Countdown Banner ── */
.countdown-banner {
  background: linear-gradient(135deg, var(--chocolate-deep) 0%, var(--mocha) 50%, var(--chocolate-deep) 100%);
  color: var(--cream);
  text-align: center;
  padding: 0.45rem 1.5rem;
  position: relative;
  z-index: 1001;
  overflow: hidden;
}

.countdown-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(196, 154, 108, 0.08) 50%, transparent 100%);
  animation: bannerSheen 5s linear infinite;
}

@keyframes bannerSheen {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.countdown-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.countdown-units {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05rem;
}

.countdown-num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
  min-width: 2.1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(196, 154, 108, 0.3);
  border-radius: 4px;
  padding: 0.15rem 0.3rem;
  backdrop-filter: blur(4px);
}

.countdown-unit-lbl {
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 240, 233, 0.55);
  font-weight: 500;
}

.countdown-sep {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 0.35rem;
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 0.2;
  }
}

.countdown-cta-link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s;
  white-space: nowrap;
}

.countdown-cta-link:hover {
  color: var(--gold-light);
}

/* ── Announcement ── */
.announcement {
  background: linear-gradient(90deg, var(--mocha) 0%, var(--mocha-mid) 50%, var(--mocha) 100%);
  color: var(--cream);
  text-align: center;
  padding: 0.6rem 1.25rem;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1000;
}

.announcement strong {
  color: var(--gold-light);
  font-weight: 600;
}

.announcement a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Nav — matches warm nude background ── */
nav {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  /* Warm nude — same family as page background */
  background: rgba(245, 236, 229, 0.82);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  border-bottom: 1px solid rgba(44, 24, 16, 0.07);
}

nav.scrolled {
  background: rgba(245, 236, 229, 0.97);
  box-shadow: 0 8px 32px -16px rgba(44, 24, 16, 0.12);
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--dark);
  font-weight: 500;
}

.nav-logo span {
  font-style: italic;
  color: var(--gold-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--dark);
}

.nav-cta {
  padding: 0.65rem 1.35rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  /* Deep chocolate button — matches user direction */
  background: var(--btn);
  color: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), background 0.3s;
}

.nav-cta:hover {
  background: var(--btn-hover);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 950;
}

.hamburger span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--dark);
  transition: 0.3s var(--ease);
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 9px;
}

.hamburger span:nth-child(3) {
  top: 18px;
}

.hamburger.open span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  inset: 0;
  background: rgba(42, 29, 25, 0.45);
  z-index: 940;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
}

.nav-drawer.open {
  opacity: 1;
  visibility: visible;
}

.nav-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--cream);
  padding: 6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  box-shadow: -20px 0 60px rgba(42, 29, 25, 0.15);
}

.nav-drawer.open .nav-drawer-panel {
  transform: translateX(0);
}

.nav-drawer-panel a {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--dark);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--cream-mid);
}

.nav-drawer-panel .nav-cta {
  margin-top: 1rem;
  text-align: center;
}

/* ───────────────────────────────────────────────────────
   HERO — Premium Centered Layout with Glassmorphism
   (matches reference image layout perfectly)
   ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 1.25rem 0 4.5rem;
  /* Reduced top and bottom padding to bring title closer to header and main section closer to bottom */
  z-index: 1;
}

/* Centered Header Title */
.new-hero-title {
  max-width: 1000px;
  margin: 0 auto 1.5rem;
  /* Reduced margin to bring title closer to header and photo */
  text-align: center;
  padding: 0 1.5rem;
}

.new-hero-title h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.new-hero-title h1 em {
  font-family: inherit;
  font-style: italic;
  color: var(--gold-dark);
  font-weight: inherit;
  display: inline;
}

/* Hero Body Grid */
.hero-grid-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

/* Left Group (0 to 500K+ Followers) */
.hero-left-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

/* Translucent Glassmorphism Cards */
.glass-stat-card {
  background: rgba(250, 246, 242, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 1.85rem 1.5rem;
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 15px 35px rgba(30, 15, 8, 0.04), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  width: 100%;
  max-width: 220px;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.glass-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(30, 15, 8, 0.08), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.glass-stat-card h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.glass-stat-card p {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Cursive "to" connection block */
.arrow-connection-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.arrow-connection-block span {
  font-family: 'Caveat', cursive;
  font-size: 1.85rem;
  color: var(--dark);
  line-height: 1;
}

.arrow-connection-block svg {
  width: 32px;
  height: 48px;
  color: var(--dark);
  opacity: 0.75;
}

/* Center Group (Faded Vignette Photo) */
.hero-image-wrap {
  position: relative;
  width: fit-content;
  max-width: 390px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px; /* Premium subtle rounded corner */
}

/* Inset vignette overlay to fade all 4 rectangular edges smoothly into background */
.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: -1px;
  z-index: 1;
  box-shadow: inset 0 0 35px 25px var(--cream);
  pointer-events: none;
}

.hero-main-img {
  width: 100%;
  max-width: 390px;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Right Group (CTA, Description, Earnings Card) */
.hero-right-group {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  text-align: left;
}

.right-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.right-desc {
  font-size: 1.02rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.65;
  max-width: 35ch;
}

.right-divider {
  width: 56px;
  height: 1px;
  background: var(--gold-dark);
  opacity: 0.4;
}

.gold-btn-checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.85rem;
  background: var(--chocolate);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, background 0.3s;
  box-shadow: 0 10px 25px rgba(30, 15, 8, 0.25);
  width: fit-content;
}

.gold-btn-checkout:hover {
  background: #1E0F08;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(30, 15, 8, 0.4);
}

.right-subtext {
  font-family: 'Caveat', cursive;
  font-size: 1.45rem;
  color: var(--gold-dark);
  opacity: 0.95;
  line-height: 1;
}

/* Glassmorphism Stat Cards - Square Layout */
.glass-stat-card {
  background: rgba(255, 255, 255, 0.42);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  padding: 2.25rem 1.5rem;
  backdrop-filter: blur(25px) saturate(1.1);
  -webkit-backdrop-filter: blur(25px) saturate(1.1);
  box-shadow:
    0 15px 35px rgba(30, 15, 8, 0.04),
    0 0 18px rgba(255, 255, 255, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.glass-stat-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 25px 45px rgba(30, 15, 8, 0.08),
    0 0 25px rgba(255, 255, 255, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.glass-stat-card h3 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.glass-stat-card p {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.85;
}

/* Horizontal Glass Card for Earnings */
.earnings-card-horizontal {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.42);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 1.15rem 1.5rem;
  backdrop-filter: blur(25px) saturate(1.1);
  -webkit-backdrop-filter: blur(25px) saturate(1.1);
  box-shadow:
    0 15px 35px rgba(30, 15, 8, 0.04),
    0 0 18px rgba(255, 255, 255, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 320px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.earnings-card-horizontal:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px rgba(30, 15, 8, 0.07),
    0 0 25px rgba(255, 255, 255, 0.55);
}

.earnings-badge-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold-dark);
  font-weight: 500;
  background: transparent;
  flex-shrink: 0;
}

.earnings-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.earnings-text h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.earnings-text p {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Marquee ── */
.marquee-wrap {
  background: var(--cream-dark);
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  padding: 1.1rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.marquee-track .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── Stats ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  position: relative;
}

.stats-bar-item {
  text-align: center;
}

.stats-bar-val {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--dark);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.stats-bar-lbl {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

/* ── Reality ── */
.reality {
  padding: 5.5rem 0;
  background:
    radial-gradient(ellipse at 10% 20%, rgba(232, 180, 184, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(201, 169, 110, 0.1) 0%, transparent 45%),
    var(--cream);
  position: relative;
  overflow: hidden;
}

.reality-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: start;
}

.reality-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.25);
}

.reality-point:first-child {
  border-top: 1px solid rgba(201, 169, 110, 0.25);
}

.point-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1.2;
}

.point-text h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.45rem;
}

.point-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
}

.reality-quote {
  position: relative;
  padding: 2.5rem 2rem;
  background: linear-gradient(160deg, var(--nude-light), var(--rose-soft));
  border-left: 2px solid var(--gold);
}

.reality-quote p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.reality-quote cite {
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
}

.quote-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.25rem;
  border: 2px solid var(--gold);
}

/* ── Diagnostics ── */
.diagnostics {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
  text-align: center;
}

.diagnostics>.section-eyebrow,
.diagnostics>h2,
.diagnostics>.section-sub {
  display: block;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.diagnostics>h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.2;
  margin: 0 auto 1rem;
}

.diagnostics>h2 em {
  font-style: italic;
  color: var(--gold-dark);
}

.diagnostics>.section-sub {
  margin-bottom: 2.5rem;
}

.diagnostic-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  padding: 0 1.5rem;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 2px;
  transition: 0.3s ease;
  background: transparent;
}

.tab-btn:hover {
  border-color: var(--gold);
  color: var(--dark);
}

.tab-btn.active {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
}

.diagnostic-panels {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: left;
}

.diagnostic-panel {
  display: none;
}

.diagnostic-panel.active {
  display: block;
  animation: fadePanel 0.45s var(--ease);
}

@keyframes fadePanel {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.panel-block {
  padding: 2rem;
  background: var(--white);
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.block-stuck {
  border-top: 3px solid var(--rose);
}

.block-solved {
  border-top: 3px solid var(--gold);
}

.panel-block h5 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  color: var(--dark);
}

.panel-block ul li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.85rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.55;
}

.panel-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.block-stuck ul li::before {
  background: var(--rose);
}

.panel-block strong {
  color: var(--dark);
  font-weight: 500;
}

/* ── Proof (before/after) ── */
.proof {
  padding: 5.5rem 0;
  background: linear-gradient(165deg, #2A1D19 0%, #3D2D27 55%, #2A1D19 100%);
  color: var(--cream);
}

.proof .section-eyebrow {
  color: var(--gold-light);
}

.proof .section-header h2 {
  color: var(--cream);
}

.proof .section-header h2 em {
  color: var(--gold);
}

.proof .section-header p {
  color: rgba(250, 248, 245, 0.55);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.proof-side {
  padding: 2.25rem;
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.proof-before {
  background: rgba(0, 0, 0, 0.2);
}

.proof-after {
  background: rgba(201, 169, 110, 0.08);
  border-color: rgba(201, 169, 110, 0.4);
}

.proof-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.proof-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.proof-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--mocha-mid);
  object-fit: cover;
  border: 1.5px solid rgba(201, 169, 110, 0.4);
}

.proof-user h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.proof-user p {
  font-size: 0.8rem;
  color: rgba(250, 248, 245, 0.5);
}

.proof-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(250, 248, 245, 0.1);
}

.proof-stats h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--gold-light);
}

.proof-stats p {
  font-size: 0.75rem;
  color: rgba(250, 248, 245, 0.45);
  letter-spacing: 0.04em;
}

.proof-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(250, 248, 245, 0.65);
  font-style: italic;
  line-height: 1.6;
}

.proof-after .proof-desc {
  color: var(--gold-light);
}

/* ── Feed / Influencer proof gallery ── */
.feed-proof {
  padding: 5.5rem 0 4rem;
  background:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(232, 180, 184, 0.14), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(201, 169, 110, 0.1), transparent 50%),
    var(--cream);
  position: relative;
  overflow: hidden;
}

.feed-proof .section-inner {
  max-width: 1180px;
  padding: 0 1.5rem;
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.proof-metric {
  text-align: center;
  padding: 1.75rem 1rem;
  background: rgba(255, 255, 255, 0.42);
  border: 1.5px solid rgba(255, 255, 255, 0.82);
  border-radius: 20px;
  backdrop-filter: blur(25px) saturate(1.1);
  -webkit-backdrop-filter: blur(25px) saturate(1.1);
  box-shadow:
    0 12px 32px rgba(30, 15, 8, 0.04),
    0 0 16px rgba(255, 255, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(0, 0, 0, 0.04);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.proof-metric:hover {
  transform: translateY(-6px);
  box-shadow:
    0 22px 44px rgba(30, 15, 8, 0.08),
    0 0 22px rgba(255, 255, 255, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.proof-metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.proof-metric span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.bento-proof {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 140px;
  gap: 0.85rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.bento-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: zoom-in;
  background: var(--mocha);
  isolation: isolate;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.bento-item:hover img {
  transform: scale(1.06);
}

.bento-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(14, 9, 6, 0.72) 100%);
  pointer-events: none;
  z-index: 1;
}

.bento-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1rem 1.1rem;
  color: var(--cream);
  pointer-events: none;
}

.bento-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.bento-caption span {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(250, 248, 245, 0.7);
  font-weight: 300;
}

.bento-wide {
  grid-column: span 8;
  grid-row: span 3;
}

.bento-tall {
  grid-column: span 4;
  grid-row: span 3;
}

.bento-md {
  grid-column: span 4;
  grid-row: span 2;
}

.bento-sm {
  grid-column: span 4;
  grid-row: span 2;
}

.lifestyle-mosaic {
  max-width: 1180px;
  margin: 3.5rem auto 0;
  padding: 0 1.5rem;
}

.lifestyle-mosaic-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.lifestyle-mosaic-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
  font-weight: 400;
}

.lifestyle-mosaic-head h3 em {
  font-style: italic;
  color: var(--gold-dark);
}

.lifestyle-mosaic-head p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 36ch;
  font-weight: 300;
}

/* ── Evidence Card Grid ── */
.evidence-grid {
  max-width: 1180px;
  margin: 3rem auto 0;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1.25rem;
  align-items: start;
}

.evidence-card {
  background: rgba(255, 252, 248, 0.85);
  border: 1px solid rgba(196, 154, 108, 0.18);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(30, 15, 8, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}

.evidence-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(30, 15, 8, 0.12), 0 0 0 1px rgba(196, 154, 108, 0.3);
}

/* Tall portrait card (IMG_3328.png) spans 2 rows */
.evidence-card--tall {
  grid-row: span 2;
}

.evidence-img-wrap {
  width: 100%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  flex: 1;
}

.evidence-img-wrap img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  transition: transform 0.5s var(--ease);
}

.evidence-card--tall .evidence-img-wrap img {
  max-height: 720px;
}

.evidence-card:hover .evidence-img-wrap img {
  transform: scale(1.02);
}

.evidence-card-footer {
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(196, 154, 108, 0.12);
  background: rgba(250, 246, 242, 0.6);
  backdrop-filter: blur(8px);
}

.evidence-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* ── Old mosaic CSS (kept for other references) ── */
.mosaic-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 200px 200px 200px;
  gap: 0.85rem;
}

.mosaic-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 2px;
}

/* First image spans all 3 rows — big panel on left */
.mosaic-grid figure:first-child {
  grid-row: 1 / 4;
}

/* 6th image: spans the bottom row across cols 2&3 */
.mosaic-grid figure:nth-child(6) {
  grid-column: 2 / 4;
}

.mosaic-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.mosaic-grid figure:hover img {
  transform: scale(1.05);
}

.mosaic-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(transparent, rgba(14, 9, 6, 0.75));
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.img-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: rgba(10, 7, 5, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  cursor: zoom-out;
}

.img-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.img-lightbox img {
  max-width: min(920px, 94vw);
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid rgba(201, 169, 110, 0.25);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

/* ── Testimonials + Reels ── */
.testimonials {
  padding: 5.5rem 0 4rem;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(232, 180, 184, 0.1) 0%, transparent 40%),
    var(--cream);
  position: relative;
  overflow: hidden;
}

.lifestyle-banner {
  position: relative;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto 3rem;
  height: clamp(220px, 32vw, 360px);
  overflow: hidden;
}

/* Hero lifestyle banner — full width, directly below hero, no top gap */
.hero-lifestyle-banner {
  max-width: 100%;
  margin: 0 0 0;
  height: clamp(260px, 38vw, 440px);
  display: block;
}

.lifestyle-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(42, 29, 25, 0.55) 0%, transparent 70%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.lifestyle-banner-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.lifestyle-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--cream);
  font-weight: 500;
  line-height: 1.25;
}

.lifestyle-banner-title em {
  font-style: italic;
  color: var(--gold);
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.reel-card {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  cursor: pointer;
  background: var(--mocha);
  border-radius: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 12px 35px rgba(30, 15, 8, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: transform 0.4s var(--ease), box-shadow 0.45s var(--ease);
}

.reel-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 32px 65px rgba(30, 15, 8, 0.3),
    0 0 30px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.reel-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-bg-1 {
  background: linear-gradient(160deg, #1E0F08, #3D2418);
}

.reel-bg-2 {
  background: linear-gradient(160deg, #2A1D19, #5C4A40);
}

.reel-bg-3 {
  background: linear-gradient(160deg, #1E0F08, #4A3020);
}

.reel-bg-4 {
  background: linear-gradient(160deg, #2E1A10, #4D3028);
}

.reel-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(250, 248, 245, 0.9);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  z-index: 2;
  transition: transform 0.3s, background 0.3s;
  padding-left: 3px;
}

.reel-card:hover .reel-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--gold);
  box-shadow: 0 12px 32px rgba(196, 154, 108, 0.4);
}

.reel-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 4rem 1rem 1.1rem;
  background: linear-gradient(transparent, rgba(18, 8, 5, 0.95));
  z-index: 2;
  color: var(--cream);
}

.reel-user {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--gold-light);
}

.reel-metric {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: rgba(250, 248, 245, 0.7);
  margin-bottom: 0.4rem;
}

.reel-quote {
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.4;
  color: rgba(250, 248, 245, 0.85);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Journey accordion ── */
.journey {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--nude-light) 100%);
  position: relative;
  overflow: hidden;
}

.curriculum-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
}

.accordion-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem 0.5rem;
  cursor: pointer;
  transition: background 0.3s;
}

.accordion-header:hover {
  background: rgba(201, 169, 110, 0.06);
}

.acc-day {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--gold);
  min-width: 2.5rem;
}

.acc-title h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.acc-title p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

.acc-trigger {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  white-space: nowrap;
}

.accordion-item.active .acc-trigger {
  color: var(--dark);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}

.accordion-inner-content {
  padding: 0 0.5rem 1.75rem 4rem;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1.5rem;
}

.acc-details-list h5,
.acc-outcome-box h5 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.acc-details-list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
}

.acc-details-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.acc-outcome-box {
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid rgba(201, 169, 110, 0.25);
}

.acc-outcome-box p {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 300;
  line-height: 1.55;
}

/* ── Portal / Details — Shopify Revenue Section ── */
.details {
  padding: 6rem 0;
  background: linear-gradient(160deg, var(--chocolate-deep) 0%, var(--mocha) 60%, #2a1a10 100%);
  position: relative;
  overflow: hidden;
}

.details::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(196, 154, 108, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(196, 154, 108, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.details .section-inner {
  position: relative;
  z-index: 1;
}

.details-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ── Shopify Frame ── */
.shopify-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shopify-frame-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--cream);
  border-radius: 14px 14px 0 0;
  padding: 0.85rem 2rem 1.1rem;
  width: 100%;
  max-width: 480px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.shopify-frame-badge > span:first-child {
  font-size: 1.5rem;
  line-height: 1;
}

.shopify-frame-badge > span:nth-child(2) {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.shopify-frame-badge small {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.details-mockup {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  border-radius: 0 0 16px 16px;
  object-fit: contain;
  border: 2px solid rgba(196, 154, 108, 0.3);
  border-top: none;
}

.shopify-frame-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(196, 154, 108, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Details content (right col) ── */
.details-content .section-eyebrow {
  color: var(--gold-light);
  opacity: 0.85;
}

.details-content .section-title {
  color: var(--cream);
}

.details-content .section-title em {
  color: var(--gold);
}

.details-content .section-sub {
  color: rgba(247, 240, 233, 0.75);
  font-weight: 300;
  margin-bottom: 2rem;
}

/* ── Revenue Stat Row ── */
.revenue-stat-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(196, 154, 108, 0.08);
  border: 1px solid rgba(196, 154, 108, 0.25);
  border-radius: 14px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.revenue-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  text-align: center;
}

.revenue-num {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}

.revenue-lbl {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 240, 233, 0.5);
}

.revenue-divider {
  width: 1px;
  height: 36px;
  background: rgba(196, 154, 108, 0.25);
  flex-shrink: 0;
}

.details-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.details-mockup {
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(42, 29, 25, 0.12);
  object-fit: contain;
}

.details-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.detail-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(196, 154, 108, 0.2);
  border-left: 3px solid rgba(196, 154, 108, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.35s var(--ease), border-left-color 0.35s var(--ease), background 0.35s var(--ease);
}

.detail-row:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--gold);
}

.detail-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
  opacity: 0.7;
}

.detail-row h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.detail-row p {
  font-size: 0.88rem;
  color: rgba(247, 240, 233, 0.6);
  font-weight: 300;
}

/* ── About ── */
.about {
  padding: 5.5rem 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232, 180, 184, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, var(--nude-light) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-box {
  position: relative;
}

.about-img-box img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
}

.about-img-stack {
  display: grid;
  gap: 0.85rem;
}

.about-img-stack .about-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.about-img-stack .about-secondary img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.about-content h2 em {
  font-style: italic;
  color: var(--gold-dark);
}

.about-content p {
  font-size: 0.98rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.75rem;
  color: var(--gold-dark);
  margin: 1.75rem 0 2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 169, 110, 0.3);
}

.about-stats .stat-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--dark);
  font-weight: 500;
}

.about-stats .stat-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ── Pricing ── */
.pricing {
  padding: 5.5rem 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 169, 110, 0.12) 0%, transparent 55%),
    var(--cream-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
}

.toggle-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.25s;
  font-weight: 400;
}

.toggle-label.active {
  color: var(--dark);
  font-weight: 600;
}

.toggle-switch {
  width: 48px;
  height: 26px;
  background: var(--cream-mid);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
  border: 1px solid rgba(201, 169, 110, 0.35);
}

.toggle-switch.active {
  background: var(--gold);
}

.toggle-knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s var(--ease);
}

.toggle-switch.active .toggle-knob {
  transform: translateX(22px);
}

.pricing-card {
  background: var(--white);
  padding: 2.75rem 2.25rem;
  border: 1px solid rgba(201, 169, 110, 0.3);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.pricing-pill {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-light);
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.2), rgba(232, 180, 184, 0.25));
  padding: 0.4rem 0.85rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.price-value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: opacity 0.15s ease;
}

.price-value sup {
  font-size: 1.5rem;
  vertical-align: super;
  margin-right: 0.1rem;
}

.price-details {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 300;
}

.pricing-features-list {
  margin-bottom: 2rem;
}

.pricing-features-list li {
  display: flex;
  gap: 0.75rem;
  padding: 0.65rem 0;
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 300;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.pricing-features-list .bullet {
  color: var(--gold);
  flex-shrink: 0;
}

.btn-checkout {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1.15rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 50%, var(--gold-dark));
  color: var(--dark);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  box-shadow: 0 10px 30px rgba(156, 122, 70, 0.3);
}

.btn-checkout::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.4) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: shimmer 3.5s ease-in-out infinite;
}

.btn-checkout:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(156, 122, 70, 0.4);
}

text-align: center;
font-size: 0.75rem;
color: var(--text-muted);
margin-top: 1rem;
font-weight: 300;
}

/* ── Value Stack Section ── */
.value-stack-sec {
  padding: 6.5rem 0;
  background: #E8DCD3;
  /* Soft luxury pinkish-nude background from Image 2 */
  position: relative;
  overflow: hidden;
  text-align: center;
}

.value-stack-sec .section-header {
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

/* Star badge: "WORTH OVER £2,600" */
.worth-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark);
  border: 1px solid rgba(30, 15, 8, 0.25);
  background: transparent;
  padding: 0.45rem 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  border-radius: 50px;
}

.worth-badge svg {
  width: 12px;
  height: 12px;
  fill: var(--dark);
}

.value-stack-sec h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.05;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.value-stack-sec h2 em {
  font-family: inherit;
  font-style: italic;
  color: var(--gold-dark);
  font-weight: inherit;
  display: inline;
}

.value-stack-sec .section-sub {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 600;
}

/* Card Wrap */
.value-card-wrap {
  position: relative;
  max-width: 680px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
  z-index: 2;
}

/* Card design matching client requirement (off-white, luxury outline) */
.value-card {
  background: rgba(255, 255, 255, 0.48);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  padding: 2.5rem 3rem 1.5rem;
  backdrop-filter: blur(30px) saturate(1.2);
  -webkit-backdrop-filter: blur(30px) saturate(1.2);
  box-shadow:
    0 20px 50px rgba(30, 15, 8, 0.07),
    0 0 25px rgba(255, 255, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(0, 0, 0, 0.04);
  text-align: left;
}

.value-card-header {
  display: flex;
  justify-content: flex-end;
  border-bottom: 1px solid rgba(30, 15, 8, 0.08);
  padding-bottom: 0.75rem;
  margin-bottom: 0.5rem;
}

.individual-value-lbl {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(30, 15, 8, 0.5);
}

/* List Items */
.value-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(30, 15, 8, 0.06);
}

.value-item:last-child {
  border-bottom: none;
}

.value-item-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.value-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #EADCD3;
  /* Soft pink-nude background for icon circles */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon-circle svg {
  width: 18px;
  height: 18px;
  stroke: var(--dark);
  fill: none;
  stroke-width: 1.5;
}

.value-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.value-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

.value-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  font-weight: 300;
}

.value-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark);
  white-space: nowrap;
}

/* Total Value row */
.value-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  margin-top: 0.5rem;
  border-top: 1.5px solid var(--dark);
}

.value-total-title {
  font-family: 'Caveat', cursive;
  font-size: 2.2rem;
  color: var(--dark);
  line-height: 1;
}

.value-total-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark);
  position: relative;
  display: inline-block;
  padding-bottom: 0.35rem;
}

/* Brush stroke underline effect */
.value-total-price::after {
  content: '';
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: 0;
  height: 6px;
  background: rgba(196, 154, 108, 0.45);
  border-radius: 50%;
}

/* Below Card checkout info */
.checkout-offer-wrap {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.offer-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.5rem;
  display: block;
}

.offer-main-price {
  font-family: var(--font-heading);
  font-size: clamp(3.8rem, 9vw, 4.8rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: opacity 0.15s ease;
}

.offer-save-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 0.5rem 1.75rem;
  margin-bottom: 1.85rem;
  position: relative;
  background: radial-gradient(circle, #EADCD3, #E6D4CA);
  border-radius: 120px 15px 100px 15px / 15px 100px 15px 120px;
  /* Organic stroke style */
}

.offer-cursive-quote {
  font-family: 'Caveat', cursive;
  font-size: 1.85rem;
  color: var(--dark);
  line-height: 1.3;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Doodle annotations floating */
.doodle-annotation {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.doodle-annotation span {
  font-family: 'Caveat', cursive;
  font-size: 1.45rem;
  color: var(--dark);
  line-height: 1.2;
  white-space: nowrap;
  display: block;
}

.doodle-annotation svg {
  color: var(--dark);
  opacity: 0.75;
}

/* Positional layout for doodles */
.doodle-lifetime {
  left: -145px;
  top: 8%;
  width: 140px;
  text-align: right;
}

.doodle-lifetime svg {
  width: 50px;
  height: 50px;
  margin-left: auto;
  margin-top: 0.25rem;
}

.doodle-experience {
  left: -155px;
  bottom: -5px;
  width: 150px;
  text-align: right;
}

.doodle-experience svg {
  width: 60px;
  height: 60px;
  margin-left: auto;
  margin-top: -0.25rem;
}

.doodle-pace {
  right: -150px;
  top: 35%;
  width: 140px;
  text-align: left;
}

.doodle-pace svg {
  width: 55px;
  height: 55px;
  margin-top: 0.25rem;
}

.doodle-years {
  right: -160px;
  bottom: -5px;
  width: 160px;
  text-align: left;
}

.doodle-years svg {
  width: 65px;
  height: 65px;
  margin-top: -0.5rem;
}

/* Background floating clouds */
.bg-cloud {
  position: absolute;
  color: rgba(255, 255, 255, 0.45);
  pointer-events: none;
  z-index: 0;
}

.cloud-top-left {
  top: 4%;
  left: 3%;
  width: 160px;
}

.cloud-top-right {
  top: 5%;
  right: 4%;
  width: 180px;
}

.cloud-bottom-left {
  bottom: 8%;
  left: 4%;
  width: 150px;
}

.cloud-swoop-arrow {
  top: 13%;
  right: 14%;
  width: 100px;
  color: var(--dark);
  opacity: 0.15;
}

/* Responsive Value Stack */
@media (max-width: 1024px) {
  .doodle-lifetime {
    left: -60px;
    top: 2%;
  }

  .doodle-experience {
    left: -70px;
  }

  .doodle-pace {
    right: -60px;
  }

  .doodle-years {
    right: -70px;
  }
}

@media (max-width: 991px) {
  .doodle-annotation {
    display: none;
    /* Hide absolute floating doodles on smaller screens to avoid overlapping card */
  }

  .value-stack-sec {
    padding: 4.5rem 0;
  }

  .value-card {
    padding: 2.25rem 2rem 1.25rem;
  }

  .bg-cloud {
    opacity: 0.25;
  }
}

@media (max-width: 540px) {
  .value-card {
    padding: 2rem 1.25rem 1rem;
  }

  .value-item {
    gap: 0.75rem;
    padding: 1rem 0;
  }

  .value-price {
    font-size: 1.05rem;
  }

  .value-title {
    font-size: 0.9rem;
  }

  .value-desc {
    font-size: 0.75rem;
  }

  .value-icon-circle {
    width: 36px;
    height: 36px;
  }

  .worth-badge {
    padding: 0.35rem 0.85rem;
    font-size: 0.68rem;
  }
}


/* ── FAQ ── */
.faq {
  padding: 5.5rem 0;
  background: var(--cream);
}

.faq-accordion {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.42);
  border: 1.5px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  backdrop-filter: blur(25px) saturate(1.1);
  -webkit-backdrop-filter: blur(25px) saturate(1.1);
  box-shadow:
    0 8px 24px rgba(30, 15, 8, 0.04),
    0 0 14px rgba(255, 255, 255, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  margin-bottom: 0.85rem;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow:
    0 16px 36px rgba(30, 15, 8, 0.07),
    0 0 20px rgba(255, 255, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  cursor: pointer;
}

.faq-header:hover h4 {
  color: var(--gold-dark);
}

.faq-header h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.25s;
  text-align: left;
}

.faq-item.active .faq-header h4 {
  color: var(--gold-dark);
}

.faq-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* ── Waitlist ── */
.waitlist {
  padding: 4rem 1.5rem 5.5rem;
  background: linear-gradient(160deg, var(--nude-light), var(--rose-soft) 60%, var(--cream-dark));
}

.waitlist-card {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.48);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 28px;
  backdrop-filter: blur(30px) saturate(1.2);
  -webkit-backdrop-filter: blur(30px) saturate(1.2);
  box-shadow:
    0 20px 50px rgba(30, 15, 8, 0.06),
    0 0 28px rgba(255, 255, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(0, 0, 0, 0.03);
}

.waitlist-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.waitlist-card>p {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

.waitlist-form-container {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.waitlist-form-container input {
  flex: 1;
  min-width: 200px;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(201, 169, 110, 0.35);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  border-radius: 2px;
  transition: border-color 0.25s;
}

.waitlist-form-container input:focus {
  border-color: var(--gold);
}

.waitlist-form-container button {
  padding: 1rem 1.75rem;
  background: var(--dark);
  color: var(--cream);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: background 0.3s, transform 0.3s;
}

.waitlist-form-container button:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.waitlist-form-container button:disabled {
  opacity: 0.85;
  cursor: default;
  transform: none;
}

/* ── Footer ── */
footer {
  background: var(--dark);
  color: rgba(250, 248, 245, 0.65);
  padding: 3.5rem 1.5rem 2.5rem;
  text-align: center;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-title span {
  font-style: italic;
  color: var(--gold);
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--gold);
}

footer>p {
  font-size: 0.75rem;
  font-weight: 300;
}

/* ── Video Modal ── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(20, 12, 10, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
  padding: 1.5rem;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-container {
  position: relative;
  width: min(380px, 90vw);
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.video-modal-player {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.video-overlay-ui {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  pointer-events: none;
}

.video-overlay-user {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
}

.video-overlay-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  font-weight: 300;
}

.video-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(250, 248, 245, 0.12);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.25s;
  border: 1px solid rgba(250, 248, 245, 0.2);
}

.video-close-btn:hover {
  background: rgba(250, 248, 245, 0.25);
}

.video-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(250, 248, 245, 0.1);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.25s;
  border: 1px solid rgba(250, 248, 245, 0.15);
  user-select: none;
}

.video-nav-btn:hover {
  background: rgba(201, 169, 110, 0.4);
}

.video-prev-btn {
  left: 1rem;
}

.video-next-btn {
  right: 1rem;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-bg img {
    animation: none !important;
    transform: none !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-brand,
  .hero-headline,
  .hero-support,
  .hero-ctas,
  .hero-link-cta,
  .hero-arc-item,
  .hero-arc-label {
    opacity: 1 !important;
    animation: none !important;
  }

  .hero-arc-item[data-i="0"],
  .hero-arc-item[data-i="1"],
  .hero-arc-item[data-i="2"],
  .hero-arc-item[data-i="3"],
  .hero-arc-item[data-i="4"],
  .hero-arc-item[data-i="5"],
  .hero-arc-item[data-i="6"] {
    transform: none !important;
  }

  .hero .btn-primary {
    animation: none !important;
  }

  .marquee-track {
    animation: none;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — Tablet (960px)
═══════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  /* Hero keeps exact 3-column desktop layout on tablet */
  /* heading full width above, then [stat cards | image | text] */
  .hero-grid-container {
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 1.5rem;
    padding: 0 1.25rem;
  }

  .new-hero-title h1 {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
  }

  .hero-image-wrap {
    max-width: 320px;
  }

  .hero-main-img {
    max-width: 320px;
  }

  .glass-stat-card {
    max-width: 180px;
    padding: 1.4rem 1.1rem;
  }

  .glass-stat-card h3 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
  }

  .right-desc {
    font-size: 0.92rem;
  }

  /* Evidence Grid — tablet: 2 columns */
  .evidence-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .evidence-card--tall {
    grid-row: span 1;
  }

  .reality-content,
  .panel-grid,
  .proof-grid,
  .details-inner,
  .about-grid,
  .accordion-inner-content {
    grid-template-columns: 1fr;
  }

  .accordion-inner-content {
    padding-left: 0.5rem;
  }

  .stats-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 1rem;
  }

  .reels-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .proof-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-proof {
    grid-auto-rows: 120px;
  }

  .bento-wide {
    grid-column: span 12;
    grid-row: span 3;
  }

  .bento-tall {
    grid-column: span 6;
    grid-row: span 3;
  }

  .bento-md,
  .bento-sm {
    grid-column: span 6;
    grid-row: span 2;
  }

  .mosaic-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }

  .mosaic-grid figure:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .hero-arc-stage {
    overflow-x: auto;
    justify-content: flex-start;
    perspective: none;
    min-height: 260px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .hero-arc-item {
    flex: 0 0 130px;
    scroll-snap-align: center;
  }

  .hero-arc-item[data-i="0"],
  .hero-arc-item[data-i="1"],
  .hero-arc-item[data-i="2"],
  .hero-arc-item[data-i="3"],
  .hero-arc-item[data-i="4"],
  .hero-arc-item[data-i="5"],
  .hero-arc-item[data-i="6"] {
    transform: none !important;
  }

  .hero-arc-labels {
    gap: 1rem;
  }

  .video-nav-btn {
    display: none;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — Mobile (640px)
═══════════════════════════════════════ */
@media (max-width: 640px) {

  /* Hero — mobile: blocks overlaid ON TOP of image (like reference)
     Grid row 1: image (behind) + stat cards (in front, left side)
     Grid row 2: text + button (below)
  */
  .hero {
    min-height: auto;
    padding: 1.5rem 0 3.5rem;
  }

  .new-hero-title {
    margin-bottom: 1.25rem;
    padding: 0 1rem;
  }

  .new-hero-title h1 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }

  /* Grid: single column, rows auto + auto */
  .hero-grid-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    padding: 0;
    position: relative;
  }

  /* Image occupies row 1, centered, smaller */
  .hero-image-wrap {
    grid-column: 1;
    grid-row: 1;
    width: 75%;
    margin: 0 auto;
    height: 75vw;
    max-height: 380px;
    overflow: hidden;
    z-index: 0;
    position: relative;
    border-radius: 8px;
  }

  .hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
  }

  /* Stat cards: SAME row 1 as image, z-index above, anchored bottom-left */
  .hero-left-group {
    grid-column: 1;
    grid-row: 1;
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 0 0 1.5rem 1.25rem;
    gap: 0.65rem;
    pointer-events: none;
    /* image stays tappable */
  }

  .hero-left-group>* {
    pointer-events: auto;
  }

  /* Cards smaller, stacked vertically on left like reference */
  .glass-stat-card {
    max-width: 140px;
    width: 140px;
    aspect-ratio: auto;
    padding: 1.1rem 1.25rem;
    border-radius: 20px;
    flex: none;
  }

  .glass-stat-card h3 {
    font-size: clamp(1.6rem, 6vw, 2rem);
    margin-bottom: 0.2rem;
  }

  .glass-stat-card p {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .arrow-connection-block {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    padding-left: 0.5rem;
  }

  .arrow-connection-block span {
    font-size: 1.3rem;
  }

  .arrow-connection-block svg {
    width: 20px;
    height: 28px;
    transform: rotate(90deg);
    /* point right on horizontal layout */
  }

  /* Text + button: row 2, centered */
  .hero-right-group {
    grid-column: 1;
    grid-row: 2;
    text-align: center;
    align-items: center;
    padding: 1.75rem 1.5rem 0;
    gap: 1.25rem;
  }

  .right-desc {
    max-width: 100%;
    font-size: 0.95rem;
  }

  .right-divider {
    margin: 0 auto;
  }

  .gold-btn-checkout {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 0.8rem;
  }

  .right-subtext {
    font-size: 1.15rem;
  }

  .earnings-card-horizontal {
    max-width: 100%;
    width: 100%;
  }

  /* Nav */
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  /* Stats bar */
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stats-bar-item:last-child {
    grid-column: 1 / -1;
  }

  /* Section padding */
  .section-inner {
    padding: 0 1rem;
  }

  .section-header {
    padding: 0 1rem;
    margin-bottom: 2.5rem;
  }

  .section-header h2,
  .section-title {
    font-size: clamp(1.7rem, 7vw, 2.5rem);
  }

  /* Reels */
  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  /* Layout stacks */
  .reality-content,
  .panel-grid,
  .proof-grid,
  .details-inner,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  /* Forms */
  .waitlist-form-container {
    flex-direction: column;
  }

  .waitlist-form-container input {
    font-size: 0.9rem;
  }

  .waitlist-form-container button {
    width: 100%;
  }

  /* Pricing */
  .pricing-card {
    padding: 2rem 1.25rem;
  }

  /* Proof / bento */
  .proof-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .bento-tall,
  .bento-md,
  .bento-sm {
    grid-column: span 12;
  }

  /* Mosaic */
  .mosaic-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .mosaic-grid figure {
    min-height: 220px;
  }

  /* Evidence Grid — mobile: 1 column */
  .evidence-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .evidence-card--tall {
    grid-row: span 1;
  }

  /* Footer */
  .footer-links {
    gap: 1rem;
  }

  footer {
    padding: 3rem 1rem 2rem;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — Small (400px)
═══════════════════════════════════════ */
@media (max-width: 400px) {
  .reels-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stat-card {
    flex: 1 1 100%;
  }

  .hero-brand {
    font-size: 2.4rem;
  }
}