/* Lycora — Water-soluble tomato carotenoids */

:root {
  --bg: #f5efe6;
  --bg-paper: #fbf7f0;
  --bg-deep: #efe6d6;
  --ink: #1b1916;
  --ink-soft: #4a443c;
  --ink-mute: #8a8175;
  --rule: #d9cfbe;
  --rule-soft: #e9e1d0;

  --red: #c8341c;        /* tomato */
  --red-deep: #8e2110;
  --red-glow: #e15a3b;
  --green: #2d4a2a;      /* leaf */
  --green-deep: #1d3019;
  --cream: #f8f1de;
  --gold: #c79a3a;

  --serif: "Fraunces", "Cormorant Garamond", "Source Serif Pro", Georgia, serif;
  --sans: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-card: 0 1px 0 rgba(27, 25, 22, 0.04), 0 12px 32px -16px rgba(27, 25, 22, 0.18);
  --shadow-soft: 0 1px 0 rgba(27, 25, 22, 0.04), 0 6px 18px -12px rgba(27, 25, 22, 0.14);
  --shadow-pop: 0 24px 60px -20px rgba(27, 25, 22, 0.35);

  --max: 1280px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

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

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

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(48px, 7vw, 96px); line-height: 0.98; letter-spacing: -0.03em; font-weight: 460; }
h2 { font-size: clamp(34px, 4.5vw, 56px); line-height: 1.02; letter-spacing: -0.02em; }
h3 { font-size: clamp(22px, 2vw, 28px); line-height: 1.15; }
h4 { font-size: 18px; line-height: 1.2; }
p  { margin: 0; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.eyebrow.red { color: var(--red); }

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

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 239, 230, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule-soft);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 68px;
  gap: 24px;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links button {
  background: none; border: 0; padding: 6px 0;
  font-size: 14px; color: var(--ink-soft);
  border-bottom: 1.5px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav-links button:hover { color: var(--ink); }
.nav-links button.active { color: var(--ink); border-bottom-color: var(--red); }
.nav-right { display: flex; gap: 14px; justify-content: flex-end; align-items: center; }

.logo {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
  justify-content: center;
}
.logo-mark { width: 32px; height: 32px; }
.logo-text {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--ink);
}

.cart-btn {
  position: relative;
  background: var(--ink);
  color: var(--bg-paper);
  border: 0;
  padding: 9px 16px 9px 36px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .15s;
}
.cart-btn:hover { background: var(--red); }
.cart-btn::before {
  content: "";
  position: absolute;
  left: 14px; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px;
  background: currentColor;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"/><path d="M3 6h18"/><path d="M16 10a4 4 0 0 1-8 0"/></svg>') center/contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"/><path d="M3 6h18"/><path d="M16 10a4 4 0 0 1-8 0"/></svg>') center/contain no-repeat;
}
.cart-count {
  background: var(--red);
  color: white;
  width: 18px; height: 18px;
  border-radius: 50%;
  font-size: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-weight: 600;
}

/* ============ ANNOUNCEMENT BAR ============ */
.announce {
  background: var(--red);
  color: var(--cream);
  font-size: 12px;
  text-align: center;
  padding: 8px var(--pad);
  letter-spacing: 0.04em;
  font-family: var(--mono);
}
.announce span { opacity: 0.85; margin: 0 14px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-family: var(--sans);
  transition: transform .12s ease, background .15s, color .15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--red); color: var(--cream); }
.btn-primary:hover { background: var(--red-deep); }
.btn-dark { background: var(--ink); color: var(--bg-paper); }
.btn-dark:hover { background: #2d2a26; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg-paper); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 28px; font-size: 15px; }

.btn-text {
  background: none; border: 0;
  font-size: 13px; color: var(--ink); cursor: pointer;
  text-decoration: underline; text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.btn-text:hover { color: var(--red); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(40px, 7vw, 88px) 0 clamp(60px, 8vw, 96px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
}
.hero h1 .red { color: var(--red); font-style: italic; font-weight: 400; }
.hero-meta {
  display: flex; align-items: baseline; gap: 24px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.hero-lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
  max-width: 46ch;
  color: var(--ink-soft);
}
.hero-cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 30% 30%, #e8a08c 0%, var(--red) 38%, var(--red-deep) 78%);
  overflow: hidden;
  box-shadow: var(--shadow-pop);
  display: flex; align-items: center; justify-content: center;
}
.hero-bottle {
  width: 36%;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.35));
}
.hero-spec {
  position: absolute;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  color: rgba(248, 241, 222, 0.75);
  text-transform: uppercase;
}
.hero-spec.tl { top: 18px; left: 22px; }
.hero-spec.tr { top: 18px; right: 22px; }
.hero-spec.bl { bottom: 18px; left: 22px; }
.hero-spec.br { bottom: 18px; right: 22px; }

.hero-ticker {
  margin-top: clamp(40px, 6vw, 72px);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hero-ticker > div {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex; align-items: center; gap: 10px;
}
.hero-ticker .num { color: var(--red); font-weight: 600; font-size: 13px; }

/* ============ DEMO / PROOF SECTION ============ */
.proof {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg-paper);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.proof h2 .red { color: var(--red); font-style: italic; font-weight: 400; }
.proof .lede {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 44ch;
  margin-top: 24px;
}
.proof-claim {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.proof-claim::before {
  content: ""; width: 28px; height: 1px; background: var(--red);
}

.video-frame {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, #1b1916 0%, #2a2723 100%);
  box-shadow: var(--shadow-pop);
}
.video-frame .chrome-top, .video-frame .chrome-bot {
  position: absolute;
  left: 16px; right: 16px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  color: rgba(248, 241, 222, 0.6);
  text-transform: uppercase;
  pointer-events: none;
  z-index: 3;
}
.video-frame .chrome-top { top: 14px; }
.video-frame .chrome-bot { bottom: 14px; }
.video-frame .rec-dot {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(225, 90, 59, 0.9);
}
.video-frame .rec-dot::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--red-glow);
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%,49%,100%{opacity:1;} 50%,99%{opacity:0.25;} }

.video-frame .placeholder-tag {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, calc(50% + 80px));
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  color: rgba(248,241,222,0.45);
  text-transform: uppercase;
  z-index: 3;
  text-align: center;
  width: 80%;
}

/* The water-dispersion animated demo */
.demo-stage {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse at 50% 55%, #2d2925 0%, #16140f 100%);
}
.demo-glass {
  position: relative;
  width: 38%;
  height: 70%;
}
/* glass outline */
.demo-glass::before {
  content: "";
  position: absolute; inset: 0;
  border: 2px solid rgba(248, 241, 222, 0.15);
  border-top: none;
  border-radius: 0 0 18% 18% / 0 0 14% 14%;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.06) 100%);
}
/* water fill */
.demo-water {
  position: absolute;
  left: 2px; right: 2px; bottom: 2px;
  height: 88%;
  background: linear-gradient(180deg, rgba(135, 180, 200, 0.18) 0%, rgba(100, 150, 175, 0.22) 100%);
  border-radius: 0 0 16% 16% / 0 0 12% 12%;
  overflow: hidden;
  animation: tint 7s ease-in-out infinite;
}
@keyframes tint {
  0%   { background: linear-gradient(180deg, rgba(135, 180, 200, 0.16) 0%, rgba(100, 150, 175, 0.22) 100%); }
  20%  { background: linear-gradient(180deg, rgba(135, 180, 200, 0.16) 0%, rgba(100, 150, 175, 0.22) 100%); }
  55%  { background: linear-gradient(180deg, rgba(225, 105, 70, 0.55) 0%, rgba(180, 50, 30, 0.75) 100%); }
  85%  { background: linear-gradient(180deg, rgba(225, 80, 50, 0.85) 0%, rgba(170, 35, 18, 0.92) 100%); }
  100% { background: linear-gradient(180deg, rgba(135, 180, 200, 0.16) 0%, rgba(100, 150, 175, 0.22) 100%); }
}

/* water surface */
.demo-water::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(180deg, rgba(255,255,255,0.25), rgba(255,255,255,0));
}

/* drifting red clouds inside water */
.demo-water::after {
  content: "";
  position: absolute;
  left: 50%; top: 10%;
  width: 80%; height: 80%;
  transform: translate(-50%, 0);
  background:
    radial-gradient(circle at 50% 20%, rgba(225, 80, 50, 0.0) 0%, rgba(225, 80, 50, 0.0) 100%),
    radial-gradient(circle at 30% 60%, rgba(225, 80, 50, 0.0) 0%, rgba(225, 80, 50, 0.0) 100%);
  border-radius: 50%;
  animation: swirl 7s ease-in-out infinite;
}
@keyframes swirl {
  0%, 20% { background:
    radial-gradient(circle at 50% 8%, rgba(225,90,55,0) 0%, rgba(225,90,55,0) 100%),
    radial-gradient(circle at 30% 60%, rgba(225,90,55,0) 0%, rgba(225,90,55,0) 100%);
    transform: translate(-50%, 0) scale(0.9);
  }
  40% { background:
    radial-gradient(circle at 50% 8%, rgba(225,90,55,0.85) 0%, rgba(225,90,55,0) 35%),
    radial-gradient(circle at 30% 50%, rgba(225,90,55,0.5) 0%, rgba(225,90,55,0) 40%);
    transform: translate(-50%, 0) scale(1);
  }
  65% { background:
    radial-gradient(circle at 60% 35%, rgba(225,90,55,0.6) 0%, rgba(225,90,55,0) 60%),
    radial-gradient(circle at 30% 60%, rgba(225,90,55,0.5) 0%, rgba(225,90,55,0) 60%);
    transform: translate(-50%, 0) scale(1.05);
  }
  85%, 100% { background:
    radial-gradient(circle at 50% 50%, rgba(225,90,55,0) 0%, rgba(225,90,55,0) 100%),
    radial-gradient(circle at 50% 50%, rgba(225,90,55,0) 0%, rgba(225,90,55,0) 100%);
    transform: translate(-50%, 0) scale(1.1);
  }
}

/* powder grains falling from above the glass */
.demo-powder {
  position: absolute;
  top: -8%; left: 0; right: 0;
  height: 50%;
  pointer-events: none;
}
.demo-powder span {
  position: absolute;
  top: 0;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red);
  animation: drop 7s linear infinite;
  opacity: 0;
}
.demo-powder span:nth-child(1)  { left: 44%; animation-delay: 0.0s; }
.demo-powder span:nth-child(2)  { left: 52%; animation-delay: 0.18s; }
.demo-powder span:nth-child(3)  { left: 47%; animation-delay: 0.34s; width: 4px; height: 4px; }
.demo-powder span:nth-child(4)  { left: 54%; animation-delay: 0.50s; }
.demo-powder span:nth-child(5)  { left: 49%; animation-delay: 0.66s; width: 6px; height: 6px; }
.demo-powder span:nth-child(6)  { left: 51%; animation-delay: 0.82s; }
.demo-powder span:nth-child(7)  { left: 46%; animation-delay: 0.98s; width: 4px; height: 4px; }
.demo-powder span:nth-child(8)  { left: 53%; animation-delay: 1.14s; }
.demo-powder span:nth-child(9)  { left: 48%; animation-delay: 1.30s; }
.demo-powder span:nth-child(10) { left: 50%; animation-delay: 1.46s; width: 6px; height: 6px; }

@keyframes drop {
  0%   { transform: translateY(0); opacity: 0; }
  4%   { opacity: 1; }
  18%  { transform: translateY(180%); opacity: 1; }
  20%  { transform: translateY(190%); opacity: 0; }
  100% { transform: translateY(190%); opacity: 0; }
}

/* play button overlay */
.video-frame .play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(248, 241, 222, 0.92);
  display: flex; align-items: center; justify-content: center;
  border: 0;
  cursor: pointer;
  z-index: 4;
  transition: transform .2s, background .2s;
  opacity: 0.95;
}
.video-frame .play-btn:hover { transform: translate(-50%, -50%) scale(1.07); background: var(--red); color: var(--cream); }
.video-frame .play-btn svg { margin-left: 4px; }

.proof-cred {
  display: flex; gap: 32px; margin-top: 32px; flex-wrap: wrap;
}
.proof-cred > div {
  display: flex; flex-direction: column; gap: 6px;
}
.proof-cred .k {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  color: var(--ink-mute); text-transform: uppercase;
}
.proof-cred .v {
  font-family: var(--serif); font-size: 22px; line-height: 1;
}

@media (max-width: 900px) {
  .proof-grid { grid-template-columns: 1fr; }
}

/* ============ SECTIONS ============ */
.section { padding: clamp(60px, 8vw, 112px) 0; }
.section.alt { background: var(--bg-paper); }
.section.dark { background: var(--ink); color: var(--bg-paper); }
.section.dark h2, .section.dark h3 { color: var(--bg-paper); }
.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-bottom: 44px;
}
.section-head .lede {
  max-width: 56ch;
  color: var(--ink-soft);
  font-size: 17px;
}
.section.dark .section-head .lede { color: rgba(251, 247, 240, 0.7); }

/* ============ PRODUCT CARDS ============ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--bg-paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--rule-soft);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.product-card .pc-visual {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}
.product-card .pc-body {
  padding: 22px 22px 24px;
  display: flex; flex-direction: column; gap: 4px; flex: 1;
}
.product-card .pc-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  margin-top: auto;
}
.product-card h3 { margin-top: 6px; }
.product-card .pc-desc {
  font-size: 14px; color: var(--ink-soft); line-height: 1.4;
  margin-bottom: 18px;
}
.product-card .pc-price {
  font-family: var(--serif); font-size: 22px; font-weight: 500;
}
.product-card .pc-conc {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--bg-deep);
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--ink-soft);
  align-self: flex-start;
}

/* Bottle gradients per SKU */
.bottle-bg-1 { background: radial-gradient(circle at 40% 35%, #f4b9a7, #d54a2e 55%, #8a2010); }
.bottle-bg-2 { background: radial-gradient(circle at 40% 35%, #e8867a, #b6271b 55%, #5a160c); }
.bottle-bg-3 { background: radial-gradient(circle at 40% 35%, #a6342b, #5a1109 60%, #2a0804); }
.bottle-bg-pwd { background: linear-gradient(160deg, #c8341c 0%, #6b1a0b 80%); }

.pc-visual .bottle {
  width: 42%;
  position: absolute;
  left: 50%; top: 52%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 18px 22px rgba(0,0,0,0.35));
}
.pc-visual .pc-badge {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(248,241,222,0.85);
  text-transform: uppercase;
}
.pc-visual .pc-vol {
  position: absolute;
  bottom: 16px; right: 16px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(248,241,222,0.85);
}

/* ============ FEATURE STRIP ============ */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.feature-strip > div {
  background: var(--bg);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.feature-strip .fs-num {
  font-family: var(--mono); font-size: 11px; color: var(--red); letter-spacing: 0.14em;
}
.feature-strip h4 { font-size: 17px; }
.feature-strip p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.45; }

/* ============ SCIENCE PANEL ============ */
.science-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.molecule {
  aspect-ratio: 1/1;
  background: var(--bg-paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--rule); margin-top: 28px; }
.stat-grid > div {
  background: var(--bg);
  padding: 22px 20px;
}
.section.dark .stat-grid > div { background: var(--ink); }
.section.dark .stat-grid { background: rgba(251,247,240,0.12); }
.stat-grid .big {
  font-family: var(--serif); font-size: clamp(40px, 4.5vw, 56px); font-weight: 460;
  letter-spacing: -0.02em; line-height: 1; color: var(--red-glow);
}
.stat-grid .sub { font-size: 13px; color: var(--ink-mute); margin-top: 10px; max-width: 24ch; }
.section.dark .stat-grid .sub { color: rgba(251,247,240,0.6); }

/* ============ B2B TEASER ============ */
.b2b {
  background: var(--ink);
  color: var(--bg-paper);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}
.b2b h2 { color: var(--bg-paper); }
.b2b .lede { color: rgba(251,247,240,0.72); max-width: 44ch; margin-top: 16px; font-size: 17px; }
.b2b-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px; margin-top: 32px; }
.b2b-stats .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--red-glow); text-transform: uppercase; }
.b2b-stats .v { font-family: var(--serif); font-size: 28px; margin-top: 4px; }
.b2b-visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 40%, #c8341c, #5a1109 70%, #1d0703);
  position: relative;
  overflow: hidden;
}
.b2b-visual .powder-can { width: 50%; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); filter: drop-shadow(0 25px 30px rgba(0,0,0,0.4)); }
.b2b-visual .b2b-tag { position: absolute; top: 18px; left: 22px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; color: rgba(248,241,222,0.85); text-transform: uppercase; }

/* ============ TESTIMONIALS ============ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: var(--bg-paper);
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.review .stars { color: var(--red); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.review .quote { font-family: var(--serif); font-size: 20px; line-height: 1.3; margin-bottom: 20px; }
.review .who {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 11px; color: var(--ink-mute);
  text-transform: uppercase; letter-spacing: 0.12em;
}
.review .avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-deep); }

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--bg-paper);
  padding: clamp(48px, 6vw, 80px) 0 32px;
}
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(251,247,240,0.15); }
.footer h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(251,247,240,0.55); font-weight: 500; margin-bottom: 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; color: rgba(251,247,240,0.85); cursor: pointer; }
.footer ul a:hover { color: var(--red-glow); }
.footer-brand .tag { font-family: var(--serif); font-size: 28px; margin-top: 18px; line-height: 1.15; max-width: 22ch; }
.newsletter { display: flex; gap: 8px; margin-top: 14px; }
.newsletter input {
  flex: 1; background: transparent; border: 1px solid rgba(251,247,240,0.3);
  color: var(--bg-paper); padding: 10px 14px; border-radius: 999px;
  font-family: var(--sans); font-size: 13px;
}
.newsletter input::placeholder { color: rgba(251,247,240,0.45); }
.newsletter button {
  background: var(--red); color: var(--cream); border: 0;
  padding: 10px 18px; border-radius: 999px; font-size: 13px;
}
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px; color: rgba(251,247,240,0.45);
  letter-spacing: 0.1em; text-transform: uppercase;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom .links { display: flex; gap: 20px; }
.footer-bottom .links a { cursor: pointer; }

/* ============ SHOP PAGE ============ */
.page-head {
  padding: clamp(48px, 6vw, 88px) 0 clamp(28px, 3vw, 40px);
  border-bottom: 1px solid var(--rule);
}
.page-head h1 {
  font-size: clamp(40px, 6vw, 80px);
}
.page-head .lede { max-width: 50ch; color: var(--ink-soft); font-size: 17px; margin-top: 18px; }

.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 13px; color: var(--ink-soft);
}
.shop-toolbar .filters { display: flex; gap: 8px; }
.chip {
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .15s;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.shop-grid {
  padding: 40px 0 80px;
}

/* ============ PRODUCT DETAIL ============ */
.pd-overlay {
  position: fixed; inset: 0;
  background: rgba(27, 25, 22, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 100;
  display: flex; justify-content: center; align-items: flex-start;
  padding: clamp(16px, 4vh, 40px) clamp(16px, 4vw, 40px);
  overflow-y: auto;
  animation: fadeIn .25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.pd-sheet {
  background: var(--bg);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 1120px;
  position: relative;
  overflow: hidden;
  animation: slideUp .3s ease;
  box-shadow: var(--shadow-pop);
}
.pd-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-paper);
  border: 1px solid var(--rule);
  display: inline-flex; align-items: center; justify-content: center;
  z-index: 2;
  font-size: 18px;
  color: var(--ink);
}
.pd-close:hover { background: var(--ink); color: var(--bg-paper); }

.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.pd-visual {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.pd-visual .bottle { width: 40%; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); filter: drop-shadow(0 30px 36px rgba(0,0,0,0.4)); }
.pd-thumbs {
  position: absolute;
  left: 18px; bottom: 18px;
  display: flex; gap: 8px;
}
.pd-thumbs > div {
  width: 56px; height: 56px;
  border-radius: 8px;
  border: 2px solid rgba(248,241,222,0.4);
  background: rgba(0,0,0,0.15);
  cursor: pointer;
}
.pd-thumbs > div.active { border-color: var(--cream); }

.pd-content {
  padding: clamp(28px, 4vw, 56px);
  display: flex; flex-direction: column; gap: 22px;
}
.pd-content h2 { font-size: clamp(32px, 3vw, 44px); }
.pd-stars { display: flex; gap: 6px; align-items: center; color: var(--red); font-size: 14px; letter-spacing: 2px; }
.pd-stars span { color: var(--ink-mute); font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; }
.pd-desc { color: var(--ink-soft); font-size: 15px; line-height: 1.55; }

.pd-purchase-opts { display: flex; flex-direction: column; gap: 10px; }
.pd-opt {
  border: 1.5px solid var(--rule);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  background: var(--bg-paper);
}
.pd-opt.active { border-color: var(--red); }
.pd-opt-label { display: flex; flex-direction: column; gap: 2px; }
.pd-opt-label .t { font-size: 14px; font-weight: 500; }
.pd-opt-label .s { font-size: 12px; color: var(--ink-mute); }
.pd-opt-price { font-family: var(--serif); font-size: 20px; }
.pd-opt-price s { color: var(--ink-mute); font-size: 14px; margin-right: 8px; }

.pd-qty {
  display: inline-flex; align-items: center; gap: 0;
  border: 1px solid var(--rule);
  border-radius: 999px;
  overflow: hidden;
}
.pd-qty button { width: 38px; height: 40px; background: transparent; border: 0; font-size: 18px; color: var(--ink); }
.pd-qty button:hover { background: var(--bg-deep); }
.pd-qty .v { padding: 0 16px; font-family: var(--mono); font-size: 14px; min-width: 30px; text-align: center; }

.pd-buy-row { display: flex; gap: 12px; align-items: center; }

.pd-facts {
  border-top: 1px solid var(--rule);
  padding-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  font-size: 13px;
}
.pd-facts > div { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px dotted var(--rule); }
.pd-facts .k { color: var(--ink-mute); font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }

/* ============ CART DRAWER ============ */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(27,25,22,0.45);
  z-index: 120;
  animation: fadeIn .2s ease;
}
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(440px, 92vw);
  background: var(--bg);
  z-index: 121;
  display: flex; flex-direction: column;
  animation: slideIn .3s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-pop);
}
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }

.cart-head {
  padding: 22px 26px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--rule);
}
.cart-head h3 { font-size: 22px; }
.cart-head .close {
  background: none; border: 0; font-size: 18px;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cart-head .close:hover { background: var(--bg-deep); }

.cart-body { flex: 1; overflow-y: auto; padding: 12px 26px; }
.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule-soft);
  align-items: center;
}
.cart-line .thumb {
  width: 64px; height: 80px; border-radius: 10px;
  position: relative; overflow: hidden;
}
.cart-line .thumb .bottle { width: 60%; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); filter: drop-shadow(0 6px 8px rgba(0,0,0,0.3)); }
.cart-line h4 { font-size: 15px; font-family: var(--serif); margin-bottom: 4px; }
.cart-line .meta { font-size: 12px; color: var(--ink-mute); }
.cart-line .row { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.cart-line .qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--rule);
  border-radius: 999px;
  overflow: hidden;
}
.cart-line .qty button { width: 26px; height: 26px; background: transparent; border: 0; font-size: 14px; }
.cart-line .qty .v { padding: 0 8px; font-family: var(--mono); font-size: 12px; min-width: 22px; text-align: center; }
.cart-line .price { font-family: var(--serif); font-size: 17px; }
.cart-line .remove { background: none; border: 0; font-size: 11px; font-family: var(--mono); color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.12em; padding: 0; cursor: pointer; }
.cart-line .remove:hover { color: var(--red); }

.cart-empty {
  text-align: center; padding: 60px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.cart-empty .ico { width: 56px; height: 56px; color: var(--ink-mute); }
.cart-empty p { color: var(--ink-soft); }

.cart-foot {
  padding: 22px 26px 26px;
  border-top: 1px solid var(--rule);
  background: var(--bg-paper);
  display: flex; flex-direction: column; gap: 14px;
}
.cart-totals { display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
.cart-totals .row { display: flex; justify-content: space-between; }
.cart-totals .row.total { font-family: var(--serif); font-size: 22px; padding-top: 10px; border-top: 1px solid var(--rule); }
.cart-totals .row.discount { color: var(--red); }

.promo-row { display: flex; gap: 8px; }
.promo-row input {
  flex: 1; padding: 11px 14px; border: 1px solid var(--rule);
  border-radius: 999px; font-family: var(--sans); font-size: 13px; background: var(--bg);
}
.promo-row button { padding: 11px 18px; border-radius: 999px; border: 1px solid var(--ink); background: transparent; font-size: 13px; }
.promo-msg { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.promo-msg.ok { color: var(--green); }
.promo-msg.no { color: var(--red); }

/* ============ CHECKOUT ============ */
.checkout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  padding: 60px 0 100px;
  align-items: start;
}
.co-summary {
  background: var(--bg-paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky; top: 90px;
}
.co-summary h3 { margin-bottom: 18px; }
.co-summary .line { display: grid; grid-template-columns: 48px 1fr auto; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--rule-soft); align-items: center; font-size: 13px; }
.co-summary .line .thumb { width: 48px; height: 56px; border-radius: 8px; position: relative; overflow: hidden; }
.co-summary .line .thumb .bottle { width: 55%; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3)); }
.co-summary .totals { padding-top: 14px; display: flex; flex-direction: column; gap: 6px; font-size: 13px; }
.co-summary .totals .row { display: flex; justify-content: space-between; }
.co-summary .totals .row.total { font-family: var(--serif); font-size: 22px; padding-top: 10px; border-top: 1px solid var(--rule); margin-top: 6px; }

.co-form { display: flex; flex-direction: column; gap: 36px; }
.co-section h3 { margin-bottom: 18px; font-size: 22px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; color: var(--ink-mute); text-transform: uppercase; }
.field input, .field select, .field textarea {
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: var(--bg-paper);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-row.three { grid-template-columns: 2fr 1fr 1fr; }

.pay-method {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 18px;
}
.pay-method button {
  border: 1.5px solid var(--rule);
  background: var(--bg-paper);
  padding: 14px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-family: var(--mono); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft);
}
.pay-method button.active { border-color: var(--red); color: var(--ink); }

.order-success {
  text-align: center;
  padding: 100px 24px;
  max-width: 540px;
  margin: 0 auto;
}
.order-success .check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--red);
  color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  font-size: 30px;
}
.order-success h2 { margin-bottom: 16px; }
.order-success p { color: var(--ink-soft); font-size: 16px; }
.order-success .num { font-family: var(--mono); font-size: 13px; letter-spacing: 0.1em; color: var(--ink-mute); margin-top: 8px; }

/* ============ INDUSTRIAL / B2B PAGE ============ */
.industrial-hero {
  background: var(--ink);
  color: var(--bg-paper);
  padding: clamp(60px, 8vw, 110px) 0 clamp(60px, 7vw, 90px);
  position: relative;
  overflow: hidden;
}
.industrial-hero h1 { color: var(--bg-paper); }
.industrial-hero h1 .accent { color: var(--red-glow); font-style: italic; font-weight: 400; }
.industrial-hero .lede { color: rgba(251,247,240,0.72); max-width: 50ch; font-size: 17px; margin-top: 24px; }
.industrial-hero .mono-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(251,247,240,0.55); margin-bottom: 22px;
}
.industrial-hero .mono-tag::before { content: ""; width: 22px; height: 1px; background: var(--red-glow); }

.ind-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 40px;
}
.ind-visual {
  aspect-ratio: 1/1.1;
  background: radial-gradient(circle at 50% 45%, #c8341c, #5a1109 70%, #0f0301);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.ind-visual .powder-can { width: 50%; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); filter: drop-shadow(0 30px 40px rgba(0,0,0,0.5)); }
.ind-visual .corner {
  position: absolute;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(248,241,222,0.6);
  text-transform: uppercase;
}
.ind-visual .corner.tl { top: 18px; left: 22px; }
.ind-visual .corner.tr { top: 18px; right: 22px; }
.ind-visual .corner.br { bottom: 18px; right: 22px; }

.spec-table {
  margin-top: 0;
}
.spec-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(251,247,240,0.15);
  font-size: 14px;
}
.spec-row .k {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(251,247,240,0.55);
}
.spec-row .v { color: var(--bg-paper); }

.use-cases {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin-top: 40px;
}
.uc {
  background: var(--bg-paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.uc h4 { font-size: 16px; margin-bottom: 8px; }
.uc p { font-size: 13px; color: var(--ink-soft); line-height: 1.45; }
.uc .num { font-family: var(--mono); font-size: 10px; color: var(--red); letter-spacing: 0.14em; margin-bottom: 14px; display: block; }

.sample-form {
  background: var(--bg-paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.sample-form h3 { font-size: clamp(26px, 2.6vw, 36px); }
.sample-form .lede { color: var(--ink-soft); margin-top: 14px; font-size: 15px; }
.sample-form .form-grid { display: grid; gap: 12px; }
.sample-form-success {
  background: var(--green);
  color: var(--cream);
  padding: 28px;
  border-radius: var(--radius);
  text-align: center;
}

/* ============ SCIENCE PAGE ============ */
.science-hero {
  padding: clamp(60px, 7vw, 96px) 0 clamp(40px, 5vw, 60px);
  border-bottom: 1px solid var(--rule);
}
.research {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.cite-card {
  background: var(--bg-paper);
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius);
  padding: 24px 26px;
  display: flex; flex-direction: column; gap: 10px;
}
.cite-card .src {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red);
}
.cite-card h4 { font-size: 18px; font-family: var(--serif); font-weight: 500; }
.cite-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.cite-card .meta { font-family: var(--mono); font-size: 11px; color: var(--ink-mute); margin-top: 6px; }

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare > div { padding: clamp(28px, 3vw, 40px); }
.compare > div:first-child { background: var(--bg-deep); }
.compare > div:last-child { background: var(--bg-paper); }
.compare h4 { font-size: 14px; font-family: var(--mono); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
.compare h4.red { color: var(--red); }
.compare ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.compare ul li { font-size: 15px; color: var(--ink-soft); line-height: 1.5; padding-left: 22px; position: relative; }
.compare ul li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 12px; height: 1px; background: var(--ink-mute);
}
.compare > div:last-child ul li::before { background: var(--red); width: 12px; height: 2px; top: 9px; }
.compare > div:last-child ul li { color: var(--ink); font-weight: 500; }

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.about-grid .lede { font-size: 22px; font-family: var(--serif); color: var(--ink); max-width: 36ch; line-height: 1.25; }
.about-grid .body { font-size: 16px; color: var(--ink-soft); line-height: 1.65; display: flex; flex-direction: column; gap: 18px; }

.timeline {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.tl-step {
  padding: 28px 24px 32px;
  border-right: 1px solid var(--rule);
}
.tl-step:last-child { border-right: 0; }
.tl-step .yr { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--red); margin-bottom: 16px; }
.tl-step h4 { font-size: 18px; margin-bottom: 8px; }
.tl-step p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }

/* ============ DISCLAIMER ============ */
.disclaimer {
  font-family: var(--mono);
  font-size: 10.5px;
  line-height: 1.5;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  max-width: 84ch;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-grid, .science-grid, .b2b, .checkout, .ind-grid, .sample-form, .about-grid { grid-template-columns: 1fr; }
  .product-grid, .testimonials, .feature-strip, .use-cases, .hero-ticker { grid-template-columns: 1fr 1fr; }
  .pd-grid, .footer-top, .timeline { grid-template-columns: 1fr; }
  .timeline { display: flex; flex-wrap: wrap; }
  .tl-step { flex: 1 1 50%; border-bottom: 1px solid var(--rule); }
  .nav-links { display: none; }
  .stat-grid, .b2b-stats { grid-template-columns: 1fr 1fr; }
  .pd-thumbs { display: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .product-grid, .testimonials, .feature-strip, .use-cases, .hero-ticker { grid-template-columns: 1fr; }
  .field-row, .field-row.three { grid-template-columns: 1fr; }
  .pay-method { grid-template-columns: 1fr; }
}

/* Print disclaimer */
.fda-note {
  background: var(--bg-deep);
  padding: 14px var(--pad);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}
