/* =====================================================
   CREATORS PITCH BY MADAME — Editorial Collage System
   ===================================================== */

:root {
  /* Color tokens — vibrant editorial palette */
  --c-cream: #fbf6ec;
  --c-cream-deep: #f4ecd8;
  --c-ink: #0f0f0e;
  --c-ink-soft: #1a1a18;
  --c-coral: #ff4d2e;
  --c-coral-soft: #ff7a5c;
  --c-yellow: #ffd23f;
  --c-yellow-soft: #ffe27a;
  --c-blue: #1b4dff;
  --c-blue-soft: #4d75ff;
  --c-pink: #ff6fb1;
  --c-pink-soft: #ff9bc9;
  --c-green: #3cb371;
  --c-line: rgba(15, 15, 14, 0.12);

  /* Type */
  --f-display: "Fraunces", "Times New Roman", serif;
  --f-sans: "General Sans", "Clash Display", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Inter, sans-serif;

  /* Spacing */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --radius-pill: 999px;

  --container: 1280px;
  --container-narrow: 880px;
}

/* ===================== RESET ===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.55;
  color: var(--c-ink);
  background: var(--c-cream);
  -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;
  cursor: pointer;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}

/* Subtle paper grain over everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ===================== TYPOGRAPHY ===================== */
.display-h2,
.cta__title,
.manifesto-h {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.02;
}
.display-h2 {
  font-size: clamp(40px, 6vw, 84px);
  max-width: 18ch;
  margin-bottom: var(--s-7);
}
.display-h2--light {
  color: var(--c-cream);
}
em {
  font-style: italic;
  font-family: var(--f-display);
  font-weight: 500;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--f-sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--s-6);
}
.kicker--light {
  color: var(--c-cream);
}
.kicker .dash {
  width: 28px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}

/* ===================== LAYOUT ===================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
  position: relative;
}
.container--narrow {
  max-width: var(--container-narrow);
  text-align: center;
}
.section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.section--cream {
  background: var(--c-cream);
}
.section--dark {
  background: var(--c-ink);
  color: var(--c-cream);
}
.section--yellow {
  background: var(--c-yellow);
}
.section--coral {
  background: var(--c-coral);
  color: var(--c-cream);
}

/* ===================== NAV ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-4) clamp(20px, 5vw, 56px);
  background: rgba(251, 246, 236, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-line);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.brand__mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__cp {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand__by {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  opacity: 0.7;
  margin-top: 2px;
}
.nav__links {
  display: flex;
  gap: var(--s-6);
  font-size: 14px;
  font-weight: 600;
}
.nav__links a {
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  inset: auto 0 -4px 0;
  height: 2px;
  background: var(--c-coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__links a:hover::after {
  transform: scaleX(1);
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:hover svg {
  transform: translateX(4px);
}
.btn:hover {
  transform: translateY(-2px);
}
.btn--pill {
  border-radius: var(--radius-pill);
}
.btn--accent {
  background: var(--c-coral);
  color: var(--c-cream);
  box-shadow: 0 4px 0 var(--c-ink);
}
.btn--accent:hover {
  background: var(--c-ink);
  box-shadow: 0 4px 0 var(--c-coral);
}
.btn--ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-ink);
}
.btn--ghost:hover {
  background: var(--c-ink);
  color: var(--c-cream);
}
.btn--dark {
  background: var(--c-ink);
  color: var(--c-cream);
}
.btn--dark:hover {
  background: var(--c-coral);
}
.btn--outline {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-ink);
}
.btn--outline:hover {
  background: var(--c-ink);
  color: var(--c-cream);
}
.btn--xl {
  padding: 20px 32px;
  font-size: 17px;
}
.nav__cta {
  padding: 10px 18px;
  font-size: 13px;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  background: var(--c-cream);
  padding: clamp(60px, 10vw, 120px) 0 var(--s-9);
  overflow: hidden;
}
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 16px;
  background: var(--c-ink);
  color: var(--c-cream);
  border-radius: var(--radius-pill);
  margin-bottom: var(--s-7);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.dot--coral {
  background: var(--c-coral);
  box-shadow: 0 0 0 3px rgba(255, 77, 46, 0.3);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255, 77, 46, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(255, 77, 46, 0); }
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(64px, 13vw, 200px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  margin-bottom: var(--s-7);
  display: flex;
  flex-direction: column;
}
.hero__title .line {
  display: block;
}
.hero__title .line:nth-child(1) {
  color: var(--c-ink);
}
.hero__title .line--italic {
  font-style: italic;
  font-weight: 700;
  color: var(--c-coral);
  margin-left: clamp(40px, 10vw, 200px);
}
.hero__title .line--small {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: clamp(20px, 2.5vw, 32px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  margin-top: var(--s-5);
  margin-left: 6px;
}

.hero__lede {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.25;
  max-width: 30ch;
  margin-bottom: var(--s-5);
}
.hero__sub {
  max-width: 60ch;
  font-size: 17px;
  line-height: 1.55;
  color: var(--c-ink-soft);
  opacity: 0.85;
  margin-bottom: var(--s-7);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-bottom: var(--s-9);
}

/* Floating decorative shapes — hero */
.float {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.float--star-1 {
  width: clamp(50px, 6vw, 90px);
  top: 16%;
  right: 8%;
  animation: spin 22s linear infinite;
}
.float--bolt {
  width: clamp(50px, 5vw, 80px);
  top: 38%;
  right: 16%;
  transform: rotate(15deg);
  animation: bob 4s ease-in-out infinite;
}
.float--squiggle {
  width: clamp(140px, 16vw, 240px);
  bottom: 22%;
  right: 4%;
  animation: bob 5s ease-in-out infinite reverse;
}
.float--star-2 {
  width: clamp(38px, 4vw, 60px);
  bottom: 12%;
  left: 8%;
  animation: spin 28s linear infinite reverse;
}
.float--dot {
  width: clamp(40px, 4vw, 60px);
  top: 8%;
  left: 38%;
  animation: bob 3.5s ease-in-out infinite;
}
.float--star-3 {
  width: clamp(60px, 7vw, 100px);
  top: 12%;
  right: 6%;
  animation: spin 30s linear infinite;
}
.float--bolt-2 {
  width: clamp(50px, 5vw, 80px);
  top: 14%;
  right: 8%;
  transform: rotate(-15deg);
  animation: bob 4s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-10px) rotate(var(--r, 0deg)); }
}

/* Ticker */
.ticker {
  position: relative;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  background: var(--c-coral);
  color: var(--c-cream);
  padding: 14px 0;
  overflow: hidden;
  border-top: 2px solid var(--c-ink);
  border-bottom: 2px solid var(--c-ink);
  transform: rotate(-1.2deg);
}
.ticker__track {
  display: flex;
  gap: var(--s-6);
  white-space: nowrap;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 2.4vw, 28px);
  letter-spacing: 0.02em;
  animation: marquee 28s linear infinite;
}
.ticker__track span {
  flex-shrink: 0;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ===================== LEDE GRID (qué es) ===================== */
.lede-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  margin-bottom: var(--s-9);
}
.lede-grid__body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-ink-soft);
}
.lede-grid__body p + p {
  margin-top: var(--s-5);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.stats__item {
  background: var(--c-yellow);
  padding: var(--s-7);
  border-radius: var(--radius-lg);
  border: 2px solid var(--c-ink);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.stats__item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--c-ink);
}
.stats__item--pink { background: var(--c-pink); }
.stats__item--blue { background: var(--c-blue); color: var(--c-cream); }
.stats__num {
  display: block;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: var(--s-4);
}
.stats__lbl {
  display: block;
  font-weight: 700;
  font-size: 19px;
  margin-bottom: var(--s-2);
}
.stats__desc {
  display: block;
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.5;
}

/* ===================== MADAME (dark) ===================== */
.dark-deco {
  position: absolute;
  pointer-events: none;
}
.dark-deco--1 {
  width: 140px;
  top: 8%;
  right: 6%;
  animation: bob 5s ease-in-out infinite;
}
.dark-deco--2 {
  width: 280px;
  bottom: 10%;
  left: 4%;
}
.dark-deco--isotipo {
  width: 280px;
  height: auto;
  bottom: 8%;
  right: 4%;
  opacity: 0.08;
  transform: rotate(-12deg);
  animation: bob 7s ease-in-out infinite;
}

.madame-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  margin-bottom: var(--s-9);
}
.madame-grid__copy {
  font-size: 18px;
  line-height: 1.65;
  color: var(--c-cream);
  opacity: 0.92;
}
.madame-grid__copy p + p {
  margin-top: var(--s-5);
}
.madame-grid__copy strong {
  color: var(--c-yellow);
  font-weight: 700;
}

.credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
.cred-card {
  padding: var(--s-6);
  border-radius: var(--radius-lg);
  border: 2px solid var(--c-ink);
  color: var(--c-ink);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.cred-card:hover {
  transform: rotate(-2deg) scale(1.02);
}
.cred-card:nth-child(2):hover {
  transform: rotate(2deg) scale(1.02);
}
.cred-card--coral { background: var(--c-coral); color: var(--c-cream); }
.cred-card--yellow { background: var(--c-yellow); }
.cred-card--blue { background: var(--c-blue); color: var(--c-cream); }
.cred-card--pink { background: var(--c-pink); }
.cred-card__num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.cred-card__lbl {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.manifesto {
  font-family: var(--f-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--c-cream);
  max-width: 24ch;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: var(--s-7) 0;
}
.manifesto::before,
.manifesto::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: var(--c-coral);
  margin: 0 auto var(--s-6);
}
.manifesto::after {
  margin: var(--s-6) auto 0;
}
.manifesto em {
  color: var(--c-yellow);
  font-weight: 700;
}

/* ===================== CARDS GRID (qué hacemos) ===================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  margin-bottom: var(--s-9);
}
.card {
  position: relative;
  padding: var(--s-7);
  border-radius: var(--radius-lg);
  border: 2px solid var(--c-ink);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.card:hover {
  transform: translateY(-6px) rotate(-1deg);
}
.card:nth-child(2):hover { transform: translateY(-6px) rotate(1deg); }
.card:nth-child(3):hover { transform: translateY(-6px) rotate(-1deg); }
.card:nth-child(4):hover { transform: translateY(-6px) rotate(1deg); }

.card--coral { background: var(--c-coral); color: var(--c-cream); }
.card--yellow { background: var(--c-yellow); }
.card--blue { background: var(--c-blue); color: var(--c-cream); }
.card--pink { background: var(--c-pink); }

.card__shape {
  position: absolute;
  inset: auto -30% -30% auto;
  width: 70%;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  filter: blur(2px);
}
.card--yellow .card__shape { background: rgba(15, 15, 14, 0.08); }
.card--pink .card__shape { background: rgba(255, 255, 255, 0.3); }

.card__num {
  font-family: var(--f-display);
  font-weight: 700;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-6);
  display: inline-block;
  position: relative;
  z-index: 2;
}
.card__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: var(--s-4);
  position: relative;
  z-index: 2;
}
.card__body {
  font-size: 15px;
  line-height: 1.5;
  position: relative;
  z-index: 2;
  margin-top: auto;
}
.card__deco {
  position: absolute;
  width: 50px;
  bottom: var(--s-5);
  right: var(--s-5);
  z-index: 1;
  opacity: 0.4;
}

/* Pull quote */
.pull-quote {
  position: relative;
  background: var(--c-ink);
  color: var(--c-cream);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 64px) clamp(32px, 6vw, 80px);
  font-family: var(--f-display);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.3;
  font-weight: 500;
  max-width: 60ch;
  margin: 0 auto;
}
.pull-quote__mark {
  position: absolute;
  top: -20px;
  left: 32px;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 900;
  font-size: 120px;
  line-height: 1;
  color: var(--c-coral);
}

/* ===================== TAGS ===================== */
.section__intro,
.section__outro {
  font-size: 18px;
  line-height: 1.6;
  max-width: 60ch;
  margin-bottom: var(--s-7);
  color: var(--c-ink);
}
.section__outro {
  margin-top: var(--s-7);
  margin-bottom: 0;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: 0;
}
.tags li {
  background: var(--c-ink);
  color: var(--c-cream);
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.25s ease;
}
.tags li:hover {
  transform: translateY(-3px) rotate(-1deg);
  background: var(--c-coral);
}
.tags li:nth-child(even):hover {
  transform: translateY(-3px) rotate(1deg);
  background: var(--c-blue);
}

/* ===================== BENEFITS ===================== */
.benefits {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.benefits__sticky {
  position: sticky;
  top: 110px;
}
.benefits__sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--c-ink-soft);
  max-width: 38ch;
}
.benefits__list {
  counter-reset: bcount;
}
.benefits__list li {
  position: relative;
  padding: var(--s-7) 0;
  border-bottom: 1px solid var(--c-line);
}
.benefits__list li:first-child {
  border-top: 1px solid var(--c-line);
}
.benefits__num {
  display: inline-block;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--c-coral);
  margin-bottom: var(--s-3);
}
.benefits__list h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  margin-bottom: var(--s-3);
  line-height: 1.1;
}
.benefits__list p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--c-ink-soft);
  max-width: 50ch;
}

/* ===================== UNIVERSITY (coral) ===================== */
.uni-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
}
.uni-card {
  background: var(--c-cream);
  color: var(--c-ink);
  padding: var(--s-7);
  border-radius: var(--radius-lg);
  border: 2px solid var(--c-ink);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.uni-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--c-ink);
}
.uni-card__icon {
  display: inline-block;
  font-size: 32px;
  margin-bottom: var(--s-4);
  color: var(--c-coral);
  font-family: var(--f-display);
}
.uni-card h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.02em;
  margin-bottom: var(--s-3);
}
.uni-card p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-ink-soft);
}

/* ===================== TIMELINE ===================== */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-bottom: var(--s-9);
  position: relative;
}
.timeline__step {
  position: relative;
  padding: var(--s-6);
  background: var(--c-cream);
  border: 2px solid var(--c-ink);
  border-radius: var(--radius-lg);
}
.timeline__step:nth-child(1) { background: var(--c-pink); }
.timeline__step:nth-child(2) { background: var(--c-yellow); }
.timeline__step:nth-child(3) { background: var(--c-blue); color: var(--c-cream); }
.timeline__step:nth-child(4) { background: var(--c-coral); color: var(--c-cream); }
.timeline__step:nth-child(5) { background: var(--c-yellow); }
.timeline__step:nth-child(6) {
  background: var(--c-ink);
  color: var(--c-cream);
}
.timeline__dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--c-ink);
  border-radius: 50%;
  top: var(--s-5);
  right: var(--s-5);
}
.timeline__step:nth-child(3) .timeline__dot,
.timeline__step:nth-child(4) .timeline__dot,
.timeline__step:nth-child(6) .timeline__dot {
  background: var(--c-cream);
}
.timeline__num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: var(--s-4);
  opacity: 0.85;
}
.timeline__step h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-2);
}
.timeline__step p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.92;
}

.tracks__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-5);
}
.tracks {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-7);
}
.track {
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--c-ink);
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.25s ease;
}
.track:hover { transform: translateY(-3px); }
.track--coral { background: var(--c-coral); color: var(--c-cream); }
.track--yellow { background: var(--c-yellow); }
.track--blue { background: var(--c-blue); color: var(--c-cream); }
.track--pink { background: var(--c-pink); }
.track--green { background: var(--c-green); color: var(--c-cream); }

.formato__note {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  max-width: 60ch;
  color: var(--c-ink-soft);
}

/* ===================== MANIFESTO (oportunidades) ===================== */
.section--manifesto {
  text-align: center;
  position: relative;
}
.man-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.man-deco--1 {
  width: 90px;
  top: 8%;
  left: 4%;
  animation: spin 24s linear infinite;
}
.man-deco--2 {
  width: 50px;
  top: 8%;
  right: 6%;
  transform: rotate(20deg);
  animation: bob 4s ease-in-out infinite;
}
.man-deco--3 {
  width: 70px;
  bottom: 6%;
  left: 5%;
  animation: bob 5s ease-in-out infinite reverse;
}
.man-deco--4 {
  width: 200px;
  bottom: 4%;
  right: 4%;
}
.section--manifesto .container {
  position: relative;
  z-index: 2;
}
.section--manifesto .kicker--light {
  margin-bottom: var(--s-7);
}
.manifesto-h {
  font-size: clamp(44px, 7vw, 96px);
  color: var(--c-cream);
  margin-bottom: var(--s-5);
  text-align: center;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.manifesto-h em {
  color: var(--c-coral);
}
.manifesto-sub {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.4;
  max-width: 50ch;
  margin: 0 auto var(--s-9);
  color: var(--c-cream);
  opacity: 0.92;
}
.opps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  text-align: left;
}
.opp {
  padding: var(--s-6);
  border: 1px solid rgba(251, 246, 236, 0.18);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, background 0.3s ease;
}
.opp:hover {
  transform: translateY(-4px);
  background: rgba(255, 77, 46, 0.1);
  border-color: var(--c-coral);
}
.opp__num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  color: var(--c-yellow);
  display: block;
  margin-bottom: var(--s-4);
  letter-spacing: 0.04em;
}
.opp h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-3);
  color: var(--c-cream);
}
.opp p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--c-cream);
  opacity: 0.78;
}

/* ===================== RULES ===================== */
.rules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3) var(--s-7);
  max-width: 1000px;
}
.rules li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 17px;
  line-height: 1.5;
}
.rules__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-coral);
  color: var(--c-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  margin-top: 2px;
}

/* ===================== CTA SECTION ===================== */
.section--cta {
  background: var(--c-yellow);
  position: relative;
  text-align: center;
  padding: clamp(100px, 14vw, 180px) 0;
}
.cta-deco {
  position: absolute;
  pointer-events: none;
}
.cta-deco--1 {
  width: 80px;
  top: 6%;
  left: 6%;
  animation: spin 22s linear infinite;
}
.cta-deco--2 {
  width: 220px;
  bottom: 14%;
  right: 6%;
}

.cta__eyebrow {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--s-6);
}
.cta__title {
  font-size: clamp(40px, 6vw, 80px);
  margin-bottom: var(--s-6);
  letter-spacing: -0.025em;
}
.cta__title em {
  color: var(--c-coral);
}
.cta__lede {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  max-width: 56ch;
  margin: 0 auto var(--s-8);
  color: var(--c-ink-soft);
}
.cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-4);
  margin-bottom: var(--s-9);
}
.cta__tagline {
  font-family: var(--f-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -0.01em;
}
.cta__tagline strong {
  font-style: normal;
  font-family: var(--f-display);
  font-weight: 900;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--c-ink);
  color: var(--c-cream);
  padding: var(--s-8) 0 var(--s-7);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: start;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-3);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 15px;
  color: rgba(255, 248, 238, 0.72);
}
.footer__logo {
  height: 38px;
  width: auto;
  display: block;
}
.footer__mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  align-items: flex-end;
  font-size: 14px;
  font-weight: 600;
}
.footer__links a {
  opacity: 0.78;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.footer__links a:hover {
  opacity: 1;
  color: var(--c-coral);
}
.footer__legal {
  grid-column: 1 / -1;
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(251, 246, 236, 0.15);
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0.55;
}

/* ===================== REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .lede-grid,
  .madame-grid,
  .benefits {
    grid-template-columns: 1fr;
  }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .opps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: 1fr; }
  .credentials { grid-template-columns: repeat(2, 1fr); }
  .benefits__sticky { position: static; }
}

@media (max-width: 640px) {
  .nav__cta { display: none; }
  .cta-deco--1 { width: 50px; top: 2%; left: 2%; }
  .cta-deco--2 { width: 140px; bottom: 4%; right: 2%; }
  .float--bolt { display: none; }
  .float--star-1 { width: 50px; right: 4%; top: 2%; }
  .float--squiggle { width: 120px; bottom: 30%; right: -10px; }
  .dark-deco--1 { width: 70px; }
  .dark-deco--isotipo { width: 130px; opacity: 0.07; bottom: 4%; right: 2%; }
  .man-deco--1, .man-deco--2, .man-deco--3 { width: 50px; }
  .man-deco--4 { width: 120px; }
  .hero { padding-top: var(--s-7); }
  .hero__title .line--italic { margin-left: 0; }
  .cards-grid,
  .timeline,
  .opps,
  .uni-grid,
  .rules {
    grid-template-columns: 1fr;
  }
  .credentials { grid-template-columns: 1fr 1fr; gap: var(--s-3); }
  .cred-card { min-height: 140px; padding: var(--s-5); }
  .cred-card__num { font-size: 40px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__links { align-items: flex-start; }
  .stats__num,
  .timeline__num { font-size: 44px; }
  .pull-quote { padding: var(--s-7) var(--s-5); }
  .pull-quote__mark { font-size: 80px; left: 16px; top: -10px; }
  .btn--xl { width: 100%; justify-content: center; }
  .ticker { transform: rotate(-2deg); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
