/* =============================================
   VYNKO — Landing Page (Animated Edition)
   ============================================= */

:root {
  --navy: #17233D;
  --navy-light: #1e2f4f;
  --navy-dark: #0f1829;
  --ink: #0E1626;
  --slate: #5B6B85;
  --line: #E4E8F0;
  --teal: #1FB2A3;
  --teal-dark: #179a8d;
  --teal-light: #e6f7f5;
  --gold: #E8A620;
  --gold-light: #fdf3dc;
  --off-white: #F7F8FA;
  --white: #ffffff;
  --gray-500: #5B6B85;
  --gray-700: #374151;
  --shadow-sm: 0 2px 12px rgba(23, 35, 61, 0.08);
  --shadow-md: 0 8px 32px rgba(23, 35, 61, 0.14);
  --shadow-lg: 0 16px 48px rgba(23, 35, 61, 0.2);
  --shadow-teal: 0 8px 32px rgba(31, 178, 163, 0.35);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --header-height: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .section__title, .hero__headline, .stat__num,
.framework-step__num, .nav__cta {
  font-family: var(--font-display);
}

.mono,
.stat__num,
.timeline__hour,
.timeline__content time,
.scoring-list__pts,
.framework-step__num,
.section__badge {
  font-family: var(--font-mono);
}

/* ---- Discipline icons ---- */
.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.15em;
}

.icon--sm { width: 18px; height: 18px; }
.icon--md { width: 28px; height: 28px; }
.icon--lg { width: 36px; height: 36px; }
.icon--xl { width: 44px; height: 44px; }

.icon--teal { color: var(--teal); }
.icon--navy { color: var(--navy); }
.icon--gold { color: var(--gold); }
.icon--light { color: rgba(255,255,255,0.9); }

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }

/* ---- Logo ---- */
.logo { display: block; height: auto; object-fit: contain; }

.logo--nav {
  width: 160px;
  opacity: 0.95;
}

.logo--hero {
  width: min(480px, 92vw);
  margin: 0 auto;
  animation: logoGlow 4s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  0% { filter: drop-shadow(0 0 8px rgba(31,178,163,0.25)); }
  100% { filter: drop-shadow(0 0 24px rgba(31,178,163,0.5)); }
}

.logo--footer {
  width: 200px;
  opacity: 0.95;
}

/* ---- Scroll progress ---- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ---- Text gradients ---- */
.text-gradient {
  background: linear-gradient(135deg, var(--teal), var(--navy));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold), #f5c842);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::before { opacity: 1; }

.btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
}

.btn--primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(31, 178, 163, 0.5);
}

.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn--white:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--teal);
  font-size: 0.9rem;
  padding: 10px 20px;
}

.btn--outline:hover { background: var(--teal-light); }

.btn--lg { padding: 18px 36px; font-size: 1.05rem; }

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(23, 35, 61, 0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s ease;
}

.header--scrolled {
  background: rgba(23, 35, 61, 0.95);
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo { display: flex; align-items: center; }

.nav__menu { display: flex; align-items: center; gap: 4px; }

.nav__menu a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}

.nav__menu a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav__cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  margin-left: 8px;
}

.nav__cta--demo {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.35) !important;
  margin-left: 0 !important;
}

.nav__cta--demo:hover {
  background: rgba(255,255,255,0.1) !important;
}

.nav__cta:hover { background: var(--teal-dark) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 40px) 0 100px;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.85;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-light) 100%);
  z-index: 1;
}

.hero__mesh::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(31,178,163,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% 85%, rgba(232,166,32,0.1) 0%, transparent 50%);
  animation: meshPulse 8s ease-in-out infinite alternate;
}

@keyframes meshPulse {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 2;
  pointer-events: none;
  animation: glowDrift 12s ease-in-out infinite;
}

.hero__glow--1 {
  width: 400px; height: 400px;
  background: rgba(31,178,163,0.15);
  top: 10%; right: 10%;
}

.hero__glow--2 {
  width: 300px; height: 300px;
  background: rgba(232,166,32,0.08);
  bottom: 15%; left: 5%;
  animation-delay: -6s;
}

@keyframes glowDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.1); }
}

.hero__orbit {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.orbit-icon {
  position: absolute;
  opacity: 0;
  animation: orbitIn 1s ease forwards, orbitFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(31,178,163,0.12);
  border: 1px solid rgba(31,178,163,0.25);
}

.orbit-icon--1 { top: 15%; left: 6%; animation-delay: 1s, 1s; }
.orbit-icon--2 { top: 20%; right: 8%; animation-delay: 1.2s, 1.2s; }
.orbit-icon--3 { bottom: 28%; left: 10%; animation-delay: 1.4s, 1.4s; }
.orbit-icon--4 { bottom: 20%; right: 6%; animation-delay: 1.6s, 1.6s; }
.orbit-icon--5 { top: 45%; left: 3%; animation-delay: 1.8s, 1.8s; width: 40px; height: 40px; }
.orbit-icon--6 { top: 50%; right: 4%; animation-delay: 2s, 2s; }

@keyframes orbitIn {
  from { opacity: 0; transform: scale(0) rotate(-30deg); }
  to { opacity: 0.35; transform: scale(1) rotate(0); }
}

@keyframes orbitFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 820px;
}

.hero__logo { margin-bottom: 28px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(31,178,163,0.3);
  border-radius: 50px;
  background: rgba(31,178,163,0.08);
}

.hero__eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero__headline {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero__headline-line {
  display: block;
}

.hero__headline-line--accent {
  background: linear-gradient(135deg, var(--teal), #5ee0d3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.68);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.hero__desc strong { color: rgba(255,255,255,0.9); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 28px;
}

/* ---- Countdown ---- */
.countdown {
  margin: 0 auto 36px;
  max-width: 420px;
  text-align: center;
}

.countdown__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}

.countdown__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.countdown__unit {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 12px 8px;
  backdrop-filter: blur(8px);
}

.countdown__value {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(1.4rem, 4vw, 1.85rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.countdown__unit-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal);
}

.countdown__done {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 8px;
}

.countdown.is-done .countdown__grid { display: none; }
.countdown.is-done .countdown__done { display: block; }
.countdown.is-done .countdown__label { display: none; }

.countdown--cta {
  margin: 28px auto 12px;
}

.countdown--cta .countdown__label { color: rgba(255,255,255,0.7); }
.countdown--cta .countdown__unit {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}

.stat { text-align: center; }

.stat__num {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.stat__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- Marquee ---- */
.marquee {
  background: var(--teal);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.marquee__track {
  display: flex;
  gap: 48px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee__track span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.marquee__track .icon { color: rgba(255,255,255,0.95); }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Sections ---- */
.section { padding: 110px 0; position: relative; }
.section--light { background: var(--off-white); }
.section--dark { background: var(--navy); }

.section--cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 40%, var(--navy) 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.section__header { text-align: center; margin-bottom: 56px; }

.section__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section__badge--teal {
  color: var(--white);
  background: rgba(31,178,163,0.2);
  border: 1px solid rgba(31,178,163,0.3);
}

.section__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.section__title--light { color: var(--white); }

.section__desc {
  color: var(--slate);
  font-size: 1.1rem;
  margin-top: 12px;
}

.section__desc--light { color: rgba(255,255,255,0.6); }

.section__note {
  text-align: center;
  margin-top: 48px;
  font-size: 1.05rem;
  color: var(--gray-700);
}

.section__note--light { color: rgba(255,255,255,0.6); }
.section__note--light strong { color: var(--teal); }

/* ---- Grid ---- */
.grid { display: grid; gap: 24px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ---- Problem cards ---- */
.card--problem {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card--problem::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.card--problem:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(31,178,163,0.2);
}

.card--problem:hover::before { transform: scaleX(1); }

.card__icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  transition: transform 0.4s ease;
}

.card--problem:hover .card__icon { transform: scale(1.1) rotate(5deg); }
.card__icon svg { width: 24px; height: 24px; }

.card--problem h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.card--problem p { font-size: 0.9rem; color: var(--slate); }

/* ---- Discipline cards ---- */
.disciplines { margin-top: 0; }

.discipline-card {
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.discipline-card--navy { background: rgba(255,255,255,0.06); color: var(--white); border: 1px solid rgba(255,255,255,0.08); }
.discipline-card--teal { background: var(--teal-light); color: var(--navy); }
.discipline-card--gold { background: linear-gradient(135deg, var(--gold-light), #fff8e8); color: var(--navy); border: 2px solid var(--gold); }

.discipline-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.discipline-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 14px;
  transition: transform 0.4s ease;
}

.discipline-card--navy .discipline-card__icon {
  background: rgba(31,178,163,0.15);
  color: var(--teal);
}

.discipline-card--teal .discipline-card__icon {
  background: rgba(23,35,61,0.08);
  color: var(--navy);
}

.discipline-card--gold .discipline-card__icon {
  background: rgba(232,166,32,0.18);
  color: var(--gold);
}

.discipline-card:hover .discipline-card__icon { transform: scale(1.1) rotate(-4deg); }

.discipline-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.discipline-card p { font-size: 0.85rem; opacity: 0.8; line-height: 1.5; }
.discipline-card--teal p, .discipline-card--gold p { color: var(--gray-700); }

.discipline-card__shine {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.discipline-card:hover .discipline-card__shine { transform: translateX(100%); }

/* ---- Cómo funciona / Marco VYNKO ---- */
.framework-steps {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 40px;
}

.framework-step {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.framework-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.framework-step__num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--teal);
  margin-bottom: 12px;
}

.framework-step h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.framework-step p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.65;
}

.framework-step strong { color: var(--navy); }

.framework-steps__arrow {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: var(--teal);
  font-weight: 300;
  flex-shrink: 0;
  padding-top: 8px;
}

.bracket-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(23,35,61,0.06);
  margin-bottom: 8px;
}

.bracket-wrap__label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.bracket-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.bracket-svg {
  width: 100%;
  min-width: 720px;
  height: auto;
  display: block;
}

.bracket-col-label {
  fill: #6b7280;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.highlight-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  max-width: 840px;
  margin: 48px auto 0;
  border-left: 4px solid var(--teal);
}

.highlight-box__icon { font-size: 2rem; flex-shrink: 0; }
.highlight-box p { font-size: 1.05rem; color: var(--slate); line-height: 1.7; }
.highlight-box strong { color: var(--ink); }

.scoring-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.scoring-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(23,35,61,0.06);
}

.scoring-card--gold {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--white) 48%);
}

.scoring-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}

.scoring-card > p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 12px;
  line-height: 1.55;
}

.scoring-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.scoring-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.scoring-list__pts {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 36px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
}

.scoring-list__pts--win { background: var(--teal-light); color: var(--teal-dark); }
.scoring-list__pts--draw { background: var(--gold-light); color: #9a7209; }
.scoring-list__pts--lose { background: var(--off-white); color: var(--gray-500); border: 1px solid rgba(23,35,61,0.08); }

.scoring-card__note {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.scoring-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scoring-bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.scoring-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.scoring-bullets strong { color: var(--navy); }

@media (max-width: 900px) {
  .framework-steps {
    flex-direction: column;
  }

  .framework-steps__arrow {
    transform: rotate(90deg);
    justify-content: center;
    padding: 0;
  }

  .scoring-grid { grid-template-columns: 1fr; }
}

/* ---- Benefits ---- */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.benefit-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  cursor: default;
}

.benefit-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.benefit-card__emoji {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-light);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-card__emoji { transform: scale(1.15); }

.benefit-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.benefit-card p { font-size: 0.9rem; color: var(--slate); }

.benefit-card__arrow {
  margin-left: auto;
  font-size: 1.2rem;
  color: var(--teal);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-card__arrow { opacity: 1; transform: translateX(0); }

/* ---- CTA ---- */
.cta__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.cta__badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  animation: badgePulse 3s ease infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}

.cta__intro { font-size: 1.15rem; max-width: 600px; margin: 0 auto 28px; opacity: 0.95; }

.cta__list {
  text-align: left;
  max-width: 520px;
  margin: 0 auto 36px;
}

.cta__list li {
  position: relative;
  padding: 10px 0 10px 32px;
  font-size: 1.05rem;
  opacity: 0.95;
}

.cta__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

.cta__deadline { margin-top: 20px; font-size: 0.9rem; opacity: 0.75; }

/* ---- Timeline ---- */
.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 48px;
}

.timeline__track {
  position: absolute;
  left: 23px;
  top: 28px;
  bottom: 28px;
  width: 4px;
  background: rgba(23,35,61,0.08);
  border-radius: 4px;
  overflow: hidden;
}

.timeline__fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--teal), var(--gold));
  border-radius: 4px;
  transition: height 0.1s linear;
}

.timeline__item {
  position: relative;
  padding: 12px 0;
}

.timeline__dot {
  position: absolute;
  left: -48px;
  width: 48px; height: 48px;
  background: var(--white);
  border: 3px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
  z-index: 1;
  transition: all 0.3s ease;
}

.timeline__item:hover .timeline__dot {
  transform: scale(1.15);
  box-shadow: var(--shadow-teal);
}

.timeline__dot--final {
  border-color: var(--gold);
  background: var(--gold-light);
}

.timeline__content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  border: 1px solid transparent;
}

.timeline__item:hover .timeline__content {
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
  border-color: rgba(31,178,163,0.2);
}

.timeline__content time {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.timeline__content h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }

.timeline__hour {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--teal-dark);
  font-weight: 600;
  background: var(--teal-light);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.timeline__desc {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.65;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

/* ---- FAQ ---- */
.faq { display: flex; flex-direction: column; gap: 10px; }

.faq__item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.faq__item[open] {
  box-shadow: var(--shadow-md);
  border-color: rgba(31,178,163,0.2);
}

.faq__item summary {
  padding: 22px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s ease;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--teal);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { color: var(--teal); }

.faq__item p {
  padding: 0 28px 22px;
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.7;
  animation: faqOpen 0.3s ease;
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq__contact { display: flex; flex-wrap: wrap; gap: 12px; padding: 0 28px 22px; }

/* ---- Footer ---- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  padding: 72px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo { display: inline-block; margin-bottom: 16px; }
.footer__tagline { font-size: 0.9rem; color: var(--teal); }

.footer__links h4, .footer__contact h4 {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.footer__links li, .footer__contact li { margin-bottom: 10px; }

.footer__links a, .footer__contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

.footer__links a:hover, .footer__contact a:hover { color: var(--teal); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ---- Reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }

  .nav__toggle { display: flex; }

  .nav__menu {
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav__menu.active { transform: translateY(0); opacity: 1; }
  .nav__menu a { width: 100%; padding: 14px 16px; }
  .nav__cta { margin-left: 0 !important; margin-top: 8px; text-align: center; }

  .grid--4 { grid-template-columns: 1fr; }

  .hero__stats { flex-direction: column; gap: 20px; padding: 24px; }
  .stat__divider { width: 40px; height: 1px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn--lg { width: 100%; }

  .highlight-box { flex-direction: column; text-align: center; }
  .benefit-card { flex-wrap: wrap; }
  .benefit-card__arrow { display: none; }

  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .orbit-icon { display: none; }
  .hero__scroll { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .logo--nav { width: 110px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal.visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .marquee__track { animation: none !important; }
  .hero__scroll-line,
  .hero__eyebrow-dot,
  .orbit-icon,
  .logo--hero { animation: none !important; }
  .hero__canvas { display: none; }
}

/* ---- Focus visible (a11y) ---- */
:focus { outline: none; }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.btn:focus-visible,
.nav__menu a:focus-visible,
.nav__logo:focus-visible,
.nav__toggle:focus-visible,
.faq__item summary:focus-visible,
.footer a:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.btn--ghost:focus-visible,
.nav__menu a:focus-visible,
.nav__logo:focus-visible,
.nav__toggle:focus-visible {
  outline-color: #5ee0d3;
}

.btn--white:focus-visible {
  outline-color: var(--navy);
  outline-offset: 3px;
}
