/* =========================================================
   MTH — Landing Premium
   Editorial · cálido · alto detalle
   Solo dos familias: Jost (display + labels) · Trebuchet (texto)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500&display=swap');

:root{
  /* Marca */
  --orange:       #E8471F;
  --orange-deep:  #C5360F;
  --orange-soft:  #F0764F;
  --orange-tint:  #F6E2D7;
  --orange-glow:  rgba(232,71,31,0.16);

  /* Neutros */
  --ink:      #0b435a;
  --ink-soft: #3f5662;
  --muted:    #8C857A;
  --faint:    #B7AFA3;
  --line:     rgba(11,67,90,0.15);
  --line-2:   rgba(11,67,90,0.08);

  --paper:    #F6F1E8;
  --paper-2:  #EFE8DB;
  --paper-3:  #E8E0D1;
  --card:     #FBF8F2;
  --dark:     #0b435a;
  --dark-2:   #0e5273;

  /* Tipos — dos familias */
  --display: 'Jost', 'Futura', 'Futura PT', sans-serif;
  --body:    'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;

  --gutter: clamp(22px, 5vw, 84px);
  --maxw:   1520px;
}

*,*::before,*::after{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  background:var(--paper);
  color:var(--ink);
  font-family:var(--body);
  font-size:20px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img,svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; }

::selection{ background:var(--orange); color:#fff; }

/* ---------- Type primitives ---------- */
.eyebrow{
  font-family:var(--display);
  font-weight:500;
  font-size:12.5px;
  letter-spacing:0.26em;
  text-transform:uppercase;
  color:var(--ink-soft);
  display:inline-flex;
  align-items:center;
  gap:14px;
}
.eyebrow::before{
  content:"";
  width:30px; height:1.5px;
  background:var(--orange);
}
.eyebrow.center{ justify-content:center; }
.eyebrow.light{ color:rgba(255,255,255,0.72); }

.idx{
  font-family:var(--display);
  font-weight:500;
  font-size:12.5px;
  letter-spacing:0.24em;
  text-transform:uppercase;
  color:var(--muted);
}
.idx b{ color:var(--orange); font-weight:600; }

.display{
  font-family:var(--display);
  font-weight:700;
  letter-spacing:-0.03em;
  line-height:0.95;
  color:var(--ink);
  text-wrap:balance;
}
.ital{ font-style:italic; font-weight:500; letter-spacing:-0.02em; }
.accent{ color:var(--orange); }
.thin{ font-weight:300; }

h1,h2,h3,h4{ margin:0; }

/* ---------- Layout ---------- */
.wrap{
  width:100%;
  max-width:var(--maxw);
  margin:0 auto;
  padding-inline:var(--gutter);
  position:relative;
}
.section{ padding-block:clamp(84px, 10vw, 168px); position:relative; }

/* hairline divider with logo-wave feel */
.rule{ height:1px; background:var(--line); border:0; margin:0; }

/* ---------- Reveal: content always visible (entrance handled per-environment) ---------- */
.js [data-reveal], [data-reveal]{ opacity:1; transform:none; }

/* =========================================================
   HEADER
   ========================================================= */
.head{
  position:sticky; top:0; z-index:50;
  background:color-mix(in srgb, var(--paper) 80%, transparent);
  backdrop-filter:blur(18px) saturate(1.3);
  -webkit-backdrop-filter:blur(18px) saturate(1.3);
  border-bottom:1px solid var(--line-2);
}
.head__in{
  display:flex; align-items:center; justify-content:space-between;
  gap:24px;
  padding-block:18px;
}
.brand{ display:flex; align-items:center; color:var(--ink); }
.brand svg{ width:100%; height:auto; display:block; }
.brand .mk{ fill:var(--orange); }
.head .brand svg{ width:auto; height:72px; }

.nav{
  display:flex; align-items:center; gap:36px;
}
.nav a{
  font-family:var(--display);
  font-weight:500;
  font-size:13.5px;
  letter-spacing:0.04em;
  color:var(--ink-soft);
  position:relative;
  transition:color .3s ease;
}
.nav a:not(.nav__cta)::after{
  content:""; position:absolute; left:0; right:100%; bottom:-6px;
  height:1.5px; background:var(--orange);
  transition:right .35s cubic-bezier(.16,.7,.2,1);
}
.nav a:not(.nav__cta):hover{ color:var(--ink); }
.nav a:not(.nav__cta):hover::after{ right:0; }

.nav a.nav__cta{
  display:inline-flex; align-items:center; gap:10px;
  background:var(--ink);
  color:#ffffff;
  padding:12px 22px;
  border-radius:999px;
  white-space:nowrap;
  transition:background .3s ease, color .3s ease, transform .3s ease;
}
.nav__cta:hover{ background:var(--orange); color:#fff; transform:translateY(-1px); }
.nav__cta .pip{
  width:6px; height:6px; border-radius:50%; background:var(--orange);
}
.nav__cta:hover .pip{ background:#fff; }

/* progress */
.prog{ position:fixed; top:0; left:0; right:0; height:2px; z-index:60; pointer-events:none; }
.prog__bar{ height:100%; width:0; background:var(--orange); transition:width .12s linear; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:14px;
  padding:19px 30px;
  font-family:var(--display);
  font-weight:600;
  font-size:14.5px;
  letter-spacing:0.05em;
  text-transform:uppercase;
  border:1.5px solid var(--ink);
  background:var(--ink);
  color:var(--paper);
  border-radius:999px;
  cursor:pointer;
  transition:transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.btn .arr{ width:22px; height:11px; transition:transform .3s ease; }
.btn:hover{ background:var(--orange); border-color:var(--orange); color:#fff; transform:translateY(-2px); box-shadow:0 16px 30px -16px var(--orange-glow); }
.btn:hover .arr{ transform:translateX(5px); }
.btn--orange{ background:var(--orange); border-color:var(--orange); color:#fff; }
.btn--orange:hover{ background:var(--ink); border-color:var(--ink); }
.btn--ghost{ background:transparent; color:var(--ink); border-color:var(--line); }
.btn--ghost:hover{ background:var(--ink); color:var(--paper); border-color:var(--ink); box-shadow:none; }
.btn--lg{ padding:23px 38px; font-size:15.5px; }

.note{
  font-family:var(--display);
  font-weight:500;
  font-size:12px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--muted);
}

/* =========================================================
   HERO
   ========================================================= */
.hero{ padding-block:clamp(40px,5vw,72px) clamp(48px,6vw,96px); position:relative; }
.hero__grid{
  display:grid;
  grid-template-columns:1.32fr 1fr;
  gap:clamp(32px,5vw,80px);
  align-items:end;
}
.hero__head{
  display:flex; flex-direction:column;
}
.hero__eyebrow{
  font-family:var(--display);
  font-weight:600;
  font-size:13px;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--ink-soft);
  display:inline-flex; align-items:center; gap:12px;
  margin-bottom:clamp(24px,2.6vw,36px);
}
.hero__eyebrow .pip{
  width:9px; height:9px; border-radius:50%; background:var(--orange);
  box-shadow:0 0 0 4px var(--orange-glow);
}
/* H1 — main program title */
.hero__main{
  font-family:var(--display);
  font-weight:600;
  font-size:clamp(38px, 5vw, 74px);
  line-height:1.04;
  letter-spacing:-0.03em;
  text-wrap:balance;
  color:var(--ink);
}
.hero__divider{
  width:64px; height:3px; background:var(--orange); border-radius:2px;
  margin-block:clamp(26px,3vw,40px);
}
/* H2 — secondary statement, bold + punchy but smaller */
.hero__sub{
  font-family:var(--display);
  font-weight:700;
  font-size:clamp(28px, 3.4vw, 50px);
  line-height:1.02;
  letter-spacing:-0.03em;
  text-wrap:balance;
  color:var(--ink);
  max-width:16ch;
}
.hero__sub .ital{ font-family:var(--display); }
.hero__sub .underline{
  position:relative; display:inline-block; white-space:nowrap; margin-right:0.28em;
}
.hero__sub .underline::after{
  content:""; position:absolute; left:0; right:0; bottom:0.04em;
  height:0.09em; background:var(--orange); border-radius:2px;
}

.hero__foot{
  display:grid;
  grid-template-columns:1.1fr auto;
  gap:clamp(24px,4vw,56px);
  align-items:end;
  padding-top:clamp(28px,3vw,40px);
}
.hero__lede{
  font-family:var(--display);
  font-weight:400;
  font-size:clamp(20px,1.55vw,25px);
  line-height:1.45;
  color:var(--ink-soft);
  max-width:36ch;
  margin:0;
}
.hero__lede b{ color:var(--ink); font-weight:600; }
.hero__actions{ display:flex; flex-direction:column; gap:14px; align-items:flex-end; }
.hero__actions .row{ display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-end; }

/* Hero image */
.hero__media{ position:relative; }
.hero__media .hero__img{
  width:100%;
  height:auto;
  aspect-ratio:4/5;
  object-fit:cover;
  display:block;
}
.hero__frame{
  position:absolute; inset:-10px;
  border:1px solid var(--line);
  pointer-events:none;
}
.hero__cap{
  position:absolute; left:0; bottom:-34px;
  font-family:var(--display);
  font-weight:500;
  font-size:11.5px;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--muted);
  display:flex; gap:14px; align-items:center;
}
.hero__cap .ln{ width:28px; height:1px; background:var(--orange); }

/* floating stat tab over image */
.hero__tab{
  position:absolute; left:-26px; top:34px;
  background:var(--ink); color:var(--paper);
  padding:18px 22px;
  display:flex; flex-direction:column; gap:2px;
  box-shadow:0 26px 50px -24px rgba(0,0,0,.5);
}
.hero__tab .v{
  font-family:var(--display); font-weight:700;
  font-size:38px; line-height:1; letter-spacing:-0.04em;
}
.hero__tab .v sup{ font-size:16px; color:var(--orange); top:-0.7em; }
.hero__tab .l{
  font-family:var(--display); font-weight:500;
  font-size:10.5px; letter-spacing:0.2em; text-transform:uppercase;
  color:rgba(255,255,255,0.62);
}

/* =========================================================
   PROOF BAND
   ========================================================= */
.proof{
  border-block:1px solid var(--line);
  background:var(--paper-2);
}
.proof__in{
  display:grid; grid-template-columns:repeat(4,1fr);
}
.proof__cell{
  padding:clamp(32px,4vw,54px) clamp(20px,2.4vw,40px);
  border-right:1px solid var(--line);
  display:flex; flex-direction:column; gap:10px;
}
.proof__cell:last-child{ border-right:0; }
.proof__cell .v{
  font-family:var(--display); font-weight:700;
  font-size:clamp(44px,4.6vw,68px); line-height:0.92; letter-spacing:-0.045em;
}
.proof__cell .v sup{ font-size:0.4em; color:var(--orange); top:-1.2em; margin-left:1px; }
.proof__cell .l{
  font-family:var(--display); font-weight:500;
  font-size:12px; letter-spacing:0.18em; text-transform:uppercase;
  color:var(--muted);
}

/* =========================================================
   SECTION HEADER (shared)
   ========================================================= */
.shead{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:clamp(20px,3vw,44px);
  align-items:start;
  margin-bottom:clamp(48px,6vw,88px);
}
.shead__tag{ padding-top:10px; }
.shead h2{
  font-family:var(--display);
  font-weight:700;
  font-size:clamp(36px,5vw,76px);
  line-height:0.96;
  letter-spacing:-0.035em;
  text-wrap:balance;
}
.shead h2 .ital{ font-family:var(--display); }
.shead__sub{
  grid-column:2;
  margin-top:18px;
  font-family:var(--display);
  font-weight:400;
  font-size:clamp(19px,1.35vw,22px);
  line-height:1.5;
  color:var(--ink-soft);
  max-width:46ch;
}
.shead__sub b{ color:var(--ink); font-weight:600; }

/* =========================================================
   DIAGNÓSTICO — techo invisible
   ========================================================= */
.diag{ background:var(--paper); }
.diag__grid{
  display:grid;
  grid-template-columns:1fr 1.05fr;
  gap:clamp(28px,4vw,72px);
  align-items:stretch;
}
.chart{
  background:var(--card);
  border:1px solid var(--line);
  padding:clamp(26px,3vw,44px);
  display:flex; flex-direction:column;
}
.chart__head{
  display:flex; align-items:center; justify-content:space-between;
  padding-bottom:18px; margin-bottom:24px;
  border-bottom:1px solid var(--line);
}
.chart__head .t{ font-family:var(--display); font-weight:600; font-size:16px; letter-spacing:-0.01em; }
.chart__head .tag{
  font-family:var(--display); font-weight:600;
  font-size:11px; letter-spacing:0.18em; text-transform:uppercase;
  color:var(--orange);
  border:1px solid var(--orange); border-radius:999px;
  padding:5px 11px;
}
.chart__viz{ position:relative; flex:1; min-height:320px; }
.chart__viz svg{ width:100%; height:100%; }
.chart__lab{
  position:absolute;
  font-family:var(--display); font-weight:500;
  font-size:11px; letter-spacing:0.16em; text-transform:uppercase;
  background:var(--card); padding:5px 10px; border:1px solid var(--line);
  color:var(--ink-soft);
}
.chart__lab.techo{ top:24%; right:8px; color:var(--orange); border-color:var(--orange); }
.chart__lab.now{ bottom:46px; left:8px; }
.chart__lab.pot{ top:8px; left:8px; color:var(--muted); }
.chart__legend{
  display:flex; gap:26px; flex-wrap:wrap;
  margin-top:24px; padding-top:20px; border-top:1px solid var(--line);
}
.chart__legend .it{
  font-family:var(--display); font-weight:500;
  font-size:12px; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--ink-soft); display:flex; align-items:center; gap:10px;
}
.chart__legend .sw{ width:18px; height:3px; background:var(--orange); border-radius:2px; }
.chart__legend .it.ghost .sw{ background:repeating-linear-gradient(90deg,var(--orange) 0 3px,transparent 3px 7px); }
.chart__legend .it.dark .sw{ background:var(--ink); }

/* verdict */
.verdict{
  background:var(--dark); color:var(--paper);
  padding:clamp(30px,3.4vw,52px);
  display:flex; flex-direction:column; gap:clamp(24px,3vw,38px);
  position:relative; overflow:hidden;
}
.verdict__glow{
  position:absolute; inset:auto -12% -30% auto; width:300px; height:300px;
  background:radial-gradient(circle,var(--orange-glow),transparent 62%); pointer-events:none;
}
.verdict .lbl{
  font-family:var(--display); font-weight:500;
  font-size:11.5px; letter-spacing:0.22em; text-transform:uppercase;
  color:rgba(255,255,255,0.55); position:relative; z-index:1;
}
.verdict__nots{ display:flex; flex-direction:column; gap:12px; position:relative; z-index:1; }
.verdict__nots .r{
  font-family:var(--display); font-weight:600;
  font-size:clamp(19px,1.7vw,25px); letter-spacing:-0.015em;
  display:flex; align-items:baseline; gap:16px;
  padding-bottom:12px; border-bottom:1px solid rgba(255,255,255,0.12);
}
.verdict__nots .r .n{ color:var(--orange); font-size:13px; min-width:18px; }
.verdict__nots .r s{ text-decoration-color:var(--orange); text-decoration-thickness:3px; opacity:0.5; }
.verdict__truth{
  font-family:var(--display); font-weight:600;
  font-size:clamp(21px,1.9vw,28px); line-height:1.2; letter-spacing:-0.018em;
  position:relative; z-index:1;
}
.verdict__truth .accent{ color:var(--orange); }
.verdict__truth em{ font-style:italic; font-weight:500; }

/* =========================================================
   5 PODERES — radar pentagon (centerpiece)
   ========================================================= */
.poderes{
  background:var(--dark); color:var(--paper);
  position:relative; overflow:hidden;
}
.poderes::before{
  content:""; position:absolute; inset:-10% auto auto -8%;
  width:55%; height:55%;
  background:radial-gradient(circle,rgba(232,71,31,0.13),transparent 62%); pointer-events:none;
}
.poderes .shead h2{ color:var(--paper); }
.poderes .shead__sub{ color:rgba(255,255,255,0.7); }
.poderes .shead__sub b{ color:var(--paper); }
.poderes .idx{ color:rgba(255,255,255,0.55); }

.radar{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:clamp(36px,5vw,88px);
  align-items:center;
}
.pentagon{ position:relative; width:100%; aspect-ratio:1; max-width:640px; margin:0 auto; }
.pentagon svg{ width:100%; height:100%; overflow:visible; }
.pentagon .ring{ fill:none; stroke:rgba(255,255,255,0.10); stroke-width:1; }
.pentagon .spoke{ stroke:rgba(255,255,255,0.16); stroke-width:1; stroke-dasharray:2 5; }
.pentagon .area{ fill:var(--orange); fill-opacity:0.14; stroke:var(--orange); stroke-width:2; stroke-linejoin:round; }
.pentagon .node{ fill:var(--orange); stroke:var(--dark); stroke-width:5; }
.pentagon .nnum{ font-family:var(--display); font-weight:700; font-size:13px; fill:#fff; text-anchor:middle; dominant-baseline:central; }
.pentagon .lab{ font-family:var(--display); font-weight:600; font-size:16px; fill:var(--paper); letter-spacing:-0.01em; }
.pentagon .lab .sm{ font-family:var(--display); font-weight:500; font-size:10px; letter-spacing:0.2em; fill:rgba(255,255,255,0.45); }
.pentagon .cmark{ font-family:var(--display); font-weight:500; font-size:10.5px; letter-spacing:0.24em; fill:rgba(255,255,255,0.42); text-anchor:middle; }
.pentagon .cnum{ font-family:var(--display); font-weight:800; font-size:72px; fill:var(--orange); text-anchor:middle; dominant-baseline:central; letter-spacing:-0.04em; }
.pentagon .csub{ font-family:var(--display); font-weight:500; font-size:14px; fill:var(--paper); text-anchor:middle; letter-spacing:0.02em; }

.radar__list{ display:grid; gap:0; }
.radar__list .row{
  display:grid; grid-template-columns:auto 1fr auto; gap:18px; align-items:center;
  padding-block:18px; border-bottom:1px solid rgba(255,255,255,0.12);
  cursor:default; transition:padding-left .35s ease;
}
.radar__list .row:first-child{ border-top:1px solid rgba(255,255,255,0.12); }
.radar__list .row:hover{ padding-left:10px; }
.radar__list .row .n{
  width:34px; height:34px; border-radius:50%;
  border:1.5px solid var(--orange); color:var(--orange);
  display:grid; place-items:center;
  font-family:var(--display); font-weight:700; font-size:14px;
  transition:background .35s ease, color .35s ease;
}
.radar__list .row:hover .n{ background:var(--orange); color:#fff; }
.radar__list .row .nm{ font-family:var(--display); font-weight:600; font-size:clamp(17px,1.4vw,21px); letter-spacing:-0.01em; color:var(--paper); }
.radar__list .row .nm span{ display:block; font-weight:400; font-size:13px; color:rgba(255,255,255,0.55); letter-spacing:0; margin-top:2px; }
.radar__list .row .ar{ color:rgba(255,255,255,0.3); font-size:18px; transition:color .3s ease, transform .3s ease; }
.radar__list .row:hover .ar{ color:var(--orange); transform:translateX(4px); }

.poderes__foot{
  margin-top:clamp(48px,5vw,80px); padding-top:34px;
  border-top:1px solid rgba(255,255,255,0.14);
  display:flex; align-items:baseline; gap:clamp(20px,3vw,48px); flex-wrap:wrap;
}
.poderes__foot .lbl{ font-family:var(--display); font-weight:500; font-size:12px; letter-spacing:0.2em; text-transform:uppercase; color:rgba(255,255,255,0.5); }
.poderes__foot .stmt{
  font-family:var(--display); font-weight:700;
  font-size:clamp(22px,2.2vw,34px); line-height:1.12; letter-spacing:-0.02em; flex:1; min-width:280px;
}
.poderes__foot .stmt .accent{ color:var(--orange); }

/* =========================================================
   ANTES / DESPUÉS
   ========================================================= */
.shift{ background:var(--paper); }
.shift__grid{
  display:grid; grid-template-columns:1fr auto 1fr;
  gap:clamp(18px,2.4vw,40px); align-items:stretch;
}
.col{
  padding:clamp(28px,3vw,46px);
  display:flex; flex-direction:column;
}
.col--before{ background:var(--paper-2); border:1px solid var(--line); }
.col--after{ background:var(--dark); color:var(--paper); position:relative; overflow:hidden; }
.col--after .glow{ position:absolute; inset:-10% -10% auto auto; width:300px; height:300px; background:radial-gradient(circle,var(--orange-glow),transparent 60%); }
.col__badge{
  align-self:flex-start;
  font-family:var(--display); font-weight:600;
  font-size:11.5px; letter-spacing:0.2em; text-transform:uppercase;
  padding:8px 14px; border-radius:999px; margin-bottom:26px;
  position:relative; z-index:1;
}
.col--before .col__badge{ background:var(--card); color:var(--muted); border:1px solid var(--line); }
.col--after .col__badge{ background:var(--orange); color:#fff; }
.col h3{
  font-family:var(--display); font-weight:700;
  font-size:clamp(22px,2vw,30px); line-height:1.06; letter-spacing:-0.022em;
  margin-bottom:26px; text-wrap:balance; position:relative; z-index:1;
}
.col--after h3{ color:var(--paper); }
.col ul{ list-style:none; padding:0; margin:0; display:grid; gap:0; position:relative; z-index:1; }
.col li{
  display:grid; grid-template-columns:26px 1fr; gap:16px; align-items:center;
  padding-block:17px; border-bottom:1px solid var(--line);
  font-family:var(--display); font-weight:500; font-size:15.5px; letter-spacing:-0.005em; line-height:1.35;
}
.col--after li{ border-bottom-color:rgba(255,255,255,0.13); color:rgba(255,255,255,0.9); }
.col li:last-child{ border-bottom:0; }
.col li .g{ font-family:var(--display); font-weight:700; font-size:17px; }
.col--before li{ color:var(--muted); }
.col--before li .g{ color:var(--faint); }
.col--after li .g{ color:var(--orange); }

.shift__arrow{ display:grid; place-items:center; align-self:center; }
.shift__arrow .disc{
  width:66px; height:66px; border-radius:50%;
  background:var(--orange); color:#fff; display:grid; place-items:center;
  box-shadow:0 18px 36px -16px var(--orange-glow);
}
.shift__arrow .disc svg{ width:26px; height:26px; }
.shift__arrow .cap{
  margin-top:14px;
  font-family:var(--display); font-weight:600;
  font-size:11px; letter-spacing:0.18em; text-transform:uppercase; color:var(--orange); text-align:center;
}

/* =========================================================
   PROCESO — timeline
   ========================================================= */
.proceso{ background:var(--paper-2); border-block:1px solid var(--line); }
.timeline{ position:relative; display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.timeline::before{
  content:""; position:absolute; top:32px; left:6%; right:6%; height:1.5px;
  background:repeating-linear-gradient(90deg,var(--faint) 0 5px,transparent 5px 11px); z-index:0;
}
.step{
  background:var(--card); border:1px solid var(--line);
  padding:clamp(24px,2.6vw,34px);
  display:flex; flex-direction:column; gap:16px;
  min-height:230px; position:relative; z-index:1;
  transition:transform .35s ease, box-shadow .35s ease;
}
.step:hover{ transform:translateY(-4px); box-shadow:0 22px 40px -26px rgba(11,67,90,.30); }
.step .dot{
  width:64px; height:64px; border-radius:50%;
  background:var(--orange); color:#fff;
  display:grid; place-items:center;
  font-family:var(--display); font-weight:700; font-size:24px; letter-spacing:-0.03em;
  box-shadow:0 0 0 7px var(--paper-2);
  margin-top:-4px;
}
.step .ph{ font-family:var(--display); font-weight:600; font-size:11px; letter-spacing:0.18em; text-transform:uppercase; color:var(--orange); }
.step h4{ font-family:var(--display); font-weight:700; font-size:clamp(18px,1.5vw,22px); letter-spacing:-0.012em; line-height:1.14; color:var(--ink); }
.step p{ font-size:17px; line-height:1.5; color:var(--ink-soft); margin:0; margin-top:auto; }

/* =========================================================
   CIERRE / MANIFIESTO
   ========================================================= */
.close{ background:var(--dark); color:var(--paper); position:relative; overflow:hidden; }
.close__wave{
  position:absolute; inset:auto -8% -34% -8%; height:78%; opacity:0.12; pointer-events:none; color:#fff;
}
.close__in{ position:relative; z-index:2; display:grid; grid-template-columns:1.2fr 0.8fr; gap:clamp(36px,5vw,88px); align-items:center; }
.close h2{
  font-family:var(--display); font-weight:700;
  font-size:clamp(40px,5.6vw,96px); line-height:0.92; letter-spacing:-0.04em; text-wrap:balance;
}
.close h2 .accent{ color:var(--orange); }
.close h2 .ital{ font-style:italic; font-weight:500; }
.close__media{ position:relative; }
.close__media .close__img{ width:100%; height:auto; aspect-ratio:3/4; object-fit:cover; display:block; }
.close__media .frame{ position:absolute; inset:-10px; border:1px solid rgba(255,255,255,0.18); pointer-events:none; }
.close__cta{
  margin-top:clamp(36px,4vw,56px);
  display:flex; flex-wrap:wrap; align-items:center; gap:20px;
  padding-top:clamp(30px,3vw,44px); border-top:1px solid rgba(255,255,255,0.16);
}
.close__cta .q{
  font-family:var(--display); font-weight:500; font-size:clamp(19px,1.35vw,22px);
  color:rgba(255,255,255,0.7); max-width:30ch; line-height:1.4;
}
.close__cta .note{ color:rgba(255,255,255,0.5); }

/* =========================================================
   FOOTER
   ========================================================= */
.foot{ background:var(--dark-2); color:rgba(255,255,255,0.7); padding-block:clamp(48px,5vw,76px) 30px; }
.foot__top{
  display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:clamp(24px,3vw,48px);
  padding-bottom:46px; border-bottom:1px solid rgba(255,255,255,0.13);
}
.foot .brand svg{ width:auto; height:84px; color:rgba(255,255,255,0.92); }
.foot .brand .mk{ fill:var(--orange); }
.foot p{ max-width:36ch; margin-top:18px; font-size:17px; line-height:1.55; }
.foot h4{ font-family:var(--display); font-weight:500; font-size:11.5px; letter-spacing:0.2em; text-transform:uppercase; color:rgba(255,255,255,0.45); margin-bottom:16px; }
.foot ul{ list-style:none; padding:0; margin:0; display:grid; gap:11px; }
.foot a{ color:rgba(255,255,255,0.82); font-size:15px; }
.foot a:hover{ color:var(--orange); }
.foot .tag{ font-family:var(--display); font-weight:500; font-size:11px; letter-spacing:0.14em; text-transform:uppercase; color:rgba(255,255,255,0.42); }
.foot__bottom{
  margin-top:28px; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap;
  font-family:var(--display); font-weight:500; font-size:11px; letter-spacing:0.16em; text-transform:uppercase; color:rgba(255,255,255,0.4);
}

/* =========================================================
   FLOATING CTA
   ========================================================= */
.fab{
  position:fixed; bottom:26px; right:26px; z-index:40;
  background:var(--ink); color:var(--paper);
  padding:11px 11px 11px 22px;
  border-radius:999px;
  display:flex; align-items:center; gap:16px;
  box-shadow:0 26px 60px -22px rgba(0,0,0,.5);
  transform:translateY(140%); opacity:0;
  transition:transform .4s cubic-bezier(.2,.7,.2,1), opacity .4s ease;
}
.fab.show{ transform:none; opacity:1; }
.fab__pip{ width:8px; height:8px; border-radius:50%; background:var(--orange); }
.fab__t{ font-family:var(--display); font-weight:500; font-size:12px; letter-spacing:0.12em; text-transform:uppercase; color:rgba(255,255,255,0.72); }
.fab .btn{ padding:12px 20px; font-size:12.5px; background:var(--orange); border-color:var(--orange); color:#fff; }
.fab .btn:hover{ background:#fff; color:var(--ink); border-color:#fff; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1080px){
  .hero__grid{ grid-template-columns:1fr; }
  .hero__media{ width:min(440px,100%); margin-inline:auto; }
  .hero__tab{ left:-16px; }
  .proof__in{ grid-template-columns:1fr 1fr; }
  .proof__cell:nth-child(2){ border-right:0; }
  .proof__cell:nth-child(-n+2){ border-bottom:1px solid var(--line); }
  .shead{ grid-template-columns:1fr; gap:14px; }
  .shead__sub{ grid-column:1; }
  .diag__grid{ grid-template-columns:1fr; }
  .radar{ grid-template-columns:1fr; }
  .shift__grid{ grid-template-columns:1fr; }
  .shift__arrow{ transform:rotate(90deg); padding-block:8px; }
  .timeline{ grid-template-columns:1fr 1fr; }
  .timeline::before{ display:none; }
  .close__in{ grid-template-columns:1fr; }
  .close__media{ width:min(400px,100%); }
  .foot__top{ grid-template-columns:1fr 1fr; }
}
@media (max-width:620px){
  body{ font-size:16px; }
  .nav a:not(.nav__cta){ display:none; }
  .hero__foot{ grid-template-columns:1fr; }
  .hero__actions{ align-items:stretch; }
  .hero__actions .row{ justify-content:stretch; }
  .hero__actions .row .btn{ flex:1; justify-content:center; }
  .proof__in{ grid-template-columns:1fr; }
  .proof__cell{ border-right:0; border-bottom:1px solid var(--line); }
  .timeline{ grid-template-columns:1fr; }
  .foot__top{ grid-template-columns:1fr; }
  .fab{ left:14px; right:14px; bottom:14px; justify-content:space-between; }
  .fab__t{ display:none; }
}

/* =========================================================
   MODAL — Aplicar
   ========================================================= */
.modal{
  position:fixed; inset:0; z-index:120;
  display:grid; place-items:center;
  padding:clamp(14px,3vw,40px);
  opacity:0; visibility:hidden;
  transition:opacity .35s ease, visibility .35s ease;
}
.modal.open{ opacity:1; visibility:visible; }
.modal__scrim{
  position:absolute; inset:0;
  background:color-mix(in srgb, var(--dark) 62%, transparent);
  backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
}
.modal__card{
  position:relative; z-index:1;
  width:min(960px,100%);
  max-height:calc(100vh - 28px);
  display:grid; grid-template-columns:0.82fr 1fr;
  background:var(--card);
  border-radius:8px; overflow:hidden;
  box-shadow:0 40px 120px -40px rgba(11,67,90,0.55);
  transform:translateY(18px) scale(.985);
  transition:transform .4s cubic-bezier(.16,.7,.2,1);
}
.modal.open .modal__card{ transform:none; }
.modal__x{
  position:absolute; top:14px; right:14px; z-index:3;
  width:38px; height:38px; display:grid; place-items:center;
  border:none; border-radius:50%; cursor:pointer;
  background:color-mix(in srgb, var(--card) 70%, transparent);
  color:var(--ink); transition:background .25s ease, transform .25s ease;
}
.modal__x:hover{ background:var(--paper-3); transform:rotate(90deg); }
.modal__x svg{ width:18px; height:18px; }

/* aside */
.modal__aside{
  background:var(--dark); color:var(--paper);
  padding:clamp(26px,2.6vw,40px);
  display:flex; flex-direction:column; gap:clamp(28px,4vw,52px);
  position:relative; overflow:hidden;
}
.modal__aside::after{
  content:""; position:absolute; right:-30%; bottom:-30%;
  width:340px; height:340px; pointer-events:none;
  background:radial-gradient(circle, rgba(232,71,31,0.18), transparent 62%);
}
.modal__brand{ width:190px; color:var(--paper); position:relative; z-index:1; }
.modal__brand svg{ width:100%; height:auto; }
.modal__aside-body{ position:relative; z-index:1; margin-top:auto; }
.modal__kick{
  font-family:var(--display); font-weight:600; font-size:12px;
  letter-spacing:0.22em; text-transform:uppercase;
  color:rgba(255,255,255,0.7);
  display:inline-flex; align-items:center; gap:10px; margin-bottom:18px;
}
.modal__kick .pip{ width:8px; height:8px; border-radius:50%; background:var(--orange); box-shadow:0 0 0 4px var(--orange-glow); }
.modal__big{
  font-family:var(--display); font-weight:600;
  font-size:clamp(24px,2.3vw,32px); line-height:1.08; letter-spacing:-0.02em;
  color:var(--paper); margin:0 0 24px;
}
.modal__pts{ list-style:none; padding:0; margin:0; display:grid; gap:12px; }
.modal__pts li{
  font-family:var(--body); font-size:15px; color:rgba(255,255,255,0.8);
  padding-left:24px; position:relative;
}
.modal__pts li::before{
  content:""; position:absolute; left:0; top:0.42em;
  width:11px; height:6px; border-left:2px solid var(--orange); border-bottom:2px solid var(--orange);
  transform:rotate(-45deg);
}

/* form */
.modal__form{
  padding:clamp(28px,2.8vw,46px);
  display:flex; flex-direction:column;
  overflow-y:auto; position:relative;
}
.modal__title{
  font-family:var(--display); font-weight:700;
  font-size:clamp(26px,2.4vw,34px); letter-spacing:-0.03em; line-height:1.02;
  color:var(--ink); margin:0 0 8px;
}
.modal__sub{
  font-family:var(--display); font-weight:400;
  font-size:16px; color:var(--ink-soft); margin:0 0 26px;
}
.f-grid{ display:grid; grid-template-columns:1fr 1fr; gap:14px 16px; }
.field{ display:flex; flex-direction:column; gap:7px; }
.field--full{ grid-column:1 / -1; }
.field > span{
  font-family:var(--display); font-weight:500; font-size:12px;
  letter-spacing:0.08em; text-transform:uppercase; color:var(--ink-soft);
}
.field input,
.select select{
  width:100%; font-family:var(--body); font-size:16px; color:var(--ink);
  background:var(--paper); border:1.5px solid var(--line);
  border-radius:5px; padding:13px 15px; outline:none;
  transition:border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.field input::placeholder{ color:var(--faint); }
.field input:focus,
.select select:focus{
  border-color:var(--ink);
  background:var(--card);
  box-shadow:0 0 0 4px color-mix(in srgb, var(--ink) 12%, transparent);
}
.select{ position:relative; }
.select select{ appearance:none; -webkit-appearance:none; cursor:pointer; padding-right:42px; }
.select svg{
  position:absolute; right:16px; top:50%; transform:translateY(-50%);
  width:14px; height:8px; color:var(--ink-soft); pointer-events:none;
}
.modal__submit{ margin-top:24px; width:100%; justify-content:center; }
.modal__fine{
  font-family:var(--body); font-size:12.5px; color:var(--muted);
  text-align:center; margin:14px 0 0;
}

/* success state */
.modal__done{
  position:absolute; inset:0; z-index:5;
  background:var(--card);
  display:none; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding:clamp(28px,4vw,52px); gap:8px;
}
.modal__form.sent .modal__done{ display:flex; animation:doneIn .45s cubic-bezier(.16,.7,.2,1) both; }
@keyframes doneIn{ from{ opacity:0; transform:translateY(14px); } to{ opacity:1; transform:none; } }
.modal__check{ color:var(--orange); margin-bottom:10px; }
.modal__check svg{ width:62px; height:62px; }
.modal__done h3{
  font-family:var(--display); font-weight:700; font-size:clamp(24px,2.2vw,30px);
  letter-spacing:-0.02em; color:var(--ink); margin:0;
}
.modal__done p{
  font-family:var(--body); font-size:16px; color:var(--ink-soft);
  max-width:34ch; line-height:1.55; margin:6px 0 20px;
}
.modal__done [data-name]{ color:var(--ink); font-weight:600; }

@media (max-width:760px){
  .modal__card{ grid-template-columns:1fr; }
  .modal__aside{ display:none; }
}
@media (max-width:480px){
  .f-grid{ grid-template-columns:1fr; }
}
