/* Fonts loaded from <head> with preconnect for parallel non-blocking fetch */

:root {
  --color-bg:          #080C10;
  --color-surface:     #111820;
  --color-surface-2:   #1A2535;
  --color-brand-deep:  #023B4C;
  --color-glow:        #2EC4B6;
  --color-glow-soft:   rgba(46, 196, 182, 0.15);
  --color-gold:        #C9A84C;
  --color-text:        #F0F4F8;
  --color-text-muted:  #8A9BB0;
  --color-border:      rgba(46, 196, 182, 0.2);
  --color-cta:         #2EC4B6;
  --color-cta-hover:   #38D9CB;
  --color-cta-text:    #080C10;
  --color-danger:      #E05C5C;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --text-hero:    clamp(2.5rem, 6vw, 5rem);
  --text-h1:      clamp(2rem, 4vw, 3.5rem);
  --text-h2:      clamp(1.5rem, 3vw, 2.25rem);
  --text-h3:      clamp(1.1rem, 2vw, 1.5rem);
  --text-body:    1rem;
  --text-small:   0.875rem;
  --text-xs:      0.75rem;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  --max-width:       1200px;
  --content-width:   800px;
  --border-radius:   8px;
  --border-radius-lg:16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* Respect the hidden HTML attribute even when a class sets a different display value */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; line-height: 1.15; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Sticky Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: var(--space-md) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 300ms ease, border-color 300ms ease, padding 300ms ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(8, 12, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--color-border);
  padding: var(--space-sm) var(--space-md);
  box-shadow: 0 0 40px var(--color-glow-soft);
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.logo-img {
  width: 180px;
  height: 54px;
  display: block;
  opacity: 0.95;
  transition: opacity 300ms ease;
}
.brand-logo:hover .logo-img { opacity: 1; }
.site-header.is-scrolled .logo-img { width: 150px; height: 45px; }
.logo-svg {
  width: 380px;
  height: 113px;
  display: block;
  opacity: 0.9;
}
.logo-svg--lg {
  width: 380px;
  height: 113px;
  opacity: 0.9;
}
.header-buy {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--color-cta);
  color: var(--color-cta-text);
  border-radius: 999px;
  font-size: var(--text-small);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 300ms ease, transform 300ms ease, box-shadow 300ms ease;
}
.header-buy:hover {
  background: var(--color-cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 0 30px var(--color-glow-soft);
}
.site-header.is-scrolled .header-buy {
  box-shadow: 0 0 20px var(--color-glow-soft);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--space-2xl) + 40px) var(--space-md) var(--space-2xl);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 28% 50%, rgba(46,196,182,0.10), transparent 55%),
    radial-gradient(ellipse at 75% 80%, rgba(46,196,182,0.04), transparent 60%),
    var(--color-bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1 / 1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow:
    0 0 80px rgba(46,196,182,0.25),
    0 0 140px rgba(46,196,182,0.10),
    inset 0 0 0 1px rgba(255,255,255,0.02);
}
.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: -15%;
  background: radial-gradient(circle, var(--color-glow-soft) 0%, transparent 55%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-copy { max-width: 540px; }
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-glow);
  margin-bottom: var(--space-sm);
}
.hero-headline {
  font-size: clamp(2.25rem, 4.4vw, 3.75rem);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: var(--space-md);
  text-shadow: 0 0 60px rgba(46,196,182,0.25);
}
.hero-bnpl,
.bnpl-line {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: calc(var(--space-sm) * -0.5);
  margin-bottom: var(--space-md);
  letter-spacing: 0.01em;
}
.hero-bnpl strong,
.bnpl-line strong {
  color: var(--color-text);
  font-weight: 500;
}
/* CTA stack: button + BNPL line as a single unit.
   - Stack sizes to its widest child (the button, since BNPL is constrained narrower)
   - Children center inside the stack via align-items
   - BNPL max-width is set below the typical button width so the button
     drives the stack width and BNPL nests visually underneath. */
.cta-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.cta-stack .bnpl-line {
  margin: 0;
  text-align: center;
  max-width: 300px;  /* narrower than desktop button (~340px) */
}
@media (max-width: 900px) {
  .cta-stack .bnpl-line { max-width: 240px; }  /* narrower than mobile button (~270px) */
}
.hero-subhead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-h3);
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  max-width: 480px;
}
.hero-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}
.hero-price-now {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color-text);
}
.hero-price .price-compare { font-size: 1.4rem; order: -1; }
.hero-price .price-save { margin-left: 4px; }
@media (max-width: 900px) {
  .hero-price { justify-content: center; }
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-cta);
  color: var(--color-cta-text);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.05rem;
  padding: var(--space-md) var(--space-xl);
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: background 300ms ease, transform 300ms ease, box-shadow 300ms ease;
  box-shadow: 0 0 0 var(--color-glow-soft);
  animation: ctaPulse 3s ease-in-out infinite;
}
.cta-button:hover {
  background: var(--color-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 60px var(--color-glow-soft);
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(46,196,182,0); }
  50% { box-shadow: 0 0 50px rgba(46,196,182,0.4); }
}
.cta-button .arrow { transition: transform 300ms ease; }
.cta-button:hover .arrow { transform: translateX(4px); }

.trust-row {
  margin-top: var(--space-lg);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
  color: var(--color-text);
  font-size: 0.8rem;
}
.trust-row.is-centered { justify-content: center; }
.trust {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text);
  white-space: nowrap;
}
.trust svg {
  width: 16px;
  height: 16px;
  color: var(--color-glow);
  flex-shrink: 0;
}
.trust strong {
  font-weight: 500;
  letter-spacing: 0.02em;
}
.stars { color: var(--color-gold); letter-spacing: 2px; font-size: 0.85rem; white-space: nowrap; }
.trust-row .dot { opacity: 0.4; display: none; }

/* On narrow screens let the row wrap rather than overflow */
@media (max-width: 560px) {
  .trust-row { flex-wrap: wrap; justify-content: center; gap: 10px 16px; }
}

/* ---------- Section base ---------- */
.section {
  padding: var(--space-2xl) var(--space-md);
  position: relative;
  z-index: 2;
}
.section-heading {
  font-size: var(--text-h1);
  font-family: var(--font-display);
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}
.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.3em;
  color: var(--color-glow);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

/* ---------- Product Main ---------- */
.product-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}
.product-gallery { display: flex; flex-direction: column; gap: var(--space-md); }
.gallery-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--color-surface);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 0 60px var(--color-glow-soft);
  border: 1px solid var(--color-border);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity 300ms ease; }
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: var(--space-sm);
}
.thumb {
  aspect-ratio: 1 / 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid transparent;
  cursor: pointer;
  transition: border-color 300ms ease, transform 300ms ease;
  padding: 0;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb:hover { border-color: var(--color-border); transform: translateY(-2px); }
.thumb.is-active { border-color: var(--color-glow); box-shadow: 0 0 20px var(--color-glow-soft); }

.product-info { padding-top: var(--space-md); }
.product-title { font-size: var(--text-h1); margin-bottom: var(--space-sm); }
.product-title sup { font-size: 0.4em; vertical-align: super; opacity: 0.6; }
.product-title-mobile { display: none; }
@media (max-width: 900px) {
  .product-title-mobile { display: block; text-align: center; margin-bottom: var(--space-md); }
  .product-title-desktop { display: none; }
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.product-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}
.price-compare {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(138, 155, 176, 0.7);
  order: -1;
}
.price-save {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 4px 10px;
  border-radius: 999px;
  margin-left: var(--space-xs);
}
.product-ship {
  color: var(--color-glow);
  font-size: var(--text-small);
  margin-bottom: var(--space-md);
  letter-spacing: 0.05em;
}
.product-desc {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}
.qty-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}
.qty-label { font-size: var(--text-small); color: var(--color-text-muted); letter-spacing: 0.05em; text-transform: uppercase; }
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  overflow: hidden;
}
.qty-stepper button {
  width: 38px; height: 38px;
  font-size: 1.1rem;
  color: var(--color-text);
  transition: background 200ms ease;
}
.qty-stepper button:hover { background: var(--color-glow-soft); }
.qty-stepper input {
  width: 40px;
  height: 38px;
  background: transparent;
  border: none;
  text-align: center;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  -moz-appearance: textfield;
}
.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.atc-button {
  width: 100%;
  margin-bottom: var(--space-sm);
}
.product-trust {
  text-align: left;
  font-size: var(--text-small);
  color: var(--color-text-muted);
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
}

/* Accordion */
.accordion-item { border-top: 1px solid var(--color-border); }
.accordion-item:last-child { border-bottom: 1px solid var(--color-border); }
.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-md) 0;
  font-family: var(--font-body);
  font-size: 1rem;
  text-align: left;
  color: var(--color-text);
}
.accordion-trigger .chev {
  width: 14px; height: 14px;
  border-right: 2px solid var(--color-glow);
  border-bottom: 2px solid var(--color-glow);
  transform: rotate(45deg);
  transition: transform 300ms ease;
}
.accordion-item.is-open .chev { transform: rotate(-135deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease, padding 400ms ease;
  color: var(--color-text-muted);
  font-size: var(--text-small);
  line-height: 1.7;
}
.accordion-item.is-open .accordion-content { max-height: 400px; padding: 0 0 var(--space-md) 0; }

/* ---------- Benefits ---------- */
.benefits {
  background: linear-gradient(to bottom, var(--color-bg), var(--color-surface) 50%, var(--color-bg));
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
}
.benefit {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--border-radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: transform 400ms ease, box-shadow 400ms ease;
}
.benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px var(--color-glow-soft);
}
.benefit-icon {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  display: inline-block;
  filter: drop-shadow(0 0 12px var(--color-glow-soft));
}
.benefit-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}
.benefit-body {
  color: var(--color-text-muted);
  font-size: var(--text-small);
  line-height: 1.6;
}

/* ---------- Halo Benefits (radial) ---------- */
.halo-section {
  background: linear-gradient(to bottom, var(--color-bg), var(--color-surface) 50%, var(--color-bg));
  overflow: hidden;
}
.halo-stage {
  position: relative;
  width: 100%;
  max-width: 1080px;
  height: 1020px;
  margin: 0 auto;
}
.halo-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--color-glow-soft) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.halo-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 440px;
  height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.halo-image {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  /* PNG should have transparent bg — no blend needed. */
  filter: drop-shadow(0 0 60px rgba(46, 196, 182, 0.45));
}
.halo-item {
  position: absolute;
  top: 50%; left: 50%;
  width: 210px;
  text-align: center;
  --radius: 380px;
  transform:
    translate(-50%, -50%)
    rotate(var(--angle))
    translateY(calc(-1 * var(--radius)))
    rotate(calc(-1 * var(--angle)));
  z-index: 2;
  transition: transform 400ms ease;
}
.halo-icon {
  font-size: 1.75rem;
  margin-bottom: var(--space-xs);
  filter: drop-shadow(0 0 12px var(--color-glow-soft));
}
.halo-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-text);
}
.halo-body {
  color: var(--color-text-muted);
  font-size: var(--text-small);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .halo-stage {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md) var(--space-lg);
    align-items: start;
    padding-bottom: var(--space-md);
  }
  .halo-glow { display: none; }
  .halo-center {
    grid-column: 1 / -1;
    position: static;
    transform: none;
    width: 280px;
    height: 380px;
    margin: 0 auto;
  }
  .halo-item {
    position: static;
    transform: none;
    width: 100%;
    padding: var(--space-md);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
  }
}
@media (max-width: 560px) {
  .halo-stage {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .halo-center { width: 220px; height: 300px; margin: 0 auto var(--space-md); }
}

/* ---------- How It Works ---------- */
.how-it-works {
  position: relative;
}
.how-it-works::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-glow), transparent);
  box-shadow: 0 0 30px var(--color-glow);
}
.hiw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: center;
}
.hiw-image {
  aspect-ratio: 1 / 1;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 0 60px var(--color-glow-soft);
  border: 1px solid var(--color-border);
}
.hiw-image img, .hiw-image video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hiw-copy { max-width: 540px; }
.hiw-copy p { color: var(--color-text-muted); margin-bottom: var(--space-md); line-height: 1.8; }
.hiw-copy p:first-of-type { color: var(--color-text); font-size: 1.05rem; }

/* ---------- Who It's For ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
}
.audience-card {
  background: var(--color-surface-2);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform 400ms ease, border-color 400ms ease, box-shadow 400ms ease;
  display: flex;
  flex-direction: column;
}
.audience-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-glow);
  box-shadow: 0 0 40px var(--color-glow-soft);
}
.audience-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-bg);
  overflow: hidden;
}
.audience-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 400ms ease, transform 600ms ease;
}
.audience-card:hover .audience-video {
  filter: brightness(1.05);
  transform: scale(1.02);
}
.audience-video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: var(--text-small);
  font-style: italic;
  background: linear-gradient(135deg, var(--color-bg), var(--color-surface-2));
}
.audience-video-wrap::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(46,196,182,0.06));
  pointer-events: none;
}
.audience-card-text {
  padding: var(--space-lg);
}
.audience-icon {
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
  display: block;
  filter: drop-shadow(0 0 12px var(--color-glow-soft));
}
.audience-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--color-glow);
}
.audience-body {
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: var(--text-small);
}

/* ---------- UGC Video Section ---------- */
.ugc-section {
  background: linear-gradient(to bottom, var(--color-bg), var(--color-surface) 50%, var(--color-bg));
}
.ugc-video-wrap {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 0 80px var(--color-glow-soft);
  background: var(--color-bg);
  position: relative;
  aspect-ratio: 16 / 9;
}
.ugc-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ---------- Social Proof ---------- */
.social-proof {
  background: var(--color-surface);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
}
.review {
  background: var(--color-bg);
  padding: var(--space-lg);
  border-radius: var(--border-radius);
  border-left: 3px solid var(--color-glow);
  position: relative;
}
.review-stars { color: var(--color-gold); letter-spacing: 3px; font-size: 0.9rem; margin-bottom: var(--space-sm); }
.review-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}
.review-author {
  color: var(--color-text-muted);
  font-size: var(--text-small);
  letter-spacing: 0.05em;
}
.review.is-hidden { display: none; }
.inline-cta {
  text-align: center;
  margin: var(--space-xl) auto 0;
  max-width: 600px;
}
.inline-cta-eyebrow {
  color: var(--color-text-muted);
  font-size: var(--text-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}
.inline-cta .cta-button {
  display: inline-flex;
}

.reviews-more {
  display: block;
  margin: var(--space-lg) auto 0;
  padding: 14px 32px;
  background: transparent;
  color: var(--color-glow);
  border: 1px solid var(--color-glow);
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}
.reviews-more:hover {
  background: var(--color-glow);
  color: var(--color-cta-text);
  box-shadow: 0 0 30px var(--color-glow-soft);
}

/* ---------- FAQ ---------- */
.faq {
  max-width: var(--content-width);
  margin: 0 auto;
}
.faq .accordion-trigger { font-family: var(--font-display); font-size: 1.2rem; }
.faq .accordion-item { border-color: var(--color-border); }

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center;
  background:
    radial-gradient(ellipse at center, var(--color-glow-soft), transparent 70%),
    var(--color-bg);
  padding: var(--space-2xl) var(--space-md);
  position: relative;
}
.final-cta::before, .final-cta::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-glow), transparent);
}
.final-cta::before { top: 0; }
.final-cta::after { bottom: 0; }
.final-cta h2 { font-size: var(--text-h1); margin-bottom: var(--space-md); }
.strike-you {
  color: var(--color-text-muted);
  font-weight: 300;
  margin-right: 0.15em;
  opacity: 0.55;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.final-cta p { color: var(--color-text-muted); margin-bottom: var(--space-lg); font-size: 1.05rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-bg);
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  text-align: center;
  border-top: 1px solid var(--color-border);
}
.footer-logo {
  margin-bottom: var(--space-md);
  display: flex;
  justify-content: center;
  line-height: 0;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
  font-size: var(--text-small);
  color: var(--color-text-muted);
}
.footer-nav a { transition: color 300ms ease; }
.footer-nav a:hover { color: var(--color-glow); }
.footer-copy {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
}

/* ---------- Cart Drawer ---------- */
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: var(--color-surface);
  border-left: 1px solid var(--color-border);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 80px rgba(0,0,0,0.6);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,12,16,0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}
.cart-overlay.is-visible { opacity: 1; pointer-events: auto; }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}
.cart-header h3 { font-size: 1.3rem; }
.cart-close {
  width: 32px; height: 32px;
  border-radius: 999px;
  font-size: 1.4rem;
  color: var(--color-text-muted);
  transition: color 200ms ease, background 200ms ease;
}
.cart-close:hover { color: var(--color-text); background: var(--color-surface-2); }
.cart-body { flex: 1; overflow-y: auto; padding: var(--space-md); }
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
}
.cart-item-img {
  width: 80px; height: 80px;
  background: var(--color-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-title { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 4px; }
.cart-item-price { color: var(--color-glow); font-size: var(--text-small); }
.cart-empty { color: var(--color-text-muted); text-align: center; padding: var(--space-xl) 0; }
.cart-shipping {
  background: var(--color-glow-soft);
  padding: var(--space-sm);
  border-radius: var(--border-radius);
  text-align: center;
  font-size: var(--text-small);
  color: var(--color-glow);
  margin: var(--space-md) 0;
}
.cart-upsell {
  background: var(--color-surface-2);
  border: 1px dashed var(--color-border);
  padding: var(--space-md);
  border-radius: var(--border-radius);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}
.cart-upsell-text { font-size: var(--text-small); color: var(--color-text-muted); }
.cart-upsell-text strong { color: var(--color-text); display: block; margin-bottom: 4px; }
.cart-upsell button {
  background: var(--color-glow-soft);
  color: var(--color-glow);
  padding: var(--space-xs) var(--space-md);
  border-radius: 999px;
  font-size: var(--text-small);
  font-weight: 500;
  transition: background 200ms ease;
}
.cart-upsell button:hover { background: var(--color-glow); color: var(--color-cta-text); }
.cart-footer { padding: var(--space-md); border-top: 1px solid var(--color-border); }
.cart-totals {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
}
.cart-trust {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
}

/* Toast for ATC confirmation */
.toast {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: var(--color-surface-2);
  border: 1px solid var(--color-glow);
  color: var(--color-text);
  padding: var(--space-sm) var(--space-md);
  border-radius: 999px;
  font-size: var(--text-small);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease, transform 300ms ease;
  box-shadow: 0 0 30px var(--color-glow-soft);
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .product-main,
  .hiw-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }
  .hero-visual { order: -1; }
  .hero-image-wrap { max-width: 380px; margin: 0 auto; }
  .hero-copy { max-width: 100%; margin: 0 auto; }
  .hero-subhead { margin-left: auto; margin-right: auto; }
  .hero .trust-row { justify-content: center; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  /* Tighten section spacing on mobile — desktop stays generous */
  .section-heading { margin-bottom: var(--space-lg); }
  .inline-cta { margin-top: var(--space-md); }
  .product-info { padding-top: 0; }
  .final-cta { padding: var(--space-lg) var(--space-md); }
  .final-cta h2 { font-size: var(--text-h2); }
  .hero {
    min-height: auto;
    padding-top: calc(var(--space-xl) + 20px);
    padding-bottom: var(--space-lg);
  }
  .hero-image-wrap { max-width: 300px; }
  .hero-eyebrow { text-align: center; }
  .hero-bnpl { text-align: center; }
  .section { padding: var(--space-md) var(--space-md); }
}

@media (max-width: 560px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-nav { flex-direction: column; gap: var(--space-sm); }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .cta-button { padding: 0.85rem 1.75rem; font-size: 0.95rem; }
  .trust-row { gap: var(--space-sm); font-size: var(--text-xs); }
  .trust-row .dot { display: none; }
  .site-header { padding: var(--space-sm) var(--space-md); }
  /* Mobile fold optimization — keep image hero-sized, reclaim space elsewhere */
  .site-header { padding: 0.5rem var(--space-md); }
  .site-header .logo-img { width: 130px; height: 39px; }
  .site-header.is-scrolled .logo-img { width: 110px; height: 33px; }
  /* Hide header Buy Now until the user scrolls past the hero — it reappears via .is-scrolled */
  .site-header:not(.is-scrolled) .header-buy { display: none; }

  .hero {
    padding-top: calc(var(--space-md) + 38px);
    padding-bottom: var(--space-md);
  }
  .hero-grid { gap: var(--space-sm); }
  .hero-image-wrap { max-width: 240px; }
  .hero-eyebrow {
    font-size: 0.7rem;
    margin-bottom: 0.4rem;
    letter-spacing: 0.16em;
  }
  .hero-headline {
    font-size: 1.65rem;
    line-height: 1.12;
    margin-bottom: 0.5rem;
  }
  .hero-subhead {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
  .hero-price { margin-bottom: 0.25rem; }
  .hero-price-now { font-size: 2rem; }
  .hero-bnpl,
  .bnpl-line {
    font-size: 0.78rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
    text-wrap: balance;
  }
  .hero .trust-row {
    margin-top: 0.75rem;
    gap: 0.5rem;
    font-size: 0.7rem;
  }
  .hero .trust svg { width: 14px; height: 14px; }
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-body {
  background: var(--color-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---------- Header ---------- */
.checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
}
.checkout-header .brand-logo { display: inline-flex; }
.checkout-secure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-muted);
  font-size: var(--text-small);
}
.checkout-secure svg { color: var(--color-glow); }

/* ---------- Main grid: 2 columns desktop (form left, summary right), 1 column mobile ---------- */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-xl);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
  flex: 1;
}
/* Visual order on desktop: form first (left), summary second (right) */
.checkout-form-wrap { order: 1; }
.checkout-summary { order: 2; }

/* Mobile-only chevron toggle is hidden on desktop */
.summary-expand-toggle { display: none; }

/* ---------- Order Summary (left) ---------- */
.checkout-summary {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: var(--space-lg);
  align-self: start;
  position: sticky;
  top: var(--space-md);
}
.checkout-section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}
.summary-product {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}
.summary-product-img {
  flex: 0 0 100px;
  height: 100px;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}
.summary-product-img img { width: 100%; height: 100%; object-fit: cover; }
.summary-product-info { flex: 1; }
.summary-product-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 4px;
  color: var(--color-text);
}
.summary-product-name sup { font-size: 0.5em; opacity: 0.6; }
.summary-product-desc {
  color: var(--color-text-muted);
  font-size: var(--text-small);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}
.summary-product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}
.summary-product-price { display: flex; align-items: baseline; gap: 8px; }
.summary-product-price .price-now {
  color: var(--color-glow);
  font-weight: 600;
  font-size: 1.25rem;
  font-variant-numeric: tabular-nums;
}
.price-total-label { display: none; } /* shown on mobile only via media query */

/* Quantity stepper */
.summary-qty {
  display: inline-flex;
  align-items: center;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  overflow: hidden;
}
.qty-btn {
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover:not(:disabled) {
  background: var(--color-glow);
  color: var(--color-cta-text);
}
.qty-btn:disabled {
  color: var(--color-text-muted);
  opacity: 0.5;
  cursor: not-allowed;
}
.qty-value {
  min-width: 28px;
  text-align: center;
  font-weight: 600;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
  user-select: none;
}

/* Bulk discount hint pill */
.bulk-discount-hint {
  margin-top: 8px;
  font-size: var(--text-xs);
  color: var(--color-glow);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.summary-bulk { color: var(--color-glow); }
.summary-bulk span:last-child { color: var(--color-glow); font-weight: 500; }
.summary-divider {
  height: 1px;
  background: var(--color-border);
  margin: var(--space-sm) 0;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  color: var(--color-text-muted);
  font-size: var(--text-small);
}
.summary-row .summary-free {
  color: var(--color-glow);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.summary-total {
  font-size: 1.25rem;
  color: var(--color-text);
  font-weight: 600;
}
.summary-total span:last-child { color: var(--color-glow); }
.summary-trust {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: var(--text-small);
}
.trust-item svg { color: var(--color-glow); flex-shrink: 0; }

/* ---------- Form (right) ---------- */
.checkout-form-wrap { width: 100%; }
.form-section {
  margin-bottom: var(--space-lg);
}
.form-section .checkout-section-title { margin-bottom: var(--space-sm); }

.form-field { margin-bottom: var(--space-sm); }
.form-field label {
  display: block;
  color: var(--color-text);
  font-size: var(--text-small);
  margin-bottom: 6px;
  font-weight: 500;
}
.form-optional {
  color: var(--color-text-muted);
  font-weight: 400;
  font-size: 0.85em;
}
.form-field input,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--color-glow);
  box-shadow: 0 0 0 3px var(--color-glow-soft);
}
.form-field input::placeholder { color: var(--color-text-muted); opacity: 0.5; }
.form-hint {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 4px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}
.form-row-3 { grid-template-columns: 2fr 1fr 1fr; }

/* ---------- Stripe Elements ---------- */
.stripe-element-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 14px;
  min-height: 48px;
}

/* ---------- Express checkout (Apple/Google/Link) ---------- */
/* The whole #expressCheckoutSection is hidden until a wallet method is available */

/* ---------- Discount code ---------- */
.discount-section { padding-bottom: 0; }
.discount-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--color-glow);
  font-family: var(--font-body);
  font-size: var(--text-small);
  cursor: pointer;
  padding: 0;
}
.discount-toggle:hover { color: var(--color-cta-hover); }
.discount-input-wrap {
  display: flex;
  gap: 8px;
  margin-top: var(--space-sm);
}
.discount-input-wrap input {
  flex: 1;
  padding: 12px 14px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
}
.discount-input-wrap input:focus {
  outline: none;
  border-color: var(--color-glow);
  box-shadow: 0 0 0 3px var(--color-glow-soft);
}
.discount-input-wrap button {
  padding: 12px 20px;
  background: transparent;
  border: 1px solid var(--color-glow);
  border-radius: var(--border-radius);
  color: var(--color-glow);
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 500;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
}
.discount-input-wrap button:hover {
  background: var(--color-glow);
  color: var(--color-cta-text);
}
.discount-message {
  flex-basis: 100%;
  font-size: var(--text-xs);
  margin-top: 6px;
}
.discount-message.is-success { color: var(--color-glow); }
.discount-message.is-error { color: var(--color-danger); }

/* ---------- Auth note ---------- */
.auth-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}
.auth-note a { color: var(--color-glow); text-decoration: underline; }

/* ---------- Submit button ---------- */
.checkout-submit {
  width: 100%;
  padding: 18px 32px;
  background: var(--color-cta);
  color: var(--color-cta-text);
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 200ms ease, box-shadow 200ms ease, transform 100ms ease;
  position: relative;
  min-height: 60px;
}
.checkout-submit:hover:not(:disabled) {
  background: var(--color-cta-hover);
  box-shadow: 0 0 40px var(--color-glow-soft);
}
.checkout-submit:active:not(:disabled) { transform: scale(0.99); }
.checkout-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.checkout-submit-default,
.checkout-submit-loading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(8, 12, 16, 0.3);
  border-top-color: var(--color-cta-text);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Error display ---------- */
.checkout-error {
  margin-top: var(--space-sm);
  padding: 12px 14px;
  background: rgba(224, 92, 92, 0.1);
  border: 1px solid var(--color-danger);
  border-radius: var(--border-radius);
  color: var(--color-danger);
  font-size: var(--text-small);
}

.checkout-secure-footer {
  text-align: center;
  margin-top: var(--space-md);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  justify-content: center;
}
.checkout-secure-footer svg { color: var(--color-glow); }

/* ---------- Footer ---------- */
.checkout-footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-muted);
  font-size: var(--text-small);
}
.checkout-footer nav { display: flex; gap: var(--space-md); }
.checkout-footer a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 200ms ease;
}
.checkout-footer a:hover { color: var(--color-glow); }

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.ty-main {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
  flex: 1;
  width: 100%;
}
.ty-hero {
  text-align: center;
  padding: var(--space-xl) 0;
}
.ty-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-glow);
  color: var(--color-cta-text);
  margin-bottom: var(--space-md);
  box-shadow: 0 0 60px var(--color-glow-soft);
}
.ty-check-small {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-sm);
}
.ty-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: var(--space-sm);
}
.ty-subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}
.ty-order-id {
  display: inline-block;
  padding: 8px 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text-muted);
  font-size: var(--text-small);
  letter-spacing: 0.05em;
}
.ty-order-id span { color: var(--color-glow); font-weight: 600; }

/* ---------- Upsell ---------- */
.upsell-card {
  margin: var(--space-md) auto var(--space-xl);
  max-width: 720px;
  background: linear-gradient(135deg, var(--color-surface), var(--color-surface-2));
  border: 2px solid var(--color-glow);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 120px var(--color-glow-soft);
}
/* BIG banner header at the top — bold and impossible to miss */
.upsell-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  padding: 20px var(--space-md);
  background: var(--color-glow);
  color: var(--color-cta-text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.upsell-banner-icon {
  font-size: 1.9rem;
  line-height: 1;
}
.upsell-banner-text {
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  font-weight: 800;
}

/* Grid: image+timer on left, content on right */
.upsell-grid {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 1.6fr;
  gap: var(--space-lg);
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  align-items: flex-start;
}

/* Left column: product image + big timer */
.upsell-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.upsell-image {
  aspect-ratio: 1 / 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: #000;
}
.upsell-image img { width: 100%; height: 100%; object-fit: cover; }

/* BIG timer below the image */
.upsell-timer {
  text-align: center;
  padding: 10px 8px;
  background: rgba(46, 196, 182, 0.08);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
}
.upsell-timer-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.upsell-timer-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-glow);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

/* Right column: content — tight spacing */
.upsell-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.upsell-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  line-height: 1.15;
  color: var(--color-text);
}
.upsell-pitch {
  color: var(--color-text-muted);
  line-height: 1.5;
  font-size: 0.95rem;
}
.upsell-pitch strong { color: var(--color-text); }

/* Price row — $55 is HUGE, Save $24 is bigger */
.upsell-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 4px 0;
}
.upsell-price-row .price-compare {
  color: var(--color-text-muted);
  text-decoration: line-through;
  font-size: 1.35rem;
}
.upsell-price-now {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4rem);
  color: var(--color-glow);
  font-weight: 600;
  line-height: 1;
}
.upsell-price-row .price-save {
  font-size: 1rem;
  font-weight: 700;
  padding: 6px 14px;
  background: rgba(201, 168, 76, 0.12);
  color: var(--color-gold);
  border-radius: 999px;
  letter-spacing: 0.04em;
  border: 1px solid rgba(201, 168, 76, 0.5);
}

/* Qty stepper inside upsell card */
.upsell-qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
}
.upsell-qty-label {
  color: var(--color-text-muted);
  font-size: var(--text-small);
  font-weight: 500;
}

.upsell-accept {
  width: 100%;
  padding: 16px 24px;
  background: var(--color-cta);
  color: var(--color-cta-text);
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 200ms ease, box-shadow 200ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.upsell-accept:hover:not(:disabled) {
  background: var(--color-cta-hover);
  box-shadow: 0 0 40px var(--color-glow-soft);
}
.upsell-accept:disabled { opacity: 0.6; cursor: not-allowed; }
.upsell-default,
.upsell-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.upsell-decline {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: var(--text-small);
  cursor: pointer;
  padding: 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
  align-self: center;
}
.upsell-decline:hover { color: var(--color-text); }

.upsell-accepted {
  text-align: center;
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
  background: var(--color-surface);
  border: 1px solid var(--color-glow);
  border-radius: var(--border-radius-lg);
}
.upsell-accepted h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}
.upsell-accepted p { color: var(--color-text-muted); }

/* ---------- Next steps ---------- */
.ty-next {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: var(--color-surface);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border);
}
.ty-next-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}
.ty-next-list {
  list-style: none;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.ty-next-list li {
  counter-increment: steps;
  position: relative;
  padding-left: 3rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}
.ty-next-list li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: -2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-glow);
  color: var(--color-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--text-small);
}
.ty-next-list li strong { color: var(--color-text); }
.ty-return-home {
  display: inline-block;
  margin-top: var(--space-md);
  color: var(--color-glow);
  text-decoration: none;
  font-size: var(--text-small);
}
.ty-return-home:hover { color: var(--color-cta-hover); }

@media (max-width: 700px) {
  /* Kill the headroom above the card */
  .ty-main {
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
  }
  .upsell-card {
    margin: 0 0 var(--space-md);
  }
  /* Tighter banner */
  .upsell-banner {
    padding: 12px var(--space-sm);
    gap: 8px;
  }
  .upsell-banner-icon { font-size: 1.4rem; }
  .upsell-banner-text { font-size: 1rem; }

  /* Compact grid */
  .upsell-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }
  /* Image + timer side-by-side, smaller */
  .upsell-left {
    flex-direction: row;
    align-items: stretch;
    gap: 10px;
  }
  .upsell-image {
    flex: 0 0 110px;
    height: 110px;
    aspect-ratio: 1 / 1;
  }
  .upsell-timer {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6px 8px;
  }
  .upsell-timer-label { font-size: 0.65rem; }
  .upsell-timer-value { font-size: 1.5rem; }

  /* Tighter content column */
  .upsell-content { gap: 8px; }
  .upsell-headline { font-size: 1.25rem; line-height: 1.2; }
  .upsell-pitch { font-size: 0.85rem; line-height: 1.45; }
  .upsell-price-row { padding: 0; gap: 10px; }
  .upsell-price-row .price-compare { font-size: 1.1rem; }
  .upsell-price-now { font-size: 2.5rem; }
  .upsell-price-row .price-save { font-size: 0.85rem; padding: 4px 10px; }

  /* Tighter button + decline */
  .upsell-accept { padding: 14px 20px; font-size: 1rem; }
  .upsell-decline { padding: 4px; font-size: var(--text-xs); }
}

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }
  /* Sticky summary on top, form below */
  .checkout-summary {
    order: 1;
    position: sticky;
    top: 0;
    z-index: 50;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    padding: 0;
    background: var(--color-surface);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  }
  .checkout-form-wrap {
    order: 2;
    padding: var(--space-md);
    padding-top: var(--space-lg);
  }
  .form-row,
  .form-row-3 { grid-template-columns: 1fr; }
  .checkout-header { padding: var(--space-sm) var(--space-md); }
  .checkout-header .logo-img { width: 140px; height: auto; }
  .checkout-secure { font-size: var(--text-xs); }
  .checkout-footer {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
  /* On mobile: product (image+name+desc+qty+price) is always visible at top, with chevron toggle */
  .summary-desktop-title { display: none; }
  .summary-product {
    margin: 0;
    padding: 12px var(--space-md);
    align-items: flex-start;
    gap: 12px;
  }
  .summary-product-img {
    flex: 0 0 72px;
    height: 72px;
  }
  .summary-product-name {
    font-size: 1rem;
    margin-bottom: 2px;
  }
  .summary-product-desc {
    font-size: var(--text-xs);
    margin-bottom: 8px;
    line-height: 1.3;
  }
  .summary-product-bottom { margin-top: 6px; }
  .summary-product-price {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
  }
  .summary-product-price .price-now { font-size: 1.05rem; }
  .price-total-label {
    display: inline;
    color: var(--color-text-muted);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
  }
  /* Compact qty stepper on mobile */
  .qty-btn { width: 30px; height: 30px; font-size: 1.1rem; }
  .qty-value { min-width: 22px; font-size: var(--text-small); }
  .bulk-discount-hint { font-size: 0.7rem; }

  /* Chevron toggle button on the right of the product row */
  .summary-expand-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    color: var(--color-glow);
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
  }
  .summary-expand-toggle svg { transition: transform 250ms ease; }
  .summary-expand-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

  /* Expandable body: hidden by default on mobile, slides open when chevron clicked */
  .summary-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 400ms ease;
    padding: 0 var(--space-md);
  }
  .summary-body.is-open {
    max-height: 700px;
    padding: 0 var(--space-md) var(--space-md);
  }
  .summary-body .summary-divider:first-child { margin-top: 0; }
}

/* ============================================================
   Site modal — return policy / privacy / terms
   ============================================================ */
.site-modal {
  background: transparent;
  border: none;
  padding: 0;
  max-width: 100vw;
  max-height: 100vh;
  width: 100%;
  height: 100%;
  color: var(--color-text);
}
.site-modal::backdrop {
  background: rgba(8, 12, 16, 0.85);
  backdrop-filter: blur(6px);
}
.site-modal[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-modal-panel {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  max-width: 640px;
  width: calc(100% - 2 * var(--space-md));
  max-height: 85vh;
  overflow-y: auto;
  padding: var(--space-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.site-modal-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 36px;
  height: 36px;
  border: none;
  background: var(--color-glow-soft);
  color: var(--color-text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-modal-close:hover {
  background: var(--color-glow);
  color: var(--color-cta-text);
}
.site-modal-close:focus-visible {
  background: var(--color-glow);
  color: var(--color-cta-text);
  box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.3);
}
.site-modal-title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 600;
  margin-bottom: var(--space-md);
  padding-right: var(--space-lg);
  color: var(--color-text);
}
.site-modal-body { font-size: var(--text-body); line-height: 1.65; }
.site-modal-body p { margin-bottom: var(--space-sm); color: var(--color-text); }
.site-modal-body h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 600;
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
  color: var(--color-glow);
}
.site-modal-body ul {
  margin: 0 0 var(--space-sm) var(--space-md);
  padding-left: var(--space-sm);
}
.site-modal-body li { margin-bottom: var(--space-xs); }
.site-modal-body a {
  color: var(--color-glow);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.site-modal-body a:hover { color: var(--color-cta-hover); }
.site-modal-body .modal-meta {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: var(--space-md);
}
.site-modal-body .modal-contact {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  font-size: var(--text-small);
  color: var(--color-text-muted);
}

/* ============================================================
   Exit-intent modal — homepage only
   ============================================================ */
.exit-intent-modal {
  background: transparent;
  border: none;
  padding: 0;
  max-width: 100vw;
  max-height: 100vh;
  width: 100%;
  height: 100%;
  color: var(--color-text);
}
.exit-intent-modal::backdrop {
  background: rgba(8, 12, 16, 0.85);
  backdrop-filter: blur(8px);
}
.exit-intent-modal[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.exit-intent-panel {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  max-width: 460px;
  width: calc(100% - 2 * var(--space-md));
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  text-align: center;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(46, 196, 182, 0.15);
}
.exit-intent-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 36px;
  height: 36px;
  border: none;
  background: var(--color-glow-soft);
  color: var(--color-text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease, color 200ms ease;
}
.exit-intent-close:hover {
  background: var(--color-glow);
  color: var(--color-cta-text);
}
.exit-intent-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-glow);
  margin-bottom: var(--space-sm);
}
.exit-intent-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}
.exit-intent-sub {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}
.exit-intent-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}
.exit-intent-name-row {
  display: flex;
  gap: var(--space-sm);
}
.exit-intent-name-row input {
  flex: 1;
  min-width: 0;
}
.exit-intent-form input[type="text"],
.exit-intent-form input[type="email"] {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.exit-intent-form input[type="text"]:focus,
.exit-intent-form input[type="email"]:focus {
  border-color: var(--color-glow);
  box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.2);
}
.exit-intent-form .cta-button {
  width: 100%;
  justify-content: center;
}
.exit-intent-disclaimer {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
  line-height: 1.4;
}
.exit-intent-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: var(--color-glow);
  color: var(--color-cta-text);
  font-size: 1.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exit-intent-code {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg);
  border: 1px dashed var(--color-glow);
  border-radius: var(--border-radius);
  color: var(--color-glow);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  margin: var(--space-sm) 0 var(--space-md);
  user-select: all;
}
.exit-intent-checkout {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  margin: var(--space-sm) 0;
}
.exit-intent-success .exit-intent-disclaimer strong {
  color: var(--color-glow);
  letter-spacing: 0.1em;
}
