:root {
  --navy-950: #061426;
  --navy-900: #07182d;
  --navy-850: #0a203a;
  --navy-800: #102a47;
  --blue-700: #1d4f77;
  --cyan-400: #49d7ff;
  --cyan-300: #8ce8ff;
  --gold-400: #f2b84b;
  --coral-400: #ff6b5c;
  --ink: #10243b;
  --ink-soft: #4b5f72;
  --paper: #f4f0e7;
  --paper-2: #fbfaf6;
  --white: #fff;
  --line: rgba(16, 36, 59, 0.16);
  --line-dark: rgba(255, 255, 255, 0.16);
  --container: 1200px;
  --header-height: 76px;
  --shadow-lg: 0 30px 80px rgba(2, 13, 25, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--paper-2);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--gold-400);
  color: var(--navy-950);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cyan-400);
  outline-offset: 4px;
}

img,
svg {
  display: block;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 16px;
  color: var(--navy-950);
  background: var(--cyan-400);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  color: var(--white);
  background: rgba(6, 20, 38, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  background: rgba(6, 20, 38, 0.94);
  box-shadow: 0 10px 32px rgba(2, 13, 25, 0.18);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 48px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--cyan-400);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.brand-mark circle {
  fill: var(--gold-400);
  stroke: none;
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-copy strong {
  font-size: 15px;
  letter-spacing: 0.15em;
}

.brand-copy span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 25px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
  transition: color 180ms ease;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 1px;
  background: var(--cyan-400);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.primary-nav > a:not(.nav-cta):hover {
  color: var(--white);
}

.primary-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 10px 17px;
  color: var(--navy-950);
  background: var(--gold-400);
  font-size: 13px;
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  background: #ffc75c;
  transform: translateY(-2px);
}

.nav-cta svg,
.button svg,
.text-link svg,
.topic-card-cta a svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 220ms ease, opacity 160ms ease;
}

.hero {
  position: relative;
  min-height: 760px;
  padding-top: var(--header-height);
  color: var(--white);
  background: var(--navy-950);
  isolation: isolate;
  overflow: hidden;
}

.hero-art,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-art {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  opacity: 0.95;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 20, 38, 0.98) 0%, rgba(6, 20, 38, 0.93) 35%, rgba(6, 20, 38, 0.38) 66%, rgba(6, 20, 38, 0.08) 100%),
    linear-gradient(0deg, rgba(6, 20, 38, 0.72) 0%, transparent 38%);
}

.hero-grid,
.final-cta-grid {
  z-index: -1;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(73, 215, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 215, 255, 0.18) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-inner {
  display: flex;
  min-height: 684px;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding-block: 72px 114px;
}

.hero-copy {
  width: min(100%, 735px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral-400);
  box-shadow: 0 0 0 6px rgba(255, 107, 92, 0.12);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(255, 107, 92, 0.12); }
  50% { box-shadow: 0 0 0 9px rgba(255, 107, 92, 0); }
}

.edition {
  margin: 32px 0 -5px;
  color: var(--cyan-300);
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(76px, 10.4vw, 146px);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.9;
}

.hero h1 span {
  color: var(--gold-400);
  font-weight: 400;
}

.hero-statement {
  max-width: 650px;
  margin: 26px 0 31px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(20px, 2.1vw, 29px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.hero-statement em {
  display: block;
  color: var(--gold-400);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.12em;
}

.hero-meta {
  display: grid;
  width: min(100%, 700px);
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-meta > div {
  padding: 17px 21px 17px 0;
}

.hero-meta > div + div {
  padding-left: 21px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-meta span {
  color: var(--white);
  font-family: "DM Mono", monospace;
  font-size: 16px;
  letter-spacing: 0.06em;
}

.hero-meta p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.hero-actions,
.legacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 750;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--navy-950);
  background: var(--gold-400);
}

.button-primary:hover {
  background: #ffc75c;
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.04);
}

.button-ghost:hover {
  border-color: var(--cyan-400);
  background: rgba(73, 215, 255, 0.08);
}

.countdown-card {
  align-self: flex-end;
  width: min(100%, 330px);
  margin-bottom: 17px;
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 20, 38, 0.72);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.countdown-card > p {
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.6);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid rgba(255, 255, 255, 0.16);
}

.countdown > div {
  display: grid;
  padding: 13px 4px;
  text-align: center;
}

.countdown > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.countdown strong {
  font-family: "DM Mono", monospace;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.countdown span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  text-transform: uppercase;
}

.countdown-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
}

.status-pill {
  padding: 5px 8px;
  color: var(--cyan-300);
  border: 1px solid rgba(73, 215, 255, 0.28);
  font-family: "DM Mono", monospace;
  text-transform: uppercase;
}

.hero-ribbon {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(6, 20, 38, 0.84);
  overflow: hidden;
}

.ribbon-track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  gap: 28px;
  animation: ticker 28s linear infinite;
}

.ribbon-track span {
  color: rgba(255, 255, 255, 0.68);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
}

.ribbon-track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-400);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.proof-grid {
  display: grid;
  min-height: 106px;
  grid-template-columns: 1.5fr repeat(3, 0.75fr);
  align-items: stretch;
}

.proof-grid > div {
  display: flex;
  align-items: center;
}

.proof-grid > div + div {
  border-left: 1px solid var(--line);
}

.proof-intro {
  gap: 14px;
  padding-right: 32px;
}

.proof-intro p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.proof-intro strong {
  color: var(--ink);
}

.mini-mark {
  width: 29px;
  height: 29px;
  border: 1px solid var(--blue-700);
  background: linear-gradient(135deg, transparent 47%, var(--gold-400) 48%, var(--gold-400) 52%, transparent 53%);
  transform: rotate(45deg);
}

.proof-stat {
  flex-direction: column;
  justify-content: center;
  padding: 18px 24px;
}

.proof-stat strong {
  font-family: "DM Mono", monospace;
  font-size: 23px;
  font-weight: 500;
}

.proof-stat span {
  color: var(--ink-soft);
  font-size: 10px;
  text-align: center;
}

.section {
  padding-block: clamp(88px, 10vw, 144px);
}

.split-heading {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 70px;
}

.section-kicker {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--ink);
}

.section-kicker span {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "DM Mono", monospace;
  font-size: 10px;
}

.section-kicker p {
  margin: 7px 0 0;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.overline {
  margin: 0 0 18px;
  color: var(--blue-700);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.overline-cyan {
  color: var(--cyan-400);
}

.overline-gold {
  color: var(--gold-400);
}

.section-lead h2,
.process-intro h2,
.faq-heading h2,
.legacy-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(39px, 5.3vw, 70px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.serif-accent {
  color: var(--blue-700);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
}

.lead-copy {
  max-width: 790px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 82px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-card {
  position: relative;
  min-height: 340px;
  padding: 37px 35px 42px;
  transition: background 220ms ease;
}

.value-card + .value-card {
  border-left: 1px solid var(--line);
}

.value-card:hover {
  background: var(--paper);
}

.value-card .card-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(16, 36, 59, 0.35);
  font-family: "DM Mono", monospace;
  font-size: 10px;
}

.value-card > svg {
  width: 42px;
  height: 42px;
  margin-bottom: 65px;
  fill: none;
  stroke: var(--blue-700);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.value-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.topics-section {
  color: var(--white);
  background: var(--navy-900);
}

.section-header {
  display: grid;
  grid-template-columns: 0.3fr 1fr 0.45fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 64px;
}

.section-kicker-dark,
.section-kicker-light {
  color: rgba(255, 255, 255, 0.72);
}

.section-header h2,
.dates-heading h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-header h2 span,
.dates-heading h2 span {
  color: var(--cyan-400);
  font-family: "Playfair Display", Georgia, serif;
}

.section-summary {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.75;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.topic-card {
  position: relative;
  min-height: 322px;
  padding: 25px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
  transition: background 220ms ease;
}

.topic-card:hover {
  background: rgba(255, 255, 255, 0.04);
}

.topic-index {
  color: rgba(255, 255, 255, 0.38);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.topic-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin: 33px 0 27px;
  border: 1px solid rgba(73, 215, 255, 0.4);
  color: var(--cyan-400);
}

.topic-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topic-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.topic-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.65;
}

.topic-card-featured {
  background: var(--blue-700);
}

.topic-card-featured:hover {
  background: #245d89;
}

.topic-card-featured .topic-line {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 135px;
  height: 135px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(255, 255, 255, 0.04), 0 0 0 44px rgba(255, 255, 255, 0.03);
}

.topic-card-cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--gold-400);
  color: var(--navy-950);
}

.topic-card-cta:hover {
  background: #ffc75c;
}

.topic-card-cta .topic-index,
.topic-card-cta p {
  color: rgba(6, 20, 38, 0.64);
}

.topic-card-cta h3 {
  margin-top: auto;
  font-size: 23px;
}

.topic-card-cta a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 15px;
  border-top: 1px solid rgba(6, 20, 38, 0.24);
  font-size: 12px;
  font-weight: 800;
}

.process-section {
  background: var(--paper);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 95px;
  align-items: start;
}

.process-intro {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.process-intro .section-kicker,
.faq-heading .section-kicker {
  margin-bottom: 62px;
}

.process-intro > p:not(.overline) {
  max-width: 520px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  margin-top: 27px;
  padding-block: 8px;
  color: var(--blue-700);
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 750;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-item {
  display: grid;
  grid-template-columns: 55px 1fr 30px;
  gap: 25px;
  min-height: 240px;
  align-items: start;
  padding: 42px 8px;
  border-bottom: 1px solid var(--line);
}

.step-number {
  color: var(--blue-700);
  font-family: "DM Mono", monospace;
  font-size: 12px;
}

.step-label {
  margin: 0 0 8px;
  color: var(--blue-700);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.process-item h3 {
  margin: 0 0 12px;
  font-size: 26px;
  letter-spacing: -0.035em;
}

.process-item p:last-child {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.process-item > svg {
  width: 26px;
  height: 26px;
  margin-top: 4px;
  fill: none;
  stroke: var(--blue-700);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dates-section {
  color: var(--white);
  background: var(--navy-850);
}

.dates-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 55px 82px;
}

.dates-heading {
  grid-row: span 2;
}

.dates-heading .section-kicker {
  margin-bottom: 72px;
}

.dates-heading h2 span {
  color: var(--gold-400);
}

.dates-heading > p:last-child {
  max-width: 380px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

.date-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.date-card {
  min-height: 385px;
  padding: 27px;
  color: var(--ink);
  background: var(--paper-2);
}

.date-card:last-child {
  background: var(--gold-400);
}

.date-topline,
.date-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.date-topline {
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(16, 36, 59, 0.2);
}

.date-topline span:last-child {
  color: var(--blue-700);
}

.date-display {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding: 30px 0 21px;
}

.date-display > strong {
  font-family: "DM Mono", monospace;
  font-size: 96px;
  font-weight: 400;
  letter-spacing: -0.1em;
  line-height: 0.8;
}

.date-display > div {
  display: grid;
  gap: 3px;
  padding-bottom: 2px;
  font-family: "DM Mono", monospace;
  font-size: 11px;
}

.date-info {
  padding: 16px 0;
  border-top: 1px solid rgba(16, 36, 59, 0.2);
  border-bottom: 1px solid rgba(16, 36, 59, 0.2);
}

.date-info strong {
  font-size: 10px;
}

.date-card > p {
  margin: 18px 0 0;
  color: rgba(16, 36, 59, 0.65);
  font-size: 12px;
}

.format-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.format-row {
  display: flex;
  gap: 17px;
  align-items: center;
  min-height: 95px;
  padding: 19px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.format-row svg {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--cyan-400);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.format-row div {
  display: grid;
}

.format-row span {
  color: rgba(255, 255, 255, 0.5);
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.format-row strong {
  margin-top: 4px;
  font-size: 13px;
}

.legacy-section {
  background: var(--paper-2);
}

.legacy-panel {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
}

.legacy-copy {
  padding: clamp(45px, 6vw, 78px);
  border-right: 1px solid var(--line-dark);
}

.legacy-copy .section-kicker {
  margin-bottom: 65px;
}

.legacy-copy h2 {
  font-size: clamp(36px, 4.2vw, 57px);
}

.legacy-copy .serif-accent {
  color: var(--cyan-400);
}

.legacy-copy > p:not(.overline) {
  max-width: 620px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.button-linkedin {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.button-linkedin:hover {
  color: var(--cyan-300);
  border-color: var(--cyan-400);
}

.button-linkedin svg {
  width: 19px;
  height: 19px;
}

.legacy-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.legacy-stat,
.legacy-quote {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 29px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.legacy-stat:nth-child(2n) {
  border-right: 0;
}

.legacy-stat strong {
  font-family: "DM Mono", monospace;
  font-size: 41px;
  font-weight: 400;
  line-height: 1;
}

.legacy-stat span {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  text-transform: uppercase;
}

.legacy-quote {
  grid-column: span 2;
  min-height: 230px;
  border-right: 0;
  border-bottom: 0;
  background: var(--blue-700);
}

.legacy-quote > span {
  color: var(--gold-400);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 68px;
  line-height: 0.6;
}

.legacy-quote p {
  max-width: 330px;
  margin: 15px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
  line-height: 1.4;
}

.faq-section {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.63fr 1fr;
  gap: 100px;
}

.faq-heading h2 {
  font-size: clamp(39px, 4.5vw, 59px);
}

.faq-heading > p {
  max-width: 390px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 14px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  min-height: 86px;
  padding: 29px 54px 25px 0;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.02em;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span,
.faq-item summary span::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 19px;
  height: 1px;
  background: var(--blue-700);
  content: "";
  transition: transform 220ms ease;
}

.faq-item summary span::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

.faq-item[open] summary span::after {
  transform: rotate(0);
}

.faq-item p {
  margin: -6px 50px 28px 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.final-cta {
  position: relative;
  color: var(--white);
  background: var(--navy-950);
  isolation: isolate;
  overflow: hidden;
}

.final-cta::after {
  position: absolute;
  top: -160px;
  right: -100px;
  z-index: -1;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(73, 215, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(73, 215, 255, 0.025), 0 0 0 140px rgba(73, 215, 255, 0.02);
  content: "";
}

.final-cta-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-cta-inner {
  display: flex;
  min-height: 585px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 80px;
  text-align: center;
}

.final-cta h2 {
  max-width: 950px;
}

.final-cta h2 span {
  color: var(--cyan-400);
  font-family: "Playfair Display", Georgia, serif;
}

.final-cta-inner > p:not(.overline) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.6);
}

.button-large {
  min-height: 58px;
  margin-top: 32px;
  padding-inline: 28px;
}

.site-footer {
  color: var(--white);
  background: #040f1d;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-block: 70px 58px;
}

.footer-brand > p {
  max-width: 440px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
}

.footer-links h3 {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.45);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  width: fit-content;
  min-height: 36px;
  padding-block: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--cyan-400);
}

.footer-bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.38);
  font-family: "DM Mono", monospace;
  font-size: 9px;
}

.footer-bottom div {
  display: flex;
  gap: 25px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

.reveal-delay {
  transition-delay: 140ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .primary-nav {
    gap: 18px;
  }

  .primary-nav > a:not(.nav-cta) {
    font-size: 11px;
  }

  .hero-inner {
    align-items: flex-end;
  }

  .countdown-card {
    display: none;
  }

  .section-header {
    grid-template-columns: 0.28fr 1fr;
  }

  .section-summary {
    grid-column: 2;
    max-width: 520px;
  }

  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-layout {
    gap: 60px;
  }

  .dates-layout {
    grid-template-columns: 0.6fr 1fr;
    gap: 44px;
  }

  .date-display > strong {
    font-size: 76px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100dvh - var(--header-height));
    align-content: start;
    gap: 0;
    padding: 18px;
    background: var(--navy-950);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav > a:not(.nav-cta) {
    min-height: 51px;
    padding: 15px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
  }

  .primary-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 18px;
  }

  .hero,
  .hero-inner {
    min-height: 720px;
  }

  .hero-art {
    object-position: 62% center;
    opacity: 0.66;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(6, 20, 38, 0.97) 0%, rgba(6, 20, 38, 0.78) 65%, rgba(6, 20, 38, 0.26) 100%), linear-gradient(0deg, rgba(6, 20, 38, 0.8), transparent 45%);
  }

  .hero-inner {
    padding-block: 65px 100px;
  }

  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .proof-intro {
    grid-column: span 3;
    min-height: 75px;
    justify-content: center;
    padding: 15px;
    border-bottom: 1px solid var(--line);
  }

  .split-heading,
  .process-layout,
  .dates-layout,
  .legacy-panel,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .split-heading,
  .process-layout,
  .faq-layout {
    gap: 50px;
  }

  .values-grid {
    margin-top: 60px;
  }

  .value-card {
    padding-inline: 24px;
  }

  .process-intro {
    position: static;
  }

  .dates-heading {
    grid-row: auto;
  }

  .dates-heading .section-kicker {
    margin-bottom: 45px;
  }

  .legacy-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }
}

@media (max-width: 650px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-art {
    object-position: 65% center;
    opacity: 0.48;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(6, 20, 38, 0.97), rgba(6, 20, 38, 0.68)), linear-gradient(0deg, rgba(6, 20, 38, 0.88), transparent 60%);
  }

  .hero-grid {
    background-size: 48px 48px;
  }

  .hero-inner {
    min-height: 760px;
    align-items: flex-end;
    padding-block: 58px 88px;
  }

  .edition {
    margin-top: 25px;
    font-size: 20px;
  }

  .hero h1 {
    font-size: clamp(58px, 18.4vw, 72px);
  }

  .hero-statement {
    margin-block: 23px;
    font-size: 19px;
  }

  .hero-meta {
    grid-template-columns: 1fr 1fr;
  }

  .hero-meta > div {
    padding: 14px 13px 14px 0;
  }

  .hero-meta > div + div {
    padding-left: 13px;
  }

  .hero-meta > div:nth-child(3) {
    grid-column: span 2;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .hero-actions,
  .legacy-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-intro {
    grid-column: auto;
  }

  .proof-grid > div + div {
    min-height: 82px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .proof-stat {
    flex-direction: row;
    justify-content: space-between;
  }

  .proof-stat span {
    text-align: right;
  }

  .section {
    padding-block: 78px;
  }

  .split-heading {
    gap: 40px;
  }

  .section-lead h2,
  .process-intro h2,
  .faq-heading h2,
  .legacy-copy h2,
  .final-cta h2,
  .section-header h2,
  .dates-heading h2 {
    font-size: 39px;
  }

  .lead-copy {
    font-size: 16px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 275px;
  }

  .value-card + .value-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .value-card > svg {
    margin-bottom: 43px;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .section-summary {
    grid-column: auto;
  }

  .topics-grid {
    grid-template-columns: 1fr;
  }

  .topic-card {
    min-height: 285px;
  }

  .process-intro .section-kicker,
  .faq-heading .section-kicker {
    margin-bottom: 45px;
  }

  .process-item {
    grid-template-columns: 38px 1fr;
    gap: 14px;
    min-height: 230px;
  }

  .process-item > svg {
    display: none;
  }

  .process-item h3 {
    font-size: 22px;
  }

  .date-cards,
  .format-panel {
    grid-template-columns: 1fr;
  }

  .date-card {
    min-height: 350px;
  }

  .date-display > strong {
    font-size: 90px;
  }

  .legacy-copy {
    padding: 38px 27px 45px;
  }

  .legacy-copy .section-kicker {
    margin-bottom: 45px;
  }

  .legacy-stats {
    grid-template-columns: 1fr;
  }

  .legacy-stat:nth-child(n) {
    min-height: 145px;
    border-right: 0;
  }

  .legacy-quote {
    grid-column: auto;
  }

  .faq-item summary {
    font-size: 15px;
  }

  .final-cta-inner {
    min-height: 540px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Ecosistema Comunidad IA LATAM · actualización visual 2026
   -------------------------------------------------------------------------- */

:root {
  --navy-950: #050916;
  --navy-900: #080e20;
  --navy-850: #0c1530;
  --navy-800: #131e3e;
  --blue-700: #245dcc;
  --cyan-400: #24d8ee;
  --cyan-300: #7bf3ff;
  --purple-400: #8f73ff;
  --magenta-400: #f14f99;
  --gold-400: #ff9b58;
  --coral-400: #ff527d;
  --paper: #f0f2f8;
  --paper-2: #f8f9fc;
  --ink: #0b1430;
  --ink-soft: #526077;
  --header-height: 72px;
  --community-bar-height: 36px;
  --shadow-lg: 0 28px 90px rgba(0, 0, 0, 0.38);
}

html {
  scroll-padding-top: calc(var(--header-height) + var(--community-bar-height) + 24px);
}

body {
  background: var(--paper-2);
}

.community-bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1100;
  height: var(--community-bar-height);
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 20% -180%, rgba(36, 216, 238, 0.32), transparent 38%),
    radial-gradient(circle at 78% 220%, rgba(143, 115, 255, 0.32), transparent 35%),
    #090e20;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.community-bar-inner {
  display: grid;
  height: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.community-bar a,
.community-bar p {
  margin: 0;
}

.community-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.community-bar small {
  color: rgba(255, 255, 255, 0.4);
  font: inherit;
}

.community-bar p span {
  color: var(--cyan-300);
}

.community-signal {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 14px var(--cyan-400);
}

.community-back {
  justify-self: end;
  color: rgba(255, 255, 255, 0.56);
  transition: color 180ms ease;
}

.community-back:hover {
  color: var(--white);
}

.community-back svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.site-header {
  top: var(--community-bar-height);
  height: var(--header-height);
  background: rgba(7, 12, 27, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.09);
}

.site-header.scrolled {
  background: rgba(7, 12, 27, 0.96);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.brand-mark {
  color: var(--cyan-400);
  filter: drop-shadow(0 0 12px rgba(36, 216, 238, 0.32));
}

.brand-mark circle {
  fill: var(--magenta-400);
}

.brand-copy strong,
.hero h1,
.section-lead h2,
.process-intro h2,
.faq-heading h2,
.legacy-copy h2,
.final-cta h2,
.section-header h2,
.dates-heading h2 {
  font-family: Sora, Inter, system-ui, sans-serif;
}

.brand-copy strong {
  background: linear-gradient(90deg, #fff 12%, var(--cyan-300) 72%, #aa8cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.primary-nav {
  gap: 24px;
}

.primary-nav > a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.nav-cta,
.button-primary {
  color: #07101f;
  background: linear-gradient(112deg, var(--cyan-400), #5ab4ff 52%, var(--purple-400));
  box-shadow: 0 12px 34px rgba(80, 140, 255, 0.2);
}

.nav-cta {
  min-height: 42px;
  padding-inline: 20px;
  border-radius: 999px;
}

.nav-cta:hover,
.button-primary:hover {
  background: linear-gradient(112deg, #69efff, #7fc2ff 52%, #a795ff);
  box-shadow: 0 15px 38px rgba(93, 113, 255, 0.3);
}

.hero {
  min-height: 850px;
  padding-top: calc(var(--header-height) + var(--community-bar-height));
  background: var(--navy-950);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  filter: blur(12px);
}

.hero::before {
  top: 18%;
  right: 25%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(108, 79, 255, 0.2), transparent 68%);
}

.hero::after {
  top: 8%;
  left: -190px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(18, 182, 218, 0.16), transparent 66%);
}

.hero-art {
  object-position: 67% center;
  opacity: 0.76;
  filter: saturate(1.15) contrast(1.05) hue-rotate(3deg);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 9, 22, 0.99) 0%, rgba(5, 9, 22, 0.94) 36%, rgba(5, 9, 22, 0.38) 68%, rgba(5, 9, 22, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 9, 22, 0.88) 0%, transparent 50%),
    radial-gradient(circle at 74% 40%, rgba(105, 80, 255, 0.12), transparent 28%);
}

.hero-grid {
  opacity: 0.22;
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, rgba(0, 0, 0, 0.45) 55%, transparent 88%);
}

.hero-inner {
  position: relative;
  min-height: 738px;
  padding-block: 82px 120px;
}

.hero-copy {
  width: min(100%, 760px);
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.eyebrow {
  border-color: rgba(36, 216, 238, 0.32);
  border-radius: 999px;
  background: rgba(36, 216, 238, 0.05);
  color: var(--cyan-300);
}

.edition {
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.hero h1 {
  width: max-content;
  max-width: 100%;
  background: linear-gradient(98deg, #ffffff 0 54%, var(--cyan-400) 66%, var(--purple-400) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(72px, 9.3vw, 130px);
  font-weight: 800;
  letter-spacing: -0.085em;
  line-height: 0.93;
  text-shadow: 0 0 70px rgba(36, 216, 238, 0.09);
}

.hero h1 span {
  color: var(--cyan-400);
  -webkit-text-fill-color: var(--cyan-400);
}

.hero-statement {
  max-width: 680px;
  margin-block: 25px 28px;
  font-size: clamp(19px, 1.9vw, 27px);
}

.hero-statement em,
.serif-accent,
.section-header h2 span,
.dates-heading h2 span {
  background: linear-gradient(100deg, var(--cyan-400), #6bbaff 48%, var(--purple-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: Sora, Inter, sans-serif;
  font-style: normal;
  font-weight: 650;
}

.hero-meta {
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-meta > div + div {
  border-left-color: rgba(255, 255, 255, 0.12);
}

.hero-meta span {
  color: var(--cyan-300);
}

.button {
  min-height: 52px;
  border-radius: 999px;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

.hero-community-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.43);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-community-note svg {
  width: 13px;
  height: 13px;
  fill: var(--magenta-400);
  filter: drop-shadow(0 0 7px rgba(241, 79, 153, 0.55));
}

.countdown-card {
  position: relative;
  width: min(100%, 350px);
  padding: 24px;
  border: 1px solid rgba(117, 221, 255, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(6, 11, 26, 0.74);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.countdown-card::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(36, 216, 238, 0.45), transparent 40%, rgba(143, 115, 255, 0.42));
  content: "";
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.countdown strong {
  color: var(--white);
  font-size: 25px;
}

.status-pill {
  border-color: rgba(143, 115, 255, 0.35);
  border-radius: 999px;
  color: #c1b4ff;
}

.hero-coordinate {
  position: absolute;
  right: -5px;
  bottom: 104px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.36);
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
}

.hero-coordinate i {
  width: 1px;
  height: 32px;
  background: linear-gradient(var(--cyan-400), var(--purple-400));
}

.hero-ribbon {
  border-top-color: rgba(255, 255, 255, 0.1);
  background: rgba(7, 11, 25, 0.88);
}

.ribbon-track span {
  color: rgba(255, 255, 255, 0.58);
}

.ribbon-track i {
  background: var(--magenta-400);
  box-shadow: 0 0 12px rgba(241, 79, 153, 0.62);
}

.proof-strip {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.09);
  background: #090f22;
}

.proof-grid > div + div {
  border-left-color: rgba(255, 255, 255, 0.09);
}

.proof-intro p,
.proof-stat span {
  color: rgba(255, 255, 255, 0.5);
}

.proof-intro strong {
  color: var(--white);
}

.proof-stat strong {
  background: linear-gradient(105deg, var(--cyan-300), var(--purple-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mini-mark {
  border-color: var(--cyan-400);
  background: linear-gradient(135deg, transparent 47%, var(--purple-400) 48%, var(--purple-400) 52%, transparent 53%);
}

.intro-section {
  background:
    radial-gradient(circle at 85% 12%, rgba(143, 115, 255, 0.09), transparent 26%),
    var(--paper-2);
}

.section-lead h2,
.process-intro h2,
.faq-heading h2,
.legacy-copy h2,
.final-cta h2,
.section-header h2,
.dates-heading h2 {
  font-weight: 700;
}

.value-card,
.topic-card,
.date-card,
.format-panel,
.faq-item {
  transition: transform 220ms var(--ease), background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.value-card:hover {
  background: #fff;
  box-shadow: 0 22px 60px rgba(24, 42, 83, 0.08);
  transform: translateY(-5px);
}

.topics-section {
  background:
    radial-gradient(circle at 12% 14%, rgba(36, 216, 238, 0.12), transparent 26%),
    radial-gradient(circle at 88% 72%, rgba(143, 115, 255, 0.13), transparent 30%),
    var(--navy-900);
}

.topics-grid {
  gap: 12px;
  border: 0;
}

.topic-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.topic-card:hover {
  border-color: rgba(36, 216, 238, 0.32);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.topic-card-featured {
  background: linear-gradient(145deg, rgba(36, 216, 238, 0.12), rgba(143, 115, 255, 0.07));
}

.topic-card-cta {
  background: linear-gradient(145deg, rgba(143, 115, 255, 0.15), rgba(241, 79, 153, 0.08));
}

.dates-section,
.legacy-section,
.final-cta {
  background-color: var(--navy-950);
}

.date-card,
.format-panel {
  border-color: rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.date-card:hover {
  border-color: rgba(36, 216, 238, 0.3);
  transform: translateY(-4px);
}

.legacy-panel {
  border-radius: 24px;
  overflow: hidden;
}

.final-cta {
  background-image:
    radial-gradient(circle at 50% 35%, rgba(72, 203, 255, 0.13), transparent 34%),
    radial-gradient(circle at 75% 70%, rgba(143, 115, 255, 0.14), transparent 30%);
}

.button-linkedin {
  border-radius: 999px;
}

@media (max-width: 1100px) {
  .countdown-card,
  .hero-coordinate {
    display: none;
  }

  .hero-copy {
    width: min(100%, 790px);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 66px;
    --community-bar-height: 32px;
  }

  .community-bar-inner {
    grid-template-columns: 1fr auto;
  }

  .community-bar p,
  .community-bar small {
    display: none;
  }

  .primary-nav {
    top: calc(var(--header-height) + var(--community-bar-height));
    max-height: calc(100dvh - var(--header-height) - var(--community-bar-height));
    background: rgba(5, 9, 22, 0.98);
  }

  .hero,
  .hero-inner {
    min-height: 760px;
  }

  .hero-inner {
    align-items: center;
    padding-block: 64px 104px;
  }
}

@media (max-width: 650px) {
  .community-back {
    font-size: 0;
  }

  .community-back::before {
    color: rgba(255, 255, 255, 0.58);
    content: "Comunidad";
    font-size: 8px;
  }

  .hero,
  .hero-inner {
    min-height: 800px;
  }

  .hero-inner {
    align-items: flex-end;
    padding-block: 60px 92px;
  }

  .hero-art {
    object-position: 65% center;
    opacity: 0.48;
  }

  .hero h1 {
    width: auto;
    font-size: clamp(55px, 17.6vw, 70px);
  }

  .hero-community-note {
    display: none;
  }

  .proof-grid > div + div {
    border-top-color: rgba(255, 255, 255, 0.09);
  }

  .topics-grid {
    gap: 10px;
  }
}

/* Countdown principal: primer elemento informativo del hero */
.countdown-start {
  position: absolute;
  top: calc(var(--header-height) + var(--community-bar-height) + 20px);
  left: 50%;
  z-index: 5;
  display: grid;
  width: min(calc(100% - 48px), var(--container));
  max-width: var(--container);
  grid-template-columns: minmax(240px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 13px 18px;
  border-radius: 18px;
  transform: translateX(-50%) !important;
}

.countdown-start .countdown-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 10px;
}

.countdown-start .countdown-intro p {
  margin: 0;
  color: var(--cyan-300);
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.countdown-start .countdown-intro strong {
  grid-column: 2;
  color: var(--white);
  font-family: Sora, Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.countdown-start .countdown {
  width: 350px;
  border: 0;
}

.countdown-start .countdown > div {
  min-width: 78px;
  padding: 3px 10px;
}

.countdown-start .countdown strong {
  font-size: 27px;
  font-variant-numeric: tabular-nums;
}

.countdown-start .countdown-footer {
  display: grid;
  justify-content: end;
  gap: 7px;
  padding: 0;
  text-align: right;
}

.countdown-start .status-pill {
  justify-self: end;
}

.hero-inner {
  min-height: 790px;
  padding-top: 178px;
}

@media (max-width: 1100px) {
  .countdown-start {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .countdown-start .countdown-footer {
    display: none;
  }
}

@media (max-width: 900px) {
  .countdown-start {
    top: calc(var(--header-height) + var(--community-bar-height) + 14px);
    width: min(calc(100% - 36px), var(--container));
    gap: 15px;
  }

  .countdown-start .countdown {
    width: 330px;
  }

  .countdown-start .countdown > div {
    min-width: 70px;
  }

  .hero,
  .hero-inner {
    min-height: 900px;
  }

  .hero-inner {
    padding-top: 170px;
  }
}

@media (max-width: 650px) {
  .countdown-start {
    width: min(calc(100% - 30px), var(--container));
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 14px;
    border-radius: 16px;
  }

  .countdown-start .countdown-intro {
    grid-template-columns: auto 1fr auto;
  }

  .countdown-start .countdown-intro strong {
    grid-column: 3;
    font-size: 9px;
  }

  .countdown-start .countdown {
    width: 100%;
  }

  .countdown-start .countdown > div {
    min-width: 0;
    padding: 5px 3px;
  }

  .countdown-start .countdown strong {
    font-size: 24px;
  }

  .hero,
  .hero-inner {
    min-height: 980px;
  }

  .hero-inner {
    padding-top: 205px;
  }
}

/* --------------------------------------------------------------------------
   Mobile-first refinement · 2026-09
   -------------------------------------------------------------------------- */

a,
button,
summary {
  touch-action: manipulation;
}

@media (max-width: 900px) {
  .community-bar-inner {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    gap: 16px;
  }

  .menu-toggle {
    flex: 0 0 48px;
    border-radius: 12px;
    transition: background 180ms ease;
  }

  .menu-toggle:hover,
  .menu-toggle:active,
  .menu-toggle[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.08);
  }

  .primary-nav {
    min-height: calc(100dvh - var(--header-height) - var(--community-bar-height));
    padding: 20px 18px max(24px, env(safe-area-inset-bottom));
    background:
      radial-gradient(circle at 100% 0, rgba(143, 115, 255, 0.16), transparent 32%),
      radial-gradient(circle at 0 70%, rgba(36, 216, 238, 0.1), transparent 30%),
      rgba(5, 9, 22, 0.985);
  }

  .primary-nav > a:not(.nav-cta) {
    display: flex;
    min-height: 56px;
    align-items: center;
    padding-inline: 10px;
    font-family: Sora, Inter, sans-serif;
    font-size: 16px;
    font-weight: 600;
  }

  .primary-nav > a:not(.nav-cta)::before {
    width: 5px;
    height: 5px;
    margin-right: 12px;
    border-radius: 50%;
    background: var(--cyan-400);
    content: "";
    opacity: 0.58;
  }

  .nav-cta {
    min-height: 54px;
    margin-top: 22px;
    font-size: 15px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    align-items: flex-start;
    padding-top: 176px;
    padding-bottom: 104px;
  }

  .hero-copy {
    width: min(100%, 700px);
  }

  .hero h1 {
    font-size: clamp(64px, 14vw, 98px);
  }

  .hero-meta {
    max-width: 660px;
  }

  .proof-grid {
    min-height: 96px;
  }

  .section {
    padding-block: 88px;
  }

  .section-header,
  .split-heading,
  .process-layout,
  .faq-layout {
    gap: 40px;
  }

  .values-grid {
    margin-top: 52px;
  }

  .value-card {
    min-height: 300px;
  }

  .topics-grid {
    gap: 10px;
  }

  .topic-card {
    min-height: 290px;
  }

  .process-item {
    min-height: 210px;
  }

  .date-card,
  .format-panel,
  .legacy-panel {
    border-radius: 18px;
  }

  .footer-links a,
  .footer-bottom a {
    min-height: 44px;
    align-items: center;
  }
}

@media (max-width: 650px) {
  :root {
    --mobile-gutter: 18px;
  }

  .container,
  .community-bar-inner {
    width: min(calc(100% - (var(--mobile-gutter) * 2)), var(--container));
  }

  .community-bar {
    letter-spacing: 0.075em;
  }

  .community-bar-inner > a:first-child {
    white-space: nowrap;
  }

  .site-header {
    backdrop-filter: blur(20px) saturate(1.2);
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 35px;
    height: 35px;
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .brand-copy span {
    margin-top: 4px;
    font-size: 8px;
  }

  .countdown-start {
    top: calc(var(--header-height) + var(--community-bar-height) + 12px);
    width: calc(100% - (var(--mobile-gutter) * 2));
    gap: 10px;
    padding: 13px 14px 11px;
    border-radius: 15px;
  }

  .countdown-start .countdown-intro {
    grid-template-columns: auto 1fr;
    column-gap: 9px;
  }

  .countdown-start .countdown-intro strong {
    grid-column: 2;
    color: rgba(255, 255, 255, 0.68);
    font-size: 9px;
  }

  .countdown-start .countdown {
    gap: 0;
  }

  .countdown-start .countdown > div {
    padding-block: 4px;
  }

  .countdown-start .countdown strong {
    font-size: clamp(22px, 7vw, 28px);
  }

  .countdown-start .countdown span {
    margin-top: 2px;
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .hero-inner {
    padding-top: 196px;
    padding-bottom: 82px;
  }

  .hero-art {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 9, 22, 0.94), rgba(5, 9, 22, 0.58)),
      linear-gradient(0deg, rgba(5, 9, 22, 0.98) 0%, rgba(5, 9, 22, 0.18) 62%, rgba(5, 9, 22, 0.58) 100%);
  }

  .eyebrow {
    padding: 7px 10px;
    font-size: 9px;
  }

  .edition {
    margin-top: 24px;
    font-size: clamp(17px, 5vw, 20px);
  }

  .hero h1 {
    width: auto;
    font-size: clamp(51px, 16.3vw, 68px);
    letter-spacing: -0.075em;
  }

  .hero-statement {
    max-width: 34ch;
    margin-block: 21px 24px;
    font-size: 18px;
    line-height: 1.42;
  }

  .hero-meta > div {
    min-height: 74px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-meta span {
    font-size: 15px;
  }

  .hero-meta p {
    line-height: 1.4;
  }

  .hero-actions,
  .legacy-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .button {
    min-height: 54px;
    padding-inline: 18px;
    font-size: 14px;
  }

  .hero-ribbon {
    height: 42px;
  }

  .proof-intro {
    min-height: 68px;
    justify-content: flex-start;
    padding-inline: 0;
  }

  .proof-stat {
    min-height: 70px;
    padding: 14px 4px;
  }

  .proof-stat strong {
    font-size: 21px;
  }

  .proof-stat span {
    max-width: 18ch;
    line-height: 1.35;
  }

  .section {
    padding-block: 64px;
  }

  .section-kicker span {
    width: 32px;
    height: 32px;
  }

  .split-heading,
  .process-layout,
  .faq-layout {
    gap: 32px;
  }

  .section-lead h2,
  .process-intro h2,
  .faq-heading h2,
  .legacy-copy h2,
  .final-cta h2,
  .section-header h2,
  .dates-heading h2 {
    font-size: clamp(32px, 9.3vw, 39px);
    line-height: 1.08;
  }

  .lead-copy,
  .process-intro > p,
  .dates-heading > p,
  .legacy-copy > p:not(.overline),
  .faq-heading > p {
    font-size: 16px;
    line-height: 1.65;
  }

  .values-grid {
    margin-top: 42px;
  }

  .value-card {
    min-height: 0;
    padding: 28px 22px 30px;
  }

  .value-card > svg {
    margin-bottom: 32px;
  }

  .section-header {
    gap: 28px;
    margin-bottom: 38px;
  }

  .topic-card {
    min-height: 0;
    padding: 22px;
  }

  .topic-card h3 {
    max-width: 19ch;
    font-size: 21px;
  }

  .process-intro .section-kicker,
  .faq-heading .section-kicker,
  .dates-heading .section-kicker,
  .legacy-copy .section-kicker {
    margin-bottom: 30px;
  }

  .process-item {
    min-height: 0;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 28px 0;
  }

  .process-item h3 {
    font-size: 20px;
    line-height: 1.25;
  }

  .process-item p:last-child {
    font-size: 14px;
    line-height: 1.65;
  }

  .date-cards {
    gap: 10px;
  }

  .date-card {
    min-height: 0;
    padding: 24px 22px 26px;
  }

  .date-display {
    margin-block: 22px;
  }

  .date-display > strong {
    font-size: 78px;
  }

  .format-panel {
    gap: 0;
    padding: 8px 20px;
  }

  .format-row {
    min-height: 78px;
    padding-block: 16px;
  }

  .format-row + .format-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .legacy-panel {
    border-radius: 18px;
  }

  .legacy-copy {
    padding: 32px 22px 36px;
  }

  .legacy-stat:nth-child(n) {
    min-height: 118px;
    padding: 24px 22px;
  }

  .legacy-quote {
    padding: 28px 22px;
  }

  .faq-item summary {
    min-height: 64px;
    gap: 16px;
    padding-block: 18px;
    font-size: 16px;
    line-height: 1.4;
  }

  .faq-item p {
    margin-top: 0;
    padding-right: 0;
    font-size: 15px;
    line-height: 1.65;
  }

  .final-cta-inner {
    min-height: auto;
    padding-block: 72px;
  }

  .final-cta-inner > p:not(.overline) {
    font-size: 16px;
  }

  .footer-main {
    gap: 36px;
    padding-block: 56px 40px;
  }

  .footer-brand > p {
    max-width: 34ch;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-links a {
    display: flex;
    padding-block: 10px;
    line-height: 1.35;
  }

  .footer-bottom {
    gap: 8px;
    padding-block: 20px max(24px, env(safe-area-inset-bottom));
    line-height: 1.6;
  }
}

@media (max-width: 390px) {
  :root {
    --mobile-gutter: 15px;
  }

  .community-bar-inner > a:first-child {
    font-size: 8px;
  }

  .community-back::before {
    content: "Inicio";
  }

  .countdown-start .countdown-intro strong {
    display: none;
  }

  .countdown-start .countdown-intro p {
    font-size: 8px;
  }

  .hero-inner {
    padding-top: 182px;
  }

  .hero h1 {
    font-size: clamp(47px, 15.7vw, 61px);
  }

  .hero-statement {
    font-size: 17px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 900px) and (max-height: 600px) and (orientation: landscape) {
  :root {
    --community-bar-height: 0px;
  }

  .community-bar {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .countdown-start {
    top: calc(var(--header-height) + 10px);
    grid-template-columns: 1fr auto;
    padding-block: 9px;
  }

  .countdown-start .countdown-intro strong {
    display: none;
  }

  .countdown-start .countdown {
    width: 300px;
  }

  .countdown-start .countdown strong {
    font-size: 21px;
  }

  .hero-inner {
    padding-top: 150px;
  }

  .hero h1 {
    font-size: clamp(56px, 10vw, 76px);
  }
}
