:root {
  --amarillo: #FFC521;
  --amarillo-2: #F2B300;
  --negro: #111111;
  --tinta: #1C1C1C;
  --gris: #6B6B6B;
  --linea: #E4DFD3;
  --crema: #FAF7F0;
  --blanco: #FFFFFF;
  --error: #C8322B;
  --whatsapp: #25D366;

  --f-display: 'Archivo', system-ui, sans-serif;
  --f-body: 'Archivo', system-ui, sans-serif;
  --f-accent: 'Instrument Serif', Georgia, serif;

  --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;

  --gutter: 20px;
  --container: 1200px;
  --radius: 0px;
  --radius-pill: 999px;
  --radius-card: 20px;

  --ease: cubic-bezier(.2, .7, .2, 1);
  --dur: 600ms;

  --t-hero: clamp(44px, 10.5vw, 104px);
  --t-h2: clamp(34px, 5.2vw, 64px);
  --t-h3: 22px;
  --t-num: clamp(64px, 10vw, 128px);
  --t-lead: 18px;
  --t-body: 16px;
  --t-small: 14px;
  --t-label: 11px;
  --t-accent: clamp(22px, 2.4vw, 32px);
}

@media (min-width: 768px) {
  :root {
    --gutter: 40px;
    --radius-card: 28px;
    --t-h3: 26px;
    --t-lead: 20px;
    --t-body: 17px;
    --t-label: 12px;
  }
}

@media (min-width: 1200px) {
  :root {
    --gutter: 64px;
    --t-h3: 28px;
    --t-lead: 22px;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--crema);
  color: var(--tinta);
  font-family: var(--f-body);
  font-weight: 400;
  font-size: var(--t-body);
  line-height: 1.55;
  padding-bottom: 72px;
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, p, ul, ol {
  margin: 0;
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--negro);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.section {
  padding: var(--s-8) 0;
}

@media (min-width: 768px) {
  .section {
    padding: var(--s-9) 0;
  }
}

@media (min-width: 1200px) {
  .section {
    padding: var(--s-10) 0;
  }
}

.section--crema { background: var(--crema); }
.section--white { background: var(--blanco); }
.section--dark {
  background: var(--negro);
  color: var(--crema);
}
.section--yellow {
  background: var(--amarillo);
  color: var(--negro);
}

section[id],
#inicio {
  scroll-margin-top: 80px;
}

.display {
  font-family: var(--f-display);
  font-weight: 900;
  font-stretch: 87.5%;
  font-variation-settings: "wdth" 87.5, "wght" 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  font-size: var(--t-h2);
}

h3 {
  font-size: var(--t-h3);
  font-weight: 700;
  line-height: 1.15;
}

.lead {
  font-size: var(--t-lead);
  line-height: 1.45;
  max-width: 62ch;
  margin-top: var(--s-5);
}

.accent {
  font-family: var(--f-accent);
  font-style: italic;
  font-weight: 400;
  font-size: var(--t-accent);
  line-height: 1.2;
  color: var(--tinta);
}

.section--dark .accent {
  color: var(--crema);
}

.label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--t-label);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gris);
  line-height: 1;
}

.section .label + h2 {
  margin-top: var(--s-5);
}

.label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--negro);
  flex-shrink: 0;
}

.section--dark .label {
  color: var(--amarillo);
}

.section--dark .label::before {
  background: var(--amarillo);
}

.section--yellow .label {
  color: var(--negro);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--amarillo);
  color: var(--negro);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 16px 28px;
  min-height: 52px;
  width: 100%;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--dur) var(--ease), transform 200ms var(--ease), color 200ms var(--ease);
}

.btn:hover {
  background: var(--amarillo-2);
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 2px solid var(--negro);
  outline-offset: 3px;
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--negro);
}

.btn--ghost:hover {
  background: var(--negro);
  color: var(--crema);
}

.btn--invert {
  background: var(--negro);
  color: var(--crema);
}

.btn--invert:hover {
  background: #000;
  color: var(--crema);
}

@media (min-width: 768px) {
  .btn {
    width: auto;
  }
}

.link {
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.link:hover {
  border-bottom-width: 2px;
  border-bottom-color: var(--amarillo);
}

.disc {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--amarillo);
}

.quarter {
  width: 180px;
  height: 180px;
  background: var(--amarillo);
  border-radius: 100% 0 0 0;
}

.dots {
  width: 72px;
  height: 72px;
  background-image: radial-gradient(var(--negro) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.35;
}

.photo {
  overflow: hidden;
  background: var(--crema);
}

.photo img,
.photo .ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ph {
  position: relative;
  background: #E6DFCF;
  min-height: 100%;
}

.ph::after {
  content: "";
  position: absolute;
  width: 55%;
  aspect-ratio: 1;
  background: #D9D0BC;
  border-radius: 100% 0 0 0;
  right: 0;
  bottom: 0;
  transform: rotate(90deg);
  transform-origin: center;
}

.ph--a::after { border-radius: 100% 0 0 0; transform: none; right: auto; left: 0; top: 0; bottom: auto; }
.ph--b::after { border-radius: 0 100% 0 0; transform: none; right: 0; left: auto; top: 0; bottom: auto; }
.ph--c::after { border-radius: 0 0 0 100%; transform: none; left: 0; right: auto; bottom: 0; top: auto; }
.ph--d::after { border-radius: 0 0 100% 0; transform: none; right: 0; left: auto; bottom: 0; top: auto; }

.chip {
  display: inline-block;
  background: var(--amarillo);
  color: var(--negro);
  font-size: var(--t-label);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
  line-height: 1;
}

/* Pills (mtl.org-style tags): outlined by default, glass over photos,
   solid yellow for the one that matters. */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid currentColor;
  font-size: var(--t-small);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.pill--glass {
  background: rgba(17, 17, 17, 0.38);
  color: var(--crema);
  border-color: rgba(250, 247, 240, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: var(--t-label);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Marker highlight for key words inside a headline (the mtl.org "coloured
   keywords" idea, done in brand yellow so it stays black-on-yellow). */
.mark {
  background: var(--amarillo);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0.02em 0.12em 0.04em;
  margin: 0 -0.02em;
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
}

html.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

html.js [data-reveal][data-reveal-delay="1"].is-in { transition-delay: 80ms; }
html.js [data-reveal][data-reveal-delay="2"].is-in { transition-delay: 160ms; }
html.js [data-reveal][data-reveal-delay="3"].is-in { transition-delay: 240ms; }

.top {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 64px;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(8px);
}

.top.is-scrolled {
  border-bottom: 1px solid var(--linea);
}

.top__inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}

.top__logo img {
  height: 36px;
  width: 36px;
}

.top__talk {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 2px solid var(--amarillo);
  padding-bottom: 2px;
}

.top__nav {
  display: none;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.top__nav .is-active {
  border-bottom: 2px solid var(--amarillo);
  padding-bottom: 2px;
}

@media (min-width: 768px) {
  .top__talk { display: none; }
  .top__nav { display: flex; }
}

.hero {
  --bite: clamp(36px, 7dvh, 52px);
  min-height: calc(100dvh - 64px);
  height: calc(100dvh - 64px);
  display: grid;
  grid-template-rows: minmax(120px, 1fr) auto;
  align-content: stretch;
  position: relative;
  overflow: hidden;
  background: var(--crema);
  padding: 0 var(--gutter) max(12px, env(safe-area-inset-bottom));
}

@media (max-height: 500px) {
  .hero {
    height: auto;
    min-height: 0;
    overflow: visible;
    grid-template-rows: 140px auto;
  }
}

/* Cover: the photo starts under the header and bleeds right; a paper strip
   on the left carries the eyebrow set vertically (Rincones cards 3, 7, 9). */
.cover {
  position: relative;
  margin: 0 calc(-1 * var(--gutter));
  -webkit-tap-highlight-color: transparent;
  min-height: 0;
  height: 100%;
}

.cover__label {
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 100%;
  justify-content: flex-end;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  z-index: 2;
}

.cover__label::before {
  width: 2px;
  height: 24px;
}

.cover__frame {
  position: relative;
  margin-left: 44px;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: #E6DFCF;
  z-index: 1;
}

.slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  z-index: 1;
}

.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}

.slide.is-active {
  opacity: 1;
  z-index: 2;
}

.slide.is-active img {
  transform: scale(1);
}

.hero.is-live .slide {
  transition: opacity 900ms var(--ease);
}

.hero.is-live .slide img {
  transition: transform 1600ms var(--ease);
}

.slide__tag {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 10px;
  max-width: calc(100% - 16px);
  background: var(--blanco);
  z-index: 3;
  opacity: 0;
  transform: translateY(8px);
}

.slide.is-active .slide__tag {
  opacity: 1;
  transform: none;
}

.hero.is-live .slide.is-active .slide__tag {
  transition: opacity 500ms var(--ease) 300ms, transform 500ms var(--ease) 300ms;
}

.slide__pillar {
  font-size: var(--t-label);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.slide__place {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: var(--t-small);
  color: var(--gris);
  white-space: nowrap;
}

.hero__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

/* The headline lives in a yellow block that bites into the photo. */
.hero h1 {
  font-family: var(--f-display);
  font-weight: 900;
  font-stretch: 87.5%;
  font-variation-settings: "wdth" 87.5, "wght" 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(26px, 7.4vw, 36px);
  line-height: 0.92;
  background: var(--amarillo);
  color: var(--negro);
  padding: 12px var(--gutter) 14px;
  margin: calc(-1 * var(--bite)) 24px 0 calc(-1 * var(--gutter));
  position: relative;
  z-index: 3;
  overflow-wrap: break-word;
}

.hero-h1--desk .line {
  white-space: nowrap;
  padding-right: 0.2em;
}

.hero h1 em {
  font-family: var(--f-accent);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.08em;
}

.hero-h1--desk { display: none; }

.line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}

.line__in {
  display: block;
}

.hero__lead {
  margin-top: 12px;
  color: var(--gris);
  max-width: 36ch;
}

.hero__actions {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.hero__wa-btn { display: none; }

/* Load choreography, toggled by html.is-ready. */
html.js:not(.is-ready) .cover__frame {
  clip-path: inset(0 0 100% 0);
}

html.js.is-ready .cover__frame {
  animation: unveil 1000ms cubic-bezier(.2, .7, .2, 1) both;
}

html.js:not(.is-ready) .cover__label {
  opacity: 0;
}

html.js.is-ready .cover__label {
  animation: fadeIn 600ms var(--ease) 500ms both;
}

html.js:not(.is-ready) .hero h1 {
  opacity: 0;
  transform: translateY(24px);
}

html.js.is-ready .hero h1 {
  animation: fadeUp 700ms cubic-bezier(.2, .7, .2, 1) 350ms both;
}

html.js:not(.is-ready) .line__in {
  transform: translateY(110%);
}

html.js.is-ready .hero-h1--mobile .line__in {
  animation: rise 900ms cubic-bezier(.2, .7, .2, 1) 500ms both;
}

html.js.is-ready .hero-h1--desk .line:nth-child(1) .line__in { animation: rise 900ms cubic-bezier(.2, .7, .2, 1) 500ms both; }
html.js.is-ready .hero-h1--desk .line:nth-child(2) .line__in { animation: rise 900ms cubic-bezier(.2, .7, .2, 1) 590ms both; }
html.js.is-ready .hero-h1--desk .line:nth-child(3) .line__in { animation: rise 900ms cubic-bezier(.2, .7, .2, 1) 680ms both; }
html.js.is-ready .hero-h1--desk .line:nth-child(4) .line__in { animation: rise 900ms cubic-bezier(.2, .7, .2, 1) 770ms both; }

html.js:not(.is-ready) .hero__lead,
html.js:not(.is-ready) .hero__actions {
  opacity: 0;
  transform: translateY(12px);
}

html.js.is-ready .hero__lead { animation: fadeUp 600ms var(--ease) 900ms both; }
html.js.is-ready .hero__actions { animation: fadeUp 600ms var(--ease) 980ms both; }

html.js:not(.is-ready) .slide.is-active .slide__tag {
  opacity: 0;
  transform: translateY(8px);
}

html.js.is-ready:not(.hero-settled) .slide.is-active .slide__tag {
  animation: fadeUp 500ms var(--ease) 1100ms both;
}

@keyframes unveil {
  from { clip-path: inset(0 0 100% 0); }
  to { clip-path: inset(0 0 0 0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

@keyframes rise {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}

.marquee {
  background: var(--amarillo);
  color: var(--negro);
  height: 56px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee__track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.marquee__track span {
  padding: 0 40px;
}

.marquee__track span::after {
  content: " · ";
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (min-width: 768px) {
  .marquee { height: 64px; }
}

/* 01 - Por qué: a "statement card" (mtl.org's "Montréal is…" block). One
   white rounded card on the crema page, tiny label, a headline set as large
   as the card allows with the payoff highlighted in yellow, then quote and
   body side by side. A quarter block sits in the corner as the brand mark. */
.statement {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  container-type: inline-size;
  background: var(--blanco);
  border-radius: var(--radius-card);
  padding: clamp(24px, 6vw, 72px);
}

.statement__quarter {
  position: absolute;
  top: 0;
  right: 0;
  width: 96px;
  height: 96px;
  border-radius: 0 0 0 100%;
  z-index: 0;
}

.statement__dots {
  display: none;
  position: absolute;
  right: clamp(28px, 6vw, 72px);
  bottom: clamp(28px, 6vw, 64px);
  z-index: 0;
}

.statement .label,
.statement__title,
.statement__grid {
  position: relative;
  z-index: 1;
}

/* Sized against the card so "UNA RECOMENDACIÓN, NO." never orphans a word. */
.statement .statement__title {
  margin-top: var(--s-6);
  font-size: clamp(32px, 9cqi, 84px);
  line-height: 1;
}

.statement__grid {
  margin-top: clamp(28px, 4vw, 48px);
  display: grid;
  gap: var(--s-5);
}

.statement__grid .accent {
  padding-left: 20px;
  border-left: 4px solid var(--amarillo);
  max-width: 26ch;
}

.statement__body {
  color: var(--gris);
  max-width: 54ch;
}

@media (min-width: 768px) {
  .statement__quarter {
    width: 160px;
    height: 160px;
  }
  .statement .statement__title {
    margin-top: var(--s-7);
  }
}

@media (min-width: 1024px) {
  .statement__quarter {
    width: 200px;
    height: 200px;
  }
  .statement__dots {
    display: block;
  }
  .statement__grid {
    grid-template-columns: 5fr 7fr;
    gap: var(--s-8);
    align-items: start;
  }
  .statement__body {
    font-size: var(--t-lead);
    line-height: 1.45;
    padding-right: 120px;
  }
}

/* 02 - Alcance: the photo becomes a full-width rounded "feature" card with
   the headline sitting on it (mtl.org featured-event pattern), then four
   number tiles and the meta row. */
.alcance {
  display: grid;
  gap: 12px;
}

.feature {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: #1C1C1C;
  aspect-ratio: 4 / 5;
  min-height: 420px;
}

.feature__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.feature__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8, 8, 8, 0.86) 0%, rgba(8, 8, 8, 0.55) 34%, rgba(8, 8, 8, 0.08) 62%, rgba(8, 8, 8, 0) 100%),
    linear-gradient(to bottom, rgba(8, 8, 8, 0.28) 0%, rgba(8, 8, 8, 0) 26%);
}

.feature__chip {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}

.feature__tag {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 12px;
  background: var(--blanco);
  color: var(--tinta);
}

@media (max-width: 399px) {
  .feature__tag { display: none; }
}

.feature__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 24px 20px 28px;
  color: var(--crema);
}

.feature__title {
  font-size: clamp(40px, 11vw, 96px);
  max-width: 12ch;
}

.feature__lead {
  margin-top: var(--s-4);
  max-width: 40ch;
  font-size: var(--t-lead);
  line-height: 1.4;
  color: rgba(250, 247, 240, 0.86);
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  min-width: 0;
  min-height: 172px;
  padding: 22px 20px;
  background: rgba(250, 247, 240, 0.06);
  border: 1px solid rgba(250, 247, 240, 0.08);
  border-radius: var(--radius-card);
}

.stat__num {
  font-family: var(--f-display);
  font-weight: 900;
  font-stretch: 87.5%;
  font-variation-settings: "wdth" 87.5, "wght" 900;
  font-size: clamp(44px, 12.5vw, 80px);
  line-height: 0.9;
  letter-spacing: -0.01em;
}

.stat__prefix {
  color: var(--amarillo);
}

.stat__cap {
  font-size: var(--t-small);
  line-height: 1.4;
  color: #B8B3A8;
}

@media (min-width: 768px) {
  .alcance { gap: 16px; }
  .feature {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
  .feature__chip,
  .feature__tag { top: 28px; }
  .feature__chip { left: 32px; }
  .feature__tag { right: 32px; }
  .feature__body { padding: 40px 32px 36px; }
  .feature__title { font-size: clamp(56px, 7.4vw, 96px); }
  .stats { gap: 16px; }
  .stat {
    min-height: 200px;
    padding: 28px 24px;
  }
  .stat__num { font-size: clamp(56px, 8vw, 80px); }
}

@media (min-width: 1024px) {
  .feature { aspect-ratio: 2 / 1; }
  .feature__chip,
  .feature__tag { top: 36px; }
  .feature__chip { left: 48px; }
  .feature__tag { right: 48px; }
  .feature__body { padding: 56px 48px 48px; }
  .stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .stat {
    min-height: 220px;
    padding: 32px 28px;
  }
  .stat__num { font-size: clamp(56px, 5.8vw, 84px); }
}

/* 03 - Canales: the eight channels as a tile grid led by the number; the
   photo is a circle with dots and a quarter (Rincones card 10). */
.canales {
  display: grid;
  gap: var(--s-7);
}

.canales__copy {
  min-width: 0;
}

.canales h2 {
  margin-top: var(--s-5);
}

.channel-list {
  list-style: none;
  padding: 0;
  margin: var(--s-6) 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
}

.channel-list li {
  display: grid;
  align-content: start;
  gap: 0;
  padding: 20px 0 18px;
  border-top: 1px solid var(--linea);
  min-width: 0;
}

.channel-list__n {
  font-family: var(--f-display);
  font-weight: 900;
  font-stretch: 87.5%;
  font-variation-settings: "wdth" 87.5, "wght" 900;
  font-size: clamp(36px, 10vw, 48px);
  line-height: 0.9;
  letter-spacing: -0.01em;
}

.channel-list__name {
  margin-top: 10px;
  min-width: 0;
}

.channel-list__name strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.channel-list__name span {
  display: block;
  font-size: var(--t-label);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gris);
  font-weight: 700;
  margin-top: 4px;
}

.canales__media {
  position: relative;
  width: 78%;
  margin: 0 auto;
}

.canales__photo {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: 1;
}

.canales__quarter {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 0 0 0 100%;
  left: -16px;
  bottom: -8px;
  z-index: 0;
}

.canales__dots {
  position: absolute;
  right: -8px;
  top: -8px;
  z-index: 2;
}

@media (min-width: 768px) {
  .canales {
    grid-template-columns: repeat(8, 1fr);
    gap: 24px;
  }
  .canales__copy { grid-column: 1 / 9; }
  .canales__media { grid-column: 3 / 7; width: 100%; }
  .channel-list { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0 24px; }
  .channel-list__name strong { font-size: 17px; }
}

@media (min-width: 1200px) {
  .canales {
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
    align-items: start;
  }
  .canales__copy { grid-column: 1 / 8; }
  .canales__media {
    grid-column: 9 / 13;
    position: sticky;
    top: 96px;
  }
  .channel-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 32px; }
  .channel-list__n { font-size: 56px; }
}

/* 04 - Membresía: cheaper Presencia first on mobile; Impulso stays the
   yellow featured card. Desktop grid keeps both side by side. */
.plans {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: var(--s-6);
}

.plan {
  background: var(--blanco);
  border: 1px solid var(--negro);
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.plan--featured {
  background: var(--amarillo);
  border-color: var(--amarillo);
}

.plan__badge {
  position: absolute;
  top: 0;
  left: 24px;
  transform: translateY(-50%);
  background: var(--negro);
  color: var(--crema);
}

.plan__name {
  font-family: var(--f-display);
  font-weight: 900;
  font-stretch: 87.5%;
  font-variation-settings: "wdth" 87.5, "wght" 900;
  font-size: 34px;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: var(--s-4) 0;
}

.plan__price span:first-child {
  font-family: var(--f-display);
  font-weight: 900;
  font-stretch: 87.5%;
  font-size: 56px;
  line-height: 0.9;
  letter-spacing: -0.01em;
}

.plan__per {
  font-size: var(--t-small);
  color: var(--gris);
}

.plan__desc {
  color: var(--gris);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--linea);
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan li {
  padding: 9px 0;
  font-size: 15px;
  line-height: 1.4;
  border-bottom: 1px solid var(--linea);
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.plan li::before {
  content: "";
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  background: var(--amarillo);
  transform: translateY(-2px);
}

.plan__year {
  font-size: var(--t-small);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--linea);
  margin-bottom: var(--s-5);
}

.plan__year span {
  color: var(--gris);
  font-weight: 400;
}

.plan--featured .plan__per,
.plan--featured .plan__desc,
.plan--featured .plan__year span {
  color: rgba(17, 17, 17, 0.72);
}

.plan--featured .plan__desc,
.plan--featured li,
.plan--featured .plan__year {
  border-color: rgba(17, 17, 17, 0.18);
}

.plan--featured li::before {
  background: var(--negro);
}

.plan .btn {
  width: 100%;
  margin-top: auto;
}

.plans__foot {
  margin-top: var(--s-6);
  text-align: center;
  font-size: var(--t-small);
  color: var(--gris);
}

@media (min-width: 768px) {
  .plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    flex-direction: unset;
  }
}

@media (min-width: 1024px) {
  .plan {
    padding: 40px;
  }
  .plan__price span:first-child {
    font-size: 64px;
  }
}

.contacto {
  display: grid;
  gap: var(--s-7);
}

.contacto h2 {
  margin: var(--s-5) 0;
}

.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wa-icon {
  flex-shrink: 0;
}

.form-panel {
  background: var(--crema);
  border: 1px solid var(--negro);
  padding: 32px;
}

#lead {
  position: relative;
}

.field {
  margin-bottom: var(--s-5);
}

.field label {
  display: block;
  font-size: var(--t-label);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.field input {
  width: 100%;
  height: 56px;
  background: var(--blanco);
  border: 1px solid var(--negro);
  border-radius: 0;
  padding: 0 16px;
  color: var(--tinta);
}

.field input:focus {
  border-width: 2px;
  outline: none;
}

.field input.is-invalid {
  border-color: var(--error);
}

.field__hint {
  margin-top: 8px;
  font-size: var(--t-small);
  color: var(--gris);
}

.field__err {
  margin-top: 8px;
  font-size: var(--t-small);
  color: var(--error);
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.plan-line {
  font-size: var(--t-small);
  margin-bottom: var(--s-4);
}

.plan-line .link {
  background: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0 0 2px;
  cursor: pointer;
  font-weight: 500;
}

.form-panel .btn {
  width: 100%;
}

.success h3 {
  margin-bottom: var(--s-4);
}

.success p {
  margin-bottom: 0;
}

.success .btn {
  margin-top: var(--s-5);
}

@media (min-width: 768px) {
  .hero-h1--mobile { display: none; }
  .hero-h1--desk { display: block; }
  .hero__lead { font-size: var(--t-lead); margin-top: var(--s-5); }
  .hero__actions {
    flex-direction: row;
    align-items: center;
    margin-top: var(--s-5);
    gap: 16px;
  }
  .hero__wa-btn { display: inline-flex; width: auto; }
  .hero {
    --photo-h: clamp(320px, 46svh, 520px);
    --bite: 96px;
    height: auto;
    min-height: calc(100svh - 64px);
    grid-template-rows: auto auto;
    padding: 0 var(--gutter) var(--s-6);
  }
  .cover { height: auto; }
  .cover__label { width: 56px; height: var(--photo-h); }
  .cover__frame { margin-left: 56px; height: var(--photo-h); }
  .slide__tag {
    top: 16px;
    right: var(--gutter);
    padding: 8px 12px;
    gap: 10px;
  }
  .hero h1 {
    font-size: var(--t-hero);
    width: fit-content;
    max-width: 100%;
    padding: 28px 40px 30px;
    margin-right: 0;
    overflow-wrap: normal;
  }
}

@media (min-width: 1024px) {
  .hero {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: minmax(0, 1fr);
    padding: 0 var(--gutter);
    column-gap: 32px;
  }

  /* Desktop keeps the same idea: photo column on the right, full height; the
     yellow headline block sits in cols 1-8 and bites into the photo's edge. */
  .hero__copy {
    grid-column: 1 / 9;
    grid-row: 1;
    align-self: center;
    min-width: 0;
    padding: 48px 0;
    container-type: inline-size;
  }

  .hero h1 {
    font-size: clamp(52px, 10cqi, 104px);
    width: auto;
    max-width: none;
    margin: 0 -140px 0 calc(-1 * var(--gutter));
    padding: 32px 48px 36px var(--gutter);
  }

  .hero__lead,
  .hero__actions {
    margin-left: 0;
  }

  .cover {
    grid-column: 8 / 13;
    grid-row: 1;
    align-self: stretch;
    min-width: 0;
    margin: 0 calc(-1 * var(--gutter)) 0 0;
    display: flex;
  }

  .cover__label {
    width: 56px;
    height: 100%;
    justify-content: flex-start;
    padding-top: 40px;
  }

  .cover__frame {
    height: auto;
    margin-left: 56px;
    flex: 1;
  }

  .slide__tag {
    top: 32px;
    right: var(--gutter);
  }

  .contacto {
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
    align-items: start;
  }

  .contacto__copy { grid-column: 1 / 6; }
  .form-panel {
    grid-column: 7 / 13;
    padding: 40px;
  }
}

.foot {
  background: var(--negro);
  color: var(--crema);
  padding: var(--s-8) 0 var(--s-6);
}

.foot .label {
  color: var(--amarillo);
  margin-bottom: var(--s-4);
}

.foot .label::before {
  background: var(--amarillo);
}

.foot__row {
  display: grid;
  gap: var(--s-7);
}

.foot__row p {
  font-size: var(--t-small);
  margin-top: var(--s-3);
}

.foot__row a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  width: fit-content;
}

.foot .accent {
  color: var(--crema);
  font-size: 22px;
}

.foot__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(250, 247, 240, 0.15);
}

@media (min-width: 768px) {
  .foot__row {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
  }
  .foot__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
  }
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  height: 72px;
  background: var(--crema);
  border-top: 1px solid var(--linea);
  padding: 12px var(--gutter);
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  transform: translateY(100%);
  transition: transform 240ms var(--ease);
}

.sticky-cta .btn {
  width: 100%;
}

.sticky-cta.is-on {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .sticky-cta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:not(.force-motion) { scroll-behavior: auto; }

  html:not(.force-motion) *,
  html:not(.force-motion) *::before,
  html:not(.force-motion) *::after {
    animation: none !important;
    transition: none !important;
  }

  html:not(.force-motion).js [data-reveal],
  html:not(.force-motion).js:not(.is-ready) .line__in,
  html:not(.force-motion).js:not(.is-ready) .hero h1,
  html:not(.force-motion).js:not(.is-ready) .slide.is-active .slide__tag,
  html:not(.force-motion).js:not(.is-ready) .hero__lead,
  html:not(.force-motion).js:not(.is-ready) .hero__actions {
    opacity: 1;
    transform: none;
  }

  html:not(.force-motion).js:not(.is-ready) .cover__frame { clip-path: none; }
  html:not(.force-motion).js:not(.is-ready) .cover__label { opacity: 1; }
  html:not(.force-motion) .slide img { transform: none; }

  html:not(.force-motion) .marquee__track { animation: none; }
  html:not(.force-motion) .sticky-cta { transition: none; }
}
