/* ═══════════════════════════════════════════════════════════════
   NutriFix Website — Redesign 2026
   Color palette:
     --bg:       #0E0F11
     --forest:   #506C64
     --teal:     #6BC3B2
     --blue:     #75B8C8
     --light:    #F4F6F8
   ═══════════════════════════════════════════════════════════════ */

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0E0F11;
  --bg2:       #13151A;
  --forest:    #506C64;
  --teal:      #6BC3B2;
  --blue:      #75B8C8;
  --light:     #F4F6F8;
  --text:      #E8F0EF;
  --muted:     #8BA8A2;
  --border:    rgba(107,195,178,0.12);
  --glass:     rgba(20,24,28,0.72);
  --glass-border: rgba(107,195,178,0.15);
  --shadow:    0 32px 80px rgba(0,0,0,0.55);
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --font:         'Satoshi', system-ui, -apple-system, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ─── Noise overlay ─────────────────────────────────────────── */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.022;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── Container ─────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── Section spacing ───────────────────────────────────────── */
.section { padding: 7rem 0; }

/* ─── Shared typography ─────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  background: rgba(107,195,178,0.1);
  border: 1px solid rgba(107,195,178,0.2);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.section-tag.light {
  background: rgba(244,246,248,0.08);
  border-color: rgba(244,246,248,0.18);
  color: var(--light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  text-align: center;
}
.section-title.left { text-align: left; }

.section-sub {
  max-width: 56ch;
  margin: 0 auto 3rem;
  color: var(--muted);
  font-size: 1.08rem;
  text-align: center;
}

.gradient-text {
  background: linear-gradient(100deg, var(--teal) 0%, var(--blue) 60%, #a8d8e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn-primary-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.4rem;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: var(--bg);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 999px;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-primary-pill:hover { opacity: 0.88; transform: translateY(-1px); color: var(--bg); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 999px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--text); }

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: var(--bg);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 999px;
  transition: opacity 0.2s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 8px 32px rgba(107,195,178,0.35);
  white-space: nowrap;
}
.btn-hero-primary:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(107,195,178,0.45);
  color: var(--bg);
}
.btn-hero-primary.btn-large {
  padding: 1.1rem 2.6rem;
  font-size: 1.08rem;
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.8rem;
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(12px);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-hero-ghost:hover {
  border-color: rgba(107,195,178,0.4);
  background: rgba(107,195,178,0.08);
  transform: translateY(-1px);
  color: var(--text);
}

.play-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--bg);
}

/* ─── NAVBAR ────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background 0.35s, backdrop-filter 0.35s, border-color 0.35s, padding 0.35s;
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background: rgba(14,15,17,0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  border-color: var(--border);
  padding: 0.75rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 2rem;
  width: auto;
  object-fit: contain;
}
.nav-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0 auto;
  list-style: none;
}
.nav-links a {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(107,195,178,0.07);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-drawer {
  display: none;
  flex-direction: column;
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid var(--border);
  background: rgba(14,15,17,0.96);
}
.nav-drawer ul { list-style: none; }
.nav-drawer li { padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.nav-drawer a { font-size: 1rem; font-weight: 500; color: var(--muted); }
.nav-drawer a:hover { color: var(--text); }
.nav-drawer .mobile-cta {
  margin-top: 0.75rem;
  display: inline-flex;
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Full-width background orbs */
.hero::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 70% at 10% 20%, rgba(80,108,100,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 45% 60% at 90% 10%, rgba(117,184,200,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 55% 65% at 50% 100%, rgba(107,195,178,0.12) 0%, transparent 55%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-1 {
  width: 550px; height: 550px;
  top: -15%; left: -12%;
  background: radial-gradient(circle, rgba(80,108,100,0.35), transparent 65%);
  animation-delay: 0s;
}
.orb-2 {
  width: 420px; height: 420px;
  top: 5%; right: -10%;
  background: radial-gradient(circle, rgba(117,184,200,0.22), transparent 65%);
  animation-delay: -4s;
}
.orb-3 {
  width: 320px; height: 320px;
  bottom: 10%; left: 35%;
  background: radial-gradient(circle, rgba(107,195,178,0.18), transparent 65%);
  animation-delay: -8s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -30px) scale(1.04); }
  66%       { transform: translate(-15px, 20px) scale(0.97); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(107,195,178,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,195,178,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}

.hero-content {
  flex: 1 1 540px;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(107,195,178,0.08);
  border: 1px solid rgba(107,195,178,0.2);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.hero-sub {
  max-width: 52ch;
  font-size: 1.12rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.4rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: var(--muted);
}
.pill i { color: var(--teal); font-size: 0.85rem; }

/* Hero visual */
.hero-visual {
  flex: 1 1 360px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 300px;
  height: 340px;
}

.hcard {
  position: absolute;
  width: 280px;
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}

.hcard-back {
  bottom: 0; right: 0;
  transform: rotate(4deg);
  opacity: 0.7;
  animation: cardFloat2 8s ease-in-out infinite;
}
.hcard-front {
  top: 0; left: 0;
  transform: rotate(-2deg);
  animation: cardFloat1 8s ease-in-out infinite;
}

@keyframes cardFloat1 {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50%       { transform: rotate(-2deg) translateY(-10px); }
}
@keyframes cardFloat2 {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50%       { transform: rotate(4deg) translateY(6px); }
}

.hcard-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.9rem;
}

.hcard-bar-group { display: flex; flex-direction: column; gap: 0.6rem; }
.hcard-bar { display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.8rem; color: var(--muted); }
.bar-track {
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  animation: barGrow 1.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transform-origin: left;
}
@keyframes barGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.hcard-meal-icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hcard-meal-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.hcard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}
.htag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}
.htag-green  { background: rgba(107,195,178,0.15); color: var(--teal); }
.htag-blue   { background: rgba(117,184,200,0.15); color: var(--blue); }
.htag-teal   { background: rgba(244,246,248,0.08); color: var(--light); }

.hcard-score {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.score-ring {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.score-ring svg { width: 100%; height: 100%; }
.score-val {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--teal);
}
.score-label {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
  animation: fadeInUp 1.2s ease 1.5s both;
}
.scroll-indicator:hover { color: var(--teal); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid currentColor;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-wheel {
  width: 3px;
  height: 7px;
  border-radius: 2px;
  background: currentColor;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(8px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ─── MARQUEE ───────────────────────────────────────────────── */
.marquee-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(107,195,178,0.03);
  overflow: hidden;
  padding: 0.9rem 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.marquee-track .sep {
  color: var(--teal);
  font-size: 0.6rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── FEATURES ──────────────────────────────────────────────── */
.features-section {
  background: linear-gradient(180deg, transparent 0%, rgba(80,108,100,0.06) 50%, transparent 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.features-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.feat-card {
  padding: 1.8rem;
  border-radius: var(--radius-xl);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
              border-color 0.3s,
              box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--blue), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(107,195,178,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(107,195,178,0.1);
}
.feat-card:hover::before { opacity: 1; }

.feat-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(107,195,178,0.1);
  border: 1px solid rgba(107,195,178,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--icon-color, var(--teal));
  margin-bottom: 1.1rem;
  transition: background 0.3s, transform 0.3s;
}
.feat-card:hover .feat-icon-wrap {
  background: rgba(107,195,178,0.18);
  transform: scale(1.08);
}
.feat-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--light);
}
.feat-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── ALGORITHM ─────────────────────────────────────────────── */
.algorithm-section {
  background: linear-gradient(135deg, rgba(80,108,100,0.08), transparent 60%);
}

.algo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

/* Make left column a flex column so .algo-cards can fill remaining height */
.algo-text {
  display: flex;
  flex-direction: column;
}
/* Keep section-tag pill-shaped (don't stretch it to full width) */
.algo-text > .section-tag {
  align-self: flex-start;
}

.algo-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  flex: 1; /* fill remaining height so last card can pin to bottom */
}
/* Pin card02 to the bottom of the column so its bottom = CTA card bottom */
.algo-cards .algo-card:last-child {
  margin-top: auto;
}

.algo-card {
  display: flex;
  gap: 1.2rem;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: border-color 0.3s, transform 0.3s;
}
.algo-card:hover {
  border-color: rgba(107,195,178,0.3);
  transform: translateX(4px);
}
.algo-card--cta {
  background: linear-gradient(135deg, rgba(107,195,178,0.1), rgba(117,184,200,0.06));
  border-color: rgba(107,195,178,0.2);
}

.algo-card-num {
  flex-shrink: 0;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  padding-top: 0.15rem;
}

.algo-card-icon {
  flex-shrink: 0;
  font-size: 1.6rem;
  color: var(--teal);
  align-self: flex-start;
}

.algo-card-body h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: var(--light);
}
.algo-card-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

.algo-cards-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.algo-cards-row .algo-card { flex: 1; }

.algo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.6rem;
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 700;
  transition: gap 0.2s;
}
.algo-link:hover { gap: 0.6rem; color: var(--teal); }

.algo-right-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  padding-top: 17rem;
}

/* Constraint diagram */
.algo-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.constraint-diagram {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.constraint-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.svg-ring { animation: ringPulseSvg 4s ease-in-out infinite; }
.svg-ring-1 { animation-delay: 0s; }
.svg-ring-2 { animation-delay: -1.3s; }
.svg-ring-3 { animation-delay: -2.6s; }
.svg-ring-4 { animation-delay: -3.9s; }
.svg-ring-5 { animation-delay: -5.2s; }

@keyframes ringPulseSvg {
  0%, 100% { filter: drop-shadow(0 0 0 transparent); }
  50%       { filter: drop-shadow(0 0 6px rgba(107,195,178,0.18)); }
}

.constraint-core {
  position: absolute;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 0 40px rgba(107,195,178,0.4);
  animation: corePulse 3s ease-in-out infinite;
}
.constraint-core i { font-size: 1.2rem; color: var(--bg); }
.constraint-core span { font-size: 0.55rem; font-weight: 700; color: var(--bg); text-transform: uppercase; letter-spacing: 0.1em; }

@keyframes corePulse {
  0%, 100% { box-shadow: 0 0 30px rgba(107,195,178,0.35); transform: scale(1); }
  50%       { box-shadow: 0 0 55px rgba(107,195,178,0.55); transform: scale(1.05); }
}

/* ─── VIDEO DEMOS ───────────────────────────────────────────── */
.demos-section {
  background: linear-gradient(180deg, transparent 0%, rgba(117,184,200,0.04) 50%, transparent 100%);
}

.demos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  justify-items: center;
}

.demo-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  width: 100%;
  max-width: 360px;
}
.demo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

.demo-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 10;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(14,15,17,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.06em;
}

.demo-video-wrap {
  position: relative;
  aspect-ratio: 886 / 1920;
  background: #000;
  cursor: pointer;
}
.demo-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.demo-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14,15,17,0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, opacity 0.25s;
}
.demo-play-btn i {
  font-size: 3.5rem;
  color: white;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
  transition: transform 0.25s;
}
.demo-video-wrap:hover .demo-play-btn { background: rgba(14,15,17,0.15); }
.demo-video-wrap:hover .demo-play-btn i { transform: scale(1.12); }
.demo-play-btn.playing { opacity: 0; pointer-events: none; }

/* ─── JOURNEY ───────────────────────────────────────────────── */
.journey-section {
  background: linear-gradient(135deg, transparent 0%, rgba(80,108,100,0.08) 50%, transparent 100%);
}

.journey-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 3rem 0 3rem;
  padding-left: 3rem;
}

/* Vertical line */
.journey-timeline::before {
  content: '';
  position: absolute;
  left: calc(1.4rem - 1px);
  top: 1.4rem;
  bottom: 1.4rem;
  width: 2px;
  background: linear-gradient(180deg,
    var(--teal) 0%,
    var(--blue) 50%,
    rgba(107,195,178,0.1) 100%);
}

.journey-item {
  display: flex;
  gap: 1.6rem;
  padding: 1.6rem 1.8rem;
  margin-left: 0;
  border-radius: var(--radius-lg);
  transition: background 0.25s;
  position: relative;
}
.journey-item:hover {
  background: rgba(107,195,178,0.04);
}

.journey-step-badge {
  position: absolute;
  left: -3rem;
  top: 1.6rem;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: var(--bg2);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--teal);
  flex-shrink: 0;
  transition: background 0.25s, box-shadow 0.25s;
}
.journey-item:hover .journey-step-badge {
  background: rgba(107,195,178,0.15);
  box-shadow: 0 0 20px rgba(107,195,178,0.3);
}

.thrive-badge {
  background: linear-gradient(135deg, var(--teal), var(--blue)) !important;
  border-color: transparent !important;
  color: var(--bg) !important;
  font-size: 0.85rem;
  box-shadow: 0 0 30px rgba(107,195,178,0.4);
}

.journey-item--thrive { margin-top: 0.5rem; }
.journey-item--thrive .journey-content h3 {
  font-family: var(--font-display);
  background: linear-gradient(100deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.7rem;
  font-weight: 700;
}

.journey-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--light);
}
.journey-content p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.journey-cta {
  text-align: center;
  padding-top: 1rem;
}

/* ─── FINAL CTA ─────────────────────────────────────────────── */
.cta-section { padding-bottom: 8rem; }

.cta-box {
  position: relative;
  overflow: hidden;
  padding: 5rem 3rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg,
    rgba(80,108,100,0.22) 0%,
    rgba(107,195,178,0.1) 40%,
    rgba(117,184,200,0.14) 100%);
  border: 1px solid rgba(107,195,178,0.2);
  text-align: center;
  backdrop-filter: blur(12px);
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.cta-orb-1 {
  width: 350px; height: 350px;
  top: -100px; left: -80px;
  background: radial-gradient(circle, rgba(107,195,178,0.28), transparent 65%);
  animation: orbFloat 10s ease-in-out infinite;
}
.cta-orb-2 {
  width: 280px; height: 280px;
  bottom: -80px; right: -60px;
  background: radial-gradient(circle, rgba(117,184,200,0.22), transparent 65%);
  animation: orbFloat 12s ease-in-out infinite reverse;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.cta-title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-sub {
  max-width: 52ch;
  margin: 0 auto 2.4rem;
  color: var(--muted);
  font-size: 1.05rem;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  height: 2.2rem;
  width: auto;
  margin-bottom: 0.5rem;
  object-fit: contain;
}
.footer-brand-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--light);
  margin-bottom: 0.3rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 110px;
}
.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 0.25rem;
}
.footer-col a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ─── AOS overrides ─────────────────────────────────────────── */
[data-aos] { will-change: transform, opacity; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .algo-layout { grid-template-columns: 1fr; }
  .algo-visual { display: none; }
  .algo-right-col { flex-direction: row; flex-wrap: wrap; padding-top: 0; }
  .algo-right-col .algo-card { flex: 1; min-width: 240px; }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    min-height: auto;
    padding: 7rem 1.5rem 3rem;
    gap: 3rem;
  }
  .hero-visual { display: none; }
  .hero-headline { font-size: clamp(2.6rem, 10vw, 4rem); }
  .section { padding: 4.5rem 0; }
  .section-title { font-size: clamp(2rem, 7vw, 3rem); }

  .features-grid { grid-template-columns: 1fr; }
  .demos-grid { grid-template-columns: 1fr; }

  .journey-timeline { padding-left: 2.5rem; }
  .journey-step-badge { left: -2.5rem; width: 2.4rem; height: 2.4rem; font-size: 0.72rem; }

  .cta-box { padding: 3rem 1.5rem; }
  .cta-title { font-size: clamp(1.9rem, 7vw, 2.8rem); }

  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  .footer-top { flex-direction: column; gap: 2rem; }
  .footer-nav { gap: 2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT US PAGE
   ═══════════════════════════════════════════════════════════════ */

/* ─── Nav active state ──────────────────────────────────────── */
.nav-link-current {
  color: var(--teal) !important;
  background: rgba(107,195,178,0.08) !important;
}

/* ─── About Hero ────────────────────────────────────────────── */
.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 9rem 0 6rem;
  overflow: hidden;
  text-align: center;
}

.about-hero::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 70% at 10% 20%, rgba(80,108,100,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 45% 60% at 90% 10%, rgba(117,184,200,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 55% 65% at 50% 100%, rgba(107,195,178,0.12) 0%, transparent 55%);
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}

.about-hero-sub {
  max-width: 54ch;
  font-size: 1.12rem;
  color: var(--muted);
  line-height: 1.75;
  text-align: center;
}

.about-hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

/* ─── Our Vision ────────────────────────────────────────────── */
.about-vision-section {
  background: linear-gradient(180deg, transparent, rgba(107,195,178,0.04) 50%, transparent);
}

.about-vision-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.vision-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: var(--text);
  border: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.vision-quote::before {
  content: '\201C';
  font-size: 6rem;
  line-height: 0;
  position: absolute;
  top: 1.4rem;
  left: -1.5rem;
  color: var(--teal);
  opacity: 0.25;
  font-family: var(--font-display);
  pointer-events: none;
}

.vision-accent {
  display: block;
  margin-top: 0.9rem;
  background: linear-gradient(100deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
  font-weight: 700;
}

/* ─── Science ───────────────────────────────────────────────── */
.about-science-section {
  background: linear-gradient(135deg, rgba(80,108,100,0.06) 0%, transparent 60%);
}

.science-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-body-text {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 50ch;
}

.science-studies-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  overflow: hidden;
  position: relative;
}

.science-studies-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--blue), transparent);
}

.studies-card-inner {
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.studies-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  background: rgba(107,195,178,0.12);
  border: 1px solid rgba(107,195,178,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--teal);
}

.studies-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--light);
}

.studies-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}

.studies-cta {
  align-self: flex-start;
  font-size: 0.9rem;
  padding: 0.75rem 1.6rem;
}

/* ─── How It Works ──────────────────────────────────────────── */
.works-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.works-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding-top: 1rem;
}

.works-pillar {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  transition: border-color 0.25s, background 0.25s;
}

.works-pillar:hover {
  border-color: rgba(107,195,178,0.22);
  background: rgba(107,195,178,0.03);
}

.pillar-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  background: rgba(107,195,178,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--icon-color, var(--teal));
  flex-shrink: 0;
}

.pillar-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.pillar-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--light);
}

.pillar-text p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── Our Story ─────────────────────────────────────────────── */
.about-story-section {
  background: linear-gradient(180deg, transparent, rgba(117,184,200,0.04) 50%, transparent);
}

.story-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.story-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  border-radius: 999px;
  opacity: 0.5;
}

.story-text {
  font-size: 1.12rem;
  color: var(--muted);
  line-height: 1.85;
}

/* ─── Our Commitment ────────────────────────────────────────── */
.about-commitment-section {
  background: linear-gradient(135deg, transparent, rgba(80,108,100,0.07) 60%, transparent);
}

.commitment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.commitment-card {
  position: relative;
  padding: 2.6rem;
  border-radius: var(--radius-xl);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-left: 3px solid var(--teal);
}

.commitment-quote-mark {
  position: absolute;
  top: 1rem;
  right: 1.6rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--teal);
  opacity: 0.15;
  pointer-events: none;
  user-select: none;
}

.commitment-body {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.85;
  position: relative;
  z-index: 1;
}

/* ─── Our Future ────────────────────────────────────────────── */
.about-future-section { }

.future-box {
  position: relative;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(80,108,100,0.18) 0%, rgba(117,184,200,0.1) 100%);
  border: 1px solid rgba(107,195,178,0.18);
  padding: 5rem 4rem;
  overflow: hidden;
  text-align: center;
}

.future-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 620px;
  margin: 0 auto;
}

.future-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 0;
}

.future-body {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.8;
  text-align: center;
}

/* ─── About Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .science-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .works-inner { grid-template-columns: 1fr; gap: 3rem; }
  .commitment-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .about-hero { min-height: 60vh; padding: 8rem 0 4rem; }
  .vision-quote { font-size: 1.35rem; }
  .vision-quote::before { display: none; }
  .future-box { padding: 3rem 1.5rem; }
  .science-grid,
  .works-inner,
  .commitment-grid { gap: 2rem; }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════════════════════════════ */

/* ─── Personalised Nutrition ────────────────────────────────── */
.svc-nutrition-section {
  background: linear-gradient(180deg, transparent, rgba(80,108,100,0.05) 50%, transparent);
}

.svc-nutrition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.svc-nutrition-text {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* ── Genome Profile Card ────────────────────────────────────── */
.svc-genome-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.genome-card {
  width: 100%;
  max-width: 360px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
}

.genome-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--blue), transparent);
}

.genome-card-top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

.genome-card-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: var(--radius-md);
  background: rgba(107,195,178,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--teal);
  flex-shrink: 0;
}

.genome-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--light);
}

.genome-card-id {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.genome-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  margin-left: auto;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.genome-bars {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.genome-bar-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.6rem;
}

.genome-bar-label {
  font-size: 0.75rem;
  color: var(--muted);
  white-space: nowrap;
}

.genome-bar-track {
  width: 80px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}

.genome-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  animation: barGrow 1.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transform-origin: left;
}

.genome-bar-tag {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  white-space: nowrap;
}

.gtag-high { background: rgba(107,195,178,0.15); color: var(--teal); }
.gtag-med  { background: rgba(117,184,200,0.15); color: var(--blue); }
.gtag-low  { background: rgba(255,255,255,0.06); color: var(--muted); }

.genome-card-footer {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

.genome-card-footer span {
  font-size: 0.72rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.genome-card-footer i { color: var(--teal); }

.genome-badge {
  position: absolute;
  bottom: -0.8rem;
  right: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(107,195,178,0.12);
  border: 1px solid rgba(107,195,178,0.25);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 600;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* ─── What do you need / Triptych ───────────────────────────── */
.svc-need-section {
  background: linear-gradient(180deg, transparent, rgba(117,184,200,0.05) 40%, rgba(80,108,100,0.06) 70%, transparent);
}

.svc-need-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.svc-triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-card {
  padding: 2rem 1.8rem;
  border-radius: var(--radius-xl);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--blue), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.svc-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.35); border-color: rgba(107,195,178,0.22); }
.svc-card:hover::before { opacity: 1; }

.svc-card--accent {
  border-color: rgba(107,195,178,0.2);
  background: rgba(107,195,178,0.04);
}

.svc-card--accent::before { opacity: 1; }

.svc-card-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-md);
  background: rgba(107,195,178,0.08);
  border: 1px solid rgba(107,195,178,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.svc-dna-icon,
.svc-wave-icon,
.svc-watch-icon {
  width: 100%;
  height: 100%;
}

.svc-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--light);
}

.svc-card-body {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
}

/* ─── Customised Supplements ────────────────────────────────── */
.svc-supplements-section {
  background: linear-gradient(135deg, rgba(80,108,100,0.08) 0%, transparent 60%);
}

.svc-supplements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.svc-sup-text {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.sup-categories {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.sup-cat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.sup-cat i { color: var(--teal); font-size: 1rem; }

/* ── Supplement cluster visual ──────────────────────────────── */
.svc-sup-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sup-cluster {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sup-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.sup-ring-1 {
  width: 260px;
  height: 260px;
  border-color: rgba(107,195,178,0.12);
  animation: ringPulse 4s ease-in-out infinite;
}

.sup-ring-2 {
  width: 200px;
  height: 200px;
  border-color: rgba(117,184,200,0.1);
  animation: ringPulse 4s ease-in-out infinite 1s;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%       { transform: scale(1.04); opacity: 1; }
}

.sup-center-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(107,195,178,0.18), rgba(117,184,200,0.12));
  border: 1px solid rgba(107,195,178,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--teal);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 40px rgba(107,195,178,0.15);
}

.sup-orbit-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(20,24,28,0.85);
  border: 1px solid var(--glass-border);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  backdrop-filter: blur(10px);
  white-space: nowrap;

  /* position each pill around the 130px orbit radius */
  left: 50%;
  top: 50%;
  transform:
    rotate(var(--angle))
    translateY(-130px)
    rotate(calc(-1 * var(--angle)));
}

.sup-orbit-pill i { color: var(--teal); font-size: 0.75rem; }

/* ─── Premium Support ───────────────────────────────────────── */
.svc-support-section {
  background: linear-gradient(180deg, transparent, rgba(117,184,200,0.04) 50%, transparent);
}

.support-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.support-packages {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

.support-pkg {
  display: grid;
  grid-template-columns: 3rem 1fr 2rem;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius-lg);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
  cursor: default;
}

.support-pkg:hover {
  border-color: rgba(107,195,178,0.22);
  transform: translateX(4px);
  background: rgba(107,195,178,0.03);
}

.support-pkg--accent {
  border-color: rgba(107,195,178,0.2);
  background: rgba(107,195,178,0.04);
}

.support-pkg-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  background: rgba(107,195,178,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--teal);
  flex-shrink: 0;
}

.support-pkg--accent .support-pkg-icon {
  background: rgba(107,195,178,0.16);
}

.support-pkg-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 0.2rem;
}

.support-pkg-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

.support-pkg-arrow {
  color: var(--muted);
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.2s, color 0.2s;
}

.support-pkg:hover .support-pkg-arrow {
  opacity: 1;
  color: var(--teal);
}

.support-note {
  max-width: 720px;
  margin: 1.8rem auto 0;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.6;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
}

.support-note i { color: var(--blue); flex-shrink: 0; margin-top: 0.1rem; }

.support-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ─── Services Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .svc-nutrition-grid,
  .svc-supplements-grid { grid-template-columns: 1fr; gap: 3rem; }
  .svc-triptych { grid-template-columns: 1fr; }
  .svc-genome-visual,
  .svc-sup-visual { order: -1; }
}

@media (max-width: 768px) {
  .svc-triptych { gap: 1rem; }
  .sup-cluster { width: 240px; height: 240px; }
  .sup-ring-1 { width: 220px; height: 220px; }
  .sup-ring-2 { width: 170px; height: 170px; }
  .sup-orbit-pill { transform: rotate(var(--angle)) translateY(-110px) rotate(calc(-1 * var(--angle))); }
  .support-pkg { grid-template-columns: 2.5rem 1fr; }
  .support-pkg-arrow { display: none; }
}

/* ─── Beliefs / Our Approach ───────────────────────────────── */
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.belief-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: border-color 0.25s, transform 0.25s;
}
.belief-card:hover {
  border-color: rgba(107,195,178,0.3);
  transform: translateY(-3px);
}
.belief-icon {
  font-size: 1.6rem;
  color: var(--teal);
  margin-bottom: 1rem;
}
.belief-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--light);
}
.belief-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .beliefs-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}

/* ─── FAQs ─────────────────────────────────────────────────── */
.faqs-list {
  max-width: 760px;
  margin: 2.5rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--light);
  cursor: pointer;
  list-style: none;
  gap: 1rem;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 0 1.3rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── Journey footnotes ─────────────────────────────────────── */
.journey-footnotes {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.journey-footnotes p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}
.journey-footnotes p + p { margin-top: 0.3rem; }

/* ─── Team / Meet the Experts ───────────────────────────────── */
.team-header {
  text-align: center;
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}
.team-card:hover {
  border-color: rgba(107,195,178,0.3);
  transform: translateY(-3px);
}
.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin: 0 auto 1.4rem;
  border: 2px solid rgba(107,195,178,0.35);
  box-shadow: 0 0 0 5px rgba(107,195,178,0.07), 0 8px 24px rgba(0,0,0,0.35);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.team-card:hover .team-photo {
  border-color: rgba(107,195,178,0.65);
  box-shadow: 0 0 0 5px rgba(107,195,178,0.14), 0 8px 28px rgba(0,0,0,0.4);
}
.team-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--light);
  margin-bottom: 0.25rem;
}
.team-role {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.team-credentials {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
}
.team-bio {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
}

/* ─── RESEARCH PAGE ──────────────────────────────────────────── */
.refs-section { padding-bottom: 6rem; }

.refs-controls {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.refs-search-wrap {
  position: relative;
  flex: 1;
  min-width: 240px;
}

.refs-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 1rem;
  pointer-events: none;
}

.refs-search-bar {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.8rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  backdrop-filter: blur(12px);
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.refs-search-bar::placeholder { color: var(--muted); }
.refs-search-bar:focus { outline: none; border-color: var(--teal); }

.refs-count {
  font-size: 0.85rem;
  color: var(--muted);
  white-space: nowrap;
}
.refs-count span { color: var(--teal); font-weight: 600; }

.refs-alpha-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.ref-alpha-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 6px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.ref-alpha-pill:hover {
  background: rgba(107,195,178,0.12);
  border-color: var(--teal);
  color: var(--teal);
}

.ref-letter-group { margin-bottom: 2rem; }

.ref-letter-header {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.ref-item {
  padding: 0.9rem 1.1rem;
  border-left: 3px solid transparent;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  transition: background 0.15s, border-color 0.15s;
  margin-bottom: 0.3rem;
}
.ref-item:hover {
  background: var(--glass);
  border-left-color: var(--teal);
}
.ref-item p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text);
}

.refs-empty {
  text-align: center;
  padding: 4rem 0;
  color: var(--muted);
}
.refs-empty i { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.refs-empty p { font-size: 1rem; }

@media (max-width: 600px) {
  .refs-controls { gap: 0.8rem; }
  .refs-alpha-nav { gap: 0.3rem; }
  .ref-alpha-pill { width: 1.8rem; height: 1.8rem; font-size: 0.75rem; }
}

/* ─── BLOG ─────────────────────────────────────────────────────── */
.blogs-section { padding-top: 3rem; padding-bottom: 6rem; }

/* Controls bar (search + filter pills) */
.blogs-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-bottom: 2.5rem;
}
.blogs-search-wrap {
  position: relative;
  flex: 0 1 360px;
  min-width: 240px;
}
.blogs-search-wrap > i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.95rem;
  pointer-events: none;
}
.blogs-search {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.6rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: var(--text);
  font: 500 0.95rem var(--font);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.blogs-search::placeholder { color: var(--muted); }
.blogs-search:focus {
  border-color: rgba(107,195,178,0.55);
  box-shadow: 0 0 0 3px rgba(107,195,178,0.15);
}

.blogs-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex: 1 1 auto;
}
.blogs-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text);
  font: 600 0.82rem var(--font);
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.blogs-filter-pill:hover { border-color: rgba(107,195,178,0.4); transform: translateY(-1px); }
.blogs-filter-pill.active {
  background: linear-gradient(135deg, rgba(107,195,178,0.18), rgba(117,184,200,0.12));
  border-color: rgba(107,195,178,0.55);
  color: var(--light);
}
.blogs-filter-pill .pill-count {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  padding: 0.05rem 0.45rem;
}
.blogs-filter-pill.active .pill-count {
  background: rgba(107,195,178,0.18);
  color: var(--teal);
}

.blogs-empty {
  text-align: center;
  color: var(--muted);
  padding: 3rem 1rem;
  font-size: 1rem;
}

/* Grid + cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(107,195,178,0.4);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.blog-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--glass-border);
  background: var(--bg2);
}
.blog-card-thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(107,195,178,0.5);
  font-size: 2.4rem;
  background: linear-gradient(135deg, rgba(80,108,100,0.25), rgba(20,24,28,0.6));
}
.blog-card-body {
  padding: 1.25rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.55rem;
}
.blog-card-title {
  font: 700 1.2rem/1.3 var(--font-display);
  color: var(--light);
  margin: 0 0 0.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-excerpt {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--teal);
  font: 700 0.88rem var(--font);
  transition: gap 0.2s, color 0.2s;
}
.blog-card:hover .blog-card-link { gap: 0.7rem; color: var(--light); }

/* ─── Single-post page ─── */
.blog-post-hero {
  position: relative;
  padding: 7rem 0 3rem;
  overflow: hidden;
}
.blog-post-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font: 600 0.88rem var(--font);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.2s, gap 0.2s;
}
.blog-back:hover { color: var(--teal); gap: 0.65rem; }

.blog-post-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.blog-post-meta .blog-post-cat { color: var(--teal); }
.blog-post-meta .dot { opacity: 0.5; }

.blog-post-title {
  font: 700 clamp(2rem, 4.2vw, 3.2rem)/1.12 var(--font-display);
  letter-spacing: -0.015em;
  color: var(--light);
  margin: 0 0 2rem;
}
.blog-post-hero-img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  display: block;
  margin-top: 1.5rem;
}

.blog-post-section { padding-top: 3rem; padding-bottom: 5rem; }

/* Article body typography */
.blog-article {
  max-width: 72ch;
  margin: 0 auto;
  color: var(--text);
  font: 400 1.05rem/1.78 var(--font);
}
.blog-article > * + * { margin-top: 1.15rem; }
.blog-article p { margin: 0 0 1.15rem; }
.blog-article p:last-child { margin-bottom: 0; }
.blog-article strong { color: var(--light); font-weight: 700; }
.blog-article em { color: var(--text); }
.blog-article a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(107,195,178,0.4);
  transition: border-color 0.2s, color 0.2s;
}
.blog-article a:hover { color: var(--light); border-color: var(--teal); }

.blog-article h2 {
  font: 700 1.7rem/1.25 var(--font-display);
  color: var(--light);
  letter-spacing: -0.01em;
  margin: 2.6rem 0 1rem;
}
.blog-article h3 {
  font: 600 1.35rem/1.3 var(--font-display);
  color: var(--light);
  margin: 2.2rem 0 0.9rem;
}
.blog-article h4 {
  font: 700 0.95rem/1.4 var(--font);
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 1.8rem 0 0.7rem;
}

.blog-article ul,
.blog-article ol {
  padding-left: 1.4rem;
  margin: 0 0 1.2rem;
}
.blog-article li { margin-bottom: 0.4rem; }
.blog-article ul li::marker { color: var(--teal); }
.blog-article ol li::marker { color: var(--teal); font-weight: 700; }

.blog-article blockquote {
  border-left: 3px solid var(--teal);
  padding: 0.4rem 0 0.4rem 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--muted);
}

.blog-article figure,
.blog-article img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.75rem auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
}
.blog-article figure { text-align: center; padding: 0; background: transparent; border: none; }
.blog-article figure img { margin: 0 auto; }
.blog-article figcaption {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.5rem;
  font-style: italic;
}

.blog-article hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.4rem 0;
}

.blog-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.blog-article th,
.blog-article td {
  border: 1px solid var(--glass-border);
  padding: 0.6rem 0.85rem;
  text-align: left;
}
.blog-article th {
  background: var(--glass);
  color: var(--light);
  font-weight: 700;
}

.blog-article-foot {
  max-width: 72ch;
  margin: 3rem auto 0;
}

@media (max-width: 700px) {
  .blogs-controls { flex-direction: column; align-items: stretch; }
  .blogs-search-wrap { flex: none; min-width: 0; }
  .blog-grid { gap: 1.25rem; }
  .blog-post-hero { padding: 6rem 0 2rem; }
  .blog-article { font-size: 1rem; }
}
