/* Ilali Labs: luminous biotech — warm, credible, futuristic */

:root {
  --color-cream: #faf7f2;
  --color-cream-dark: #f0ebe3;
  --color-warm-white: #fffdf9;
  --color-sage: #5c7a6a;
  --color-sage-light: #8fa898;
  --color-sage-pale: #e8efe9;
  --color-sage-deep: #2f4238;
  --color-terracotta: #c4785a;
  --color-terracotta-hover: #b0684a;
  --color-terracotta-pale: #f5e8e2;
  --color-ink: #2c2a26;
  --color-ink-soft: #5a5650;
  --color-ink-muted: #8a847c;
  --color-border: rgba(44, 42, 38, 0.08);
  --color-glow-sage: rgba(92, 122, 106, 0.45);
  --color-glow-terra: rgba(196, 120, 90, 0.4);
  --color-cyan-soft: rgba(120, 180, 170, 0.35);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 9999px;

  --shadow-soft: 0 4px 24px rgba(44, 42, 38, 0.06);
  --shadow-card: 0 12px 48px rgba(44, 42, 38, 0.1);
  --shadow-glow: 0 0 40px var(--color-glow-sage), 0 0 80px rgba(196, 120, 90, 0.12);

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

  --max-width: 1120px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

html.ilali-gate-pending body {
  visibility: hidden !important;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-ink);
  background: var(--color-warm-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

body.menu-open {
  overflow: hidden;
}

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.35rem, 5.2vw, 3.75rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: 1.25rem;
}

em {
  font-style: italic;
}

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Ambient layers ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--color-sage-light), var(--color-terracotta), var(--color-sage));
  box-shadow: 0 0 12px var(--color-glow-terra);
  pointer-events: none;
  transition: width 0.05s linear;
}

.pointer-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 420px;
  height: 420px;
  margin: -210px 0 0 -210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 168, 152, 0.12) 0%, rgba(196, 120, 90, 0.05) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s;
  mix-blend-mode: multiply;
  will-change: transform;
}

.pointer-glow.is-active {
  opacity: 1;
}

.ambient-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.22;
}

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

/* ── Text effects ── */
.text-shimmer {
  display: inline;
  color: var(--color-terracotta);
  background: linear-gradient(
    105deg,
    var(--color-sage-deep) 0%,
    var(--color-sage) 25%,
    var(--color-terracotta) 50%,
    var(--color-sage) 75%,
    var(--color-sage-deep) 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-text 6s ease-in-out infinite;
}

@supports not (background-clip: text) {
  .text-shimmer {
    color: var(--color-terracotta);
    -webkit-text-fill-color: currentColor;
    background: none;
    animation: none;
  }
}

.text-accent {
  color: var(--color-terracotta);
  font-style: italic;
}

@keyframes shimmer-text {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  will-change: transform;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-terracotta) 0%, #d4896a 50%, var(--color-terracotta) 100%);
  background-size: 200% auto;
  color: var(--color-warm-white);
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(196, 120, 90, 0.35);
}

.btn-primary:hover {
  background-position: 100% center;
  box-shadow: 0 12px 36px rgba(196, 120, 90, 0.45);
}

.btn-secondary {
  background: rgba(255, 253, 249, 0.55);
  backdrop-filter: blur(10px);
  color: var(--color-sage-deep);
  border-color: rgba(143, 168, 152, 0.45);
  box-shadow: 0 4px 20px rgba(44, 42, 38, 0.04);
}

.btn-secondary:hover {
  background: var(--color-sage-pale);
  border-color: var(--color-sage);
  box-shadow: 0 8px 28px rgba(92, 122, 106, 0.15);
}

.btn-small {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

.btn-glow {
  position: relative;
}

.btn-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  animation: btn-shine 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btn-shine {
  0%, 70%, 100% { transform: translateX(-120%); }
  85% { transform: translateX(120%); }
}

/* ── Glass ── */
.glass-panel {
  background: rgba(255, 253, 249, 0.72);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    var(--shadow-card),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 253, 249, 0.72);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 249, 0.88);
  border-bottom-color: var(--color-border);
  box-shadow: 0 8px 32px rgba(44, 42, 38, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-sage-deep);
  position: relative;
  z-index: 2;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-sage-light), var(--color-sage), var(--color-terracotta));
  background-size: 200% 200%;
  animation: logo-pulse 5s ease-in-out infinite;
  position: relative;
  box-shadow: 0 0 16px var(--color-glow-sage);
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--color-warm-white);
  opacity: 0.55;
}

@keyframes logo-pulse {
  0%, 100% { background-position: 0% 50%; box-shadow: 0 0 12px var(--color-glow-sage); }
  50% { background-position: 100% 50%; box-shadow: 0 0 22px var(--color-glow-terra); }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-shrink: 0;
}

.menu-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-sage-deep);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.menu-toggle.is-active .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-ink-soft);
  transition: color 0.2s;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-sage-light), var(--color-terracotta));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

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

.nav a:hover::after {
  transform: scaleX(1);
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav {
    position: static;
    flex-direction: row;
    align-items: center;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 64px;
    --space-2xl: 3.5rem;
    --space-xl: 2.5rem;
    --space-lg: 1.75rem;
  }

  .container {
    width: min(100% - 2rem, var(--max-width));
  }

  .header-inner {
    gap: var(--space-sm);
  }

  .logo {
    font-size: 1.1rem;
    min-width: 0;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .header-cta {
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 99;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-sm);
    background: rgba(255, 253, 249, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .nav a::after {
    display: none;
  }

  .nav a:active {
    background: var(--color-sage-pale);
    color: var(--color-sage-deep);
  }
}

/* ── Hero ── */
main {
  position: relative;
  z-index: 2;
}

.hero {
  position: relative;
  padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(143, 168, 152, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(196, 120, 90, 0.14) 0%, transparent 50%),
    linear-gradient(180deg, #f4f0e8 0%, var(--color-warm-white) 100%);
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: mesh-drift 18s ease-in-out infinite;
}

.mesh-blob--1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(120, 170, 155, 0.55), transparent 70%);
  top: -160px;
  right: -100px;
}

.mesh-blob--2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(212, 150, 120, 0.4), transparent 70%);
  bottom: -80px;
  left: -120px;
  animation-delay: -6s;
}

.mesh-blob--3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(160, 190, 175, 0.45), transparent 70%);
  top: 45%;
  left: 40%;
  animation-delay: -11s;
  opacity: 0.35;
}

@keyframes mesh-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.96); }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.35;
}

.hero-orb--1 {
  width: 400px;
  height: 400px;
  background: var(--color-sage-pale);
  top: -100px;
  right: -80px;
}

.hero-orb--2 {
  width: 300px;
  height: 300px;
  background: var(--color-terracotta-pale);
  bottom: 0;
  left: -60px;
}

.hero-orb--3 {
  width: 200px;
  height: 200px;
  background: var(--color-sage-light);
  top: 40%;
  left: 30%;
  opacity: 0.18;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(92, 122, 106, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 122, 106, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
}

.hero-inner {
  position: relative;
  display: grid;
  gap: var(--space-xl);
  align-items: center;
  z-index: 2;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-lg);
  }
}

/* Content is always visible — never gate on JS */
.hero-enter,
.hero-enter--delay {
  opacity: 1;
  transform: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: var(--space-sm);
  padding: 0.35rem 0.85rem 0.35rem 0.55rem;
  border-radius: var(--radius-full);
  background: rgba(232, 239, 233, 0.7);
  border: 1px solid rgba(143, 168, 152, 0.35);
  backdrop-filter: blur(8px);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-sage);
  box-shadow: 0 0 0 0 rgba(92, 122, 106, 0.5);
  animation: pulse-dot 2s ease-out infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(92, 122, 106, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(92, 122, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(92, 122, 106, 0); }
}

.hero-title-row {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero-title-row h1 {
  flex: 1 1 12rem;
  min-width: 0;
  margin: 0;
}

.hero-badge {
  flex-shrink: 0;
  position: relative;
}

.hero-badge__ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(92, 122, 106, 0.35);
  animation: spin-slow 24s linear infinite;
}

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

.hero-badge__circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 9.5rem;
  height: 9.5rem;
  padding: 1rem 0.75rem;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.85);
  backdrop-filter: blur(12px);
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow:
    0 0 0 1px rgba(143, 168, 152, 0.4),
    0 0 0 5px rgba(232, 239, 233, 0.7),
    0 12px 36px rgba(44, 42, 38, 0.1),
    0 0 40px rgba(196, 120, 90, 0.15);
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge__star {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--color-terracotta);
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(196, 120, 90, 0.5));
}

.hero-badge__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--color-sage-deep);
}

.hero-badge__text span {
  display: block;
}

.hero-badge__emph {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-terracotta);
  line-height: 1.1;
}

.hero-lead {
  margin-top: var(--space-md);
  font-size: 1.125rem;
  color: var(--color-ink-soft);
  max-width: 36rem;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-md);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-sage-deep);
  background: rgba(255, 253, 249, 0.65);
  border: 1px solid rgba(143, 168, 152, 0.3);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(44, 42, 38, 0.04);
}

.chip-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4caf7a;
  box-shadow: 0 0 8px rgba(76, 175, 122, 0.8);
  animation: pulse-dot 2s ease-out infinite;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.hero-actions .btn {
  min-height: 48px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

/* Holographic frame */
.holo-frame {
  position: relative;
  width: min(100%, 420px);
  padding: 1.25rem;
}

.holo-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--color-sage-light);
  border-style: solid;
  opacity: 0.85;
  z-index: 3;
  filter: drop-shadow(0 0 6px var(--color-glow-sage));
}

.holo-corner--tl { top: 0; left: 0; border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.holo-corner--tr { top: 0; right: 0; border-width: 2px 2px 0 0; border-radius: 0 4px 0 0; }
.holo-corner--bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; border-radius: 0 0 0 4px; }
.holo-corner--br { bottom: 0; right: 0; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }

.holo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(143, 168, 152, 0.25);
  pointer-events: none;
  z-index: 0;
}

.holo-ring--outer {
  inset: -6%;
  border-style: dashed;
  animation: spin-slow 40s linear infinite;
  box-shadow: 0 0 40px rgba(92, 122, 106, 0.12);
}

.holo-ring--inner {
  inset: 8%;
  border-color: rgba(196, 120, 90, 0.2);
  animation: spin-slow 28s linear infinite reverse;
}

.holo-label {
  position: absolute;
  z-index: 4;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-sage-deep);
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid rgba(143, 168, 152, 0.35);
  backdrop-filter: blur(10px);
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(44, 42, 38, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.holo-label--top {
  top: 0.25rem;
  left: 50%;
  transform: translateX(-50%);
}

.holo-label--bottom {
  bottom: 0.25rem;
  right: 0.5rem;
  font-size: 0.62rem;
  color: var(--color-ink-soft);
}

.holo-label__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4caf7a;
  box-shadow: 0 0 8px rgba(76, 175, 122, 0.7);
  animation: pulse-dot 2s ease-out infinite;
}

.baby-gut-scene {
  position: relative;
  width: 100%;
  margin: 0;
  z-index: 1;
}

.baby-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 50px rgba(44, 42, 38, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Gut window */
.gut-window {
  position: absolute;
  top: 51%;
  left: 55%;
  width: 22%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotate(24deg);
  border-radius: 50%;
  border: 3px solid rgba(92, 122, 106, 0.55);
  background: radial-gradient(
    ellipse 80% 70% at 38% 32%,
    #fce8e0 0%,
    #f5d4cc 45%,
    #ebc4bc 100%
  );
  overflow: hidden;
  box-shadow:
    0 0 0 2px rgba(255, 253, 249, 0.35),
    0 0 24px rgba(92, 122, 106, 0.45),
    0 0 48px rgba(196, 120, 90, 0.2),
    inset 0 6px 20px rgba(196, 120, 90, 0.15),
    0 6px 24px rgba(44, 42, 38, 0.1);
  pointer-events: none;
  animation: gut-glow 4s ease-in-out infinite;
}

@keyframes gut-glow {
  0%, 100% {
    box-shadow:
      0 0 0 2px rgba(255, 253, 249, 0.35),
      0 0 20px rgba(92, 122, 106, 0.4),
      0 0 40px rgba(196, 120, 90, 0.15),
      inset 0 6px 20px rgba(196, 120, 90, 0.15),
      0 6px 24px rgba(44, 42, 38, 0.1);
  }
  50% {
    box-shadow:
      0 0 0 2px rgba(255, 253, 249, 0.45),
      0 0 32px rgba(92, 122, 106, 0.6),
      0 0 60px rgba(196, 120, 90, 0.3),
      inset 0 6px 20px rgba(196, 120, 90, 0.2),
      0 6px 24px rgba(44, 42, 38, 0.1);
  }
}

.gut-scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 18%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  animation: scan 3.5s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}

@keyframes scan {
  0% { top: -20%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.gut-bubbles {
  position: absolute;
  inset: 0;
}

.gut-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.55);
  animation: bubble-drift 6s ease-in-out infinite;
}

.gut-bubble--1 { width: 8%; height: 8%; top: 18%; left: 22%; animation-delay: 0s; }
.gut-bubble--2 { width: 5%; height: 5%; top: 55%; left: 70%; animation-delay: -1.5s; animation-duration: 5s; }
.gut-bubble--3 { width: 6%; height: 6%; top: 72%; left: 30%; animation-delay: -3s; animation-duration: 7s; }
.gut-bubble--4 { width: 4%; height: 4%; top: 35%; left: 80%; animation-delay: -2s; animation-duration: 4.5s; }
.gut-bubble--5 { width: 7%; height: 7%; top: 80%; left: 60%; animation-delay: -4s; animation-duration: 6.5s; }

.gut-microbes {
  position: absolute;
  inset: 0;
}

.gut-microbe {
  position: absolute;
  overflow: visible;
  filter: drop-shadow(0 2px 3px rgba(44, 42, 38, 0.12));
}

.gut-microbe--1 { width: 30%; top: 18%; left: 12%; animation: microbe-a 5.5s ease-in-out infinite; }
.gut-microbe--2 { width: 38%; top: 42%; left: 48%; animation: microbe-b 6.2s ease-in-out infinite -1s; }
.gut-microbe--3 { width: 28%; top: 58%; left: 8%; animation: microbe-c 4.8s ease-in-out infinite -2.3s; }
.gut-microbe--4 { width: 26%; top: 8%; left: 52%; animation: microbe-d 7s ease-in-out infinite -0.5s; }
.gut-microbe--5 { width: 22%; top: 68%; left: 55%; animation: microbe-e 5s ease-in-out infinite -3.5s; }
.gut-microbe--6 { width: 30%; top: 30%; left: 68%; animation: microbe-f 6.8s ease-in-out infinite -1.8s; }
.gut-microbe--7 { width: 16%; top: 78%; left: 38%; animation: microbe-g 4.2s ease-in-out infinite -2.8s; }
.gut-microbe--8 { width: 24%; top: 50%; left: 22%; animation: microbe-h 5.5s ease-in-out infinite -4s; }

@keyframes bubble-drift {
  0%, 100% { transform: translate(0, 0); opacity: 0.5; }
  50% { transform: translate(3px, -6px); opacity: 0.8; }
}

@keyframes microbe-a {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(6px, -8px) rotate(8deg); }
  50% { transform: translate(-4px, 4px) rotate(-5deg); }
  75% { transform: translate(5px, 6px) rotate(3deg); }
}

@keyframes microbe-b {
  0%, 100% { transform: translate(0, 0) rotate(-10deg); }
  33% { transform: translate(-8px, 5px) rotate(-18deg); }
  66% { transform: translate(6px, -7px) rotate(-4deg); }
}

@keyframes microbe-c {
  0%, 100% { transform: translate(0, 0) rotate(5deg); }
  40% { transform: translate(7px, -5px) rotate(12deg); }
  70% { transform: translate(-5px, 8px) rotate(-2deg); }
}

@keyframes microbe-d {
  0%, 100% { transform: translate(0, 0) rotate(-5deg); }
  30% { transform: translate(-6px, 7px) rotate(5deg); }
  60% { transform: translate(8px, -4px) rotate(-10deg); }
}

@keyframes microbe-e {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-7px, -6px) rotate(15deg); }
}

@keyframes microbe-f {
  0%, 100% { transform: translate(0, 0) rotate(20deg); }
  35% { transform: translate(5px, 8px) rotate(28deg); }
  70% { transform: translate(-8px, -3px) rotate(12deg); }
}

@keyframes microbe-g {
  0%, 100% { transform: translate(0, 0); }
  45% { transform: translate(4px, -9px); }
  80% { transform: translate(-6px, 3px); }
}

@keyframes microbe-h {
  0%, 100% { transform: translate(0, 0) rotate(-20deg); }
  40% { transform: translate(-5px, 7px) rotate(-30deg); }
  75% { transform: translate(7px, -5px) rotate(-12deg); }
}

/* ── Sections ── */
.section {
  padding: var(--space-2xl) 0;
  position: relative;
  z-index: 1;
}

.section--cream {
  background: linear-gradient(180deg, var(--color-cream) 0%, #f7f3ec 100%);
}

.section--why {
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(143, 168, 152, 0.12), transparent 60%),
    var(--color-warm-white);
  overflow: hidden;
}

.section-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(196, 120, 90, 0.08), transparent 70%);
  pointer-events: none;
}

.section--sage {
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(143, 168, 152, 0.35), transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(196, 120, 90, 0.15), transparent 50%),
    linear-gradient(160deg, #24352c 0%, var(--color-sage-deep) 45%, #3a5246 100%);
  color: var(--color-warm-white);
  overflow: hidden;
}

.sage-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 253, 249, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 249, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, black, transparent);
  -webkit-mask-image: linear-gradient(180deg, black, transparent);
  pointer-events: none;
}

.section-intro {
  margin-bottom: var(--space-xl);
  max-width: 36rem;
}

.section-intro--center {
  text-align: center;
  margin-inline: auto;
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-sage);
  margin-bottom: var(--space-xs);
  position: relative;
}

.section-label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  margin-right: 0.5rem;
  vertical-align: middle;
  background: linear-gradient(90deg, var(--color-terracotta), var(--color-sage-light));
  border-radius: 2px;
}

.section--sage .section-label {
  color: var(--color-sage-light);
}

.section--sage .section-label::before {
  background: linear-gradient(90deg, var(--color-terracotta), var(--color-sage-light));
}

.section-sub {
  margin-top: var(--space-sm);
  color: var(--color-ink-muted);
  font-size: 1.125rem;
}

.two-col {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

.prose p {
  margin-bottom: var(--space-md);
  color: var(--color-ink-soft);
}

.prose-highlight {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-sage-deep) !important;
  border-left: 3px solid transparent;
  border-image: linear-gradient(180deg, var(--color-terracotta), var(--color-sage-light)) 1;
  padding-left: var(--space-md);
  margin-top: var(--space-lg) !important;
}

.steps-card {
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform-style: preserve-3d;
}

.steps-track {
  position: absolute;
  left: calc(var(--space-lg) + 17px);
  top: calc(var(--space-lg) + 36px);
  bottom: calc(var(--space-lg) + 36px);
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--color-sage-light),
    var(--color-terracotta),
    var(--color-sage)
  );
  opacity: 0.45;
  border-radius: 2px;
}

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: relative;
}

.steps-list li {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-sage-pale), #dce8df);
  color: var(--color-sage-deep);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow:
    0 0 0 4px rgba(232, 239, 233, 0.8),
    0 0 16px rgba(92, 122, 106, 0.2);
  position: relative;
  z-index: 1;
}

.steps-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--color-ink);
}

.steps-list p {
  font-size: 0.95rem;
  color: var(--color-ink-muted);
}

/* Insight cards */
.insight-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .insight-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
}

.insight-card {
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: box-shadow 0.35s, transform 0.35s;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.insight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(143, 168, 152, 0.12),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.insight-card:hover::before {
  opacity: 1;
}

.insight-card:hover {
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(143, 168, 152, 0.25);
}

.insight-glow {
  position: absolute;
  top: -40%;
  right: -30%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(196, 120, 90, 0.12), transparent 70%);
  pointer-events: none;
}

.insight-icon {
  width: 52px;
  height: 52px;
  color: var(--color-sage);
  margin-bottom: var(--space-md);
  padding: 0.5rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(232, 239, 233, 0.9), rgba(245, 232, 226, 0.6));
  border: 1px solid rgba(143, 168, 152, 0.25);
  box-shadow: 0 4px 16px rgba(92, 122, 106, 0.1);
}

.insight-icon svg {
  width: 100%;
  height: 100%;
}

.insight-card h3 {
  margin-bottom: var(--space-sm);
  color: var(--color-sage-deep);
}

.insight-card p {
  font-size: 0.975rem;
  color: var(--color-ink-soft);
}

/* Benefits */
.benefits-list {
  list-style: none;
  display: grid;
  gap: var(--space-md);
  max-width: 40rem;
}

@media (min-width: 640px) {
  .benefits-list {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    max-width: none;
  }
}

.benefit-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(255, 253, 249, 0.06);
  border: 1px solid rgba(255, 253, 249, 0.1);
  backdrop-filter: blur(8px);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.benefit-item:hover {
  background: rgba(255, 253, 249, 0.1);
  border-color: rgba(255, 253, 249, 0.2);
  transform: translateY(-2px);
}

.benefit-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.12);
  color: var(--color-sage-light);
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(255, 253, 249, 0.25);
  box-shadow: 0 0 12px rgba(143, 168, 152, 0.3);
}

.benefit-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.benefit-item p {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* Reassurance */
.reassurance {
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(245, 232, 226, 0.9), transparent),
    var(--color-terracotta-pale);
}

.reassurance-block {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
  border: none;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: var(--radius-lg);
}

.reassurance-lead {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  font-style: italic;
  color: var(--color-sage-deep);
  margin-bottom: var(--space-md);
  line-height: 1.35;
}

.reassurance-block p:last-child {
  color: var(--color-ink-soft);
  font-size: 1.05rem;
}

/* Trust */
.trust-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-lg);
  max-width: 42rem;
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--radius-lg);
}

@media (min-width: 640px) {
  .trust-inner {
    flex-direction: row;
    text-align: left;
    max-width: none;
    align-items: flex-start;
  }
}

.trust-badge {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  color: var(--color-sage);
  filter: drop-shadow(0 0 16px var(--color-glow-sage));
  animation: logo-pulse 6s ease-in-out infinite;
}

.trust-content h2 {
  margin-bottom: var(--space-sm);
}

.trust-content p {
  color: var(--color-ink-soft);
}

/* About founder — photo + caption | bio */
.about-section {
  background:
    radial-gradient(ellipse 50% 45% at 0% 20%, rgba(143, 168, 152, 0.1), transparent 60%),
    var(--color-warm-white);
}

.about-layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 1.25rem 2rem;
  align-items: start;
}

.about-photo {
  margin: 0;
  width: 180px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.about-photo img {
  width: 180px;
  max-width: 100%;
  height: 220px;
  display: block;
  border-radius: 14px;
  object-fit: cover;
  object-position: center top;
  box-shadow:
    0 8px 28px rgba(44, 42, 38, 0.1),
    0 0 0 1px rgba(44, 42, 38, 0.06);
}

.about-caption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: 0;
  padding: 0 0.15rem;
  text-align: left;
}

.about-caption strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--color-sage-deep);
  line-height: 1.3;
}

.about-caption span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-ink-muted);
  line-height: 1.35;
}

.about-content {
  min-width: 0;
}

.about-content h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  color: var(--color-sage-deep);
}

.about-bio {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-bio p {
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 0.975rem;
  line-height: 1.65;
}

@media (min-width: 900px) {
  .about-layout {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 1.5rem 2.5rem;
  }

  .about-photo,
  .about-photo img {
    width: 200px;
  }

  .about-photo img {
    height: 250px;
  }

  .about-bio p {
    font-size: 1.02rem;
    line-height: 1.7;
  }
}

@media (max-width: 560px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .about-photo {
    position: static;
    width: auto;
    flex-direction: row;
    align-items: center;
    gap: 0.9rem;
  }

  .about-photo img {
    width: 96px;
    height: 120px;
    flex-shrink: 0;
  }

  .about-caption {
    padding: 0;
  }
}

/* CTA */
.cta-section {
  padding-bottom: var(--space-2xl);
}

.cta-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 80% at 20% 0%, rgba(143, 168, 152, 0.4), transparent 50%),
    radial-gradient(ellipse 60% 60% at 90% 100%, rgba(196, 120, 90, 0.25), transparent 50%),
    linear-gradient(135deg, #24352c 0%, var(--color-sage) 100%);
  color: var(--color-warm-white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  box-shadow: var(--shadow-card), 0 0 60px rgba(92, 122, 106, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.35s ease;
  transform-style: preserve-3d;
}

.cta-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  top: -80px;
  right: -40px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
  pointer-events: none;
  animation: mesh-drift 12s ease-in-out infinite;
}

.cta-card h2 {
  margin-bottom: var(--space-sm);
  position: relative;
}

.cta-card > p {
  opacity: 0.9;
  margin-bottom: var(--space-lg);
  max-width: 32rem;
  margin-inline: auto;
  position: relative;
}

.cta-card-btn {
  background: var(--color-warm-white) !important;
  color: var(--color-sage-deep) !important;
  border-color: var(--color-warm-white) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
  position: relative;
}

.cta-card-btn:hover {
  background: var(--color-cream) !important;
  border-color: var(--color-cream) !important;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 28rem;
  margin-inline: auto;
}

@media (min-width: 480px) {
  .waitlist-form {
    flex-direction: row;
  }
}

.waitlist-form input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid rgba(255, 253, 249, 0.2);
  border-radius: var(--radius-full);
  background: rgba(255, 253, 249, 0.1);
  color: var(--color-warm-white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.waitlist-form input::placeholder {
  color: rgba(255, 253, 249, 0.5);
}

.waitlist-form input:focus {
  border-color: rgba(255, 253, 249, 0.5);
  background: rgba(255, 253, 249, 0.15);
}

.waitlist-form .btn-primary {
  background: var(--color-warm-white);
  color: var(--color-sage-deep);
  border-color: var(--color-warm-white);
  white-space: nowrap;
}

.waitlist-form .btn-primary:hover {
  background: var(--color-cream);
  border-color: var(--color-cream);
}

.form-note {
  margin-top: var(--space-sm);
  font-size: 0.9rem;
  min-height: 1.4em;
}

.form-note.success {
  color: var(--color-sage-light);
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--color-cream-dark), #ebe4d8);
  padding: var(--space-xl) 0 var(--space-lg);
  border-top: 1px solid var(--color-border);
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-sage-deep);
}

.footer-brand .tagline {
  font-size: 0.9rem;
  color: var(--color-ink-muted);
  margin-top: 0.25rem;
}

.disclaimer {
  font-size: 0.8125rem;
  color: var(--color-ink-muted);
  line-height: 1.6;
  max-width: 48rem;
  padding: var(--space-md);
  background: rgba(255, 253, 249, 0.65);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-sage-light);
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--color-ink-muted);
}

/* Scroll reveal — progressive enhancement only; content stays readable without JS */
.reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .js-reveal .reveal:not(.visible) {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .js-reveal .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Order page ── */
.page-order {
  background: var(--color-cream);
}

.order-page {
  padding: calc(var(--header-height) + 2rem) 0 var(--space-2xl);
  position: relative;
  z-index: 2;
  min-height: 70vh;
  background:
    radial-gradient(ellipse 70% 45% at 100% 0%, rgba(143, 168, 152, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 35% at 0% 20%, rgba(196, 120, 90, 0.08), transparent 50%),
    linear-gradient(180deg, #f7f3ec 0%, var(--color-cream) 45%, var(--color-warm-white) 100%);
}

.order-shell {
  width: min(100% - 2.5rem, 680px);
  margin-inline: auto;
}

.order-hero {
  margin-bottom: 1.5rem;
}

.order-back {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-ink-soft);
  margin-bottom: 1rem;
  transition: color 0.2s;
}

.order-back:hover {
  color: var(--color-sage);
}

.order-promo {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.85rem;
  background: var(--color-terracotta-pale);
  border: 1px solid rgba(196, 120, 90, 0.28);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-terracotta);
  line-height: 1.3;
}

.order-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 4vw, 2.65rem);
  color: var(--color-sage-deep);
}

.order-intro {
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 1.05rem;
  max-width: 36rem;
  line-height: 1.55;
}

.order-form {
  display: block;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(44, 42, 38, 0.1);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(44, 42, 38, 0.07);
}

.form-section {
  display: block;
  width: 100%;
  padding: 1.5rem;
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(44, 42, 38, 0.08);
  background: transparent;
  box-sizing: border-box;
}

.form-section:last-of-type {
  border-bottom: 0;
}

.form-section--consent {
  background: var(--color-sage-pale);
  border-bottom: 0;
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.form-section--consent .form-section-title {
  margin-bottom: 0.75rem;
}

.form-section--consent .consent-list {
  margin-bottom: 0;
}

.form-section--consent .consent-item {
  border-color: rgba(92, 122, 106, 0.22);
  box-shadow: 0 1px 2px rgba(44, 42, 38, 0.04);
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.15rem;
  padding: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-sage-deep);
}

.form-step {
  flex: 0 0 1.75rem;
  width: 1.75rem;
  height: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-sage-deep);
  background: var(--color-sage-pale);
  border: 1px solid rgba(143, 168, 152, 0.4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  margin: 0;
  align-items: start;
}

/* Space between stacked blocks inside a section */
.form-section > .form-row + .form-row,
.form-section > .form-field + .form-row,
.form-section > .form-row + .form-field,
.form-section > .form-field + .form-field {
  margin-top: 1.1rem;
}

.form-row > .form-field {
  margin-top: 0 !important; /* never offset one column relative to the other */
  min-width: 0;
  width: 100%;
}

@media (min-width: 600px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }

  .form-row--3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
  min-width: 0;
  margin-top: 0;
}

.form-field--narrow {
  max-width: 12rem;
}

.form-field label,
.field-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-ink);
}

.field-hint {
  font-size: 0.85rem;
  color: var(--color-ink-muted);
  margin: 0;
  line-height: 1.4;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="number"],
.form-field input[type="date"],
.form-field textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.4;
  color: var(--color-ink);
  background: #fff;
  border: 1.5px solid rgba(44, 42, 38, 0.12);
  border-radius: 10px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.15s;
}

/* Date of birth selects — equal columns, same control height as text inputs */
.form-field--dob {
  gap: 0.4rem;
}

.dob-selects {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  width: 100%;
  margin: 0;
}

.dob-select {
  display: block;
  min-width: 0;
  margin: 0;
  width: 100%;
}

.dob-select select {
  display: block;
  width: 100%;
  height: 48px;
  min-height: 48px;
  margin: 0;
  padding: 0 2rem 0 0.9rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.4;
  color: var(--color-ink);
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235a5650' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 12px 8px;
  border: 1.5px solid rgba(44, 42, 38, 0.12);
  border-radius: 10px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.dob-select select:hover {
  border-color: rgba(92, 122, 106, 0.4);
}

.dob-select select:focus {
  border-color: var(--color-sage);
  box-shadow: 0 0 0 3px rgba(143, 168, 152, 0.2);
}

.dob-select select option {
  color: var(--color-ink);
}

.form-field--error .dob-select select {
  border-color: #c45c5c;
  box-shadow: 0 0 0 3px rgba(196, 92, 92, 0.15);
}

/* Match text inputs to same fixed height as selects */
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="number"] {
  height: 48px;
  min-height: 48px;
}

@media (max-width: 480px) {
  .dob-selects {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--color-ink-muted);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-sage);
  box-shadow: 0 0 0 3px rgba(143, 168, 152, 0.2);
}

.form-field textarea {
  resize: vertical;
  min-height: 5.5rem;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
}

.radio-group--pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.radio-group--stacked {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  min-width: 0;
  padding: 0.7rem 0.9rem;
  min-height: 48px;
  background: var(--color-cream);
  border: 1.5px solid rgba(44, 42, 38, 0.1);
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-ink-soft);
  box-sizing: border-box;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.radio-option:hover {
  border-color: rgba(92, 122, 106, 0.4);
  background: #fff;
}

.radio-option:has(input:checked) {
  border-color: var(--color-sage);
  background: var(--color-sage-pale);
  color: var(--color-sage-deep);
  box-shadow: 0 0 0 3px rgba(143, 168, 152, 0.15);
  font-weight: 600;
}

.radio-option input {
  width: 1rem;
  height: 1rem;
  margin: 0;
  accent-color: var(--color-sage);
  flex-shrink: 0;
}

.radio-option span {
  line-height: 1.35;
  min-width: 0;
}

.conditional-field.hidden {
  display: none;
}

.month-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.4rem;
  width: 100%;
}

@media (min-width: 520px) {
  .month-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.month-option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 42px;
  padding: 0.45rem 0.2rem;
  background: var(--color-cream);
  border: 1.5px solid rgba(44, 42, 38, 0.1);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-ink-soft);
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  transition: border-color 0.15s, background 0.15s;
}

.month-option:hover {
  border-color: rgba(196, 120, 90, 0.45);
  background: #fff;
}

.month-option:has(input:checked) {
  border-color: var(--color-terracotta);
  background: var(--color-terracotta-pale);
  color: var(--color-sage-deep);
}

.month-option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.25rem 1.5rem 1.4rem;
  background: var(--color-cream);
  border-top: 1px solid rgba(44, 42, 38, 0.08);
  border-radius: 0 0 16px 16px;
}

.form-actions .btn {
  width: 100%;
  min-height: 50px;
  font-size: 1.05rem;
}

.form-status {
  font-size: 0.95rem;
  min-height: 1.4em;
  text-align: center;
  margin: 0;
}

.form-status--success {
  color: var(--color-sage);
  font-weight: 600;
}

.form-status--error {
  color: #b04040;
  font-weight: 600;
}

.form-status--pending {
  color: var(--color-ink-muted);
}

.form-actions .btn:disabled,
.form-actions .btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
  pointer-events: none;
}

.form-field--error > label,
.form-field--error > .field-label {
  color: #b04040;
}

.form-field--error input[type="text"],
.form-field--error input[type="email"],
.form-field--error input[type="tel"],
.form-field--error input[type="number"],
.form-field--error input[type="date"],
.form-field--error textarea {
  border-color: #c45c5c;
  box-shadow: 0 0 0 3px rgba(196, 92, 92, 0.15);
}

.form-field--error .radio-option,
.form-field--error .month-option {
  border-color: rgba(196, 92, 92, 0.45);
}

.form-field input.is-invalid,
.form-field textarea.is-invalid {
  border-color: #c45c5c;
}

/* Keep disabled conditional inputs from looking interactive when shown */
.conditional-field.hidden {
  display: none !important;
}

/* Mobile polish */
@media (max-width: 767px) {
  .pointer-glow,
  .ambient-canvas {
    display: none;
  }

  .hero {
    padding-top: calc(var(--header-height) + var(--space-xl));
    padding-bottom: var(--space-xl);
  }

  .hero-title-row {
    align-items: flex-start;
  }

  .hero-badge__circle {
    width: 8.5rem;
    height: 8.5rem;
    padding: 0.875rem 0.625rem;
  }

  .hero-badge__text {
    font-size: 0.625rem;
  }

  .hero-badge__emph {
    font-size: 0.9rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 240px;
  }

  .holo-frame {
    width: min(100%, 320px);
    padding: 0.85rem;
  }

  .holo-label--bottom {
    display: none;
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .section-intro--center {
    text-align: left;
  }

  .steps-card,
  .insight-card {
    padding: var(--space-md);
  }

  .steps-track {
    left: calc(var(--space-md) + 17px);
    top: calc(var(--space-md) + 36px);
    bottom: calc(var(--space-md) + 36px);
  }

  .prose-highlight {
    font-size: 1.1rem;
    padding-left: var(--space-sm);
  }

  .reassurance-block {
    text-align: left;
  }

  .cta-card .btn {
    width: 100%;
    min-height: 48px;
  }

  .order-page {
    padding-top: calc(var(--header-height) + 1.25rem);
    padding-bottom: var(--space-xl);
  }

  .order-shell {
    width: min(100% - 2rem, 680px);
  }

  .order-intro {
    font-size: 1rem;
  }

  .form-section {
    padding: 1.2rem 1.1rem;
  }

  .form-actions {
    padding: 1.1rem;
  }

  .radio-group--pills {
    grid-template-columns: 1fr 1fr;
  }

  .month-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .form-field input[type="text"],
  .form-field input[type="email"],
  .form-field input[type="tel"],
  .form-field input[type="number"],
  .form-field input[type="date"],
  .form-field textarea {
    font-size: 16px;
    min-height: 48px;
  }

  .form-field textarea {
    min-height: 6rem;
  }

  .disclaimer {
    padding: var(--space-sm);
  }
}

@media (max-width: 380px) {
  .header-cta {
    padding: 0.45rem 0.65rem;
    font-size: 0.75rem;
  }

  .logo-text {
    font-size: 1rem;
  }

  .hero-chips {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .gut-microbe,
  .gut-bubble,
  .gut-scanline,
  .text-shimmer,
  .btn-shine,
  .mesh-blob,
  .logo-mark,
  .holo-ring,
  .hero-badge__ring,
  .eyebrow-dot,
  .chip-pulse,
  .holo-label__dot,
  .gut-window {
    animation: none !important;
  }

  .pointer-glow,
  .ambient-canvas {
    display: none;
  }
}

/* ── Link sample page ── */
.hidden {
  display: none !important;
}

.link-page .order-hero {
  margin-bottom: var(--space-md);
}

.link-steps {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  margin: 0 0 var(--space-lg);
  padding: 0;
}

.link-steps__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  opacity: 0.45;
}

.link-steps__item.is-active,
.link-steps__item.is-done {
  opacity: 1;
}

.link-steps__num {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-cream-dark);
  color: var(--color-sage-deep);
  font-size: 0.85rem;
  font-weight: 700;
}

.link-steps__item.is-active .link-steps__num {
  background: var(--color-terracotta);
  color: var(--color-warm-white);
}

.link-steps__item.is-done .link-steps__num {
  background: var(--color-sage);
  color: var(--color-warm-white);
}

.link-steps__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-ink-soft);
  letter-spacing: 0.02em;
}

.link-panel {
  margin-bottom: var(--space-lg);
}

.link-panel__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-sage-deep);
  margin: 0 0 0.35rem;
}

.link-panel__hint {
  color: var(--color-ink-soft);
  margin: 0 0 var(--space-md);
  font-size: 1rem;
}

.link-panel .form-actions {
  background: transparent;
  border-top: none;
  border-radius: 0;
  padding: var(--space-md) 0 0;
}

.link-panel .form-actions--row {
  flex-direction: column;
}

@media (min-width: 480px) {
  .link-panel .form-actions--row {
    flex-direction: row;
  }

  .link-panel .form-actions--row .btn {
    width: auto;
    flex: 1;
  }
}

.link-panel .form-field select,
.form-field select {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-ink);
  background: var(--color-warm-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235c7a6a' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.link-panel .form-field select:focus,
.form-field select:focus {
  border-color: var(--color-sage-light);
  box-shadow: 0 0 0 3px rgba(143, 168, 152, 0.2);
}

.tube-example {
  margin: 0 0 var(--space-md);
  text-align: center;
}

.tube-example__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.25rem 1rem;
  border-radius: var(--radius-md);
  background: var(--color-warm-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.tube-example img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
  object-position: center;
}

.tube-example figcaption {
  margin-top: 0.65rem;
  font-size: 0.85rem;
  color: var(--color-ink-muted);
}

.link-scan {
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: var(--color-sage-pale);
  border: 1px solid rgba(92, 122, 106, 0.18);
  transition: opacity 0.2s, border-color 0.2s;
}

.link-scan.is-complete {
  opacity: 0.55;
}

.link-scan__heading {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-sage-deep);
}

.scan-success {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
  margin: 0 0 var(--space-md);
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: var(--color-sage-pale);
  border: 2px solid var(--color-sage);
  box-shadow: var(--shadow-soft);
}

.scan-success__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-sage);
  color: var(--color-warm-white);
  font-size: 1.25rem;
  font-weight: 700;
}

.scan-success__copy {
  flex: 1 1 12rem;
  min-width: 0;
}

.scan-success__title {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-sage-deep);
}

.scan-success__code {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  color: var(--color-ink);
  word-break: break-all;
}

.scan-success__hint {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-ink-soft);
}

.scan-success .btn {
  flex-shrink: 0;
}

.link-manual {
  margin-top: var(--space-sm);
  border-radius: var(--radius-md);
  background: var(--color-cream);
  border: 1px dashed rgba(44, 42, 38, 0.14);
  overflow: hidden;
}

.link-manual.is-open {
  border-style: solid;
  border-color: rgba(92, 122, 106, 0.25);
}

.link-manual__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.9rem 1rem;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--color-sage-deep);
  text-align: left;
  cursor: pointer;
}

.link-manual__toggle:hover {
  background: rgba(255, 253, 249, 0.6);
}

.link-manual__chevron {
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--color-ink-muted);
  transition: transform 0.2s;
}

.link-manual.is-open .link-manual__chevron {
  transform: rotate(180deg);
}

.link-manual__panel {
  padding: 0 1rem 1rem;
  border-top: 1px solid rgba(44, 42, 38, 0.08);
}

.link-manual__hint {
  margin: 0.85rem 0 0.75rem;
  font-size: 0.925rem;
  color: var(--color-ink-soft);
  line-height: 1.5;
}

.link-manual .form-field {
  margin-top: 0;
}

.link-manual input.is-from-scan {
  border-color: var(--color-sage);
  background: var(--color-sage-pale);
}

.barcode-reader {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto var(--space-sm);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-cream-dark);
  min-height: 0;
}

.barcode-reader:empty {
  display: none;
}

.barcode-reader video {
  width: 100% !important;
  border-radius: var(--radius-md);
}

.link-scan__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 0.35rem;
}

.link-scan__actions .btn {
  min-width: 10rem;
}

.pickup-fieldset {
  border: none;
  margin: 0 0 var(--space-md);
  padding: 0;
}

.pickup-fieldset legend {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-sage-deep);
  margin-bottom: 0.5rem;
  padding: 0;
}

#courier-mode-hint {
  margin: 0 0 var(--space-md);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  background: var(--color-sage-pale);
  color: var(--color-sage-deep);
  font-size: 0.9rem;
}

#courier-mode-hint:empty {
  display: none;
}

.consent-legal-note {
  margin: 0 0 var(--space-md);
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  background: var(--color-cream);
  border-left: 3px solid var(--color-sage-light);
  font-size: 0.875rem;
  color: var(--color-ink-muted);
  line-height: 1.5;
}

.consent-list {
  list-style: none;
  margin: 0 0 var(--space-md);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.consent-item {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--color-warm-white);
  border: 1px solid var(--color-border);
}

.consent-item--optional {
  background: var(--color-cream);
  border-style: dashed;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.925rem;
  line-height: 1.5;
  color: var(--color-ink-soft);
}

.consent-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  accent-color: var(--color-sage);
}

.consent-label strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--color-sage-deep);
  font-weight: 600;
}

.consent-label span {
  min-width: 0;
}

.ship-choice {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 var(--space-md);
}

@media (min-width: 560px) {
  .ship-choice {
    grid-template-columns: 1fr 1fr;
  }
}

.ship-choice__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  width: 100%;
  padding: 1.1rem 1.15rem;
  text-align: left;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-warm-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.ship-choice__card:hover,
.ship-choice__card:focus-visible {
  border-color: var(--color-sage-light);
  background: var(--color-sage-pale);
  outline: none;
  box-shadow: var(--shadow-soft);
}

.ship-choice__card strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-sage-deep);
}

.ship-choice__card span {
  font-size: 0.9rem;
  color: var(--color-ink-soft);
  line-height: 1.45;
}

.ship-choice-back {
  display: inline-flex;
  margin: 0 0 var(--space-md);
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--color-sage);
  cursor: pointer;
}

.ship-choice-back:hover {
  color: var(--color-sage-deep);
  text-decoration: underline;
}

.manual-logistics {
  margin: 0 0 var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: var(--color-terracotta-pale);
  border: 1px solid rgba(196, 120, 90, 0.28);
}

.manual-logistics__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-sage-deep);
}

.manual-logistics__body,
.manual-logistics__note {
  margin: 0 0 0.85rem;
  color: var(--color-ink-soft);
  font-size: 0.975rem;
  line-height: 1.55;
}

.manual-logistics__lab {
  display: block;
  margin: 0 0 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--color-warm-white);
  border: 1px solid var(--color-border);
  font-style: normal;
  font-weight: 600;
  white-space: pre-line;
  color: var(--color-ink);
  line-height: 1.5;
}

.manual-logistics .btn {
  width: 100%;
  min-height: 48px;
}

.address-match {
  margin-top: var(--space-md);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--color-sage-pale);
  border: 1px solid rgba(92, 122, 106, 0.25);
  text-align: left;
}

.address-match__label {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-sage-deep);
}

.address-match__name {
  margin: 0 0 0.35rem;
  font-weight: 600;
  color: var(--color-ink);
  line-height: 1.4;
}

.address-match__note {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--color-ink-soft);
  line-height: 1.45;
}

.address-match__confirm {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.925rem;
  color: var(--color-ink);
  cursor: pointer;
}

.address-match__confirm input {
  margin-top: 0.2rem;
  accent-color: var(--color-sage);
}

.form-actions--inline {
  margin-top: var(--space-sm);
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.form-actions--inline .btn {
  width: 100%;
  min-height: 48px;
}

@media (min-width: 480px) {
  .form-actions--inline .btn {
    width: auto;
    min-width: 12rem;
  }
}

.link-success {
  text-align: center;
  padding: var(--space-md) 0;
}

.link-success__icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-sage-pale);
  color: var(--color-sage-deep);
  font-size: 1.5rem;
  font-weight: 700;
}

.link-success .btn {
  margin-top: var(--space-md);
}

@media (max-width: 767px) {
  .link-steps__label {
    font-size: 0.7rem;
  }

  .tube-example__frame {
    padding: 1rem 0.75rem;
  }

  .link-scan__actions .btn {
    width: 100%;
    min-width: 0;
  }
}
