/* ─────────────────────────────────────────────
   UNDERSUMMIT — Stylesheet
   ───────────────────────────────────────────── */

/* ── Brand Fonts ── */
@font-face {
  font-family: 'Aeonik';
  src: url('../fonts/aeonik/Aeonik-Light.woff2') format('woff2');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('../fonts/aeonik/Aeonik-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('../fonts/aeonik/Aeonik-Medium.woff2') format('woff2');
  font-weight: 500 700;
  font-display: swap;
}
@font-face {
  font-family: 'AeonikFono';
  src: url('../fonts/aeonik/AeonikFono-Light.woff2') format('woff2');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'AeonikFono';
  src: url('../fonts/aeonik/AeonikFono-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'AeonikFono';
  src: url('../fonts/aeonik/AeonikFono-Medium.woff2') format('woff2');
  font-weight: 500 700;
  font-display: swap;
}
@font-face {
  font-family: 'SubwayTicker';
  src: url('../fonts/Subway/Subway-Ticker.ttf.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}

/* ── Hero wrapper ── */
.hero-wrapper {
  position: relative;
}
.hero-wrapper .call-demo {
  position: absolute;
  bottom: 2rem;
  left:  max(var(--pad-x), calc((100% - var(--max-w)) / 2));
  right: max(var(--pad-x), calc((100% - var(--max-w)) / 2));
}
.call-demo .inner {
  padding-left: 4rem;
  padding-right: 2rem;
  max-width: none;
}

/* ── Tokens ── */
:root {
  --bg:         #242627;
  --bg-light:   #ECEAE7;
  --ticker-bg:  var(--bg);
  --yellow:     #F4D300;
  --text:       #ffffff;
  --text-dim:   rgba(255,255,255,0.36);
  --text-muted: rgba(255,255,255,0.16);
  --border:     rgba(255,255,255,0.10);
  --border-med: rgba(255,255,255,0.18);
  --font-head:  'Aeonik', system-ui, sans-serif;
  --font-body:  'Aeonik', system-ui, sans-serif;
  --font-fono:  'AeonikFono', 'Aeonik', system-ui, sans-serif;
  --font-tick:  'SubwayTicker', monospace;
  --nav-h:      56px;
  --ticker-h:   36px;
  --radius-sm:  4px;
  --radius:     8px;
  --radius-pill:100px;
  --max-w:      1400px;
  --pad-x:      3rem;
  --transition: 0.2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
ul { list-style: none; }

/* ── Inner layout helper ── */
.inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* ─────────────────────────────────────────────
   TICKER (top red bar)
   ───────────────────────────────────────────── */
.ticker {
  background: var(--ticker-bg);
  height: var(--ticker-h);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker__track {
  display: inline-flex;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker-scroll 22s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  font-family: var(--font-tick);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FF0000;
  display: flex;
  align-items: center;
  gap: 2rem;
  text-shadow:
    0 0 4px #FF0000,
    0 0 12px rgba(255,0,0,0.7),
    0 0 24px rgba(255,0,0,0.4);
}
.ticker__item::after {
  content: '|';
  color: #FF0000;
  opacity: 0.5;
}
@keyframes ticker-scroll { to { transform: translateX(-50%); } }

/* ─────────────────────────────────────────────
   NAV
   ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--bg);
  display: flex;
  align-items: center;
}
.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-inline: var(--pad-x);
  gap: 2rem;
}
.nav__logo img { height: 28px; width: auto; }

/* Desktop nav links */
.nav__links {
  display: flex;
  align-items: stretch;
  gap: 1.75rem;
  flex: 1;
}
.nav__dlink {
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: normal;
  color: var(--text);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--transition);
}
.nav__dlink::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background: rgba(255,255,255,0.25);
  transition: width 0.4s ease;
}
.nav__dlink:hover { color: var(--text-dim); }
.nav__dlink:hover::after { width: 100%; }
.nav__dlink svg { opacity: 0.7; flex-shrink: 0; }

/* Right-side actions */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.nav__dlink--tickets {
  gap: 0.45rem;
}
.nav__btn-sponsor {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #131924;
  color: #fff;
  padding: 0.45rem 1rem;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: normal;
  border-radius: 5px;
  white-space: nowrap;
  transition: opacity var(--transition);
}
.nav__btn-sponsor:hover { opacity: 0.85; }

/* Burger — hidden on desktop */
.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 0;
}
.nav__burger img { width: 26px; }

/* Full-screen mobile menu */
.nav__menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  padding: calc(var(--ticker-h) + var(--nav-h) + 2rem) var(--pad-x) var(--pad-x);
  gap: 1rem;
}
.nav__menu.open { display: flex; }
.nav__link {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: normal;
  color: var(--text);
  line-height: 1.2;
  transition: color var(--transition);
}
.nav__link:hover { color: var(--text-dim); }
.nav__menu-close {
  position: absolute;
  top: calc(var(--ticker-h) + 0.75rem);
  right: var(--pad-x);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text);
  padding: 0.5rem;
}

/* Mobile: hide desktop links, show burger */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__dlink--tickets { display: none; }
  .nav__btn-sponsor { display: none; }
  .nav__burger { display: block; }
}

/* ─────────────────────────────────────────────
   HERO (full-width photo)
   ───────────────────────────────────────────── */
.hero-img {
  display: block;
  width: calc(100% - 30px);
  margin: 0 15px 15px;
  aspect-ratio: 16 / 4.9;
  object-fit: cover;
  object-position: center 65%;
  background: #242627;
}

/* ─────────────────────────────────────────────
   CALL FOR DEMO (yellow band — overlaps hero)
   ───────────────────────────────────────────── */
.call-demo {
  background: rgba(255,255,255,0.85);
  padding: 2.25rem 0;
  border-bottom: none;
}
.call-demo .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .call-demo .inner { grid-template-columns: 1fr; gap: 1.5rem; }
}
.call-demo__rule {
  border: none;
  border-top: 7.5px solid #242627;
  margin-bottom: 0.7rem;
}
.call-demo__title {
  font-family: var(--font-fono);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: normal;
  color: #242627;
  line-height: 1.0;
  margin-bottom: 1.25rem;
}
/* Metro-sign tag: [3 black] | [arrow] | [Las Suertes] */
.las-suertes-tag {
  display: inline-flex;
  align-items: stretch;
  border: 2px solid #242627;
  border-top: 7.5px solid #242627;
  height: 46px;
}
.las-suertes-tag__num {
  align-self: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--yellow);
  color: #242627;
  font-family: var(--font-head);
  font-weight: normal;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 0.625rem;
}
.las-suertes-tag__arrow {
  width: 46px;
  border-left: 2px solid #242627;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.las-suertes-tag__arrow img {
  width: 18px;
  height: 18px;
  filter: brightness(0);
}
.las-suertes-tag__name {
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  border-left: 2px solid #242627;
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: normal;
  color: #242627;
  white-space: nowrap;
}
.call-demo__text {
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.5vw, 1.375rem);
  font-weight: normal;
  color: #242627;
  line-height: 1.4;
  padding-inline: 3rem;
  align-self: start;
  padding-top: 0;
  margin-top: -8px;
}

/* ── Call-demo banner slider ── */
.call-demo__slider {
  position: relative;
  overflow: hidden;
}
.call-demo__slide {
  position: absolute;
  top: 0; left: 0; right: 0;
  visibility: hidden;
  will-change: transform;
  padding: 2.25rem 0;
}
.call-demo__slide.cfd-active {
  visibility: visible;
  animation: cfd-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.call-demo__slide.cfd-exit {
  visibility: visible;
  animation: cfd-out 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes cfd-in {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
@keyframes cfd-out {
  from { transform: translateY(0); }
  to   { transform: translateY(-100%); }
}
.cfd-indicators {
  display: flex;
  gap: 6px;
  padding: 0 2rem 1.5rem 4rem;
}
.cfd-dot {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}
.cfd-dot__line {
  height: 2px;
  background: rgba(36,38,39,0.18);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: background 0.3s;
}
.cfd-dot__line::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 0%;
  background: #000;
}
.cfd-dot.is-active .cfd-dot__line {
  background: rgba(0,0,0,0.12);
}
.cfd-dot.is-active .cfd-dot__line::after {
  animation: cfd-dot-fill 5s linear forwards;
}
.cfd-dot.is-done .cfd-dot__line {
  background: rgba(0,0,0,0.12);
}
.cfd-dot.is-done .cfd-dot__line::after {
  width: 100%;
}
.cfd-dot__label {
  font-family: var(--font-head);
  font-size: clamp(0.6rem, 0.9vw, 0.75rem);
  color: rgba(36,38,39,0.35);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s;
}
.cfd-dot.is-active .cfd-dot__label {
  color: #242627;
}
.cfd-dot.is-done .cfd-dot__label {
  color: rgba(36,38,39,0.6);
}
@keyframes cfd-dot-fill {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ─────────────────────────────────────────────
   MAIN DARK SECTION
   (tagline left + metro viz right)
   ───────────────────────────────────────────── */
.main-section {
  padding: 5rem var(--pad-x);
}
.main-section .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .main-section .inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* Left column */
.itinerary-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.itinerary-col-right {
  text-align: right;
}
.itinerary-col-right .main-left__rule,
.itinerary-col-right .main-left__rule--bold {
  margin-left: auto;
  margin-right: 0;
}
.main-left__rule {
  border: none;
  border-top: 1.5px solid #fff;
  margin-bottom: 0.26rem;
  width: 65%;
}
.main-left__rule--bold {
  border: none;
  border-top: 7.5px solid #fff;
  margin-bottom: 5px;
  width: 65%;
}
.main-left__tagline {
  font-family: var(--font-head);
  font-size: 23px;
  color: #fff;
  line-height: 1.3em;
  max-width: 65%;
}
.main-left__body {
  font-family: var(--font-head);
  font-size: 19px;
  color: #fff;
  line-height: 1.3em;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.4em;
}
.main-left__body p {
  margin: 0;
  overflow: hidden;
}
.main-left__question {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 4.5vw, 2.6em);
  font-weight: normal;
  line-height: 1.0;
  color: var(--text);
  margin-top: 0;
}

/* Metro visualization — right column */
.metro-viz {
  position: relative;
  padding-top: 0.5rem;
}
.metro-stops {
  position: relative;
  display: flex;
  flex-direction: column;
}
/* The vertical rail */
.metro-stops::before {
  content: '';
  position: absolute;
  left: calc(var(--label-w, 120px) + 10px);
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: rgba(255,255,255,0.12);
  z-index: 0;
}
.metro-stop {
  display: grid;
  grid-template-columns: var(--label-w, 120px) 24px 1fr;
  align-items: flex-start;
  min-height: 64px;
  position: relative;
}
.metro-stop__label {
  text-align: right;
  padding-right: 1.25rem;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: normal;
  color: var(--text-dim);
  line-height: 1.1;
  padding-top: 2px;
  transition: font-size 0.3s, color 0.3s;
}
.metro-stop--active .metro-stop__label {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--text);
  padding-top: 0;
}
.metro-stop__dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.metro-stop__circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  background: var(--bg);
  flex-shrink: 0;
  margin-top: 4px;
}
.metro-stop--active .metro-stop__circle {
  width: 20px;
  height: 20px;
  border: 2px solid var(--text);
  background: var(--text);
  margin-top: 0;
}
.metro-stop__pills {
  padding-left: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-content: flex-start;
  padding-top: 2px;
}
.metro-stop--active .metro-stop__pills {
  padding-top: 0;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  background: rgba(255,255,255,0.04);
}

/* ─────────────────────────────────────────────
   CTA HEADER
   ───────────────────────────────────────────── */
.cta-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2.2rem var(--pad-x) 0.175rem;
  max-width: var(--max-w);
  margin-inline: auto;
}
.cta-header__left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cta-header__ticker {
  overflow: hidden;
  white-space: nowrap;
  max-width: 260px;
  flex-shrink: 0;
}
.cta-header__ticker-track {
  display: inline-flex;
  gap: 2.5rem;
  animation: cta-ticker 6s linear infinite;
}
.cta-header__ticker-item {
  font-family: var(--font-tick);
  font-size: 13px;
  color: #FF0000;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow:
    0 0 4px #FF0000,
    0 0 12px rgba(255,0,0,0.7),
    0 0 24px rgba(255,0,0,0.4);
}
@keyframes cta-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.cta-header__title {
  font-family: var(--font-head);
  font-size: clamp(0.71rem, 1.33vw, 1.07rem);
  font-weight: normal;
  color: #fff;
  line-height: 1;
}
.cta-header__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #fff;
  flex-shrink: 0;
}
.cta-header__circle svg { display: block; }

/* ─────────────────────────────────────────────
   STATIONS SECTION
   ───────────────────────────────────────────── */
.stations-section {
  background: var(--bg);
  padding: 4rem 0 4.5rem;
}
.stations-layout {
  display: grid;
  grid-template-columns: 28% 1fr;
  gap: 4rem;
  align-items: start;
}
.stations__rule {
  border: none;
  border-top: 7.5px solid var(--text);
  margin: 0 0 5px;
}
.stations__heading {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: normal;
  color: var(--text);
  margin: 0;
  line-height: 1.18;
}
.station-item__rule {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 0;
}
.station-item__row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0;
}
.station-item__badge {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}
.station-item__name {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 700;
  color: var(--text);
  flex: 1;
}
.station-item__desc {
  font-family: var(--font-fono);
  font-size: clamp(0.78rem, 1vw, 0.88rem);
  color: var(--text);
  opacity: 0.6;
  text-align: right;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .stations-layout { grid-template-columns: 1fr; gap: 2rem; }
  .station-item__desc { display: none; }
}

/* ─────────────────────────────────────────────
   CTA BLOCKS — standalone buttons, each 1/3 width
   ───────────────────────────────────────────── */
.cta-band {
  background: var(--bg);
  width: 100%;
}
.cta-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1.25rem var(--pad-x) 2.75rem;
  max-width: var(--max-w);
  margin-inline: auto;
}
@media (max-width: 680px) {
  .cta-blocks { grid-template-columns: 1fr; }
}
.cta-block {
  display: flex;
  align-items: stretch;
  border: 2px solid #242627;
  background: #fff;
  transition: opacity var(--transition);
  text-decoration: none;
  color: #242627;
}
.cta-block__text {
  flex: 1;
  padding: 0.5rem 0.75rem 0.5rem 1.5rem;
  font-family: var(--font-fono);
  font-size: clamp(0.92rem, 1.43vw, 1.12rem);
  font-weight: normal;
  line-height: 1.26;
  align-self: center;
  color: #242627;
}
.cta-block__arrow-box {
  aspect-ratio: 1;
  width: 70px;
  flex-shrink: 0;
  background: #fff;
  border-left: 2px solid #242627;
  position: relative;
  overflow: hidden;
  align-self: stretch;
}
.cta-arrow {
  position: absolute;
  width: 38px;
  height: 38px;
  top: 50%;
  left: 50%;
  filter: brightness(0);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Block 1 — Arrow05 ↘: sale ↘, entra desde ↖ */
.cta-blocks .cta-block:nth-child(1) .cta-arrow--a { transform: translate(-50%, -50%); }
.cta-blocks .cta-block:nth-child(1) .cta-arrow--b { transform: translate(calc(-50% - 140%), calc(-50% - 140%)); }
.cta-blocks .cta-block:nth-child(1):hover .cta-arrow--a { transform: translate(calc(-50% + 140%), calc(-50% + 140%)); }
.cta-blocks .cta-block:nth-child(1):hover .cta-arrow--b { transform: translate(-50%, -50%); }

/* Block 2 — Arrow01 ↖: sale ↖, entra desde ↘ */
.cta-blocks .cta-block:nth-child(2) .cta-arrow--a { transform: translate(-50%, -50%); }
.cta-blocks .cta-block:nth-child(2) .cta-arrow--b { transform: translate(calc(-50% + 140%), calc(-50% + 140%)); }
.cta-blocks .cta-block:nth-child(2):hover .cta-arrow--a { transform: translate(calc(-50% - 140%), calc(-50% - 140%)); }
.cta-blocks .cta-block:nth-child(2):hover .cta-arrow--b { transform: translate(-50%, -50%); }

/* Block 3 — Arrow03 ↙: sale ↙, entra desde ↗ */
.cta-blocks .cta-block:nth-child(3) .cta-arrow--a { transform: translate(-50%, -50%); }
.cta-blocks .cta-block:nth-child(3) .cta-arrow--b { transform: translate(calc(-50% + 140%), calc(-50% - 140%)); }
.cta-blocks .cta-block:nth-child(3):hover .cta-arrow--a { transform: translate(calc(-50% - 140%), calc(-50% + 140%)); }
.cta-blocks .cta-block:nth-child(3):hover .cta-arrow--b { transform: translate(-50%, -50%); }

/* ─────────────────────────────────────────────
   PHOTO ROW (una foto, 3 cajas encima)
   ───────────────────────────────────────────── */
.photo-row {
  position: relative;
  overflow: hidden;
  padding: 0 var(--pad-x);
}
.photo-row__img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 4.8;
  object-position: center 50%;
}
.photo-row__overlay {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-w);
  padding-inline: var(--pad-x);
  display: flex;
  flex-direction: column;
}
.photo-row__heading {
  text-align: center;
  padding-bottom: 1.25rem;
}
.photo-row__heading-rule {
  border: none;
  border-top: 3px solid #fff;
  margin: 0 0 1rem;
}
.photo-row__heading-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: normal;
  color: #fff;
  margin: 0;
  line-height: 1.1;
}
.photo-row__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}
.photo-row__card {
  background: var(--bg);
  padding: 1.5rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 680px) {
  .photo-row__img { aspect-ratio: 3 / 2; }
  .photo-row__overlay { position: static; transform: none; padding: 0; }
  .photo-row__cards { grid-template-columns: 1fr; }
  .photo-row__card { padding: 1.25rem; }
}
.photo-card__title {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  font-weight: normal;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.photo-card__rule {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.22);
  margin-bottom: 0.875rem;
}
.photo-card__badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.photo-card__badges img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   NEWS SECTION — slider
   ───────────────────────────────────────────── */
.news-label {
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: #888;
  margin: 0;
  padding: 1.5rem 0 0.25rem;
  background: var(--bg-light);
}
.news-section {
  background: linear-gradient(to bottom, var(--bg-light) 75%, #fff 100%);
  margin-top: 0;
  position: relative;
}
.news-slides-viewport {
  overflow: hidden;
  position: relative;
}
.news-slides-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}
.news-slide {
  flex-shrink: 0;
  width: 100%;
}
.news-slide .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  padding-block: 4.5rem 4rem;
}
@media (max-width: 768px) {
  .news-slide .inner { grid-template-columns: 1fr; gap: 2rem; }
}
.news-nav-bar {
  position: absolute;
  right: var(--pad-x);
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.news-nav-bar .news-dots {
  pointer-events: auto;
}
.news-dots {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: fit-content;
}
.news-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(36, 38, 39, 0.22);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.news-dot--active {
  background: #242627;
  transform: scale(1.4);
}
.news__rule {
  border: none;
  border-top: 7.5px solid #242627;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 0.3rem;
}
.news__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: normal;
  color: #242627;
  line-height: 1.05;
  margin-bottom: 0.5rem;
  word-spacing: -0.06em;
}
.news__date {
  font-family: var(--font-fono);
  font-size: 0.875rem;
  color: #242627;
  margin-bottom: 1.5rem;
  margin-top: 15px;
}
.news__link {
  display: inline-flex;
  align-items: stretch;
  border: 1.5px solid #242627;
  border-top: 7.5px solid #242627;
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: normal;
  color: #242627;
  overflow: hidden;
  transition: opacity var(--transition);
}
.news__link:hover { opacity: 0.7; }
.news__link-icon {
  background: #242627;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  flex-shrink: 0;
}
.news__link-icon img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}
.news__link-label {
  padding: 0.5rem 1.25rem;
  display: flex;
  align-items: center;
}
.news__photo {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  display: block;
  background: #c8c8c4;
  margin-top: 0;
}

/* ─────────────────────────────────────────────
   LOGOS MARQUEE
   ───────────────────────────────────────────── */
.logos-marquee {
  background: var(--bg);
  padding: 3rem 0 calc(3rem - 20px);
  margin-top: 60px;
  overflow: hidden;
}
.logos-marquee__overflow {
  overflow: hidden;
}
.logos-marquee__track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: logos-scroll 55s linear infinite;
}
.logos-marquee__track:hover { animation-play-state: paused; }
@keyframes logos-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-item {
  flex-shrink: 0;
  width: 220px;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}
.logo-item:hover { border-color: rgba(255,255,255,0.4); }
.logo-item__cat {
  font-family: var(--font-head);
  font-size: 0.68rem;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 0.55rem 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.logo-item__logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  padding: 1.1rem 0.9rem;
  display: flex;
  align-items: center;
  min-height: 70px;
}

/* ─────────────────────────────────────────────
   NETWORKING ACORDEÓN
   ───────────────────────────────────────────── */
.networking-section {
  background: var(--bg);
  padding: 5rem 0 6rem;
}
.nacc { display: flex; flex-direction: column; }

.nacc-item { overflow: hidden; }

.nacc-header {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}
.nacc-rule {
  border: none;
  border-top: 5.5px solid rgba(255,255,255,0.2);
  margin: 0;
  width: 100%;
  transition: border-color 0.3s;
}
.nacc-item.is-open .nacc-rule { border-top-color: #fff; }

.nacc-header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: start;
  padding-top: 18px;
  padding-bottom: 18px;
}
.nacc-title {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 4.5vw, 2.6em);
  font-weight: normal;
  color: rgba(255,255,255,0.35);
  line-height: 1;
  margin: 0;
  transition: color 0.3s;
}
.nacc-item.is-open .nacc-title { color: #fff; }

.nacc-badge {
  display: inline-flex;
  align-items: stretch;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-top: 7px solid rgba(255,255,255,0.25);
  transition: border-color 0.3s;
  width: 240px;
  flex-shrink: 0;
}
.nacc-item.is-open .nacc-badge {
  border-top-color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.nacc-badge__icon {
  background: #8B1A35;
  width: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-right: 1.5px solid rgba(255,255,255,0.25);
}
.nacc-badge__icon svg {
  width: 20px;
  height: 20px;
}
.nacc-badge__label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: #fff;
  padding: 0.55rem 0.9rem;
  white-space: nowrap;
  flex: 1;
}
.nacc-badge__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.7rem;
  border-left: 1.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.nacc-item.is-open .nacc-badge__arrow {
  transform: rotate(180deg);
}

.nacc-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
}

.nacc-text {
  font-family: var(--font-fono);
  font-size: 19px;
  color: #fff;
  line-height: 1.3em;
  margin: 0;
  padding: 1.5rem 0 2.5rem;
  max-width: 50%;
}
@media (max-width: 680px) {
  .nacc-header-inner { grid-template-columns: 1fr; gap: 1rem; }
  .nacc-text { max-width: 100%; }
}

/* ─────────────────────────────────────────────
   APP SECTION (white)
   ───────────────────────────────────────────── */
.app-section {
  background: #fff;
  padding: 4rem var(--pad-x) 5rem;
  text-align: center;
}
.app-section__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: normal;
  color: #242627;
  line-height: 1.05;
  max-width: 14ch;
  margin: 0 auto 2rem;
}
.app-section__stores {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
/* Metro-style store buttons */
.store-btn {
  display: inline-flex;
  align-items: stretch;
  border: 2px solid #242627;
  border-top: 7.5px solid #242627;
  border-radius: 0;
  height: 52px;
  overflow: hidden;
  text-decoration: none;
  transition: opacity var(--transition);
}
.store-btn:hover { opacity: 0.75; }
.store-btn__icon {
  width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 2px solid #242627;
  flex-shrink: 0;
  color: #242627;
}
.store-btn__icon svg { display: block; }
.store-btn__text {
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: normal;
  color: #242627;
  white-space: nowrap;
}

/* Pills + phone layout */
.app-mockup-wrap {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  height: 400px;
}
.app-phone {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: auto;
  display: block;
}
.app-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.1rem;
  background: #242627;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  color: #fff;
  white-space: nowrap;
  position: absolute;
}

/* ─────────────────────────────────────────────
   SPEAKERS MARQUEE
   ───────────────────────────────────────────── */
.speakers-marquee {
  background: var(--bg);
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}
.speakers-marquee__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  max-width: var(--max-w);
  margin-inline: auto;
  margin-bottom: 2rem;
}
.speakers-marquee__title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: normal;
  color: #fff;
  line-height: 1;
}
.speakers-marquee__link {
  font-family: var(--font-head);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.speakers-marquee__link:hover { color: #fff; }
.speakers-marquee__overflow {
  overflow: hidden;
}
.speakers-marquee__track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: sp-marquee 55s linear infinite;
}
.speakers-marquee__track:hover { animation-play-state: paused; }
@keyframes sp-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.speakers-marquee .speaker-card {
  width: 22vw;
  min-width: 260px;
  max-width: 380px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}
.speakers-marquee .speaker-card__img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.speakers-marquee .speaker-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.speakers-marquee .speaker-card__name {
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: #fff;
  font-weight: normal;
  line-height: 1.2;
  margin: 0;
}
.speakers-marquee .speaker-card__role {
  font-family: var(--font-head);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: rgba(255,255,255,0.45);
}

/* ─────────────────────────────────────────────
   NEWSLETTER
   ───────────────────────────────────────────── */
.newsletter-section {
  background: #fff;
  padding: 0;
}
.newsletter-rule--top {
  border: none;
  border-top: 1.5px solid #242627;
  margin: 0;
}
.newsletter-rule--bottom {
  border: none;
  border-top: 3px solid #242627;
  margin: 0;
}
.newsletter-form {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.75rem 0;
}
.newsletter-input {
  flex: 1;
  min-width: 0;
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  color: #242627;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
}
.newsletter-input::placeholder { font-family: var(--font-fono); color: rgba(36,38,39,0.65); opacity: 1; }
.newsletter-consent {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}
.newsletter-checkbox {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #242627;
}
.newsletter-consent span {
  font-family: var(--font-head);
  font-size: 0.875rem;
  color: #242627;
}
.newsletter-btn {
  display: flex;
  align-items: stretch;
  border: 2px solid #242627;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  font-family: var(--font-head);
  transition: border-color 0.2s;
}
.newsletter-btn__icon {
  position: relative;
  width: 36px;
  background: #242627;
  overflow: hidden;
  flex-shrink: 0;
}
.nl-arrow {
  position: absolute;
  width: 13px;
  height: 13px;
  top: 50%;
  left: 50%;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  /* Arrow01 points ↖ — flip to ↗ */
}
/* Arrow A: visible, pointing ↗ */
.nl-arrow--a { transform: translate(-50%, -50%) scaleX(-1); }
/* Arrow B: off-screen bottom-left (300% of 13px ≈ 39px) */
.nl-arrow--b { transform: translate(calc(-50% - 300%), calc(-50% + 300%)) scaleX(-1); }
/* Hover: A exits top-right, B enters center */
.newsletter-btn:hover .nl-arrow--a { transform: translate(calc(-50% + 300%), calc(-50% - 300%)) scaleX(-1); }
.newsletter-btn:hover .nl-arrow--b { transform: translate(-50%, -50%) scaleX(-1); }
.newsletter-btn__text {
  display: flex;
  align-items: center;
  padding: 0.6rem 1rem;
  font-size: 0.9375rem;
  color: #242627;
  white-space: nowrap;
}
.newsletter-form.is-sent .newsletter-btn__text::after  { content: '✓ Suscrito'; }
.newsletter-form.is-sent .newsletter-btn__text span   { display: none; }
.newsletter-form.is-sent .newsletter-btn__icon        { display: none; }
.newsletter-form.is-error .newsletter-btn__text::after { content: 'Error — inténtalo de nuevo'; }
.newsletter-form.is-error .newsletter-btn__text span  { display: none; }
.newsletter-form.is-error .newsletter-btn__icon       { display: none; }

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
.footer {
  background: var(--bg);
  padding: 3.5rem var(--pad-x) 2.5rem;
}
.footer .inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 0.5rem;
}
@media (max-width: 600px) {
  .footer__nav { grid-template-columns: 1fr 1fr; }
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer__col::before {
  content: '';
  display: block;
  border-top: 1px solid rgba(255,255,255,0.25);
  margin-bottom: 0;
}
.footer__link {
  font-family: var(--font-head);
  font-size: 0.9375rem;
  color: var(--text);
  transition: color var(--transition);
  line-height: 1.5;
  padding: 0.5rem 0;
  position: relative;
}
.footer__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background: rgba(255,255,255,0.25);
  transition: width 0.6s ease calc(var(--line-i, 0) * 0.07s);
}
.footer--animated .footer__link::after { width: 100%; }
/* scroll-driven override (inside @supports block below) */
.footer__link:hover { color: var(--text-dim); }
.footer__link--dim  { color: var(--text-dim); font-size: 0.875rem; }
.footer__link--no-line::after { display: none; }
.footer__link--bold { font-family: var(--font-head); font-weight: normal; }
.footer__the-officer-logo {
  height: 20px;
  width: auto;
}
.footer__link--pipe {
  color: var(--text-dim);
  font-size: 0.875rem;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  padding-top: 3rem;
}
.footer__logo-img {
  width: 33%;
  max-width: 420px;
  min-width: 200px;
  height: auto;
}
.footer__credit {
  font-family: var(--font-fono);
  font-size: 0.875rem;
  color: var(--text-dim);
}
.footer__credit strong { color: rgba(255,255,255,0.65); font-weight: normal; }

/* ─────────────────────────────────────────────
   INNER PAGES — common
   ───────────────────────────────────────────── */
.page-hero {
  padding: 5rem var(--pad-x) 4rem;
  border-bottom: 1px solid var(--border);
}
.page-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: normal;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}
.page-hero__body {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text-dim);
  max-width: 55ch;
  line-height: 1.7;
}

/* Shared card for inner pages */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.card-item {
  background: var(--bg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background var(--transition);
}
.card-item:hover { background: rgba(255,255,255,0.03); }

/* Buttons (inner pages) */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: normal;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--outline {
  border-color: var(--border-med);
  color: var(--text);
  background: none;
}
.btn--outline:hover { border-color: rgba(255,255,255,0.5); }
.btn--solid {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn--solid:hover { background: rgba(255,255,255,0.85); }
.btn--yellow {
  background: var(--yellow);
  color: #242627;
  border-color: var(--yellow);
}
.btn--yellow:hover { background: #f0ce00; }
.btn img { width: 14px; height: 14px; filter: invert(1) brightness(0); }
.btn--outline img { filter: invert(1); }

/* Filter tabs (speakers) */
.filter-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  background: none;
  border: 1px solid var(--border-med);
  color: var(--text-dim);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: normal;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--text);
  color: var(--text);
}

/* Speaker card */
.speaker-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.speaker-card:hover { border-color: var(--border-med); }
.speaker-card__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: #242627;
  display: block;
}
.speaker-card__body { padding: 1.25rem; }
.speaker-card__badge { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.625rem; }
.speaker-card__badge img { width: 22px; height: 22px; }
.speaker-card__name { font-family: var(--font-head); font-weight: normal; font-size: 1rem; margin-bottom: 0.25rem; }
.speaker-card__role { font-size: 0.8125rem; color: var(--text-dim); }

/* Lines & Stops */
.line-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 3rem; }
.line-tab {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: none; border: 1px solid var(--border-med); color: var(--text-dim);
  padding: 0.45rem 1.1rem; border-radius: var(--radius-pill);
  font-family: var(--font-head); font-size: 0.8125rem; font-weight: normal;
  cursor: pointer; transition: var(--transition);
}
.line-tab img { width: 20px; height: 20px; }
.line-tab.active, .line-tab:hover { border-color: var(--text); color: var(--text); }
.line-content { display: none; }
.line-content.active { display: block; }

.stop-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.stop-row:last-child { border-bottom: none; }
.stop-time { font-size: 0.8125rem; color: var(--text-muted); font-family: var(--font-head); font-weight: normal; }
.stop-name { font-family: var(--font-head); font-size: 1.125rem; font-weight: normal; margin-bottom: 0.375rem; }
.stop-speaker { font-size: 0.875rem; color: var(--text-dim); }

/* Experiences */
.exp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.exp-item { background: var(--bg); padding: 2.5rem; display: flex; flex-direction: column; gap: 1rem; transition: background var(--transition); }
.exp-item:hover { background: rgba(255,255,255,0.03); }
.exp-cat { font-size: 0.75rem; font-weight: normal; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }
.exp-title { font-family: var(--font-head); font-size: 1.25rem; font-weight: normal; }
.exp-desc { font-size: 0.9375rem; color: var(--text-dim); line-height: 1.65; flex: 1; }
.exp-footer { display: flex; justify-content: space-between; align-items: center; }
.exp-price { font-family: var(--font-head); font-weight: normal; font-size: 1rem; }

/* Tickets */
.ticket-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.ticket-card {
  border: 1px solid var(--border-med);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition);
}
.ticket-card:hover { border-color: rgba(255,255,255,0.35); }
.ticket-card--featured { border-color: var(--yellow); }
.ticket-card__type { font-size: 0.75rem; font-weight: normal; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }
.ticket-card__name { font-family: var(--font-head); font-size: 1.5rem; font-weight: normal; }
.ticket-card__price { font-family: var(--font-head); font-size: 3rem; font-weight: normal; line-height: 1; }
.ticket-card__price span { font-size: 1rem; vertical-align: super; }
.ticket-card__features { display: flex; flex-direction: column; gap: 0.625rem; flex: 1; }
.ticket-feature { font-size: 0.9375rem; color: var(--text-dim); padding-left: 1.25rem; position: relative; }
.ticket-feature::before { content: '—'; position: absolute; left: 0; color: var(--text-muted); }

/* Sponsors / Partners */
.sponsor-level { margin-bottom: 4rem; }
.sponsor-level__title { font-size: 0.75rem; font-weight: normal; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.sponsor-logos { display: flex; flex-wrap: wrap; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.sponsor-logo-item { background: var(--bg); flex: 1 1 200px; min-height: 100px; display: flex; align-items: center; justify-content: center; padding: 2rem; transition: background var(--transition); }
.sponsor-logo-item:hover { background: rgba(255,255,255,0.03); }
.sponsor-logo-item img { max-height: 50px; filter: brightness(0) invert(0.5); transition: filter var(--transition); }
.sponsor-logo-item:hover img { filter: brightness(0) invert(1); }
.sponsor-logo-item span { color: var(--text-muted); font-size: 0.875rem; }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.8125rem; font-weight: normal; color: var(--text-dim); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--border-med);
  border-radius: var(--radius-sm); padding: 0.75rem 1rem; color: var(--text);
  font-family: var(--font-body); font-size: 0.9375rem; outline: none; transition: border-color var(--transition);
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: rgba(255,255,255,0.5); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

/* Utility */
.section { padding: 5rem var(--pad-x); }
.section-title { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: normal; line-height: 1.05; margin-bottom: 2.5rem; }
.text-dim { color: var(--text-dim); }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }

/* ── LOGO ANIMATION ── */
.nav__logo { overflow: hidden; }

@keyframes under-appear {
  from { opacity: 0; }
  to   { opacity: 1; }
}
#logo-under {
  animation: under-appear 0.25s ease 0s both;
}

@keyframes summit-rise {
  from { transform: translateY(34px); opacity: 0; }
  20%  { opacity: 1; }
  to   { transform: translateY(0); opacity: 1; }
}
#logo-summit {
  animation: summit-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}

/* ── ITINERARY SCROLL-DRIVEN METRO (horizontal, rotated labels) ── */
.itinerary-wrapper {
  background: var(--bg);
}
.itinerary-sticky {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  padding-block-start: calc(11.4vh - 50px);
  padding-block-end: 3rem;
}
.itinerary-sticky .inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
}

.metro-wagon-svg {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 0;
  opacity: 0.5 !important;
}

.metro-frame {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  margin-top: calc(2.5rem + 20px);
}
.metro-frame__side {
  flex: 1;
  background: #000;
}
.metro-panel {
  flex: 0 0 100%;
  margin-top: 0;
  background: #000;
  border-radius: 6px;
  padding: 10px;
  box-shadow:
    0 0 0 2px #1a1a1a,
    0 8px 32px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.metro-panel__screen {
  background: var(--bg);
  border-radius: 2px;
  padding: calc(4.2rem + 10px) 0 calc(3.5rem + 20px);
}
.itinerary-metro {
  position: relative;
  margin-top: 0;
}
/* track at dot center: stop-height(90) - half-dot(10) = 80px */
.itinerary-track {
  position: absolute;
  top: 80px;
  height: 4px;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
  /* left/width set by JS after measuring dot positions */
}
/* progressive fill overlay */
.itinerary-track-fill {
  position: absolute;
  top: 80px;
  height: 4px;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 2px;
  transition: none;
  z-index: 1;
  pointer-events: none;
  transform-origin: left center;
  transform: scaleX(0);
  will-change: transform;
}
.itinerary-stops-row {
  position: relative;
  height: 90px;
}
.itinerary-stop {
  position: absolute;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
  transform: translateX(-50%);
}
/* rotated label — anchor sits just above the dot */
.itinerary-stop__name {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform-origin: bottom left;
  transform: rotate(-52deg);
  font-family: var(--font-fono);
  font-size: clamp(0.95rem, 1.8vw, 1.6rem);
  font-weight: normal;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
  line-height: 1;
  transition: color 0.15s ease;
}
.itinerary-stop--active .itinerary-stop__name {
  color: #fff;
}
.itinerary-stop__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.22);
  background: var(--bg);
  transition: border-color 0.15s ease, background 0.15s ease;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.itinerary-stop--active .itinerary-stop__dot {
  border-color: #fff;
  background: #fff;
}
.itinerary-stop__pills {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  pointer-events: none;
}
.itinerary-pill {
  display: block;
  background: #fff;
  color: var(--bg);
  padding: 6.8px 21.6px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: normal;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  opacity: 0;
  transform: scale(0.2);
  transform-origin: center top;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.2s ease;
}
.itinerary-pill--visible {
  opacity: 1;
  transform: scale(1);
}

/* ── CTA block blink-in ── */
[data-blink] {
  opacity: 0;
}
[data-blink].blink-in {
  animation: cta-blink 0.55s linear calc(var(--blink-delay, 0s)) forwards;
}
@keyframes cta-blink {
  0%,  9%  { opacity: 0; }
  10%, 24% { opacity: 1; }
  25%, 39% { opacity: 0; }
  40%, 54% { opacity: 1; }
  55%, 69% { opacity: 0; }
  70%, 100%{ opacity: 1; }
}

/* ─────────────────────────────────────────────
   SCROLL ANIMATIONS
   ───────────────────────────────────────────── */
[data-anim] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--anim-delay, 0s);
}
[data-anim="fade"] {
  transform: none;
}
[data-anim="scale"] {
  transform: scale(0.96);
}
[data-anim].in-view {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-anim] { transition: none; opacity: 1; transform: none; }
}

/* ── Text line reveal: base structure ── */
.line-wrap {
  display: block;
  overflow: hidden;
  line-height: inherit;
}
.line-inner {
  display: block;
  will-change: transform;
}

/* ── Scroll-driven (JS sets these via style) ── */
.anim-hr {
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
}
.footer__col::before {
  transform-origin: left center;
  transform: scaleX(var(--col-p, 0));
}
.footer__link::after {
  width: calc(var(--link-p, 0) * 100%);
  transition: none;
}
