/* =============================================================
   1. Tokens — paleta de marca: coral #EF6561 · turquesa #0CC0DF · blanco
   ============================================================= */
:root {
  --coral: #EF6561;
  --coral-soft: #F48A86;
  --coral-text: #C23B38;     /* coral oscurecido para texto pequeño sobre blanco (AA) */
  --cyan: #0CC0DF;
  --cyan-soft: #7EDDEE;
  --cyan-text: #077A8E;      /* turquesa oscurecido para texto pequeño sobre blanco (AA) */
  --white: #FFFFFF;
  --mist: #F2FAFC;           /* blanco con un toque turquesa, para alternar secciones */
  --ink: #0F2A30;            /* neutro oscuro derivado del turquesa (textos y fondos oscuros) */
  --ink-2: #16363D;
  --line: rgba(15, 42, 48, .12);
  --muted: #56707A;
  --blue: #2563EB;           /* color de la portada actual del ebook */
  --navy: #0F172A;

  --display: "Bebas Neue", "Oswald", Impact, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --gutter: clamp(1rem, 4vw, 2.5rem);
  --maxw: 1240px;
  --radius: 22px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; }
::selection { background: var(--cyan); color: var(--ink); }
:focus-visible { outline: 2px solid var(--cyan-text); outline-offset: 3px; border-radius: 6px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .6rem 1rem; background: var(--ink); color: var(--white); border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }
.section { padding-block: clamp(4.5rem, 10vw, 8.5rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--cyan-text);
}
.eyebrow-light { color: var(--cyan); }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px rgba(239,101,97,.2); }

.section-title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.6rem, 6.4vw, 5rem); letter-spacing: .005em; line-height: .95;
  margin-top: .9rem;
}
.section-title em { font-size: .86em; letter-spacing: -.01em; color: var(--coral); }
.section-title-sm { font-size: clamp(2.3rem, 5vw, 3.8rem); }
.section-head { max-width: 820px; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.5rem; border-radius: 999px;
  font-weight: 800; font-size: .98rem; letter-spacing: .01em;
  transition: transform .4s var(--ease-out), background-color .3s, color .3s, box-shadow .4s var(--ease-out), border-color .3s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn span[aria-hidden] { transition: transform .4s var(--ease-out); }
.btn:hover span[aria-hidden] { transform: translateX(4px); }
.btn-coral, .btn-orange { background: var(--coral); color: var(--ink); box-shadow: 0 14px 34px -14px rgba(239,101,97,.85); }
.btn-coral:hover, .btn-orange:hover { background: var(--coral-soft); }
.btn-ink { background: var(--ink); color: var(--white); box-shadow: 0 12px 30px -14px rgba(15,42,48,.7); }
.btn-ink:hover { background: var(--ink-2); }
.btn-ghost { border: 1.5px solid var(--ink); color: var(--ink); }
.btn-ghost:hover { border-color: var(--cyan); background: var(--cyan); }
.btn-lg { padding: 1.15rem 2rem; font-size: 1.05rem; }

/* =============================================================
   5. Nav
   ============================================================= */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 50; transition: background-color .4s, box-shadow .4s; }
.nav.is-scrolled {
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: .7rem; font-weight: 800; }
.nav-logo-mark {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: var(--coral); color: var(--white); font-family: var(--display); font-size: 1.35rem; letter-spacing: .04em;
  box-shadow: inset 0 0 0 3px var(--white), 0 0 0 2px var(--cyan);
}
.nav-logo-name { font-size: .98rem; letter-spacing: .02em; }
.nav-links { display: none; }
.nav-toggle { display: grid; gap: 6px; width: 44px; height: 44px; place-content: center; border-radius: 50%; background: var(--ink); }
.nav-toggle span:not(.sr-only) { display: block; width: 18px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .35s var(--ease-out); }
.nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-4px) rotate(-45deg); }

.nav-links.is-open {
  display: flex; flex-direction: column; gap: .3rem;
  position: absolute; top: 72px; left: var(--gutter); right: var(--gutter);
  padding: 1rem; border-radius: var(--radius);
  background: var(--ink); color: var(--white);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.45);
}
.nav-links.is-open a { padding: .85rem 1rem; border-radius: 12px; font-weight: 600; }
.nav-links.is-open a:hover { background: var(--ink-2); }
.nav-links.is-open .nav-cta { background: var(--coral); color: var(--ink); text-align: center; margin-top: .3rem; }

/* =============================================================
   6. Hero
   ============================================================= */
.hero { position: relative; overflow: hidden; isolation: isolate; background: var(--white); padding: 96px 0 3.5rem; }
.hero-blob { position: absolute; z-index: -1; border-radius: 50%; filter: blur(10px); pointer-events: none; }
.hero-blob-a { width: 70vmax; aspect-ratio: 1; right: -30vmax; top: -25vmax; background: radial-gradient(circle, rgba(239,101,97,.20), transparent 62%); }
.hero-blob-b { width: 55vmax; aspect-ratio: 1; left: -28vmax; bottom: -30vmax; background: radial-gradient(circle, rgba(12,192,223,.18), transparent 62%); }

.hero-inner { display: grid; gap: 2rem; }
.hero-copy { position: relative; z-index: 2; }
.hero-eyebrow { color: var(--ink); }
.hero-name {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(4.6rem, 22vw, 11.5rem); line-height: .82; letter-spacing: .005em;
  margin-top: 1rem;
}
.hero-name-line { display: block; overflow: hidden; padding-bottom: .04em; }
.hero-name-line > span { display: inline-block; animation: rise 1.1s var(--ease-out) both; }
.hero-name-accent > span { color: var(--coral); animation-delay: .12s; }
.hero-roles {
  margin-top: 1.2rem; font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  max-width: 34rem; line-height: 1.8; color: var(--ink);
  animation: fadeUp 1s .35s var(--ease-out) both;
}
.hero-roles i { font-style: normal; color: var(--cyan); padding-inline: .15rem; }
.hero-lede {
  margin-top: 1.1rem; font-size: clamp(1.1rem, 2.3vw, 1.35rem); line-height: 1.5; max-width: 32rem; font-weight: 500; color: #24444B;
  animation: fadeUp 1s .45s var(--ease-out) both;
}
.hero-lede em { font-size: 1.12em; color: var(--coral-text); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; animation: fadeUp 1s .55s var(--ease-out) both; }

/* Foto en círculo, como en su CV */
.hero-photo {
  position: relative; order: -1; justify-self: center;
  width: min(66vw, 300px); aspect-ratio: 1; margin-top: .5rem;
  animation: pop 1.2s .15s var(--ease-out) both;
}
.hero-disc {
  position: absolute; inset: 0; border-radius: 50%; overflow: hidden;
  background: var(--coral);
  box-shadow: 0 0 0 6px var(--white), 0 0 0 8px var(--coral), 0 40px 80px -30px rgba(239,101,97,.7);
}
.hero-disc img { width: 100%; height: 100%; object-fit: cover; }
.hero-ring {
  position: absolute; inset: -9%; width: 118%; height: 118%; max-width: none;
  fill: none; stroke: var(--cyan); stroke-width: 3; stroke-linecap: round;
  stroke-dasharray: 700 1122;
  animation: spin 24s linear infinite;
}
.hero-orbit { position: absolute; inset: -4%; animation: spin 14s linear infinite reverse; pointer-events: none; }
.hero-orbit i { position: absolute; top: 50%; right: -7px; width: 14px; height: 14px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(12,192,223,.2); }
.hero-badge {
  position: absolute; left: -6%; bottom: 2%;
  display: flex; align-items: center; gap: .7rem; max-width: 14rem;
  padding: .7rem 1rem; border-radius: 18px;
  background: var(--ink); color: var(--white);
  box-shadow: 0 20px 40px -18px rgba(15,42,48,.6);
  animation: fadeUp 1s .9s var(--ease-out) both;
}
.hero-badge strong { font-family: var(--display); font-size: 2.3rem; line-height: 1; color: var(--cyan); font-weight: 400; }
.hero-badge span { font-size: .74rem; line-height: 1.35; font-weight: 700; }

/* Ticker */
.ticker { background: var(--coral); color: var(--white); overflow: hidden; padding-block: 1rem; }
.ticker-track { display: flex; width: max-content; gap: 1.6rem; align-items: center; animation: marquee 38s linear infinite; }
.ticker-track span { font-family: var(--display); font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: .04em; white-space: nowrap; color: var(--white); }
.ticker-track b { color: var(--ink); font-size: 1rem; }

/* =============================================================
   7. Stats
   ============================================================= */
.stats { background: var(--ink); color: var(--white); padding-block: clamp(3rem, 7vw, 5.5rem); }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.2rem 1.4rem; }
.stat { position: relative; padding-top: 1.2rem; }
.stat::before { content: ""; position: absolute; top: 0; left: 0; width: 34px; height: 3px; border-radius: 3px; background: var(--coral); }
.stat-num { font-family: var(--display); font-size: clamp(3rem, 9vw, 5.6rem); line-height: .9; color: var(--cyan); font-variant-numeric: tabular-nums; }
.stat-label { margin-top: .6rem; font-size: .9rem; color: rgba(255,255,255,.75); max-width: 16rem; line-height: 1.45; }

/* =============================================================
   8. About
   ============================================================= */
.about-grid { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.about-photo {
  position: relative; border-radius: 200px 200px var(--radius) var(--radius); overflow: hidden;
  background: var(--coral); aspect-ratio: 4 / 5; width: calc(100% - 16px); max-width: 480px;
  box-shadow: 16px 16px 0 var(--cyan);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; }
.about-copy > p:not(.eyebrow) { margin-top: 1.1rem; font-size: 1.08rem; color: #2E4A51; max-width: 38rem; }
.about-copy .section-title { margin-bottom: .6rem; }
.pillars { display: grid; gap: .8rem; margin-top: 2.4rem; }
.pillars li {
  display: flex; gap: 1.1rem; padding: 1.3rem 1.2rem; border-radius: 18px;
  background: var(--mist); border: 1px solid rgba(12,192,223,.18);
  transition: transform .5s var(--ease-out), border-color .3s;
}
.pillars li:hover { transform: translateY(-3px); border-color: var(--cyan); }
.pillar-n { font-family: var(--display); font-size: 1.6rem; color: var(--coral); line-height: 1.05; min-width: 2rem; }
.pillars h3 { font-size: 1.05rem; font-weight: 800; letter-spacing: -.01em; }
.pillars p { margin-top: .3rem; font-size: .95rem; color: var(--muted); }

/* =============================================================
   9. Ebook
   ============================================================= */
.ebook { background: var(--ink); color: var(--white); position: relative; overflow: hidden; }
.ebook::before, .ebook::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; aspect-ratio: 1; }
.ebook::before { width: 900px; left: -320px; top: 140px; background: radial-gradient(circle, rgba(239,101,97,.26) 0%, transparent 62%); }
.ebook::after { width: 800px; right: -300px; bottom: -200px; background: radial-gradient(circle, rgba(12,192,223,.20) 0%, transparent 62%); }
.ebook .container { position: relative; z-index: 1; }
.ebook-head { max-width: 980px; }
.ebook-question {
  margin-top: 1rem; font-family: var(--display); font-weight: 400;
  font-size: clamp(2.4rem, 6.2vw, 4.8rem); line-height: .98;
}
.ebook-question em { color: var(--coral); font-size: .84em; }

.ebook-grid { display: grid; gap: clamp(3rem, 6vw, 5rem); align-items: center; margin-top: clamp(3rem, 7vw, 5rem); }

/* Book mockup (CSS, reproduce la portada actual del ebook) */
.book-stage { position: relative; perspective: 1600px; display: grid; place-items: center; padding-block: 1rem 2.5rem; }
.book-stage::before {
  content: ""; position: absolute; width: min(86vw, 440px); aspect-ratio: 1; border-radius: 50%;
  border: 2px dashed rgba(12,192,223,.45); animation: spin 50s linear infinite;
}
.book {
  --rx: 4deg; --ry: -22deg;
  position: relative; width: min(66vw, 300px); aspect-ratio: 1489 / 2107;
  transform-style: preserve-3d; transform: rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform .8s var(--ease-out);
}
.book-cover {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between;
  padding: 9% 9% 7%; background: #fff; color: var(--navy); border-radius: 3px 8px 8px 3px;
  box-shadow: inset 6px 0 10px -6px rgba(0,0,0,.35), 0 0 0 1px rgba(0,0,0,.04);
  transform: translateZ(14px); overflow: hidden;
}
.book-cover::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(255,255,255,0) 40%, rgba(255,255,255,.55) 50%, rgba(255,255,255,0) 60%);
  transform: translateX(-60%); transition: transform 1.2s var(--ease-out); pointer-events: none;
}
.book-stage:hover .book-cover::after { transform: translateX(60%); }
.book-author { font-size: .62rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #5b6b85; }
.book-kicker { font-size: .56rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); }
.book-title { margin-top: .5rem; font-family: var(--sans); font-weight: 800; font-size: clamp(1.5rem, 6.6vw, 2.1rem); line-height: .98; letter-spacing: -.03em; text-transform: uppercase; }
.book-title span { color: var(--blue); }
.book-sub { margin-top: .7rem; font-size: .64rem; line-height: 1.4; font-weight: 700; color: var(--blue); max-width: 92%; }
.book-foot { font-size: .5rem; letter-spacing: .12em; text-transform: uppercase; color: #5b6b85; border-top: 1px solid #e3e8ef; padding-top: .6rem; }
.book-spine {
  position: absolute; top: 0; bottom: 0; left: 0; width: 28px;
  background: linear-gradient(90deg, #cfd6e2, #fff 60%, #e7ebf1);
  transform: rotateY(-90deg) translateX(-14px); transform-origin: left center;
}
.book-pages {
  position: absolute; top: 1.5%; bottom: 1.5%; right: 0; width: 26px;
  background: repeating-linear-gradient(90deg, #f3efe9 0 2px, #e2ddd5 2px 3px);
  transform: rotateY(90deg) translateZ(-12px) translateX(13px); transform-origin: right center;
}
.book-shadow {
  position: absolute; bottom: 0; width: min(60vw, 280px); height: 34px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,.6), transparent 70%); filter: blur(6px);
}

.ebook-title { font-family: var(--display); font-weight: 400; font-size: clamp(2.2rem, 4.6vw, 3.4rem); color: var(--coral); line-height: 1; }
.ebook-lede { margin-top: 1rem; font-size: 1.12rem; color: rgba(255,255,255,.85); max-width: 36rem; }
.ebook-lede strong { color: var(--white); }
.ebook-list-title { margin-top: 1.8rem; font-weight: 700; }
.checks { margin-top: .9rem; display: grid; gap: .7rem; }
.checks li { position: relative; padding-left: 2.1rem; color: rgba(255,255,255,.85); }
.checks li::before {
  content: "✓"; position: absolute; left: 0; top: .1rem; width: 1.4rem; height: 1.4rem; border-radius: 50%;
  display: grid; place-items: center; font-size: .75rem; font-weight: 800; background: var(--cyan); color: var(--ink);
}

.buy-card {
  margin-top: 2.2rem; padding: 1.5rem; border-radius: var(--radius);
  background: rgba(255,255,255,.05); border: 1px solid rgba(12,192,223,.3);
  display: grid; gap: 1.1rem;
}
.buy-price { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.buy-amount { font-family: var(--display); font-size: 3.4rem; line-height: 1; color: var(--white); }
.buy-format { font-size: .9rem; color: rgba(255,255,255,.65); }
.buy-note { font-size: .88rem; color: rgba(255,255,255,.62); }
.buy-note[hidden] { display: none; }

.weeks { margin-top: clamp(4rem, 9vw, 6.5rem); }
.weeks-grid { display: grid; gap: 1rem; margin-top: 1.4rem; }
.week {
  position: relative; padding: 1.6rem 1.4rem 1.5rem; border-radius: var(--radius);
  background: var(--ink-2); border: 1px solid rgba(255,255,255,.08);
  transition: transform .5s var(--ease-out), border-color .4s, background-color .4s;
}
.week:hover { transform: translateY(-6px); border-color: var(--cyan); background: #1a3f47; }
.week-n { font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan); }
.week h4 { margin-top: .4rem; font-family: var(--display); font-weight: 400; font-size: 2.6rem; line-height: 1; color: var(--white); }
.week p { margin-top: .5rem; font-size: .95rem; color: rgba(255,255,255,.72); }

.ebook-outcome { display: grid; gap: 1.2rem; margin-top: 1.2rem; }
.outcome-card { padding: 1.8rem; border-radius: var(--radius); background: var(--coral); color: var(--ink); }
.outcome-card .eyebrow { color: var(--ink); }
.outcome-text { margin-top: .7rem; font-size: clamp(1.15rem, 2.4vw, 1.5rem); line-height: 1.4; font-weight: 600; }
.outcome-quote { padding: 1.8rem; border-radius: var(--radius); border: 1px solid rgba(12,192,223,.35); display: flex; align-items: center; }
.outcome-quote p { font-family: var(--serif); font-style: italic; font-size: clamp(1.25rem, 2.6vw, 1.7rem); line-height: 1.3; color: var(--white); }
.outcome-quote p::before { content: "“"; color: var(--cyan); font-size: 1.4em; line-height: 0; vertical-align: -.25em; margin-right: .1em; }

.ebook-final { margin-top: clamp(2.5rem, 6vw, 4rem); text-align: center; display: grid; justify-items: center; gap: 1rem; }
.ebook-disclaimer { font-size: .8rem; color: rgba(255,255,255,.55); max-width: 32rem; }

/* =============================================================
   10. Timeline
   ============================================================= */
.journey { background: var(--white); }
.timeline { position: relative; display: grid; }
.timeline::before, .timeline::after {
  content: ""; position: absolute; left: 7px; top: .5rem; bottom: 0; width: 2px; background: var(--line);
}
.timeline::after { background: linear-gradient(var(--coral), var(--cyan)); bottom: auto; height: calc(var(--tl-progress, 1) * (100% - .5rem)); }
.js .timeline::after { height: calc(var(--tl-progress, 0) * (100% - .5rem)); }
.tl-item { position: relative; padding: 0 0 3rem 2.6rem; display: grid; gap: .6rem; }
.tl-item::before {
  content: ""; position: absolute; left: 0; top: .35rem; width: 16px; height: 16px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--coral); z-index: 1;
}
.tl-date { font-family: var(--display); font-size: 1.35rem; letter-spacing: .03em; color: var(--cyan-text); }
.tl-org { font-weight: 800; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.tl-role { margin-top: .3rem; font-family: var(--display); font-weight: 400; font-size: clamp(1.8rem, 3.6vw, 2.5rem); color: var(--coral); line-height: 1; }
.tl-body > p:not(.tl-org) { margin-top: .8rem; color: #2E4A51; max-width: 44rem; }
.tl-body strong { color: var(--ink); }
.tags { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1rem; }
.tags li { padding: .35rem .8rem; border-radius: 999px; font-size: .78rem; font-weight: 700; background: rgba(12,192,223,.12); color: var(--cyan-text); }

/* =============================================================
   11. Services
   ============================================================= */
.services { background: var(--mist); }
.soon { padding: .3rem .7rem; border-radius: 999px; background: var(--coral); color: var(--ink); letter-spacing: .12em; }
.services-grid { display: grid; gap: 1rem; }
.service {
  position: relative; overflow: hidden;
  padding: 2rem 1.6rem; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.service::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: linear-gradient(90deg, var(--coral), var(--cyan)); transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease-out); }
.service:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(12,192,223,.55); }
.service:hover::after { transform: scaleX(1); }
.service-n { font-family: var(--display); font-size: 3rem; line-height: 1; color: var(--cyan); }
.service h3 { margin-top: .8rem; font-size: 1.25rem; font-weight: 800; letter-spacing: -.015em; line-height: 1.2; }
.service p { margin-top: .6rem; color: var(--muted); }
.services-cta { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; align-items: center; justify-content: space-between; padding: 1.5rem 1.6rem; border-radius: var(--radius); border: 1.5px dashed rgba(12,192,223,.55); background: var(--white); }
.services-cta p { font-weight: 600; max-width: 34rem; }

/* =============================================================
   12. Education
   ============================================================= */
.edu-grid { display: grid; gap: 2rem; }
.edu-list { display: grid; }
.edu { display: grid; grid-template-columns: 6.2rem 1fr; gap: 1rem; padding: 1.2rem 0; border-top: 1px solid var(--line); }
.edu-year { font-family: var(--display); font-size: 1.3rem; color: var(--coral); letter-spacing: .03em; }
.edu h3 { font-size: 1.05rem; font-weight: 800; line-height: 1.3; }
.edu p { font-size: .92rem; color: var(--muted); margin-top: .2rem; }
.tools { margin-top: 1rem; padding: 1.4rem; border-radius: var(--radius); background: var(--ink); color: rgba(255,255,255,.85); display: grid; gap: .55rem; font-size: .93rem; }
.tools strong { display: inline-block; min-width: 5.5rem; color: var(--cyan); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; }

/* =============================================================
   13. Contact & footer
   ============================================================= */
.contact {
  position: relative; overflow: hidden; isolation: isolate; text-align: center;
  background: var(--coral); color: var(--ink);
  padding-block: clamp(5rem, 12vw, 9rem);
}
.contact-ring { position: absolute; z-index: -1; width: min(150vw, 1000px); left: 50%; top: 50%; translate: -50% -50%; fill: none; stroke: var(--white); stroke-width: 2; opacity: .55; stroke-dasharray: 1100 660; animation: spin 80s linear infinite reverse; }
.contact-inner { display: grid; justify-items: center; gap: 1.2rem; }
.contact .eyebrow { color: var(--ink); }
.contact-title { font-family: var(--display); font-weight: 400; font-size: clamp(3.6rem, 13vw, 9rem); line-height: .88; }
.contact-title em { color: var(--white); font-size: .8em; }
.contact-lede { font-size: 1.12rem; max-width: 32rem; font-weight: 600; }
.contact-list { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-top: .6rem; }
.contact-list a {
  display: inline-block; padding: .6rem 1.1rem; border-radius: 999px; font-weight: 700; font-size: .93rem;
  background: var(--white); color: var(--ink); transition: background-color .3s, transform .3s var(--ease-out);
  word-break: break-all;
}
.contact-list a:hover { background: var(--cyan); transform: translateY(-2px); }

.footer { background: var(--ink); color: rgba(255,255,255,.7); font-size: .88rem; padding-block: 1.8rem 6rem; }
.footer-inner { display: flex; flex-wrap: wrap; gap: .6rem 2rem; justify-content: space-between; }
.footer a:hover { color: var(--cyan); }

/* Aviso flotante del ebook */
.float-ebook {
  position: fixed; z-index: 40; left: var(--gutter); right: var(--gutter); bottom: 14px;
  display: flex; align-items: center; gap: .8rem;
  padding: .6rem .7rem .6rem .8rem; border-radius: 18px;
  background: var(--ink); color: var(--white);
  box-shadow: 0 20px 50px -18px rgba(15,42,48,.7), 0 0 0 1px rgba(12,192,223,.35);
  transform: translateY(140%); opacity: 0; pointer-events: none;
  transition: transform .6s var(--ease-out), opacity .4s;
}
.float-ebook.is-visible { transform: none; opacity: 1; pointer-events: auto; }
.float-ebook-book { flex: none; width: 30px; height: 42px; border-radius: 2px 4px 4px 2px; background: #fff; box-shadow: inset 3px 0 0 #cfd6e2; position: relative; }
.float-ebook-book::after { content: ""; position: absolute; left: 6px; right: 5px; top: 16px; height: 8px; background: linear-gradient(var(--navy) 0 50%, var(--blue) 50%); border-radius: 1px; }
.float-ebook-text { flex: 1; min-width: 0; font-weight: 800; font-size: .9rem; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.float-ebook-text small { display: block; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan); }
.float-ebook-price { flex: none; padding: .55rem .9rem; border-radius: 999px; background: var(--coral); color: var(--ink); font-weight: 800; font-size: .9rem; }

/* =============================================================
   14. Effects
   ============================================================= */
@keyframes rise { from { transform: translateY(105%); } to { transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes pop { from { opacity: 0; transform: scale(.9); } to { opacity: 1; transform: none; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Reveals — sólo si hay JS; sin JS todo se ve */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* =============================================================
   15. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .stats-grid { gap: 2.6rem 2rem; }
  .weeks-grid { grid-template-columns: 1fr 1fr; }
  .buy-card .btn { justify-self: start; }
  .float-ebook { left: auto; right: 24px; bottom: 24px; max-width: 380px; }
  .footer { padding-bottom: 1.8rem; }
}

@media (min-width: 720px) {
  .tl-item { grid-template-columns: 11rem 1fr; gap: 2rem; padding-left: 2.8rem; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .ebook-outcome { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .hero-photo { width: 340px; }
}

@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .nav-links { display: flex; align-items: center; gap: 1.8rem; font-weight: 600; font-size: .95rem; }
  .nav-links a:not(.nav-cta) { position: relative; }
  .nav-links a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--cyan); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease-out); }
  .nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
  .nav-cta { padding: .65rem 1.2rem; border-radius: 999px; background: var(--coral); color: var(--ink); font-weight: 800; transition: background-color .3s; }
  .nav-cta:hover { background: var(--coral-soft); }

  .hero { min-height: 100svh; display: flex; align-items: center; padding: 96px 0 4rem; }
  .hero-inner { grid-template-columns: 1.15fr .85fr; align-items: center; gap: 3rem; }
  .hero-photo { order: 0; width: min(38vw, 500px); }
  .hero-name { font-size: clamp(7rem, 11.5vw, 11.5rem); }
  .hero-badge { left: -10%; bottom: 8%; padding: .9rem 1.2rem; max-width: 15rem; }
  .hero-badge strong { font-size: 2.8rem; }
  .hero-badge span { font-size: .8rem; }

  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .about-grid { grid-template-columns: .85fr 1.15fr; }
  .about-photo { position: sticky; top: 100px; }
  .ebook-grid { grid-template-columns: .9fr 1.1fr; }
  .book { width: 340px; }
  .weeks-grid { grid-template-columns: repeat(4, 1fr); }
  .edu-grid { grid-template-columns: .8fr 1.2fr; gap: 4rem; }
}

@media (min-width: 1280px) {
  .book { width: 380px; }
}

/* =============================================================
   16. Reduced motion — sólo lo intrusivo
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-ring, .hero-orbit, .contact-ring, .book-stage::before { animation: none; }
  .ticker-track { animation-duration: 90s; }
}
