/* ============================================================
   NOVO One — Landing page styles (extends styles/tokens.css)
   ============================================================ */

html { scroll-behavior: smooth; }
body { background: var(--surface-0); color: var(--surface-ink); font-family: var(--font-body); }

/* Layout */
.wrap { max-width: var(--page-max); margin: 0 auto; padding-inline: var(--gutter); }

/* Sticky topbar */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), backdrop-filter .35s var(--ease),
              border-color .35s var(--ease), color .25s var(--ease);
  color: #ffffff;
}
.topbar.is-scrolled {
  background: color-mix(in oklch, var(--surface-0) 92%, transparent);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--nova-line);
  color: var(--surface-ink);
}
.topbar-inner {
  max-width: var(--page-max); margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.topbar-wordmark {
  display: inline-flex; align-items: center;
  text-decoration: none;
  height: 32px;
  position: relative;
}
.topbar-wordmark img {
  height: 100%; width: auto; display: block;
  transition: opacity .25s var(--ease);
}
/* Two logo images crossfade between transparent (white) and scrolled (black) */
.topbar-wordmark .logo-light { position: absolute; inset: 0; opacity: 1; }
.topbar-wordmark .logo-dark  { opacity: 0; }
.topbar.is-scrolled .logo-light { opacity: 0; }
.topbar.is-scrolled .logo-dark  { opacity: 1; }
.topbar-nav { display: none; gap: clamp(16px, 1.8vw, 28px); align-items: center; }
@media (min-width: 880px) { .topbar-nav { display: flex; } }
.topbar-nav a {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: currentColor; opacity: 0.78;
  text-decoration: none; transition: opacity .2s, color .2s;
}
.topbar-nav a:hover { opacity: 1; }

/* Support dropdown */
.topbar-navitem { position: relative; display: inline-flex; align-items: center; }
.topbar-navtrigger { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.topbar-navtrigger .caret { opacity: 0.7; transition: transform .2s var(--ease); }
.topbar-navitem:hover .caret,
.topbar-navitem:focus-within .caret { transform: rotate(180deg); }
.topbar-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translate(-50%, 6px);
  min-width: 184px; padding: 8px;
  background: var(--surface-0); border: 1px solid var(--nova-line);
  box-shadow: 0 18px 50px rgba(0,0,0,0.16);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  z-index: 70;
}
.topbar-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -8px; height: 8px; }
.topbar-navitem:hover .topbar-menu,
.topbar-navitem:focus-within .topbar-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}
.topbar-menu a {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--surface-ink) !important; opacity: 1 !important;
  padding: 9px 12px; text-decoration: none; white-space: nowrap;
  transition: background .15s;
}
.topbar-menu a:hover { background: var(--nova-line-soft); }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-price {
  font-family: var(--font-mono); font-size: 12px; color: currentColor;
  opacity: 0.78; display: none;
}
@media (min-width: 640px) { .topbar-price { display: inline; } }

/* Buttons */
.btn { font-family: var(--font-display); }
.btn.full { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* Hero */
.hero { padding-block: clamp(48px, 7vw, 96px); border-bottom: 1px solid var(--nova-line); }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px); align-items: center;
}
@media (max-width: 920px) { .hero-grid { grid-template-columns: 1fr; } }

/* ---------- Hero — full-bleed environment carousel ---------- */
.hero--bleed {
  position: relative;
  padding: 0; border-bottom: 0;
  height: 100vh;
  min-height: 640px;
  max-height: 960px;
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
}
.hero-carousel {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
  background: #0e0e0e;
}
.hero-track { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  pointer-events: none;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; }
.hero-slide img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s linear;
}
.hero-slide.is-active img { transform: scale(1.10); }
/* Subtle vertical scrim for legibility — dark at bottom-left, fades to clear */
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.05) 28%, rgba(0,0,0,0.0) 50%, rgba(0,0,0,0.55) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.18) 45%, rgba(0,0,0,0.0) 75%);
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  pointer-events: none;
}
.hero-overlay > * { pointer-events: auto; }
.hero-overlay-inner {
  padding: clamp(96px, 14vw, 200px) clamp(24px, 6vw, 96px) clamp(56px, 7vw, 96px);
  width: 100%;
}
.hero-text--bleed {
  max-width: 640px;
  color: #ffffff;
}
.hero-text--bleed .hero-badge {
  position: static;
  display: inline-flex;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero-text--bleed .hero-badge .dot { background: #6BD49C; box-shadow: 0 0 0 4px rgba(107,212,156,0.20); }
.hero-text--bleed .hero-title { color: #ffffff; }
.hero-text--bleed .hero-title em { color: #ffffff; }
.hero-text--bleed .hero-sub { color: rgba(255,255,255,0.86); max-width: 56ch; }

/* Chips on dark */
.hero-text--bleed .hero-chip {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
  color: #ffffff;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.hero-text--bleed .hero-chip.accent {
  background: var(--nova-champagne);
  border-color: var(--nova-champagne-deep);
  color: var(--nova-black);
}

/* Ghost button on dark */
.btn.ghost.ghost-on-dark {
  color: #ffffff;
  border-color: rgba(255,255,255,0.42);
}
.btn.ghost.ghost-on-dark:hover { background: rgba(255,255,255,0.10); }

/* Topbar Add-to-cart while transparent */
.topbar:not(.is-scrolled) .btn.small.btn--on-dark {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.32);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.topbar:not(.is-scrolled) .btn.small.btn--on-dark:hover {
  background: rgba(255,255,255,0.22);
}

/* Carousel controls */
.hero-controls {
  position: absolute; left: 0; right: 0; bottom: clamp(24px, 3vw, 40px);
  z-index: 3;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  pointer-events: none;
}
.hero-controls > * { pointer-events: auto; }
.hero-dots {
  display: inline-flex; gap: 10px; padding: 0; margin: 0;
  background: none; border: 0;
}
.hero-dot {
  position: relative;
  width: 38px; height: 2px;
  background: rgba(255,255,255,0.28);
  border: 0; padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: background .25s var(--ease);
}
.hero-dot::after {
  content: ""; position: absolute; inset: 0;
  background: #ffffff;
  transform: scaleX(0); transform-origin: left center;
}
.hero-dot.is-active { background: rgba(255,255,255,0.42); }
.hero-dot.is-active::after {
  transform: scaleX(1);
  transition: transform var(--hero-autoplay, 6s) linear;
}
.hero-dot:hover { background: rgba(255,255,255,0.55); }

.hero-arrows { display: flex; gap: 8px; }
.hero-arrow {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.24);
  cursor: pointer;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.hero-arrow:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.42); }
.hero-arrow:active { transform: scale(0.96); }

@media (max-width: 720px) {
  .hero--bleed { height: 92vh; min-height: 560px; }
  .hero-arrows { display: none; }
}

/* Hero trust strip below the bleed */
.hero-trust-strip {
  background: var(--surface-0);
  border-bottom: 1px solid var(--nova-line);
}
.hero-trust--strip {
  padding-block: clamp(20px, 2.4vw, 28px);
  border-top: 0;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--nova-muted); margin-bottom: 24px;
}
.hero-eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; }
.hero-title {
  font-family: var(--font-display); font-size: clamp(48px, 7vw, 96px);
  font-weight: 300; letter-spacing: -0.035em; line-height: 0.98;
  margin: 0 0 28px; text-wrap: balance;
}
.hero-title em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.02em;
}
.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px); line-height: 1.5;
  color: var(--nova-muted); max-width: 44ch; margin: 0 0 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-bottom: 40px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 28px 36px;
  padding-top: 28px; border-top: 1px solid var(--nova-line);
  font-size: 13px; color: var(--nova-muted);
}
.hero-trust > div { display: flex; flex-direction: column; gap: 4px; min-width: 96px; }
.hero-trust .label {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--nova-faint);
}
.hero-trust .value { color: var(--surface-ink); font-size: 14px; }

.hero-visual {
  position: relative; aspect-ratio: 4/5;
  background: linear-gradient(180deg, var(--nova-paper) 0%, var(--nova-stone) 100%);
  overflow: hidden;
}
.hero-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, transparent 40%, rgba(0,0,0,0.06) 100%);
  pointer-events: none;
}
.hero-badge {
  position: absolute; left: 24px; top: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: color-mix(in oklch, var(--nova-warm-white) 88%, transparent);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--nova-black); z-index: 2;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #2D6A47; }

/* Section base */
.section { padding-block: clamp(64px, 9vw, 128px); border-bottom: 1px solid var(--nova-line); scroll-margin-top: 80px; }
.section-head {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: clamp(24px, 5vw, 64px); margin-bottom: clamp(40px, 6vw, 72px); align-items: end;
}
@media (max-width: 820px) { .section-head { grid-template-columns: 1fr; gap: 16px; } }
.section-num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; color: var(--nova-muted); }
.section-title {
  font-family: var(--font-display); font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 350; letter-spacing: -0.025em; line-height: 1.04;
  margin: 12px 0 0; text-wrap: balance;
}
.section-title em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.section-lede { font-size: 17px; line-height: 1.55; color: var(--nova-muted); max-width: 56ch; margin: 0; }

/* Reviews */
.reviews-meta {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 28px;
  padding: 24px 0; border-block: 1px solid var(--nova-line); margin-bottom: 40px;
}
.reviews-score {
  font-family: var(--font-display); font-size: 56px; font-weight: 300;
  letter-spacing: -0.03em; line-height: 1;
}
.reviews-meta .stars { display: flex; gap: 3px; }
.reviews-meta .count { font-family: var(--font-mono); font-size: 12px; color: var(--nova-muted); letter-spacing: 0.08em; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px; background: var(--nova-line); border: 1px solid var(--nova-line);
}
.review { background: var(--surface-0); padding: 32px 28px; display: flex; flex-direction: column; gap: 16px; }
.review .stars { display: flex; gap: 3px; }
.review .stars svg { width: 14px; height: 14px; }
.review-quote {
  font-family: var(--font-display); font-size: 19px; font-weight: 400;
  letter-spacing: -0.015em; line-height: 1.35; color: var(--surface-ink);
  margin: 0; text-wrap: pretty; flex: 1;
}
.review-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--nova-line-soft);
}
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--nova-stone);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 13px; font-weight: 500;
  color: var(--nova-black); flex-shrink: 0;
}
.review-author-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.review-name { font-size: 14px; font-weight: 500; }
.review-where {
  font-family: var(--font-mono); font-size: 11px; color: var(--nova-muted);
  letter-spacing: 0.06em; display: flex; align-items: center; gap: 6px;
}
.review-where .verified { color: #2D6A47; }

/* Benefits / USP */
.benefits-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px; background: var(--nova-line); border: 1px solid var(--nova-line);
}
@media (max-width: 980px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit {
  background: var(--surface-0); padding: 36px 28px 32px;
  display: flex; flex-direction: column; gap: 16px; min-height: 240px;
}
.benefit-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; color: var(--surface-ink); }
.benefit-title {
  font-family: var(--font-display); font-size: 19px; font-weight: 500;
  letter-spacing: -0.01em; margin: 0;
}
.benefit-body { font-size: 14px; line-height: 1.55; color: var(--nova-muted); margin: 0; }

/* Product detail */
.detail-grid {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px); align-items: center;
}
@media (max-width: 980px) { .detail-grid { grid-template-columns: 1fr; } }
.detail-visual { aspect-ratio: 4/5; background: var(--nova-paper); overflow: hidden; position: relative; }
.detail-visual img { width: 100%; height: 100%; object-fit: cover; }
.detail-eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--nova-muted); margin-bottom: 16px;
}
.detail-heading {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 56px);
  font-weight: 350; letter-spacing: -0.03em; line-height: 1.02;
  margin: 0 0 24px; text-wrap: balance;
}
.detail-heading em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.detail-copy { font-size: 16px; line-height: 1.6; color: var(--nova-muted); margin: 0 0 28px; max-width: 50ch; }
.spec-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--nova-line); margin: 0;
}
.spec-list > div { padding: 14px 0; border-bottom: 1px solid var(--nova-line-soft); }
.spec-list dt {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--nova-muted); margin: 0 0 4px;
}
.spec-list dd { margin: 0; font-size: 14px; }

/* Checkout */
.checkout {
  background: var(--nova-paper);
  border-top: 1px solid var(--nova-line);
  border-bottom: 1px solid var(--nova-line);
  padding-block: clamp(64px, 8vw, 112px);
}
[data-theme="dark"] .checkout { background: #1F1B14; }
.checkout-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 0; align-items: stretch;
  max-width: 1200px; margin: 0 auto;
  border: 1px solid var(--nova-line);
  background: var(--surface-0);
}
@media (max-width: 920px) { .checkout-grid { grid-template-columns: 1fr; } }
.checkout-visual {
  background: var(--surface-2);
  position: relative; overflow: hidden;
  min-height: 480px;
  border-right: 1px solid var(--nova-line);
}
@media (max-width: 920px) {
  .checkout-visual { border-right: 0; border-bottom: 1px solid var(--nova-line); }
}
.checkout-visual img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; object-position: center; padding: 6%;
  transition: opacity .35s var(--ease);
}
.checkout-thumbs { position: absolute; left: 16px; bottom: 16px; display: flex; gap: 8px; z-index: 2; }
.checkout-thumb {
  width: 56px; height: 56px; background: var(--surface-0);
  border: 1px solid var(--nova-line); cursor: pointer; padding: 0;
  position: relative; overflow: hidden; transition: border-color .2s;
}
.checkout-thumb.on { border-color: var(--surface-ink); }
.checkout-thumb img { width: 100%; height: 100%; object-fit: cover; }

.checkout-card {
  background: var(--surface-0);
  padding: clamp(28px, 4vw, 44px);
  display: flex; flex-direction: column; gap: 24px;
}
.checkout-head { display: flex; flex-direction: column; gap: 8px; }
.checkout-eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--nova-muted);
}
.checkout-title {
  font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px);
  font-weight: 350; letter-spacing: -0.025em; line-height: 1.05; margin: 0;
}
.checkout-stars {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; color: var(--nova-muted);
}
.checkout-stars .stars { display: inline-flex; gap: 3px; }
.checkout-stars .stars svg { width: 13px; height: 13px; }

.price-row { display: flex; align-items: baseline; gap: 12px; padding-block: 8px; }
.price-now {
  font-family: var(--font-display); font-size: 36px; font-weight: 400; letter-spacing: -0.02em;
}
.price-was { color: var(--nova-faint); text-decoration: line-through; font-size: 16px; }
.price-save {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: #2D6A47;
  padding: 4px 8px; border: 1px solid #2D6A47;
}

.field-group { display: flex; flex-direction: column; gap: 10px; }
.field-label {
  display: flex; align-items: baseline; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--nova-muted);
}
.field-label .selected-name {
  font-family: var(--font-body); font-size: 14px; letter-spacing: 0;
  text-transform: none; color: var(--surface-ink);
}

.color-picker { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.color-swatch {
  position: relative; padding: 14px 10px 12px;
  background: var(--surface-0); border: 1px solid var(--nova-line);
  cursor: pointer; text-align: left; display: flex; flex-direction: column; gap: 10px;
  transition: border-color .2s;
}
.color-swatch:hover { border-color: var(--nova-muted); }
.color-swatch.on { border-color: var(--surface-ink); }
.color-swatch.on::after { content: ""; position: absolute; inset: -1px; border: 1px solid var(--surface-ink); pointer-events: none; }
.color-disc {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08); display: block;
}
.color-disc.onyx { background: radial-gradient(circle at 30% 30%, #2A2A2C 0%, #111 70%); }
.color-disc.ivory { background: radial-gradient(circle at 30% 30%, #FFFFFF 0%, #E7E0D0 80%); }
.color-disc.champagne { background: radial-gradient(circle at 30% 30%, #E8D4B5 0%, #BFA37A 80%); }
.color-meta { display: flex; flex-direction: column; gap: 2px; }
.color-name { font-family: var(--font-display); font-size: 14px; font-weight: 500; letter-spacing: -0.005em; }
.color-stock { font-family: var(--font-mono); font-size: 10.5px; color: var(--nova-muted); letter-spacing: 0.06em; }
.color-stock.low { color: #A04A3C; }

.bundle-picker { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.bundle-opt {
  background: var(--surface-0); border: 1px solid var(--nova-line);
  padding: 16px; cursor: pointer; display: flex; flex-direction: column; gap: 6px;
  text-align: left; position: relative; transition: border-color .2s;
}
.bundle-opt:hover { border-color: var(--nova-muted); }
.bundle-opt.on { border-color: var(--surface-ink); }
.bundle-opt.on::after { content: ""; position: absolute; inset: -1px; border: 1px solid var(--surface-ink); pointer-events: none; }
.bundle-name { font-family: var(--font-display); font-size: 14px; font-weight: 500; }
.bundle-includes { font-size: 12px; color: var(--nova-muted); line-height: 1.4; }
.bundle-price { font-family: var(--font-mono); font-size: 12px; color: var(--surface-ink); margin-top: 4px; }
.bundle-tag {
  position: absolute; top: -8px; right: 12px;
  background: var(--nova-champagne-deep); color: var(--nova-black);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 3px 8px;
  white-space: nowrap;
}

.qty-row { display: flex; align-items: center; gap: 14px; }
.qty-stepper {
  display: inline-flex; align-items: stretch;
  border: 1px solid var(--nova-line); background: var(--surface-0); height: 48px;
}
.qty-btn {
  width: 44px; border: 0; background: transparent;
  font-family: var(--font-display); font-size: 18px; cursor: pointer;
  color: var(--surface-ink); transition: background .15s;
}
.qty-btn:hover { background: var(--nova-line-soft); }
.qty-btn:disabled { color: var(--nova-faint); cursor: not-allowed; }
.qty-value {
  min-width: 48px; display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px; font-weight: 500;
  border-left: 1px solid var(--nova-line); border-right: 1px solid var(--nova-line);
}
.qty-aside { font-family: var(--font-mono); font-size: 11px; color: var(--nova-muted); letter-spacing: 0.06em; }

.total-row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 16px 0 0; border-top: 1px solid var(--nova-line);
}
.total-row .label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--nova-muted);
}
.total-row .amt {
  font-family: var(--font-display); font-size: 28px; font-weight: 400; letter-spacing: -0.02em;
}

.checkout-cta { display: flex; flex-direction: column; gap: 12px; }
.checkout-secondary {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--nova-muted);
  text-align: center; display: flex; justify-content: center; align-items: center; gap: 12px;
}
.checkout-secondary .pay { display: inline-flex; align-items: center; gap: 8px; opacity: 0.7; }
.checkout-secondary svg { height: 14px; }

.trust-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--nova-line); border: 1px solid var(--nova-line);
  margin-top: 4px;
}
@media (max-width: 540px) { .trust-row { grid-template-columns: 1fr; } }
.trust {
  background: var(--surface-0); padding: 14px 12px;
  display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center;
}
.trust svg { width: 18px; height: 18px; color: var(--surface-ink); }
.trust-label {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--nova-muted);
}

/* Footer */
.page-footer { padding-block: clamp(64px, 6vw, 96px) 32px; background: var(--surface-0); }
.footer-top {
  display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 64px); padding-bottom: 64px; border-bottom: 1px solid var(--nova-line);
}
@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
.footer-wordmark {
  display: block;
  margin: 0 0 16px;
  height: 56px;
}
.footer-wordmark img {
  height: 100%; width: auto; display: block;
}
.footer-tag {
  font-family: var(--font-serif); font-style: italic;
  font-size: 20px; color: var(--nova-muted); margin: 0 0 24px;
}
.footer-contact { font-size: 14px; color: var(--nova-muted); line-height: 1.6; }
.footer-contact a { color: var(--surface-ink); text-decoration: none; border-bottom: 1px solid var(--nova-line); }

.footer-col h4 {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--nova-muted);
  margin: 0 0 16px; font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--surface-ink); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--nova-muted); }

.footer-bottom {
  padding-top: 24px; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 11px; color: var(--nova-faint); letter-spacing: 0.06em;
}

/* ============================================================
   More than water — Versatility showcase
   ============================================================ */
.versatility {
  background: var(--surface-1);
}
.versatility-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 64px);
}
@media (max-width: 880px) { .versatility-head { grid-template-columns: 1fr; gap: 16px; } }

.versatility-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 96px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.96;
  margin: 12px 0 0;
  text-wrap: balance;
}
.versatility-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.versatility-title .strike {
  position: relative;
  color: var(--nova-faint);
  font-weight: 300;
}
.versatility-title .strike::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  top: 52%;
  height: 2px;
  background: currentColor;
  transform: rotate(-3deg);
  transform-origin: center;
}
.versatility-lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--nova-muted);
  margin: 0;
}

.drinks-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: var(--nova-line);
  border: 1px solid var(--nova-line);
}
@media (max-width: 1080px) { .drinks-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .drinks-grid { grid-template-columns: repeat(2, 1fr); } }
.drink {
  background: var(--surface-0);
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-height: 260px;
  position: relative;
  overflow: hidden;
}
.drink-glass {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  min-height: 130px;
}
.drink-glass svg {
  width: auto;
  height: 130px;
  display: block;
}
.drink-glass .liquid {
  transition: fill .25s;
}
.drink-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 0;
}
.drink-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nova-muted);
}
.drink-divider {
  width: 24px;
  height: 1px;
  background: var(--nova-line);
}

/* ============================================================
   How it works — Bottom-up carbonation
   ============================================================ */
.howitworks-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 980px) { .howitworks-grid { grid-template-columns: 1fr; } }

.diagram {
  background: var(--nova-paper);
  border: 1px solid var(--nova-line);
  aspect-ratio: 1;
  padding: clamp(24px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
[data-theme="dark"] .diagram { background: #1F1B14; }

.diagram svg {
  width: 100%;
  height: 100%;
  max-width: 480px;
  max-height: 480px;
}
.diagram .bubble {
  fill: var(--nova-champagne-deep);
  opacity: 0;
  animation: bubble-up 3.2s ease-in infinite;
}
.diagram .bubble:nth-child(2) { animation-delay: .4s; }
.diagram .bubble:nth-child(3) { animation-delay: .8s; }
.diagram .bubble:nth-child(4) { animation-delay: 1.2s; }
.diagram .bubble:nth-child(5) { animation-delay: 1.6s; }
.diagram .bubble:nth-child(6) { animation-delay: 2.0s; }
.diagram .bubble:nth-child(7) { animation-delay: 2.4s; }
@keyframes bubble-up {
  0% { transform: translateY(0); opacity: 0; }
  20% { opacity: 0.7; }
  100% { transform: translateY(-180px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .diagram .bubble { animation: none; opacity: 0.5; }
}
.diagram-label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nova-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.diagram-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}
.diagram-label.top { top: 22%; right: 18%; }
.diagram-label.bottom { bottom: 16%; left: 16%; }

.howitworks-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nova-muted);
  margin-bottom: 16px;
}
.howitworks-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 350;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 24px;
  text-wrap: balance;
}
.howitworks-title em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.howitworks-copy {
  font-size: 16px;
  line-height: 1.6;
  color: var(--nova-muted);
  margin: 0 0 32px;
  max-width: 52ch;
}

.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--nova-line);
  border: 1px solid var(--nova-line);
}
.vs-col {
  background: var(--surface-0);
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vs-col.them { background: var(--surface-1); }
.vs-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--nova-line);
}
.vs-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.vs-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nova-muted);
}
.vs-tag.us { color: var(--surface-ink); }
.vs-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.vs-list li {
  font-size: 13.5px;
  line-height: 1.4;
  padding-left: 22px;
  position: relative;
  color: var(--surface-ink);
}
.vs-col.them .vs-list li { color: var(--nova-muted); }
.vs-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 14px;
  height: 6px;
  border-left: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
  transform-origin: left center;
}
.vs-col.them .vs-list li::before {
  border: 0;
  width: 10px;
  height: 1.5px;
  background: currentColor;
  top: 12px;
  transform: none;
}

/* ---------- Hero — drink chips strip ---------- */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 32px;
}
.hero-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--surface-ink);
  padding: 6px 12px;
  border: 1px solid var(--nova-line);
  background: var(--surface-0);
  border-radius: var(--r-pill);
}
.hero-chip.accent {
  background: var(--nova-champagne);
  border-color: var(--nova-champagne-deep);
  color: var(--nova-black);
}

/* Toast */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--nova-black); color: var(--nova-warm-white);
  padding: 16px 24px; font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.08em; z-index: 200;
  transition: transform .35s var(--ease);
  max-width: 92vw; box-shadow: 0 18px 50px rgba(0,0,0,0.25);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast pre {
  margin: 8px 0 0; font-size: 11px; background: rgba(255,255,255,0.06);
  padding: 10px; max-height: 220px; overflow: auto; text-align: left; white-space: pre-wrap;
}

/* Scroll-in animations */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 80ms; }
.reveal.delay-2 { transition-delay: 160ms; }
.reveal.delay-3 { transition-delay: 240ms; }
.reveal.delay-4 { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Parallax break ---------- */
.parallax {
  position: relative;
  width: 100%;
  height: clamp(420px, 78vh, 760px);
  overflow: hidden;
  background: #ecebe6; /* warm off-white that matches the lineup backdrop */
  border-bottom: 1px solid var(--nova-line);
  isolation: isolate;
}
.parallax-media {
  position: absolute;
  inset: -18% 0;          /* extra height above/below for translate room */
  width: 100%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.parallax-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: clamp(28px, 6vw, 72px);
  /* subtle wash so caption stays legible on the bright lineup */
  background: linear-gradient(180deg, rgba(255,255,255,0) 55%, rgba(20,18,15,0.18) 100%);
  pointer-events: none;
}
.parallax-caption {
  max-width: 56ch;
  color: #1a1815;
}
.parallax-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26,24,21,0.62);
  margin-bottom: 14px;
}
.parallax-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 56px);
  font-weight: 350;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}
.parallax-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

@media (max-width: 720px) {
  .parallax { height: 62vh; min-height: 380px; }
  .parallax-media { inset: -12% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .parallax-media { transform: none !important; }
}
