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

:root {
  --bg: #0D1117;
  --bg2: #111827;
  --bg3: #1A2332;
  --text: #F5F0E8;
  --muted: #8A9BAE;
  --accent: #4ADE80;
  --accent2: #2DD4BF;
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(74,222,128,0.3);
  --font-display: 'Fraunces', serif;
  --font-body: 'Nunito Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  background: rgba(13,17,23,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.logo span { color: var(--accent); }

nav.topnav a.nav-cta {
  background: var(--accent);
  color: #0D1117;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.55rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
  letter-spacing: 0.01em;
}

nav.topnav a.nav-cta:hover { opacity: 0.85; }

/* HERO */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 4rem;
  text-align: center;
  position: relative;
}

.hero > * { position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.hero h1 em { font-style: italic; color: var(--accent); }

.hero p.subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 3rem;
  line-height: 1.65;
}

/* SYMPTOM SELECTOR */
.symptom-demo {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.2rem;
  max-width: 760px;
  width: 100%;
  margin: 0 auto 3rem;
  text-align: left;
}

.symptom-demo .demo-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.symptom-tags {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.7rem;
  margin-bottom: 1.6rem;
}

.symptom-tag {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all 0.18s;
  background: var(--bg2);
  color: var(--text);
  user-select: none;
}

.symptom-tag .tag-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--muted);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: transparent;
  transition: all 0.18s;
}

.symptom-tag.active .tag-check {
  background: var(--accent);
  border-color: var(--accent);
  color: #0D1117;
}

.symptom-tag:hover {
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

.symptom-tag.active {
  background: rgba(74,222,128,0.14);
  border-color: var(--accent);
  color: var(--accent);
}

.results-container {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.demo-result-empty {
  background: var(--bg2);
  border: 1px dashed var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

.result-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 1.2rem 1.4rem;
}

.result-card .rc-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}

.result-card .rc-marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.result-card .rc-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.result-card .rc-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.result-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.result-pill {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  background: rgba(45,212,191,0.1);
  color: var(--accent2);
  border: 1px solid rgba(45,212,191,0.25);
}

.result-pill.food {
  background: rgba(74,222,128,0.08);
  color: var(--accent);
  border-color: rgba(74,222,128,0.22);
}

.pill-label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0.6rem 0 0.3rem;
  font-family: var(--font-mono);
}

.demo-lock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}

.demo-lock span { font-size: 0.8rem; color: var(--muted); }
.demo-lock span strong { color: var(--text); }

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #0D1117;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.hero-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hero-note::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* TRUST BAR */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 4rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.trust-item .check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(74,222,128,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem;
  color: var(--accent);
  flex-shrink: 0;
}

/* SECTIONS */
section { padding: 5rem 1.5rem; }

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 1rem;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ILLUSTRATION SPLIT */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
}

.split .split-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-align: left;
}

.split .split-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.split .illu {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split .illu svg { width: 100%; height: auto; max-width: 360px; }

/* STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.step {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.5rem;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.step p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  max-width: 860px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.6rem;
  transition: border-color 0.2s;
}

.feature-card:hover { border-color: var(--border-hover); }

.feature-icon { font-size: 1.4rem; margin-bottom: 0.9rem; display: block; }

.feature-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.feature-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  max-width: 920px;
  margin: 0 auto;
}

.testimonial {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial .stars { color: var(--accent); font-size: 0.85rem; letter-spacing: 0.15em; }

.testimonial blockquote {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  flex-grow: 1;
}

.testimonial .author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(74,222,128,0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.testimonial .author-name { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.testimonial .author-detail { font-size: 0.75rem; color: var(--muted); }

/* PRICING */
.pricing-box {
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg3);
  border: 1px solid rgba(74,222,128,0.25);
  border-radius: 18px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
}

.price-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(74,222,128,0.12);
  color: var(--accent);
  border: 1px solid rgba(74,222,128,0.3);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.price-amount sup {
  font-size: 1.5rem;
  vertical-align: super;
  font-family: var(--font-body);
  font-weight: 600;
}

.price-label { font-size: 0.82rem; color: var(--muted); margin-bottom: 2rem; }

.price-features { list-style: none; text-align: left; margin-bottom: 2rem; }

.price-features li {
  font-size: 0.88rem;
  color: var(--text);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.price-features li:last-child { border-bottom: none; }
.price-features li .check-green { color: var(--accent); font-size: 0.9rem; flex-shrink: 0; }

.price-note { font-size: 0.75rem; color: var(--muted); margin-top: 1rem; }

/* FAQ */
.faq-list { max-width: 620px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border); padding: 1.3rem 0; }

.faq-q {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

.faq-q .faq-arrow {
  color: var(--muted);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-arrow { transform: rotate(45deg); }

.faq-a {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s;
}

.faq-item.open .faq-a { max-height: 300px; padding-top: 0.8rem; }

/* FINAL CTA */
.final-cta {
  padding: 6rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.15;
}

.final-cta p { color: var(--muted); font-size: 0.95rem; margin-bottom: 2.5rem; }

/* FOOTER */
footer.site-footer {
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

footer.site-footer .logo-small {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text);
}

footer.site-footer .logo-small span { color: var(--accent); }
footer.site-footer p { font-size: 0.75rem; color: var(--muted); }

footer.site-footer nav a {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  margin-left: 1.5rem;
  transition: color 0.2s;
}

footer.site-footer nav a:hover { color: var(--text); }

/* LEGAL PAGES */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 9rem 1.5rem 5rem;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.legal-page .page-date {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 3rem;
  font-family: var(--font-mono);
}

.legal-page h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 2.5rem 0 0.8rem;
  color: var(--text);
}

.legal-page p, .legal-page li {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0.8rem;
}

.legal-page ul { padding-left: 1.3rem; margin-bottom: 1rem; }

.legal-page a { color: var(--accent); text-decoration: none; }
.legal-page a:hover { text-decoration: underline; }

.legal-page .placeholder {
  background: rgba(239,159,39,0.12);
  color: #EF9F27;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.legal-warning {
  background: rgba(239,159,39,0.08);
  border: 1px solid rgba(239,159,39,0.3);
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 2rem;
}

.legal-warning p { color: #EF9F27; font-size: 0.85rem; margin: 0; }

/* CONTACT */
.contact-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 560px;
  margin: 0 auto;
}

.contact-card .form-group { margin-bottom: 1.3rem; }

.contact-card label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.contact-card input:focus,
.contact-card textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-card textarea { min-height: 140px; resize: vertical; }

.contact-direct {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-direct a { color: var(--accent); text-decoration: none; }
.contact-direct a:hover { text-decoration: underline; }

/* RESPONSIVE */
@media (max-width: 740px) {
  nav.topnav { padding: 1rem; }
  .symptom-demo { padding: 1.4rem; }
  .symptom-tags { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .trust-bar { gap: 1.2rem; }
  .step, .feature-card { padding: 1.4rem 1.2rem; }
  .pricing-box { padding: 2rem 1.5rem; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  footer.site-footer { flex-direction: column; align-items: flex-start; }
  footer.site-footer nav { display: flex; flex-wrap: wrap; gap: 0.5rem; }
  footer.site-footer nav a { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ===== BLOG ===== */
.blog-hero {
  padding: 9rem 1.5rem 3rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.blog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.blog-hero p { color: var(--muted); font-size: 1rem; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
}

.blog-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.blog-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.blog-card .card-visual {
  height: 170px;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.blog-card .card-visual img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .card-visual svg { width: 100%; height: 100%; }

.blog-card .card-body { padding: 1.4rem; display: flex; flex-direction: column; flex-grow: 1; }

.blog-card .card-cat {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 0.6rem;
}

.blog-card h2 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.blog-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.6; flex-grow: 1; }

.blog-card .card-read {
  font-size: 0.8rem;
  color: var(--accent);
  margin-top: 1rem;
  font-weight: 500;
}

/* ARTICLE */
.article-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 9rem 1.5rem 5rem;
}

.article-page .art-cat {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 1rem;
}

.article-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.article-page .art-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-family: var(--font-mono);
}

.article-page .art-figure {
  margin: 0 0 2.5rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg3);
}

.article-page .art-figure img { width: 100%; display: block; }
.article-page .art-figure svg { width: 100%; display: block; }

.article-page .art-figure figcaption {
  font-size: 0.75rem;
  color: var(--muted);
  padding: 0.7rem 1rem;
  border-top: 1px solid var(--border);
}

.article-page h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  margin: 2.5rem 0 1rem;
}

.article-page h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 2rem 0 0.7rem;
  color: var(--text);
}

.article-page p {
  font-size: 0.95rem;
  color: #C9D1D9;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.article-page ul, .article-page ol {
  padding-left: 1.4rem;
  margin-bottom: 1.2rem;
}

.article-page li {
  font-size: 0.95rem;
  color: #C9D1D9;
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

.article-page strong { color: var(--text); font-weight: 600; }
.article-page a { color: var(--accent); text-decoration: none; }
.article-page a:hover { text-decoration: underline; }

.nutrient-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 1.3rem 1.5rem;
  margin: 1.8rem 0;
}

.nutrient-box .nb-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.nutrient-box p, .nutrient-box li { font-size: 0.88rem; margin-bottom: 0.5rem; }

.art-disclaimer {
  background: rgba(138,155,174,0.08);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.1rem 1.4rem;
  margin: 2.5rem 0 0;
}

.art-disclaimer p { font-size: 0.78rem; color: var(--muted); margin: 0; line-height: 1.6; }

.art-cta {
  background: var(--bg3);
  border: 1px solid rgba(74,222,128,0.25);
  border-radius: 14px;
  padding: 2rem;
  margin: 3rem 0 0;
  text-align: center;
}

.art-cta h3 { margin-top: 0; font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; }
.art-cta p { font-size: 0.88rem; color: var(--muted); }

.art-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.art-nav a { font-size: 0.85rem; color: var(--accent); text-decoration: none; }
.art-nav a:hover { text-decoration: underline; }

.img-placeholder {
  background: repeating-linear-gradient(45deg, var(--bg3), var(--bg3) 12px, var(--bg2) 12px, var(--bg2) 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  min-height: 220px;
}

.img-placeholder p {
  font-family: var(--font-mono);
  font-size: 0.75rem !important;
  color: var(--muted) !important;
  margin: 0 !important;
  line-height: 1.7 !important;
}

.nav-blog-link {
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
  margin-left: auto;
  margin-right: 1.5rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-blog-link:hover { color: var(--accent); }

/* Fix : la règle .article-page a écrasait la couleur du texte des boutons (vert sur vert = invisible) */
.article-page .btn-primary,
.art-cta .btn-primary {
  color: #0D1117;
}

.article-page .btn-primary:hover { text-decoration: none; }

/* ===== HOME : SECTIONS ÉMOTIONNELLES ===== */
.story-section { padding: 5rem 1.5rem; }

.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.story-split.reverse .story-img { order: 2; }

.story-img {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.story-img img { width: 100%; display: block; }

.story-text .story-kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.story-text .story-kicker.pain { color: #E24B4A; }
.story-text .story-kicker.hope { color: var(--accent); }

.story-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.story-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.story-text p strong { color: var(--text); font-weight: 600; }

.story-text em { color: var(--text); font-style: italic; }

/* MOSAÏQUE ALIMENTS */
.food-strip {
  padding: 4rem 1.5rem;
  text-align: center;
}

.food-strip-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
}

.food-strip-sub {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.food-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  max-width: 980px;
  margin: 0 auto;
}

.food-tile {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1 / 1.1;
}

.food-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.food-tile:hover img { transform: scale(1.04); }

.food-tile .tile-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem 0.9rem 0.8rem;
  background: linear-gradient(transparent, rgba(13,17,23,0.88));
  text-align: left;
}

.food-tile .tile-label .tl-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  display: block;
}

.food-tile .tile-label .tl-nut {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--accent);
}

@media (max-width: 740px) {
  .story-split { grid-template-columns: 1fr; gap: 1.8rem; }
  .story-split.reverse .story-img { order: 0; }
  .food-mosaic { grid-template-columns: repeat(2, 1fr); }
}

/* FINAL CTA avec image de fond */
.final-cta.has-bg {
  position: relative;
  background-image: linear-gradient(rgba(13,17,23,0.82), rgba(13,17,23,0.82)), url('images/cuisine.jpg');
  background-size: cover;
  background-position: center;
}

.final-cta .final-cta-inner { position: relative; }

/* ============================================================
   ACCROCHE COURTE — "corps = moteur"
   ============================================================ */
.intro-claim {
  max-width: 820px;
  margin: 0 auto;
  padding: 5rem 1.5rem 1rem;
  text-align: center;
}
.ic-kicker {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 1.2rem;
}
.intro-claim h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
}
.intro-claim h2 em {
  font-style: italic;
  color: var(--accent);
}
.ic-lead {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.75;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================================
   SECTION APPROCHE — vision globale
   ============================================================ */
.approche {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
}
.approche .section-eyebrow,
.approche .section-title {
  text-align: center;
}
.approche .section-title {
  margin-bottom: 3.5rem;
}
.approche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.approche-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  transition: border-color 0.25s, transform 0.25s;
}
.approche-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.ac-num {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
  opacity: 0.7;
}
.approche-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.approche-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}
.approche-card strong {
  color: var(--text);
  font-weight: 600;
}
.approche-foot {
  text-align: center;
  max-width: 720px;
  margin: 3rem auto 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
}
@media (max-width: 820px) {
  .approche-grid { grid-template-columns: 1fr; }
  .intro-claim { padding-top: 3.5rem; }
  .approche { padding-top: 3.5rem; }
}
