/* =============================================
   ENBIOSIS SA — Design System
   Official brand identity:
   • Typefaces: Graphic (Manrope) + Garamond (EB Garamond)
   • Palette:   #2d98d5 #a8deea #fee8c0 #edd1a1
                #f6927a #5050a2 #5bc3d9 #e2624d
   ============================================= */

:root {
  /* --- Brand palette (official) --- */
  --blue:        #2d98d5;   /* PANTONE 2190 C — primary */
  --blue-soft:   #a8deea;   /* PANTONE 545 C */
  --teal:        #5bc3d9;   /* PANTONE 636 C */
  --indigo:      #5050a2;   /* PANTONE 7671 C — deep accent */
  --cream:       #fee8c0;   /* PANTONE 7401 C */
  --sand:        #edd1a1;   /* PANTONE 148 C */
  --coral:       #f6927a;   /* PANTONE 1625 C */
  --tomato:      #e2624d;   /* PANTONE 2024 C */

  /* Tints derived from the palette */
  --blue-50:     #eaf6fc;
  --blue-100:    #d3ecf7;
  --blue-700:    #1f6e9c;
  --blue-900:    #0d2c44;

  --indigo-50:   #ecedfa;
  --indigo-700:  #2f306b;
  --indigo-900:  #14143e;

  --cream-50:    #fff8e9;
  --sand-50:     #f8efd9;

  /* Neutrals */
  --ink-900:     #0e1530;        /* very deep indigo for body */
  --ink-800:     #1b234a;
  --ink-700:     #2c365e;
  --ink-500:     #5d6588;
  --ink-300:     #9ea4bd;
  --ink-100:     #e6e8f1;
  --paper:       #fbfaf6;        /* warm off-white */
  --white:       #ffffff;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(14,21,48,.06), 0 2px 8px rgba(14,21,48,.04);
  --shadow-md: 0 6px 22px rgba(14,21,48,.10), 0 2px 6px rgba(14,21,48,.05);
  --shadow-lg: 0 28px 70px rgba(20,20,62,.18), 0 8px 24px rgba(20,20,62,.10);
  --shadow-glow: 0 0 0 1px rgba(45,152,213,.18), 0 22px 60px rgba(45,152,213,.22);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  /* Brand gradients */
  --grad-hero:
    radial-gradient(120% 80% at 80% 0%, #5bc3d9 0%, #2d98d5 30%, #2c4f96 70%, #14143e 100%);
  --grad-cool:
    linear-gradient(135deg, #2d98d5 0%, #5bc3d9 50%, #a8deea 100%);
  --grad-warm:
    linear-gradient(135deg, #f6927a 0%, #edd1a1 60%, #fee8c0 100%);
  --grad-soft:
    linear-gradient(180deg, #fbfaf6 0%, #eaf6fc 100%);
  --grad-cream:
    linear-gradient(180deg, #fff8e9 0%, #f8efd9 100%);

  --font-sans: 'Manrope', 'Graphik', 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-display: 'EB Garamond', 'Garamond', 'Cormorant Garamond', Georgia, serif;

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
}

/* Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-800);
  background: var(--paper);
  font-weight: 400;
  letter-spacing: -.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--blue); }
button { font: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--blue); color: white; }

/* Type — Garamond display, Graphic for ui/body */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink-900);
  margin: 0 0 .4em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.6rem, 5.6vw, 4.8rem); font-weight: 500; line-height: 1.05; letter-spacing: -.02em; }
h2 { font-size: clamp(2.1rem, 3.8vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.7rem); }
/* Emphasis — sans-serif, color accent, not italic (per brand book) */
h1 em, h2 em, h3 em {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: -.005em;
  font-size: .78em;        /* sans is visually heavier than serif at same size */
  vertical-align: .04em;   /* nudge to baseline-align with serif caps */
  line-height: 1;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--blue-700); font-weight: 700;
  padding: 8px 14px;
  background: rgba(45,152,213,.08);
  border: 1px solid rgba(45,152,213,.22);
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); box-shadow: 0 0 0 4px rgba(45,152,213,.18);
}
.lead {
  font-size: 1.18rem; color: var(--ink-500); max-width: 60ch;
  line-height: 1.6; font-weight: 400;
}
small, .small { font-size: .85rem; color: var(--ink-500); }

/* Layout */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(40px, 4vw, 64px) 0; position: relative; }
.section--tight { padding: clamp(28px, 3vw, 40px) 0; }
.section--soft { background: var(--grad-soft); }
.section--cream { background: var(--grad-cream); }
.section--dark { background: var(--ink-900); color: rgba(255,255,255,.85); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: white; }
.section--dark .lead { color: rgba(255,255,255,.72); }

.grid { display: grid; gap: clamp(20px, 2.5vw, 36px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: background .35s ease, backdrop-filter .35s ease, padding .35s ease, box-shadow .35s ease;
}
.nav.is-scrolled {
  background: rgba(251,250,246,.85);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 500; letter-spacing: -.015em;
  color: white;
}
.is-scrolled .brand { color: var(--ink-900); }

/* Full Enbiosis SA logo (PNG) — used everywhere */
.brand__logo {
  display: block;
  height: 36px; width: auto;
  transition: height .25s ease;
}
.is-scrolled .brand__logo { height: 30px; }

/* Hide the secondary "light" img — we use a single PNG with a soft pill on dark surfaces */
.brand__logo--light { display: none !important; }

/* On dark surfaces wrap the logo in a soft white pill so the dark wordmark is readable */
.nav:not(.is-scrolled) .brand,
.footer .brand,
.page-header .brand {
  background: rgba(255,255,255,.94);
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(14,21,48,.18);
}

/* Footer keeps the logo a touch larger */
.footer .brand__logo { height: 38px; }
/* Drawer (always white background) — no pill */
.drawer__panel .brand { background: transparent; padding: 0; box-shadow: none; }
.drawer__panel .brand__logo { height: 32px; }

/* Legacy mark kept as a fallback container (no longer used as background) */
.brand__mark {
  display: none;
}
.brand__sa {
  display: none; /* the wordmark is part of the logo PNG */
}

.nav__links {
  display: flex; gap: 4px; align-items: center;
  list-style: none; padding: 0; margin: 0;
  flex-wrap: nowrap;
}
.nav__links a {
  padding: 10px 12px; border-radius: 10px;
  font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.85);
  white-space: nowrap;
}
.is-scrolled .nav__links a { color: var(--ink-700); }
.nav__links a:hover { background: rgba(255,255,255,.08); color: white; }
.is-scrolled .nav__links a:hover { background: rgba(45,152,213,.08); color: var(--blue-700); }

.nav__cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__menu-btn {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.08); color: white;
  align-items: center; justify-content: center;
}
.is-scrolled .nav__menu-btn { background: var(--ink-100); color: var(--ink-800); }
@media (max-width: 1100px) {
  .nav__links { display: none; }
  .nav__menu-btn { display: inline-flex; }
  .nav__cta .btn--ghost { display: none; }
}

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(14,21,48,.55); backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.drawer.is-open { opacity: 1; pointer-events: auto; }
.drawer__panel {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: min(360px, 86vw); background: white;
  padding: 24px; display: flex; flex-direction: column; gap: 12px;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.6,.05,.2,1);
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.drawer__panel a {
  padding: 14px 16px; border-radius: 12px; font-weight: 500;
  border-bottom: 1px solid var(--ink-100);
}
.drawer__panel a:hover { background: var(--blue-50); color: var(--blue-700); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-weight: 600; font-size: .94rem; letter-spacing: -.005em;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap; font-family: var(--font-sans);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--ink-900); color: white;
  box-shadow: 0 8px 24px rgba(14,21,48,.18);
}
.btn--primary:hover { background: var(--indigo); color: white; box-shadow: 0 12px 28px rgba(80,80,162,.32); }

.btn--leaf { /* keeping the class name; now brand cool gradient */
  background: var(--grad-cool); color: white;
  box-shadow: 0 12px 30px rgba(45,152,213,.32);
}
.btn--leaf:hover { color: white; box-shadow: 0 18px 40px rgba(45,152,213,.46); }

.btn--coral {
  background: var(--coral); color: white;
  box-shadow: 0 12px 30px rgba(246,146,122,.36);
}
.btn--coral:hover { background: var(--tomato); box-shadow: 0 16px 36px rgba(226,98,77,.42); }

.btn--ghost {
  background: rgba(255,255,255,.08); color: white;
  border: 1px solid rgba(255,255,255,.22);
}
.is-scrolled .btn--ghost { background: var(--ink-100); color: var(--ink-800); border-color: transparent; }
.btn--ghost:hover { background: rgba(255,255,255,.16); color: white; }
.is-scrolled .btn--ghost:hover { background: var(--blue-50); color: var(--blue-700); }

.btn--outline {
  background: transparent; color: var(--ink-800);
  border: 1.5px solid var(--ink-800);
}
.btn--outline:hover { background: var(--ink-900); color: white; }

.btn--lg { padding: 18px 28px; font-size: 1rem; }
.btn .arrow { transition: transform .25s ease; display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative; min-height: 100vh;
  background: var(--grad-hero);
  color: white; overflow: hidden;
  display: flex; align-items: center;
  padding: 140px 0 100px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: url('../assets/images/top-image-home.jpg') center/cover no-repeat;
  opacity: .12;
  filter: saturate(110%) contrast(105%);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 20% 30%, rgba(91,195,217,.32), transparent 70%),
    radial-gradient(40% 40% at 90% 80%, rgba(80,80,162,.35), transparent 70%),
    linear-gradient(180deg, rgba(14,21,48,.05) 0%, rgba(14,21,48,.55) 90%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.4fr .6fr; gap: 60px; align-items: center; }
@media (max-width: 980px) { .hero__inner { grid-template-columns: 1fr; gap: 40px; } }

.hero__eyebrow {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.22);
  color: rgba(255,255,255,.95);
}
.hero__eyebrow::before { background: var(--cream); box-shadow: 0 0 0 4px rgba(254,232,192,.22); }

.hero h1 {
  color: white;
  background: linear-gradient(180deg, #ffffff 0%, #fee8c0 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-style: normal;
}
.hero h1 em {
  color: var(--cream); -webkit-text-fill-color: var(--cream);
  font-family: var(--font-sans); font-style: normal; font-weight: 500;
  font-size: .78em; vertical-align: .04em; line-height: 1;
}

.hero p.lead {
  color: rgba(255,255,255,.82);
  font-size: 1.18rem; max-width: 56ch; margin-top: 6px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }

.hero__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 56px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.14);
  max-width: 560px;
}
.hero__stat .num {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 500;
  background: linear-gradient(180deg, #ffffff, #a8deea);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.hero__stat .lbl { font-size: .82rem; color: rgba(255,255,255,.62); margin-top: 4px; }

/* Visual orb */
.hero__visual {
  position: relative; aspect-ratio: 1/1;
  width: 100%; max-width: 360px;
  margin-left: auto; margin-right: 0;
}
@media (max-width: 980px) {
  .hero__visual { max-width: 280px; margin: 0 auto; }
}
.orb {
  position: absolute; inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.55), transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(91,195,217,.7), transparent 60%),
    conic-gradient(from 90deg at 50% 50%, #2d98d5, #5bc3d9, #a8deea, #5050a2, #2d98d5);
  filter: blur(.5px);
  box-shadow:
    0 40px 100px rgba(45,152,213,.55),
    inset 0 0 80px rgba(255,255,255,.22),
    0 0 0 1px rgba(255,255,255,.08);
  animation: orbSpin 22s linear infinite;
}
.orb::before {
  content: ""; position: absolute; inset: 14%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.22), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(91,195,217,.45), transparent 60%),
    #14143e;
  box-shadow:
    inset 0 0 60px rgba(91,195,217,.35),
    inset 0 -20px 50px rgba(80,80,162,.4);
}
.orb::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, transparent 60%, rgba(14,21,48,.4) 100%);
}
@keyframes orbSpin { to { transform: rotate(360deg); } }

.dna {
  position: absolute; inset: 4%;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.28);
  animation: dnaSpin 30s linear infinite reverse;
}
.dna::before, .dna::after {
  content: ""; position: absolute; width: 14px; height: 14px; border-radius: 50%;
  background: var(--cream); box-shadow: 0 0 30px var(--cream);
}
.dna::before { top: -7px; left: 50%; transform: translateX(-50%); background: white; box-shadow: 0 0 30px white; }
.dna::after { bottom: -7px; left: 50%; transform: translateX(-50%); background: var(--coral); box-shadow: 0 0 30px var(--coral); }
@keyframes dnaSpin { to { transform: rotate(-360deg); } }

.float-tag {
  position: absolute; padding: 8px 13px; border-radius: 999px;
  background: rgba(20,20,62,.6); border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  font-size: .72rem; font-weight: 500; color: white;
  display: inline-flex; align-items: center; gap: 7px;
  box-shadow: 0 10px 28px rgba(14,21,48,.4);
  animation: floaty 6s ease-in-out infinite;
  white-space: nowrap;
  z-index: 3;
}
.float-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-soft); box-shadow: 0 0 0 3px rgba(168,222,234,.22); }
.float-tag--1 { top: 6%; left: 0; }
.float-tag--2 { top: 46%; right: 0; animation-delay: -2s; }
.float-tag--2 .dot { background: var(--coral); box-shadow: 0 0 0 4px rgba(246,146,122,.22); }
.float-tag--3 { bottom: 6%; left: 8%; animation-delay: -4s; }
.float-tag--3 .dot { background: var(--cream); box-shadow: 0 0 0 4px rgba(254,232,192,.22); }
@media (max-width: 540px) {
  .float-tag { font-size: .72rem; padding: 8px 12px; }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Marquee */
.marquee {
  background: var(--ink-900); color: rgba(255,255,255,.6);
  padding: 18px 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.marquee__track {
  display: flex; gap: 56px; white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-sans);
  font-size: .95rem; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 16px; }
.marquee__track span::after { content: "✺"; color: var(--coral); font-size: 1em; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* =============================================
   AWARDS / TRUST STRIP
   ============================================= */
.trust {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 28px; align-items: center;
  padding: 36px 0; opacity: .9;
}
.trust__item {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.05rem; color: var(--ink-700);
  border-right: 1px solid var(--ink-100);
  padding: 8px 12px; min-height: 64px; text-align: center;
}
.trust__item:last-child { border-right: 0; }
.trust__item small { display: block; color: var(--ink-300); font-family: var(--font-sans); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; margin-top: 4px; }
@media (max-width: 900px) { .trust { grid-template-columns: repeat(2, 1fr); } .trust__item:nth-child(2n) { border-right: 0; } }

/* =============================================
   FEATURE CARDS
   ============================================= */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr; } }

.card {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--ink-100);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(180deg, rgba(45,152,213,.06), transparent 40%);
  pointer-events: none; opacity: 0; transition: opacity .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(45,152,213,.4); }
.card:hover::before { opacity: 1; }

.card__icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center;
  background: var(--blue-50); color: var(--blue-700);
  margin-bottom: 18px; transition: transform .3s ease;
}
.card--warm .card__icon { background: var(--cream-50); color: var(--tomato); }
.card--indigo .card__icon { background: var(--indigo-50); color: var(--indigo); }
.card:hover .card__icon { transform: rotate(-6deg) scale(1.05); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-500); margin: 0; }
.card__link {
  margin-top: 22px; display: inline-flex; align-items: center; gap: 8px;
  color: var(--blue-700); font-weight: 600; font-size: .95rem;
}
.card__link .arrow { transition: transform .25s ease; }
.card:hover .card__link .arrow { transform: translateX(4px); }

/* Big feature with image */
.feature {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center;
}
.feature--reverse { grid-template-columns: .9fr 1.1fr; }
.feature--reverse .feature__media { order: -1; }
@media (max-width: 980px) {
  .feature, .feature--reverse { grid-template-columns: 1fr; gap: 40px; }
  .feature--reverse .feature__media { order: 0; }
}
.feature__media {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--grad-cool);
}
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14,21,48,.5) 100%);
}
.feature__badge {
  position: absolute; left: 24px; bottom: 24px; z-index: 2;
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  border-radius: var(--radius-md); padding: 16px 20px; max-width: 80%;
  box-shadow: var(--shadow-md);
  display: flex; gap: 14px; align-items: center;
}
.feature__badge .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad-cool); display: grid; place-items: center; color: white;
}
.feature__badge .num { font-family: var(--font-display); font-size: 1.5rem; line-height: 1; color: var(--ink-900); }
.feature__badge .lbl { font-size: .8rem; color: var(--ink-500); }

/* Enbiosis 2.0 science pipeline */
.science-pipeline__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.science-pipeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
  margin-top: clamp(34px, 4vw, 56px);
}

.science-step {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  background: var(--white);
  border: 1px solid rgba(14,21,48,.1);
  border-radius: 32px;
  box-shadow: 0 20px 50px rgba(14,21,48,.06);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.science-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(91,195,217,.55);
}

.science-step__media {
  aspect-ratio: 1 / 1;
  background: var(--white);
  overflow: hidden;
}

.science-step__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.science-step__body {
  flex: 1;
  padding: clamp(26px, 2.4vw, 40px);
  background: linear-gradient(135deg, #f2fdff 0%, #dff8fb 100%);
  border-top: 6px solid var(--teal);
}

.science-step__number {
  display: block;
  margin-bottom: clamp(22px, 2.4vw, 34px);
  color: rgba(14,21,48,.13);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
}

.science-step h3 {
  margin-bottom: clamp(18px, 2vw, 26px);
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: -.045em;
}

.science-step p {
  margin: 0;
  color: var(--ink-500);
  font-size: clamp(.98rem, 1.2vw, 1.12rem);
  line-height: 1.35;
}

@media (max-width: 1100px) {
  .science-pipeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .science-pipeline { grid-template-columns: 1fr; }
  .science-step__media { aspect-ratio: 16 / 11; }
}

.feature__list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 14px; }
.feature__list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 1.02rem;
}
.feature__list li svg {
  flex-shrink: 0; margin-top: 4px;
  color: var(--blue);
}

.app-download {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  background: var(--blue-50);
}
.app-download p { margin: 0 0 12px; }
.app-download__badges { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.app-download__badges a { display: inline-flex; transition: transform .2s ease; }
.app-download__badges a:hover { transform: translateY(-1px); }
.app-download__badges img { height: 42px; width: auto; display: block; }
.payment-badges { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 18px; }
.payment-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 34px; padding: 7px 13px; border-radius: 999px;
  font-weight: 800; font-size: .82rem; letter-spacing: .02em;
  border: 1px solid rgba(255,255,255,.2); background: white;
  box-shadow: 0 8px 20px rgba(16,24,40,.08);
}
.payment-badge--logo { padding: 6px 12px; }
.payment-badge--logo img { display: block; height: 22px; width: auto; }
.payment-badge--payfast { color: #0b5cab; }
.payment-badge--mobicred { color: #ec6b23; }

/* =============================================
   STUDIES (Clinical proof)
   ============================================= */
.studies { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 900px) { .studies { grid-template-columns: 1fr; } }

.study {
  background: white; border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--ink-100);
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.study:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.study__journal {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 18px; border-bottom: 1px dashed var(--ink-100);
}
.study__journal .badge {
  background: var(--ink-900); color: white;
  font-size: .7rem; padding: 5px 9px; border-radius: 6px; letter-spacing: .12em; font-weight: 600;
}
.study__journal .name { font-family: var(--font-display); font-size: 1.1rem; line-height: 1.25; color: var(--ink-900); }
.study__journal .name small { font-family: var(--font-sans); }
.study__points { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; flex: 1; }
.study__points li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--ink-700); font-size: .98rem;
}
.study__points li svg { flex-shrink: 0; margin-top: 4px; color: var(--blue); }
.study__meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 18px; border-top: 1px dashed var(--ink-100);
  font-size: .82rem; color: var(--ink-500);
}
.study__link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue-700); font-weight: 600;
}

/* =============================================
   PLATFORM SHOWCASE
   ============================================= */
.platform {
  background: linear-gradient(180deg, var(--paper) 0%, #eaf4fb 100%);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 5vw, 80px);
  color: var(--ink-900);
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: center;
  border: 1px solid var(--ink-100);
}
.platform::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 50% at 100% 0%, rgba(45,152,213,.10), transparent 70%),
    radial-gradient(40% 60% at 0% 100%, rgba(91,195,217,.10), transparent 70%);
}
.platform > * { position: relative; z-index: 2; }
@media (max-width: 980px) { .platform { grid-template-columns: 1fr; } }
.platform h2 { color: var(--ink-900); }
.platform .lead { color: var(--ink-500); }
.platform__check { display: grid; gap: 14px; margin: 24px 0 32px; padding: 0; list-style: none; }
.platform__check li {
  display: flex; gap: 12px; align-items: center;
  color: var(--ink-700);
}
.platform__check svg { flex-shrink: 0; color: var(--blue); }
.platform .hero__eyebrow {
  background: rgba(45,152,213,.08);
  border-color: rgba(45,152,213,.22);
  color: var(--blue-700);
}
.platform .hero__eyebrow::before {
  background: var(--blue); box-shadow: 0 0 0 4px rgba(45,152,213,.18);
}

.dashboard {
  position: relative; aspect-ratio: 16/11;
  border-radius: 18px;
  background: linear-gradient(160deg, #14143e 0%, #1f235a 100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  padding: 22px; overflow: hidden;
}
.dashboard__header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 16px;
}
.dashboard__dots { display: flex; gap: 6px; }
.dashboard__dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.18); }
.dashboard__dots span:first-child { background: var(--coral); }
.dashboard__dots span:nth-child(2) { background: var(--cream); }
.dashboard__dots span:nth-child(3) { background: var(--blue-soft); }
.dashboard__title { font-size: .8rem; color: rgba(255,255,255,.55); letter-spacing: .14em; text-transform: uppercase; font-weight: 500; }

.dashboard__grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 14px; height: calc(100% - 60px);
}
.dashboard__score {
  background: linear-gradient(160deg, rgba(45,152,213,.22), rgba(45,152,213,.04));
  border: 1px solid rgba(45,152,213,.32); border-radius: 14px;
  padding: 16px; display: flex; flex-direction: column; justify-content: space-between;
}
.dashboard__score .label { font-size: .7rem; color: rgba(255,255,255,.6); letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }
.dashboard__score .number {
  font-family: var(--font-display); font-size: 3.4rem; line-height: 1; font-weight: 500;
  background: linear-gradient(180deg, white, var(--blue-soft));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.dashboard__score .ring {
  width: 80px; height: 80px; border-radius: 50%;
  background: conic-gradient(var(--blue) 0% 78%, rgba(255,255,255,.1) 78% 100%);
  position: relative; align-self: flex-end;
}
.dashboard__score .ring::before {
  content: ""; position: absolute; inset: 8px; border-radius: 50%;
  background: #1f235a;
}
.dashboard__bars {
  display: flex; flex-direction: column; justify-content: space-around; gap: 8px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px; padding: 14px;
}
.dashboard__bar { display: grid; grid-template-columns: 80px 1fr 36px; align-items: center; gap: 10px; font-size: .72rem; }
.dashboard__bar .name { color: rgba(255,255,255,.7); }
.dashboard__bar .track { height: 6px; background: rgba(255,255,255,.08); border-radius: 999px; overflow: hidden; }
.dashboard__bar .fill { height: 100%; background: var(--grad-cool); border-radius: 999px; transform-origin: left; animation: barGrow 2s ease-out forwards; transform: scaleX(0); }
.dashboard__bar:nth-child(3) .fill { background: linear-gradient(90deg, var(--coral), var(--sand)); }
.dashboard__bar:nth-child(5) .fill { background: linear-gradient(90deg, var(--indigo), var(--blue)); }
.dashboard__bar .pct { color: white; text-align: right; font-weight: 600; }
@keyframes barGrow { to { transform: scaleX(1); } }

/* =============================================
   AUDIENCE TILES
   ============================================= */
.audiences { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .audiences { grid-template-columns: 1fr; } }
.aud {
  position: relative; padding: 32px;
  border-radius: var(--radius-lg);
  background: white; border: 1px solid var(--ink-100);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s ease, box-shadow .3s ease;
  overflow: hidden;
}
.aud::before {
  content: ""; position: absolute; right: -40px; top: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--grad-cool); opacity: .14; transition: transform .4s ease, opacity .4s ease;
}
.aud:nth-child(2)::before { background: var(--grad-warm); }
.aud:nth-child(3)::before { background: linear-gradient(135deg, var(--indigo), var(--blue)); }
.aud:nth-child(4)::before { background: linear-gradient(135deg, var(--teal), var(--cream)); }
.aud:nth-child(5)::before { background: linear-gradient(135deg, var(--coral), var(--cream)); }
.aud:nth-child(6)::before { background: linear-gradient(135deg, var(--blue), var(--blue-soft)); }
.aud:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.aud:hover::before { transform: scale(1.4); opacity: .26; }
.aud__icon { width: 56px; height: 56px; border-radius: 14px; background: var(--ink-900); color: white; display: grid; place-items: center; }
.aud h3 { margin: 0; }
.aud p { color: var(--ink-500); margin: 0; }
.aud__more { margin-top: 8px; font-weight: 600; color: var(--blue-700); display: inline-flex; gap: 6px; align-items: center; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial {
  background: white; border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid var(--ink-100);
  display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: center;
}
@media (max-width: 800px) { .testimonial { grid-template-columns: 1fr; } }
.testimonial__avatar {
  aspect-ratio: 1; border-radius: var(--radius-md); overflow: hidden;
  background: var(--grad-cool);
  position: relative;
  display: grid; place-items: center; color: white;
  font-family: var(--font-display); font-size: 4.4rem; font-weight: 500;
  box-shadow: var(--shadow-md);
}
.testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial__video {
  aspect-ratio: 4/5;
  background: #000;
}
.testimonial__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonial__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: var(--ink-900);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
  transition: transform .2s ease, background .2s ease;
  z-index: 2;
}
.testimonial__play:hover { transform: scale(1.06); background: white; }
.testimonial__play svg { width: 30px; height: 30px; margin-left: 4px; }
.testimonial__video.is-playing .testimonial__play { display: none; }
.testimonial__quote {
  font-family: var(--font-display); font-size: 1.65rem; line-height: 1.32;
  color: var(--ink-900); margin: 0; font-style: italic; font-weight: 400;
}
.testimonial__quote::before { content: "\201C"; color: var(--coral); margin-right: 4px; font-size: 1.2em; }
.testimonial__quote::after { content: "\201D"; color: var(--coral); }
.testimonial__author { margin-top: 18px; display: flex; align-items: center; gap: 14px; }
.testimonial__author .name { font-weight: 600; }
.testimonial__author .role { color: var(--ink-500); font-size: .9rem; }

/* =============================================
   FAQ
   ============================================= */
.faq { display: grid; gap: 14px; max-width: 880px; margin: 0 auto; }
.faq__item {
  background: white; border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq__item[open] { border-color: rgba(45,152,213,.4); box-shadow: var(--shadow-md); }
.faq__item summary {
  list-style: none; cursor: pointer;
  padding: 22px 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--ink-900);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background-image:
    linear-gradient(var(--blue-700), var(--blue-700)),
    linear-gradient(var(--blue-700), var(--blue-700));
  background-size: 12px 2px, 2px 12px; background-position: center; background-repeat: no-repeat;
  background-color: var(--blue-50);
  transition: transform .3s ease;
}
.faq__item[open] summary::after {
  background-size: 12px 2px, 0 0;
  transform: rotate(180deg);
}
.faq__item .faq__body {
  padding: 0 28px 24px; color: var(--ink-500); line-height: 1.7;
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  border-radius: var(--radius-xl);
  background: var(--grad-hero);
  color: white;
  padding: clamp(48px, 6vw, 88px);
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 50% 0%, rgba(91,195,217,.45), transparent 70%),
    radial-gradient(40% 50% at 80% 100%, rgba(246,146,122,.25), transparent 70%);
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: white; max-width: 18ch; margin: 0 auto 18px; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 60ch; margin: 0 auto 32px; }
.cta-band .btn--leaf { box-shadow: 0 24px 60px rgba(91,195,217,.45); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--ink-900); color: rgba(255,255,255,.7);
  padding: 96px 0 56px;
  position: relative; overflow: hidden;
}
.footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(91,195,217,.5), transparent);
}
.footer__grid {
  display: grid; grid-template-columns: minmax(360px, 1.7fr) repeat(3, minmax(160px, 1fr));
  gap: clamp(32px, 4vw, 72px);
  align-items: start;
}
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand { color: white; }
.footer__brand p { color: rgba(255,255,255,.6); margin: 14px 0 24px; max-width: 48ch; line-height: 1.7; }
.footer__promo-row {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap; width: 100%; margin-top: 32px; padding: 28px 0 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__apps { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin: 0; flex: 0 0 auto; }
.footer__apps a { display: inline-flex; transition: transform .2s ease, opacity .2s ease; }
.footer__apps a:hover { transform: translateY(-1px); opacity: .9; }
.footer__apps img { height: 38px; width: auto; display: block; }
.footer__payments {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
  width: fit-content; margin: 0 0 0 auto;
  justify-content: flex-end; color: rgba(255,255,255,.58); font-size: .85rem; flex: 0 0 auto; white-space: nowrap;
}
.footer__payments .payment-badge { min-height: 30px; padding: 6px 11px; box-shadow: none; }
.footer__payments .payment-badge--logo img { height: 19px; }
@media (max-width: 700px) {
  .footer__promo-row { flex-direction: column; align-items: flex-start; }
  .footer__payments { margin-left: 0; }
}
.footer__col h4 { color: white; font-family: var(--font-sans); font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 20px; font-weight: 700; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.footer__col a:hover { color: var(--blue-soft); }
.footer__bottom {
  padding-top: 36px; display: flex; justify-content: space-between; align-items: center;
  font-size: .85rem; color: rgba(255,255,255,.45); flex-wrap: wrap; gap: 16px;
}
.footer__social { display: flex; gap: 8px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.06); display: grid; place-items: center;
  transition: background .25s ease, color .25s ease;
}
.footer__social a:hover { background: var(--blue); color: white; }

.newsletter {
  display: flex; gap: 8px; margin-top: 16px; max-width: 380px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  padding: 6px; border-radius: 999px;
}
.newsletter input {
  flex: 1; min-width: 0; background: transparent; border: 0; padding: 10px 14px;
  color: white; font: inherit; outline: none;
}
.newsletter input::placeholder { color: rgba(255,255,255,.4); }
.newsletter button {
  flex: 0 0 auto; white-space: nowrap;
  border-radius: 999px; padding: 10px 18px; font-size: .9rem; font-weight: 600;
  background: var(--blue); color: white;
}
.newsletter button:hover { background: var(--blue-700); }

/* =============================================
   PAGE HEADERS (subpages)
   ============================================= */
.page-header {
  position: relative; padding: 180px 0 80px; color: white;
  background: var(--ink-900); overflow: hidden;
}
.page-header::before {
  content: ""; position: absolute; inset: 0;
  background-position: center; background-size: cover; background-repeat: no-repeat;
  opacity: .25;
}
.page-header--science::before { background-image: url('../assets/images/top-microbiome-science.jpg'); }
.page-header--about::before { background-image: url('../assets/images/top-microbiome-about.jpg'); }
.page-header--contact::before { background-image: url('../assets/images/top-microbiome-contact.jpg'); }
.page-header--kit::before { background-image: url('../assets/images/top-microbiome-2.jpg'); }
.page-header::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 30% 0%, rgba(91,195,217,.3), transparent 70%),
    radial-gradient(50% 60% at 100% 100%, rgba(80,80,162,.4), transparent 70%),
    linear-gradient(180deg, rgba(14,21,48,.4) 0%, rgba(14,21,48,.85) 90%);
}
.page-header__inner { position: relative; z-index: 2; max-width: 760px; }
.page-header h1 { color: white; }
.page-header h1 em { color: var(--cream); }
.page-header p { color: rgba(255,255,255,.78); font-size: 1.15rem; }

/* =============================================
   KIT PRODUCT
   ============================================= */
.kit {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
@media (max-width: 980px) { .kit { grid-template-columns: 1fr; } }
.kit__media {
  border-radius: var(--radius-xl);
  display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.kit__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: inherit;
}
.kit__box {
  width: 60%; aspect-ratio: 3/4;
  background: linear-gradient(180deg, white, #f6f7fb);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(20,20,62,.18), inset 0 0 0 1px rgba(255,255,255,.6);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  padding: 28px;
}
.kit__box::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 32%;
  background: var(--grad-hero);
}
.kit__box .label-mark {
  width: 56px; height: 56px; border-radius: 14px;
  background: white;
  display: grid; place-items: center; padding: 6px;
  position: relative; z-index: 2;
  box-shadow: var(--shadow-md);
}
.kit__box .label-mark img { width: 100%; height: 100%; object-fit: contain; }
.kit__box .label-text {
  position: relative; z-index: 2; color: white;
  font-family: var(--font-display); font-size: 1.5rem; margin-top: 12px; font-weight: 500;
}
.kit__box .label-sub {
  position: relative; z-index: 2; color: rgba(255,255,255,.85);
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-top: 4px; font-weight: 600;
}
.kit__box .body {
  margin-top: auto; display: grid; gap: 6px;
  font-size: .9rem; color: var(--ink-500);
}
.kit__price {
  display: flex; align-items: baseline; gap: 12px; margin: 8px 0 24px;
  flex-wrap: wrap;
}
.kit__price .num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 500; color: var(--ink-900); line-height: 1;
}
.kit__price .currency { color: var(--ink-500); font-weight: 600; }
.kit__price .strike { text-decoration: line-through; color: var(--ink-300); font-size: 1.2rem; }
.kit__price .badge {
  padding: 5px 11px; border-radius: 999px;
  background: var(--cream); color: var(--ink-900);
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}

.steps { display: grid; gap: 18px; counter-reset: step; }
.step {
  display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start;
  padding: 24px; background: white; border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
}
.step__num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink-900); color: white;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 500;
  counter-increment: step;
}
.step__num::before { content: counter(step); }
.step h4 { margin: 0 0 4px; font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--ink-900); }
.step p { margin: 0; color: var(--ink-500); }

/* =============================================
   FORMS
   ============================================= */
.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 768px) { .form__row { grid-template-columns: 1fr !important; } }
.field { display: grid; gap: 6px; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink-700); }
.field input, .field textarea, .field select {
  padding: 14px 16px; border-radius: 12px; border: 1px solid var(--ink-100);
  background: white; font: inherit; color: var(--ink-800);
  transition: border-color .25s ease, box-shadow .25s ease;
  font-family: var(--font-sans);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(45,152,213,.18);
}
.field textarea { min-height: 140px; resize: vertical; }

/* =============================================
   ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

/* Decorative wave divider */
.wave {
  display: block; width: 100%; height: 80px;
}

/* Misc */
.text-center { text-align: center; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto clamp(28px, 3.5vw, 44px); }
.section__head .lead { margin-left: auto; margin-right: auto; }

/* =============================================
   BRAND SYMBOL ACCENTS (from brand book)
   ============================================= */
.symbol-row {
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
  margin-top: 20px; opacity: .8;
}
.symbol-row span {
  font-family: var(--font-display); font-style: italic; color: var(--ink-700);
  font-size: 1.4rem;
}
.symbol-row svg { color: var(--coral); }


/* =============================================
   AWARDS GRID (with real logos)
   ============================================= */
.awards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 36px) clamp(16px, 2.5vw, 32px);
  align-items: start;
  padding: 24px 0 8px;
}
@media (max-width: 900px) { .awards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .awards { grid-template-columns: 1fr 1fr; } }

.award {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.award img {
  width: auto; max-width: 120px; max-height: 60px;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: .92;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}
.award:hover img { filter: grayscale(0); opacity: 1; transform: translateY(-2px); }
.award strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink-900);
  line-height: 1.15;
}
.award small {
  display: block;
  font-size: .82rem;
  color: var(--ink-300);
  margin-top: 2px;
  letter-spacing: .04em;
}

/* =============================================
   PRESS / MEMBERSHIPS BLOCKS
   ============================================= */
.press-grid {
  display: grid;
  gap: clamp(36px, 4.5vw, 56px);
  max-width: 1100px;
  margin: 0 auto;
}
.press-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(24px, 3vw, 36px);
  position: relative;
}
/* Soft divider between blocks */
.press-block + .press-block::before {
  content: "";
  position: absolute;
  top: calc(clamp(48px, 6vw, 80px) * -.5);
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ink-100), transparent);
}
.press-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.press-title::before,
.press-title::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--ink-100);
}
.press-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  justify-content: center;
}
.press-logo {
  height: 72px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .7;
  transition: filter .35s ease, opacity .35s ease, transform .35s ease;
}
.press-logo:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}
@media (max-width: 720px) {
  .press-row { gap: 28px; }
  .press-logo { height: 50px; }
  .press-title { font-size: .78rem; letter-spacing: .18em; }
  .press-title::before, .press-title::after { width: 16px; }
}


/* =============================================
   EDITORIAL PAGE HEADER (deep navy + cream emphasis)
   ============================================= */
.page-header--hero {
  min-height: 70vh;
  padding: 140px 0 80px;
  display: block;
  background: #050b1f;
  text-align: left;
}
.page-header--hero > .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(70vh - 220px);
  width: 100%;
}
.page-header--hero::before {
  background-position: right center;
  background-size: cover;
  opacity: .55;
  filter: none;
  z-index: 1;
}
/* If the user has set a background-image on .page-header--kit, this lets it shine through */
.page-header--hero::after {
  background:
    linear-gradient(90deg,
      rgba(5,11,31,.95) 0%,
      rgba(5,11,31,.85) 35%,
      rgba(5,11,31,.45) 65%,
      rgba(5,11,31,.05) 100%);
  z-index: 1;
}

.page-header__hero {
  position: relative;
  z-index: 2;
  max-width: 720px;
  display: grid;
  gap: 22px;
  justify-items: start;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
.page-header__eyebrow {
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: #fee8c0;        /* champagne/cream gold */
  margin: 0;
}
.page-header__h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -.015em;
  color: #ffffff;
  margin: 0;
}
.page-header__h1 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: #fee8c0;
  -webkit-text-fill-color: #fee8c0;
  font-size: 1em;
  letter-spacing: -.01em;
  vertical-align: baseline;
  line-height: 1;
}
.page-header__rule {
  display: inline-block;
  width: 80px;
  height: 2px;
  background: #fee8c0;
  border-radius: 2px;
  margin: 6px 0;
}
.page-header__lead {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  max-width: 52ch;
  margin: 0;
}
.page-header__pills {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}
.page-header__pills li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: .95rem;
  color: #fee8c0;
}
.page-header__pills .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fee8c0;
  box-shadow: 0 0 0 4px rgba(254,232,192,.18);
}
@media (max-width: 720px) {
  .page-header--hero { min-height: auto; padding: 130px 0 80px; }
  .page-header__pills { flex-direction: column; align-items: flex-start; gap: 10px; }
}


/* Homepage editorial hero — same treatment as page-header--hero */
.hero.hero--editorial {
  min-height: 78vh;
  padding: 140px 0 80px;
  background: #050b1f;
  display: block;
  position: relative;
  overflow: hidden;
  text-align: left;
}
.hero.hero--editorial > .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(78vh - 220px);
  width: 100%;
}
/* Reset any inherited filter/blur from the old .hero::before rule */
.hero.hero--editorial::before {
  content: "";
  position: absolute; inset: 0;
  background: url('../assets/images/top-image-home.jpg') right center/cover no-repeat;
  opacity: .55;
  filter: none;
  mix-blend-mode: normal;
  z-index: 1;
}
.hero.hero--editorial::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      rgba(5,11,31,.95) 0%,
      rgba(5,11,31,.85) 35%,
      rgba(5,11,31,.45) 65%,
      rgba(5,11,31,.05) 100%);
  z-index: 1;
}
.hero.hero--editorial .container { position: relative; z-index: 2; }
.hero.hero--editorial .page-header__hero {
  margin: 0;
  padding: 0;
  text-align: left;
  max-width: none;
  width: 100%;
}
.hero.hero--editorial .page-header__hero > * {
  text-align: left !important;
  justify-self: start;
  margin-left: 0;
  margin-right: auto;
}
.hero.hero--editorial .page-header__content {
  max-width: 720px;
  margin: 0;
}
.hero.hero--editorial .page-header__h1,
.hero.hero--editorial .page-header__lead,
.hero.hero--editorial .page-header__eyebrow,
.hero.hero--editorial .page-header__pills {
  text-align: left !important;
  margin-left: 0;
  margin-right: auto;
}


/* =============================================
   AI MICROBIOME PLATFORM — three columns
   ============================================= */
.platform-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 980px) { .platform-cards { grid-template-columns: 1fr; } }

.pcard {
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  box-shadow: var(--shadow-sm);
}
.pcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(45,152,213,.4); }
.pcard__head h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink-900);
  margin-bottom: 12px;
}
.pcard__head p {
  color: var(--ink-500);
  font-size: .95rem;
  line-height: 1.55;
  margin: 0;
}
.pcard__sub {
  font-style: italic;
  font-weight: 300;
  font-size: .9rem;
  color: var(--ink-500);
  margin-left: 4px;
}
.pcard__body { flex: 1; }
.pcard__media {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 8px 0;
}
.pcard__media img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Wellness score visual */
.wellness {
  background: linear-gradient(180deg, #e8f6fd 0%, #ffffff 60%);
  border-radius: 18px;
  padding: 20px;
  position: relative;
}
.wellness__head {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--blue);
  margin-bottom: 12px;
  font-size: .9rem;
}
.wellness__copy {
  font-size: .72rem;
  color: var(--ink-500);
  line-height: 1.5;
  margin: 0 0 14px;
}
.wellness__score {
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 500;
  color: var(--ink-900);
  text-align: center;
  line-height: 1;
  margin: 12px 0;
}
.wellness__sub {
  font-size: .72rem;
  color: var(--ink-500);
  line-height: 1.5;
  margin: 0 0 16px;
  text-align: center;
}
.wellness__bar { position: relative; }
.wellness__gradient {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff6b6b 0%, #ffb86b 35%, #ffe066 55%, #b9d96b 75%, #6dd6a3 100%);
}
.wellness__marker {
  position: absolute;
  top: -10px;
  width: 24px; height: 32px;
  transform: translateX(-50%);
  background: var(--blue);
  clip-path: polygon(50% 0%, 100% 35%, 100% 100%, 0% 100%, 0% 35%);
}
.wellness__legend {
  display: flex; justify-content: space-between;
  margin-top: 10px;
  font-size: .65rem;
  color: var(--ink-500);
  line-height: 1.3;
}
.wellness__legend strong { color: var(--ink-900); font-weight: 700; }

/* Food scoring list */
.food-list {
  background: linear-gradient(180deg, #fff7f9 0%, #ffffff 60%);
  border-radius: 18px;
  padding: 20px;
}
.food-list__title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .85rem;
  margin: 14px 0 8px;
  letter-spacing: .01em;
}
.food-list__title:first-child { margin-top: 0; }
.food-list__title--good { color: #1aa37a; }
.food-list__title--ok   { color: #d99b3a; }
.food-list__title--bad  { color: #d24c5b; }

.food-row {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px;
  gap: 6px;
  align-items: center;
  padding: 6px 8px;
  background: white;
  border-radius: 10px;
  margin-bottom: 6px;
  font-size: .78rem;
}
.food-row__name { color: var(--ink-700); }
.food-row__score {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: .85rem;
  color: white;
}
.food-row__score--high { background: #1aa37a; }
.food-row__score--mid  { background: #d99b3a; }
.food-row__score--low  { background: #d24c5b; }

/* Supplements list */
.supplements {
  background: linear-gradient(180deg, #f0fbf9 0%, #ffffff 60%);
  border-radius: 18px;
  padding: 20px;
}
.supplement {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 12px;
  align-items: center;
  background: white;
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 8px;
}
.supplement__bottle {
  width: 28px; height: 40px;
  border-radius: 4px 4px 6px 6px;
  background: linear-gradient(180deg, #d3e4ee 0%, #fafdff 100%);
  border: 1px solid var(--ink-100);
  position: relative;
}
.supplement__bottle::before {
  content: "";
  position: absolute;
  top: 6px; left: 4px; right: 4px;
  height: 14px;
  background: white;
  border-radius: 2px;
  border-top: 2px solid #5bc3d9;
}
.supplement__info strong {
  display: block;
  font-size: .82rem;
  color: var(--ink-900);
  font-weight: 700;
}
.supplement__info small {
  font-size: .68rem;
  color: var(--ink-500);
}
.supplement__score {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink-900);
}

/* Card publication link buttons */
.pcard__links { display: grid; gap: 8px; margin-top: auto; }
.pcard__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  text-align: left;
  background: var(--blue);
  color: white;
  padding: 13px 20px;
  border-radius: 18px;
  font-weight: 600;
  font-size: .92rem;
  transition: background .25s ease, transform .2s ease, box-shadow .25s ease;
  margin-top: auto;
}
.pcard__link-txt { display: flex; flex-direction: column; line-height: 1.3; }
.pcard__link-txt small {
  font-size: .95rem; font-weight: 700; letter-spacing: 0; text-transform: none; opacity: 1;
}
.pcard__link-pub { font-size: .74rem; font-weight: 500; opacity: .85; margin-top: 2px; }
.pcard__link:hover {
  background: var(--blue-700);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(45,152,213,.32);
}
.pcard__link .arrow { transition: transform .25s ease; }
.pcard__link:hover .arrow { transform: translateX(3px); }


/* Platform showcase media (real dashboard image) */
.platform__media {
  position: relative;
  display: block;
  width: 100%;
}
.platform__media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

/* Floating WhatsApp chat widget */
.whatsapp-widget {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 110;
  display: grid;
  justify-items: end;
  gap: 12px;
  pointer-events: none;
}

.whatsapp-widget__card,
.whatsapp-widget__toggle {
  pointer-events: auto;
}

.whatsapp-widget__card {
  position: relative;
  width: min(340px, calc(100vw - 32px));
  padding: 22px 22px 20px;
  background:
    radial-gradient(80% 90% at 100% 0%, rgba(91,195,217,.22), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.98), #f1fbfd);
  border: 1px solid rgba(45,152,213,.18);
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  transform: translateY(10px) scale(.96);
  transform-origin: bottom right;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.whatsapp-widget__card::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: var(--grad-cool);
}

.whatsapp-widget.is-open .whatsapp-widget__card {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.whatsapp-widget__eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--blue-700);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.whatsapp-widget__card strong {
  display: block;
  color: var(--ink-900);
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.whatsapp-widget__card p {
  margin: 0 0 14px;
  color: var(--ink-500);
  font-size: .92rem;
  line-height: 1.45;
}

.whatsapp-widget__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink-900);
  color: white;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(14,21,48,.2);
}

.whatsapp-widget__link:hover {
  color: white;
  background: var(--blue-700);
}

.whatsapp-widget__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--ink-500);
  font-size: 20px;
  line-height: 1;
}

.whatsapp-widget__close:hover {
  background: var(--blue-50);
  color: var(--ink-900);
}

.whatsapp-widget__toggle {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 62px;
  padding: 9px 18px 9px 10px;
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(45,152,213,.98), rgba(91,195,217,.98)),
    #25d366;
  color: white;
  box-shadow: 0 18px 42px rgba(45,152,213,.34), 0 6px 16px rgba(14,21,48,.16);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.whatsapp-widget__toggle:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(135deg, var(--blue-700), var(--teal)),
    #25d366;
  box-shadow: 0 22px 48px rgba(45,152,213,.42), 0 8px 20px rgba(14,21,48,.18);
}

.whatsapp-widget__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: white;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28);
}

.whatsapp-widget__label {
  display: grid;
  gap: 1px;
  text-align: left;
  line-height: 1.1;
}

.whatsapp-widget__label strong {
  font-size: .96rem;
  font-weight: 800;
  letter-spacing: -.01em;
}

.whatsapp-widget__label small {
  color: rgba(255,255,255,.82);
  font-size: .72rem;
  font-weight: 600;
}

@media (max-width: 560px) {
  .whatsapp-widget {
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-widget__toggle {
    min-height: 58px;
    padding-right: 15px;
  }

  .whatsapp-widget__icon {
    width: 40px;
    height: 40px;
  }

  .whatsapp-widget__label small {
    display: none;
  }
}


/* =============================================
   ENBIOSIS 2.0 — editorial coming-soon band
   ============================================= */
.reveal-band {
  background: var(--ink-900);
  padding: clamp(48px, 6vw, 72px) 0;
  position: relative;
  overflow: hidden;
}
.reveal-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 80% at 100% 50%, rgba(45,152,213,.18), transparent 70%),
    radial-gradient(40% 80% at 0% 50%, rgba(80,80,162,.14), transparent 70%);
  pointer-events: none;
}
.reveal-band__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}
.reveal-band__pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(254,232,192,.12);
  border: 1px solid rgba(254,232,192,.32);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.reveal-band__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1.25;
  letter-spacing: -.01em;
  color: white;
  margin: 0;
  max-width: 28ch;
}
.reveal-band__title em {
  font-family: var(--font-sans) !important;
  font-style: normal !important;
  font-weight: 500 !important;
  color: var(--cream) !important;
  font-size: .78em !important;
  vertical-align: .04em !important;
}
.reveal-band__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  color: var(--cream);
  margin-top: 4px;
  border-bottom: 1px solid rgba(254,232,192,.4);
  padding-bottom: 2px;
  transition: color .25s ease, border-color .25s ease;
}
.reveal-band__link:hover {
  color: white;
  border-color: white;
}
.reveal-band__link .arrow { transition: transform .25s ease; }
.reveal-band__link:hover .arrow { transform: translateX(4px); }


/* Practitioners nav dropdown */
.nav__has-sub { position: relative; }
.nav__has-sub > a::after {
  content: ""; display: inline-block; width: 6px; height: 6px;
  margin-left: 6px; vertical-align: middle;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px); opacity: .7;
}
.nav__sub {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  list-style: none; margin: 0; padding: 6px;
  background: #fff; border: 1px solid var(--ink-100); border-radius: 12px;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 210;
}
.nav__has-sub:hover .nav__sub,
.nav__has-sub:focus-within .nav__sub {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__sub li { margin: 0; }
.nav__sub a {
  display: block; padding: 10px 12px; border-radius: 8px;
  color: var(--ink-700); font-size: .9rem; font-weight: 500; white-space: nowrap;
}
.nav__sub a:hover { background: var(--blue-50); color: var(--blue-700); }
