/* ======================================================================
   MacrovIA — Landing design system
   Identidad: burbuja de coach + bowl (nutrición) + sparkle ✦ (IA).
   Verde profundo · cream cálido · acento terracota (el sparkle).
   ====================================================================== */

:root {
  --green: #1d6b4a;
  --green-deep: #154e36;
  --green-darker: #0e3325;
  --green-soft: #e8f0eb;
  --cream: #f7f5f0;
  --cream-2: #fbfaf7;
  --terra: #e8805a;
  --terra-deep: #cf6038;
  --terra-soft: #fbe4d9;
  --ink: #16211b;
  --muted: #5d6b62;
  --line: #e6e2d8;
  --white: #ffffff;

  --macro-protein: #7c5cff;
  --macro-carbs: #16c0d4;
  --macro-fat: #f45d9e;

  --maxw: 1160px;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(20, 30, 22, 0.04), 0 4px 14px rgba(20, 30, 22, 0.04);
  --shadow-md: 0 10px 34px rgba(20, 40, 28, 0.1);
  --shadow-lg: 0 30px 70px rgba(14, 51, 37, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---------------------------------------------------- */
h1, h2, h3 { margin: 0; letter-spacing: -0.022em; line-height: 1.05; font-weight: 800; }
.display {
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.03em; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green);
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); }
.muted { color: var(--muted); }

/* The sparkle — signature mark (✦ = IA) */
.spark {
  display: inline-block; color: var(--terra);
  filter: drop-shadow(0 1px 6px rgba(232, 128, 90, 0.35));
}
.spark-anim { animation: twinkle 3.4s var(--ease) infinite; transform-origin: center; }
@keyframes twinkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  45% { transform: scale(0.7) rotate(15deg); opacity: 0.65; }
}

/* ---- Buttons ------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-weight: 700; font-size: 1rem;
  padding: 14px 24px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 8px 22px rgba(29, 107, 74, 0.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(29, 107, 74, 0.34); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-light { background: #fff; color: var(--green-deep); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---- Header -------------------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 100;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(247, 245, 240, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; gap: 18px; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.18rem; letter-spacing: -0.02em; }
.brand img { width: 34px; height: 34px; border-radius: 9px; box-shadow: var(--shadow-sm); }
.brand b { color: var(--green-deep); }
.brand b span { color: var(--terra); }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { font-size: 0.95rem; font-weight: 600; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 12px; margin-left: 22px; }

/* Language toggle */
.lang {
  display: inline-flex; align-items: center; background: var(--white);
  border: 1px solid var(--line); border-radius: 999px; padding: 3px; box-shadow: var(--shadow-sm);
}
.lang button {
  font-family: var(--font); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.04em;
  border: 0; background: transparent; color: var(--muted); padding: 6px 11px; border-radius: 999px;
  cursor: pointer; transition: all 0.2s;
}
.lang button.active { background: var(--green); color: #fff; }

.menu-btn { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.menu-btn span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; margin: 5px 0; transition: 0.3s; }

/* ---- Hero ---------------------------------------------------------- */
.hero { position: relative; padding: 64px 0 90px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero h1 { margin-top: 18px; }
.hero h1 .accent { color: var(--green); position: relative; white-space: nowrap; }
.hero .lead { margin-top: 22px; max-width: 30ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-note { margin-top: 18px; font-size: 0.9rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.avatars { display: inline-flex; }
.avatars img { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--cream); margin-left: -9px; object-fit: cover; }
.avatars img:first-child { margin-left: 0; }

/* Ambient blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; z-index: -1; }
.blob.a { width: 460px; height: 460px; top: -160px; right: -120px; background: #cfe6d8; }
.blob.b { width: 360px; height: 360px; background: var(--terra-soft); bottom: -120px; left: -100px; opacity: 0.45; }

/* ---- Phone device (hero) ------------------------------------------ */
.device-wrap { position: relative; display: flex; justify-content: center; }
.device {
  position: relative; width: 300px; background: #0e3325; border-radius: 44px; padding: 12px;
  box-shadow: var(--shadow-lg); animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.device-screen { background: var(--cream); border-radius: 34px; padding: 18px 16px 20px; overflow: hidden; }
.dv-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.dv-top .who { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 0.92rem; }
.dv-top .who img { width: 26px; height: 26px; border-radius: 8px; }
.dv-chip { font-size: 0.72rem; font-weight: 700; color: var(--terra-deep); background: var(--terra-soft); padding: 4px 9px; border-radius: 999px; }

.dv-card { background: #fff; border-radius: 18px; padding: 14px; box-shadow: var(--shadow-sm); }
.dv-ringrow { display: flex; align-items: center; gap: 14px; }
.ring { width: 84px; height: 84px; flex-shrink: 0; }
.ring circle { fill: none; stroke-width: 9; }
.ring .bg { stroke: var(--green-soft); }
.ring .fg { stroke: var(--green); stroke-linecap: round; stroke-dasharray: 226; stroke-dashoffset: 226; transform: rotate(-90deg); transform-origin: center; transition: stroke-dashoffset 1.4s var(--ease); }
.device.in .ring .fg { stroke-dashoffset: 70; }
.dv-kcal b { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; }
.dv-kcal span { color: var(--muted); font-size: 0.8rem; }
.macros { margin-top: 8px; display: grid; gap: 9px; }
.macro { font-size: 0.74rem; }
.macro .top { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 4px; }
.macro .bar { height: 6px; background: var(--green-soft); border-radius: 4px; overflow: hidden; }
.macro .bar i { display: block; height: 100%; width: 0; border-radius: 4px; transition: width 1.2s var(--ease); }
.device.in .macro .bar i { width: var(--w); }

.dv-chat { margin-top: 12px; background: var(--green-deep); border-radius: 16px; padding: 13px 14px; color: #fff; }
.dv-chat .lbl { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; color: #9fd9bc; text-transform: uppercase; }
.dv-chat p { margin: 6px 0 0; font-size: 0.84rem; font-weight: 600; line-height: 1.45; }

/* Floating score badge near device */
.float-badge {
  position: absolute; background: #fff; border-radius: 16px; padding: 11px 14px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px; animation: float 6s ease-in-out infinite;
}
.float-badge.s1 { top: 24px; left: -36px; animation-delay: -2s; }
.float-badge.s2 { bottom: 60px; right: -30px; animation-delay: -4s; }
.float-badge .n { font-size: 1.3rem; font-weight: 800; color: var(--green); }
.float-badge .t { font-size: 0.7rem; color: var(--muted); font-weight: 600; line-height: 1.2; }
.score-bar { width: 70px; height: 6px; border-radius: 4px; background: linear-gradient(90deg, #d14343, #d4a23b, #3b9e6b); position: relative; }
.score-bar i { position: absolute; top: -3px; left: 59%; width: 12px; height: 12px; border-radius: 50%; background: var(--ink); border: 2.5px solid #fff; }

/* ---- Sections ------------------------------------------------------ */
.section { padding: 92px 0; }
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head .lead { margin-top: 14px; }

/* Logos / trust strip */
.trust { padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream-2); }
.trust .row { display: flex; flex-wrap: wrap; gap: 14px 38px; justify-content: center; align-items: center; color: var(--muted); font-weight: 600; font-size: 0.92rem; }
.trust .row .it { display: inline-flex; align-items: center; gap: 8px; }

/* Feature cards */
.features { background: var(--cream-2); }
.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.feat:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feat .ic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 18px; }
.feat h3 { font-size: 1.28rem; margin-bottom: 8px; letter-spacing: -0.02em; }
.feat p { margin: 0; color: var(--muted); font-size: 0.98rem; }
.feat.wide { grid-column: span 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: center; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 30px; border-radius: var(--radius-lg); background: var(--green-soft); }
.step .num {
  counter-increment: step; width: 40px; height: 40px; border-radius: 12px; background: var(--green); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1.05rem; margin-bottom: 16px;
}
.step .num::before { content: counter(step); }
.step h3 { font-size: 1.18rem; margin-bottom: 7px; }
.step p { margin: 0; color: var(--muted); font-size: 0.96rem; }

/* Coaches */
.coaches { background: var(--green-darker); color: #fff; border-radius: 40px; margin: 0 16px; }
.coaches .section-head h2, .coaches .section-head .lead { color: #fff; }
.coaches .section-head .lead { color: rgba(255, 255, 255, 0.72); }
.coaches .eyebrow { color: #9fd9bc; }
.coach-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.coach { text-align: center; }
.coach .pic { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 1; box-shadow: var(--shadow-md); }
.coach .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.coach:hover .pic img { transform: scale(1.06); }
.coach .nm { margin-top: 11px; font-weight: 800; font-size: 0.98rem; }
.coach .sp { font-size: 0.78rem; color: rgba(255, 255, 255, 0.66); }

/* Health score highlight */
.score-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px;
  box-shadow: var(--shadow-md); max-width: 520px;
}
.score-card .row { display: flex; justify-content: space-between; align-items: flex-start; }
.score-card .big { font-size: 2.6rem; font-weight: 800; color: var(--terra-deep); letter-spacing: -0.03em; }
.score-card .big small { font-size: 1rem; color: var(--muted); }
.score-card .grad { height: 10px; border-radius: 6px; margin-top: 22px; background: linear-gradient(90deg, #d14343, #d4a23b, #3b9e6b); position: relative; }
.score-card .grad i { position: absolute; top: -4px; left: 59%; width: 18px; height: 18px; border-radius: 50%; background: var(--ink); border: 3px solid #fff; box-shadow: var(--shadow-sm); }
.score-card .scale { display: flex; justify-content: space-between; margin-top: 9px; font-size: 0.72rem; color: var(--muted); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

/* Pricing */
.billing-toggle {
  display: inline-flex; background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: 4px; box-shadow: var(--shadow-sm); margin: 0 auto 40px; gap: 2px;
}
.billing-toggle button {
  font-family: var(--font); font-weight: 700; font-size: 0.92rem; border: 0; background: transparent;
  color: var(--muted); padding: 9px 20px; border-radius: 999px; cursor: pointer; transition: all 0.25s var(--ease);
  display: inline-flex; align-items: center; gap: 8px;
}
.billing-toggle button.active { background: var(--green); color: #fff; }
.billing-toggle .save {
  font-size: 0.68rem; font-weight: 800; background: var(--terra); color: #fff; padding: 2px 7px; border-radius: 999px;
}
.billing-toggle button.active .save { background: rgba(255, 255, 255, 0.22); }

.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 860px; margin: 0 auto; }
.price-card {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px;
  display: flex; flex-direction: column; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.price-card.featured { border-color: var(--green); box-shadow: var(--shadow-lg); position: relative; }
.price-card .tag {
  display: inline-flex; align-self: flex-start; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 5px 11px; border-radius: 999px; margin-bottom: 14px;
}
.price-card .tag.free { background: var(--green-soft); color: var(--green-deep); }
.price-card .tag.prem { background: var(--green); color: #fff; }
.price-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.price-card .price { display: flex; align-items: baseline; gap: 4px; }
.price-card .price .cur { font-size: 1rem; font-weight: 700; color: var(--muted); }
.price-card .price .amt { font-size: 2.8rem; font-weight: 800; letter-spacing: -0.04em; color: var(--ink); }
.price-card .price .per { font-size: 1rem; color: var(--muted); font-weight: 600; }
.price-card .price-note { font-size: 0.86rem; color: var(--green); font-weight: 700; margin-top: 6px; min-height: 20px; }
.price-card .plist { list-style: none; padding: 0; margin: 22px 0 26px; display: grid; gap: 12px; }
.price-card .plist li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.96rem; color: #38423b; }
.price-card .plist .ck { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--green-soft); display: grid; place-items: center; margin-top: 1px; }
.price-card .btn { margin-top: auto; width: 100%; }
.price-noads { text-align: center; margin-top: 22px; font-size: 0.92rem; color: var(--muted); font-weight: 600; }
.price-noads .spark { margin-right: 6px; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.qa { border-bottom: 1px solid var(--line); }
.qa button {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer; font-family: var(--font);
  font-size: 1.1rem; font-weight: 700; color: var(--ink); padding: 22px 40px 22px 0; position: relative;
}
.qa button::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--green); font-weight: 400; transition: transform 0.3s; }
.qa.open button::after { transform: translateY(-50%) rotate(45deg); }
.qa .ans { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.qa .ans p { margin: 0 0 22px; color: var(--muted); }

/* CTA band */
.cta-band { background: var(--green-deep); color: #fff; border-radius: 40px; margin: 0 16px; text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: rgba(255, 255, 255, 0.8); margin: 16px auto 0; max-width: 46ch; }
.cta-band .hero-cta { justify-content: center; }
.cta-band .spark { position: absolute; font-size: 3rem; opacity: 0.4; }

/* App store badges */
.stores { display: flex; gap: 12px; flex-wrap: wrap; }
.store {
  display: inline-flex; align-items: center; gap: 10px; background: var(--ink); color: #fff;
  border-radius: 14px; padding: 11px 18px; transition: transform 0.25s var(--ease);
}
.store:hover { transform: translateY(-2px); }
.store small { display: block; font-size: 0.62rem; opacity: 0.7; line-height: 1; }
.store b { display: block; font-size: 1.02rem; font-weight: 700; line-height: 1.2; }
.cta-band .store { background: #fff; color: var(--ink); }

/* Disclaimer note */
.disclaimer { text-align: center; font-size: 0.86rem; color: var(--muted); max-width: 60ch; margin: 18px auto 0; }

/* ---- Footer -------------------------------------------------------- */
.footer { padding: 64px 0 36px; border-top: 1px solid var(--line); margin-top: 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.footer .brand { margin-bottom: 14px; }
.footer .desc { color: var(--muted); font-size: 0.94rem; max-width: 30ch; }
.foot-col h4 { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; font-weight: 700; }
.foot-col a { display: block; color: var(--ink); font-size: 0.96rem; font-weight: 500; padding: 5px 0; transition: color 0.2s; }
.foot-col a:hover { color: var(--green); }
.foot-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.86rem; }

/* ---- Legal / content pages ---------------------------------------- */
.page-hero { padding: 70px 0 30px; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); letter-spacing: -0.03em; }
.page-hero .updated { margin-top: 14px; color: var(--muted); font-size: 0.92rem; }
.content { max-width: 760px; margin: 0 auto; padding: 20px 0 80px; }
.content h2 { font-size: 1.4rem; margin: 40px 0 12px; letter-spacing: -0.02em; }
.content h3 { font-size: 1.1rem; margin: 26px 0 8px; }
.content p, .content li { color: #38423b; font-size: 1.02rem; }
.content ul { padding-left: 22px; }
.content li { margin: 6px 0; }
.content a { color: var(--green); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.callout { background: var(--green-soft); border-radius: var(--radius); padding: 22px 24px; margin: 24px 0; border: 1px solid #d8e6dd; }
.callout.warn { background: #fdf2e9; border-color: #f3dcc8; }
.callout p { margin: 0; }

/* Support cards */
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0 10px; }
.support-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.support-card .ic { width: 46px; height: 46px; border-radius: 13px; background: var(--green-soft); display: grid; place-items: center; margin-bottom: 14px; }
.support-card h3 { margin: 0 0 6px; font-size: 1.08rem; }
.support-card p { margin: 0; color: var(--muted); font-size: 0.94rem; }

/* Delete account form */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); margin-top: 18px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font); font-size: 1rem; padding: 13px 15px; border-radius: 13px;
  border: 1.5px solid var(--line); background: var(--cream-2); color: var(--ink); transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); }
.form-ok { display: none; background: var(--green-soft); border-radius: 14px; padding: 16px; font-weight: 600; color: var(--green-deep); }

/* ---- Reveal motion ------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }

/* Lang visibility helper (used where dictionary swap isn't ideal) */
[data-lang-hide] { display: none !important; }

/* ---- Responsive ---------------------------------------------------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero .lead { max-width: none; }
  .device-wrap { margin-top: 10px; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat.wide { grid-column: auto; grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 440px; }
  .coach-row { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-right .btn { display: none; }
  .menu-btn { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--cream-2); padding: 18px 24px; gap: 6px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  }
  .nav-links.open a { padding: 10px 0; font-size: 1.05rem; }
}
@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .coach-row { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .float-badge { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .device.in .ring .fg { stroke-dashoffset: 70; }
}
