/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Core palette */
  --ink-950:   #04080f;
  --ink-900:   #070d1a;
  --ink-800:   #0c1528;
  --ink-700:   #111e38;
  --ink-600:   #1a2d52;
  --ink-200:   #c8d8f0;
  --ink-100:   #e4edf8;
  --ink-050:   #f2f6fc;

  --teal-500:  #001f80;
  --teal-400:  #0032A2;
  --teal-300:  #4d80e8;

  --blue-600:  #1756e8;
  --blue-500:  #2d72ff;

  --green-500: #10b981;
  --amber-500: #f59e0b;
  --red-500:   #f43f5e;

  --white:     #ffffff;
  --text:      #111827;
  --muted:     #6b7280;
  --border:    #e2e8f0;

  /* Semantic aliases */
  --c-accent:     var(--teal-400);
  --c-accent-dim: var(--teal-500);
  --c-bg:         var(--ink-900);
  --c-surface:    var(--white);

  /* Typography */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Border radius */
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   22px;
  --r-xl:   30px;
  --r-2xl:  40px;
  --r-pill: 999px;

  /* Transitions */
  --ease-out:    cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --t-fast:      180ms;
  --t-mid:       320ms;
  --t-slow:      550ms;
}

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

/* ============================================================
   GRAIN OVERLAY
   ============================================================ */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.container--sm { max-width: 760px; }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-accent-dim);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
}
.eyebrow--light { color: var(--teal-300); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.035em;
  color: var(--text);
}
.section-title--light { color: var(--white); }

.section-eyebrow { margin-bottom: 56px; }

.section-header {
  margin-bottom: clamp(40px, 7vw, 72px);
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 14px;
  max-width: 520px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: var(--r-sm);
  transition:
    transform var(--t-fast) var(--ease-out),
    box-shadow var(--t-fast) var(--ease-out),
    background var(--t-fast),
    opacity var(--t-fast);
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(.96) !important; }

/* Sizes */
.btn--sm  { font-size: .82rem;  padding: 9px 20px; }
.btn--md  { font-size: .92rem;  padding: 12px 26px; }
.btn--lg  { font-size: 1rem;    padding: 15px 34px; }
.btn--xl  { font-size: 1.05rem; padding: 17px 44px; }
.btn--full { display: flex; width: 100%; }

/* CTA — teal */
.btn--cta {
  background: var(--c-accent);
  color: var(--white);
  font-size: .9rem;
  padding: 11px 24px;
}
.btn--cta:hover {
  background: var(--teal-300);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 50, 162, .32);
}

/* CTA dark (for featured pricing card) */
.btn--cta-dark {
  background: var(--ink-900);
  color: var(--white);
  font-size: .9rem;
  padding: 11px 24px;
}
.btn--cta-dark:hover {
  background: var(--ink-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .3);
}

/* Ghost */
.btn--ghost {
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .18);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .38);
}

/* Outline light (on dark bg) */
.btn--outline-light {
  background: transparent;
  color: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, .22);
  font-size: .9rem;
  padding: 11px 24px;
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .45);
  color: var(--white);
}

/* ============================================================
   PILLS / BADGES
   ============================================================ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .01em;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .72);
}
.pill--glow {
  background: rgba(0, 50, 162, .1);
  border-color: rgba(0, 50, 162, .28);
  color: var(--teal-300);
}
.pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-500);
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ============================================================
   NAVBAR — floating pill style
   ============================================================ */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 48px);
  max-width: 1160px;
  transition: top var(--t-mid) var(--ease-out);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 16px 10px 20px;
  background: rgba(7, 13, 26, .7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-xl);
  box-shadow: 0 4px 32px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .05);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo-mark {
  width: 34px;
  height: 34px;
  background: var(--c-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -.01em;
}
.nav__logo-text em {
  font-style: normal;
  color: var(--teal-300);
}

/* Nav links */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-inline: auto;
}
.nav__link {
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .55);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .07);
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 36px;
  height: 36px;
  padding: 7px;
  background: rgba(255, 255, 255, .07);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .1);
  margin-left: auto;
  -webkit-tap-highlight-color: transparent;
}
.nav__burger-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t-mid) var(--ease-out), opacity var(--t-mid);
}
.nav__burger--open .nav__burger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger--open .nav__burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0 -100% 0 auto;
  width: min(340px, 100vw);
  background: var(--ink-800);
  z-index: 200;
  padding: 24px 28px 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: inset var(--t-mid) var(--ease-out);
  border-left: 1px solid rgba(255, 255, 255, .05);
  overflow-y: auto;
}
.drawer--open { inset: 0 0 0 auto; }

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer__close {
  color: rgba(255, 255, 255, .45);
  padding: 6px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: color var(--t-fast), background var(--t-fast);
}
.drawer__close:hover { color: var(--white); background: rgba(255,255,255,.07); }

.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer__nav a {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .75);
  padding: 13px 16px;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.drawer__nav a:hover { color: var(--c-accent); background: rgba(0, 50, 162, .06); }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-mid);
}
.drawer-backdrop--visible { opacity: 1; pointer-events: auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--ink-950);
}

/* Ambient orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero__orb--1 {
  width: 600px;
  height: 600px;
  top: -10%;
  left: -10%;
  background: radial-gradient(circle, rgba(23, 86, 232, .22) 0%, transparent 70%);
  animation: orb-drift-1 12s ease-in-out infinite;
}
.hero__orb--2 {
  width: 500px;
  height: 500px;
  top: 20%;
  right: -8%;
  background: radial-gradient(circle, rgba(0, 50, 162, .15) 0%, transparent 70%);
  animation: orb-drift-2 14s ease-in-out infinite 2s;
}
.hero__orb--3 {
  width: 350px;
  height: 350px;
  bottom: 10%;
  left: 30%;
  background: radial-gradient(circle, rgba(139, 92, 246, .1) 0%, transparent 70%);
  animation: orb-drift-1 10s ease-in-out infinite 4s;
}

/* Subtle grid lines */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* Content — 2-column grid */
.hero__body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
  padding-top: clamp(68px, 10vh, 110px);
  padding-bottom: clamp(20px, 3vh, 40px);
}

/* Left text column */
.hero__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hero__label {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(18px, 3vh, 30px);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.8vw, 4.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: clamp(14px, 2.5vh, 24px);
}
.hero__title-line { display: block; }
.hero__title-line--accent {
  background: linear-gradient(90deg, var(--c-accent) 0%, var(--teal-300) 60%, #99b8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 0.08em;
}
.hero__title-line--outline {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .25);
  color: transparent;
}

.hero__sub {
  font-size: clamp(.88rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, .52);
  line-height: 1.6;
  margin-bottom: clamp(18px, 3vh, 32px);
  max-width: 440px;
}
.hero__sub span { display: block; font-size: .9em; margin-top: 4px; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ─ Right: visual column ─ */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 340px;
}

/* ── Ukraine Map + Molecular Visual ── */
.ua-vis {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ua-vis__inner {
  position: relative;
  width: 100%;
  max-width: 660px;
  animation: ua-float 9s ease-in-out infinite;
}

.ua-vis__map {
  width: 100%;
  height: auto;
  display: block;
  filter:
    brightness(0) invert(1)
    drop-shadow(0 0 16px rgba(255, 255, 255, 0.18));
  opacity: 0.75;
}

.ua-vis__mol {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* ── City connection network ── */
.city-line {
  stroke: rgba(0, 50, 162, 0.55);
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-dasharray: 5 4;
  animation: line-march 3s linear infinite;
}
@keyframes line-march {
  to { stroke-dashoffset: -18; }
}
.city-line--sec {
  stroke: rgba(0, 50, 162, 0.35);
  stroke-width: 0.8;
  stroke-dasharray: 3 5;
}

.city-travel-dot {
  fill: #0032A2;
  filter: drop-shadow(0 0 4px rgba(0, 50, 162, 0.8));
}

.city-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  fill: rgba(0, 20, 80, 0.75);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.city-label--kyiv {
  font-size: 13px;
  fill: rgba(0, 20, 80, 0.95);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ua-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: ua-ring-expand 3.5s ease-out infinite;
}
.ua-pulse--2 {
  animation-delay: 1.75s;
}

/* ── Floating molecules ── */
.molecule {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(77, 128, 232, 0.65));
}

.molecule--1 {
  width: clamp(100px, 11vw, 155px);
  top: -22%;
  right: -10%;
  opacity: 0.92;
  animation: mol-float-1 7s ease-in-out infinite;
}

.molecule--2 {
  width: clamp(65px, 7.5vw, 105px);
  bottom: -14%;
  right: 0%;
  opacity: 0.75;
  animation: mol-float-2 9s ease-in-out infinite 1.5s;
}

.molecule--3 {
  width: clamp(75px, 8.5vw, 120px);
  bottom: -8%;
  left: -3%;
  opacity: 0.68;
  animation: mol-float-1 8s ease-in-out infinite 3s;
}

@keyframes mol-float-1 {
  0%, 100% { transform: translateY(0)    rotate(0deg); }
  33%       { transform: translateY(-14px) rotate(5deg); }
  66%       { transform: translateY(7px)   rotate(-4deg); }
}

@keyframes mol-float-2 {
  0%, 100% { transform: translateY(0)    rotate(0deg)  scale(1); }
  50%       { transform: translateY(-11px) rotate(-7deg) scale(1.04); }
}

@keyframes ua-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}
@keyframes ua-ring-expand {
  0%   { transform: scale(1);   opacity: .6; }
  100% { transform: scale(7);   opacity: 0; }
}

/* ── Floating chips ── */
.vis-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(7, 13, 26, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 10px 14px;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.vis-chip svg { color: var(--teal-300); opacity: .8; flex-shrink: 0; }
.vis-chip__label {
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.38);
  margin-bottom: 1px;
}
.vis-chip__val {
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
}
.vis-chip__big {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--teal-300);
  line-height: 1;
}
.vis-chip__sub {
  font-size: .64rem;
  color: rgba(255,255,255,.45);
  display: block;
}

.vis-chip--tl {
  top: 8%;
  left: -4%;
  animation: chip-float-a 5s ease-in-out infinite;
}
.vis-chip--tr {
  top: 18%;
  right: -5%;
  flex-direction: column;
  align-items: flex-start;
  animation: chip-float-b 6s ease-in-out infinite;
}
.vis-chip--bl {
  bottom: 22%;
  left: -6%;
  animation: chip-float-a 4.5s ease-in-out infinite 1.2s;
}
.vis-chip--br {
  bottom: 10%;
  right: -2%;
  flex-direction: column;
  align-items: flex-start;
  animation: chip-float-b 5.5s ease-in-out infinite .6s;
}

/* Bottom info band */
.hero__band {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, .07);
  background: rgba(255, 255, 255, .03);
  backdrop-filter: blur(12px);
}

.hero__band-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-block: 20px;
}

.hero-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .62);
  white-space: nowrap;
}
.hero-info__icon { flex-shrink: 0; opacity: .6; display: flex; align-items: center; }

.hero-info__sep {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, .12);
  flex-shrink: 0;
}

/* Countdown inline */
.hero-countdown {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: auto;
}
.hero-countdown__unit {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.hero-countdown__num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  min-width: 2ch;
  text-align: right;
}
.hero-countdown__lbl {
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .35);
}
.hero-countdown__sep {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .2);
  padding-inline: 2px;
  line-height: 1;
  margin-bottom: 4px;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  overflow: hidden;
  background: var(--ink-800);
  border-top: 1px solid rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  padding-block: 14px;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.marquee__item {
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .42);
  letter-spacing: .04em;
  text-transform: uppercase;
  padding-inline: 28px;
  white-space: nowrap;
}
.marquee__dot {
  color: var(--teal-300);
  opacity: .5;
  font-size: .6rem;
  flex-shrink: 0;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding-block: clamp(80px, 11vw, 130px); }
.section--dark  { background: var(--ink-800); }
.section--light { background: var(--ink-050); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about__header {
  margin-bottom: 72px;
}
.about__header .eyebrow {
  margin-bottom: 28px;
}
.about__header-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.about__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.04em;
  color: var(--ink-900);
}
.about__lead {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 14px;
}
.about__note {
  font-size: .9rem;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 32px;
}

/* Stats */
.about__stats {
  display: flex;
  align-items: center;
  padding-block: 48px;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 72px;
}
.about__stat {
  flex: 1;
  text-align: center;
}
.about__stat-div {
  width: 1px;
  height: 52px;
  background: #e5e7eb;
  flex-shrink: 0;
}
.about__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--ink-900);
  margin-bottom: 8px;
}
.about__stat-lbl {
  font-size: .75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* Features */
.about__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
}
.about__feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 50, 162, .07);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  margin-bottom: 20px;
  transition: background var(--t-fast);
}
.about__feature:hover .about__feature-icon {
  background: rgba(0, 50, 162, .13);
}
.about__feature-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.about__feature-text {
  font-size: .875rem;
  color: #6b7280;
  line-height: 1.7;
}

/* About responsive */
@media (max-width: 900px) {
  .about__header-grid { grid-template-columns: 1fr; }
  .about__features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .about__stats { flex-wrap: wrap; gap: 32px 0; }
  .about__stat { flex: 0 0 50%; }
  .about__stat-div { display: none; }
  .about__features { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   BENTO GRID (About)
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 14px;
  margin-bottom: 72px;
}

/* Main card — spans full left column, 2 rows */
.bento__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: box-shadow var(--t-mid) var(--ease-out), transform var(--t-mid) var(--ease-out), border-color var(--t-mid);
  transition-delay: var(--delay, 0ms);
}
.bento__card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
  transform: translateY(-3px);
}

/* Main text card */
.bento__card--main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  background: var(--ink-900);
  border-color: rgba(255, 255, 255, .06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bento__card--main:hover {
  border-color: rgba(255, 255, 255, .12);
}
.bento__card-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.03em;
}
.bento__card-text {
  font-size: .9rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.75;
  flex: 1;
}

/* Stat cards */
.bento__card--stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 148px;
  background: var(--ink-050);
  border-color: var(--border);
}
.bento__stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: -.04em;
}
.bento__stat-lbl {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
}

.bento__card--accent {
  background: var(--ink-900);
  border-color: rgba(255, 255, 255, .06);
}
.bento__card--accent .bento__stat-num { color: var(--teal-300); }
.bento__card--accent .bento__stat-lbl { color: rgba(255, 255, 255, .38); }

/* Feature cards */
.bento__card--feature {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bento__feature-icon { font-size: 1.6rem; line-height: 1; }
.bento__feature-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
}
.bento__feature-text {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.65;
}

.bento__card--dark {
  background: var(--ink-800);
  border-color: rgba(255, 255, 255, .06);
}
.bento__card--dark .bento__feature-title { color: var(--white); }
.bento__card--dark .bento__feature-text  { color: rgba(255, 255, 255, .45); }
.bento__card--dark:hover { border-color: rgba(255, 255, 255, .12); }

/* Note card */
.bento__card--note {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(23, 86, 232, .04);
  border-color: rgba(23, 86, 232, .12);
  border-left: 3px solid var(--blue-600);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 18px 20px;
}
.bento__card--note svg { flex-shrink: 0; color: var(--blue-600); margin-top: 2px; }
.bento__card--note p { font-size: .875rem; color: var(--muted); line-height: 1.7; }
.bento__card--note:hover { transform: none; box-shadow: none; }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners {
  padding-top: 40px;
  border-top: 1px solid var(--border);
  transition-delay: var(--delay, 0ms);
}
.partners__label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  text-align: center;
}
.partners__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
}

/* Each partner: logo + name, minimal, no card border */
.partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 32px;
  border-right: 1px solid var(--border);
  flex: 1;
  min-width: 140px;
  text-decoration: none;
  transition: background var(--t-fast);
}
.partner:first-child { border-left: 1px solid var(--border); }
.partner:hover { background: rgba(23, 86, 232, .04); }

.partner__logo {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: .55;
  filter: grayscale(30%);
  transition: opacity var(--t-fast), filter var(--t-fast), transform var(--t-fast);
}
.partner:hover .partner__logo {
  opacity: 1;
  filter: none;
  transform: scale(1.04);
}
.partner__name {
  font-size: .7rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  line-height: 1.3;
  transition: color var(--t-fast);
}
.partner:hover .partner__name { color: var(--blue-600); }

/* ============================================================
   PROGRAM — numbered rows
   ============================================================ */
.program-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(40px, 7vw, 72px);
}
.program-header__desc {
  font-size: .95rem;
  color: rgba(255, 255, 255, .48);
  line-height: 1.78;
  align-self: end;
}

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

.topic {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: var(--r-sm);
  font-size: .87rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .65);
  cursor: default;
  transition: background var(--t-mid), border-color var(--t-mid), color var(--t-mid);
  min-height: 60px;
}
.topic:hover {
  background: rgba(0, 50, 162, .06);
  border-color: rgba(0, 50, 162, .2);
  color: var(--white);
}
.topic__num {
  font-family: var(--font-display);
  font-size: .62rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .18);
  min-width: 20px;
  letter-spacing: .04em;
}
.topic__icon { font-size: 1rem; flex-shrink: 0; }
.topic__name { line-height: 1.35; }

.topic--featured {
  background: rgba(0, 50, 162, .06);
  border-color: rgba(0, 50, 162, .16);
  color: var(--teal-300);
}
.topic--featured .topic__num { color: rgba(0, 50, 162, .3); }
.topic--featured:hover {
  background: rgba(0, 50, 162, .12);
  border-color: rgba(0, 50, 162, .32);
}

/* ============================================================
   SPLIT SCREEN — Location
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  min-height: 520px;
}

.split__info {
  background: linear-gradient(150deg, var(--ink-900) 0%, var(--ink-800) 100%);
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(48px, 8vw, 96px);
  padding-right: clamp(36px, 6vw, 80px);
  padding-left: max(clamp(20px, 4vw, 48px), calc((100vw - 1200px) / 2 + clamp(20px, 4vw, 48px)));
  display: flex;
  flex-direction: column;
  gap: 0;
}

.split__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.04em;
  line-height: 1.1;
  margin-top: 12px;
  margin-bottom: 28px;
}

.split__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.split__meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
}
.split__meta-row svg { flex-shrink: 0; color: var(--teal-300); opacity: .8; }

.split__formats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.format-tag {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 18px;
  border-radius: var(--r-md);
  font-size: .8rem;
}
.format-tag span { color: rgba(255, 255, 255, .6); }
.format-tag strong { font-size: .95rem; color: var(--white); }

.format-tag--online {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
}
.format-tag--offline {
  background: rgba(0, 50, 162, .18);
  border: 1px solid rgba(77, 128, 232, .35);
}

.split__map { overflow: hidden; position: relative; }
.split__map iframe { display: block; width: 100%; height: 100%; min-height: 400px; border: 0; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin-inline: auto;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  transition: box-shadow var(--t-mid), transform var(--t-mid) var(--ease-out), border-color var(--t-mid);
  transition-delay: var(--delay, 0ms);
}
.price-card:hover {
  box-shadow: 0 16px 52px rgba(0, 0, 0, .1);
  transform: translateY(-6px);
  border-color: rgba(0, 50, 162, .3);
}

.price-card--featured {
  background: var(--ink-900);
  border-color: rgba(255, 255, 255, .08);
}
.price-card--featured:hover {
  border-color: rgba(255, 255, 255, .18);
}

.price-card__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(0, 50, 162, .1);
  border: 1px solid rgba(0, 50, 162, .22);
  color: var(--c-accent-dim);
}
.price-card__badge--dark {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .6);
}

.price-card__format { font-size: 2rem; line-height: 1; }

.price-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--text);
}
.price-card--featured .price-card__name { color: var(--white); }

/* Waves */
.price-card__waves {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.price-card--featured .price-card__waves {
  border-color: rgba(255, 255, 255, .07);
}

.price-wave {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.price-card--featured .price-wave { border-color: rgba(255, 255, 255, .06); }
.price-wave:last-child { border-bottom: none; }

.price-wave__label {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: .84rem;
  font-weight: 500;
  color: var(--muted);
}
.price-card--featured .price-wave__label { color: rgba(255, 255, 255, .5); }

.price-wave__tag {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.price-wave__tag--hot { color: var(--amber-500); }

.price-wave__val {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}
.price-wave__val small { font-size: .7em; font-weight: 600; opacity: .6; margin-left: 2px; }
.price-wave__val--green { color: var(--teal-500); }
.price-card--featured .price-wave__val { color: var(--white); }
.price-card--featured .price-wave__val--green { color: var(--teal-300); }

/* Includes */
.price-card__incl {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.price-card__incl li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  color: var(--muted);
}
.price-card--featured .price-card__incl li { color: rgba(255, 255, 255, .48); }
.price-card__incl li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal-500);
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='7' viewBox='0 0 8 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5l2.5 2.5 4-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================================
   FAQ  — bold minimal style
   ============================================================ */
.faq { display: flex; flex-direction: column; }

.faq__item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq__item:first-child { border-top: 1px solid var(--border); }

.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  background: none;
  transition: color var(--t-fast);
}
.faq__q:hover { color: var(--blue-600); }
.faq__item--open .faq__q { color: var(--blue-600); }

.faq__icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform var(--t-mid) var(--ease-out), color var(--t-fast);
  line-height: 1;
}
.faq__item--open .faq__icon {
  transform: rotate(45deg);
  color: var(--blue-600);
}

.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .38s var(--ease-out);
  padding: 0;
}
.faq__item--open .faq__a {
  max-height: 600px;
  padding-bottom: 22px;
}
.faq__a p, .faq__a ol {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.82;
}
.faq__a ol { padding-left: 18px; }
.faq__a ol li { margin-bottom: 5px; }
.faq__a p + p { margin-top: 8px; }

.faq__note {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: .84rem;
  line-height: 1.65;
}
.faq__note--amber { background: #fffbeb; border-left: 3px solid var(--amber-500); }
.faq__note--red   { background: #fff1f2; border-left: 3px solid var(--red-500); }

/* ============================================================
   CTA — full dark with orbs
   ============================================================ */
.cta {
  position: relative;
  padding-block: clamp(100px, 14vw, 160px);
  text-align: center;
  overflow: hidden;
  background: var(--ink-950);
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.cta__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}
.cta__orb--1 {
  width: 500px;
  height: 500px;
  top: -20%;
  left: -5%;
  background: radial-gradient(circle, rgba(23, 86, 232, .2) 0%, transparent 70%);
}
.cta__orb--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  right: 5%;
  background: radial-gradient(circle, rgba(0, 50, 162, .14) 0%, transparent 70%);
}

.cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta__eyebrow { margin-bottom: 24px; }

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-bottom: 22px;
  transition-delay: var(--delay, 0ms);
}
.cta__title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--c-accent) 0%, var(--teal-300) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta__sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .5);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 40px;
  transition-delay: var(--delay, 0ms);
}

.cta__btns { transition-delay: var(--delay, 0ms); }

.cta__hint {
  font-size: .74rem;
  color: rgba(255, 255, 255, .28);
  margin-top: 16px;
  transition-delay: var(--delay, 0ms);
}

.cta__stat {
  margin-top: 20px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .4);
  display: none;
}
.cta__stat--visible { display: block; }
.cta__stat-count { color: var(--amber-500); font-weight: 700; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink-950);
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding-top: 44px;
  padding-bottom: 28px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 32px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
  letter-spacing: -.01em;
}
.footer__brand-sub {
  font-size: .78rem;
  color: rgba(255, 255, 255, .3);
}
.footer__nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.footer__nav a {
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
  transition: color var(--t-fast);
}
.footer__nav a:hover { color: rgba(255, 255, 255, .8); }
.footer__copy {
  font-size: .7rem;
  color: rgba(255, 255, 255, .16);
  text-align: center;
}

/* ============================================================
   STICKY BAR  (mobile)
   ============================================================ */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(4, 8, 15, .97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, .08);
  transform: translateY(100%);
  transition: transform var(--t-mid) var(--ease-out);
}
.sticky-bar--visible { transform: translateY(0); }
.sticky-bar__name { font-size: .84rem; font-weight: 700; color: var(--white); display: block; }
.sticky-bar__date { font-size: .7rem; color: rgba(255,255,255,.45); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 1160px;
  animation: cookieSlideUp .35s var(--ease-out) both;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 12px 16px 12px 20px;
  background: rgba(7, 13, 26, .7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-xl);
  box-shadow: 0 4px 32px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .05);
}
.cookie-banner__text {
  flex: 1;
  min-width: 220px;
}
.cookie-banner__text strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.cookie-banner__text p {
  font-size: .75rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.5;
  margin: 0;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
@keyframes cookieSlideUp {
  from { transform: translateX(-50%) translateY(calc(100% + 20px)); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0);                  opacity: 1; }
}

/* Map consent placeholder */
.map-consent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(0, 20, 60, .85);
  backdrop-filter: blur(4px);
  color: rgba(255, 255, 255, .7);
  text-align: center;
  padding: 32px;
}
.map-consent[hidden] { display: none; }
.map-consent svg { opacity: .5; flex-shrink: 0; }
.map-consent p { font-size: .85rem; line-height: 1.5; max-width: 260px; margin: 0; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--t-slow) var(--ease-out),
    transform var(--t-slow) var(--ease-out);
  transition-delay: var(--delay, 0ms);
}
.reveal--visible { opacity: 1; transform: none; }

[data-anim] {
  opacity: 0;
  transform: translateY(18px);
}
[data-anim].is-ready {
  animation: fade-up .7s var(--ease-out) both;
  animation-delay: var(--anim-delay, 0ms);
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

@keyframes blink {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: .4; transform: scale(.8); }
}

@keyframes orb-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(40px, -30px) scale(1.08); }
  66%       { transform: translate(-20px, 20px) scale(.95); }
}

@keyframes orb-drift-2 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-30px, 20px); }
}

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

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .marquee__track { animation: none; }
}

/* ============================================================
   TABLET  ≤ 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .bento {
    grid-template-columns: 1fr 1fr;
  }
  .bento__card--main {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .bento__card--note { grid-column: 1 / -1; }

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

  .program-header { grid-template-columns: 1fr; gap: 20px; }

  .split { grid-template-columns: 1fr; }
  .split__map { min-height: 300px; }
  .split__map iframe { min-height: 300px; }
  .split__info {
    padding: clamp(36px, 6vw, 56px) clamp(20px, 4vw, 48px);
  }
  .split__title { font-size: clamp(1.8rem, 8vw, 2.4rem); white-space: nowrap; }
  .split__formats { flex-wrap: nowrap; }
  .format-tag { flex: 1; }

  .hero-countdown { margin-left: 0; width: 100%; flex-wrap: wrap; }
}

/* ============================================================
   MOBILE  ≤ 768px
   ============================================================ */
@media (max-width: 768px) {
  /* Nav */
  .nav { top: 12px; width: calc(100% - 32px); }
  .nav__menu  { display: none; }
  .btn--cta.nav__btn { display: none; }
  .nav__burger { display: flex; }

  /* Hero */
  .hero { height: auto; min-height: 100dvh; }
  .hero__body {
    grid-template-columns: 1fr;
    padding-top: clamp(80px, 13vh, 110px);
  }
  .hero__visual { min-height: 260px; }
  .hero__title { font-size: clamp(2rem, 10vw, 3.2rem); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__band-inner { gap: 10px 14px; flex-wrap: wrap; }
  .hero-info__sep { display: none; }

  /* Countdown mobile — 4 cards in a row */
  .hero-countdown {
    display: flex;
    width: 100%;
    margin-left: 0;
    gap: 8px;
  }
  .hero-countdown__unit {
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 10px 6px;
    gap: 2px;
  }
  .hero-countdown__num {
    font-size: 1.5rem;
    min-width: unset;
    text-align: center;
  }
  .hero-countdown__lbl {
    font-size: .55rem;
    letter-spacing: .06em;
  }
  .hero-countdown__sep { display: none; }

  /* Bento */
  .bento { grid-template-columns: 1fr; }
  .bento__card--note { grid-column: 1; }

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

  /* Speakers */
  .speakers-grid { grid-template-columns: 1fr; }
  .speakers-header { grid-template-columns: 1fr; gap: 12px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer__inner { flex-direction: column; gap: 16px; }

  /* Sticky bar */
  .sticky-bar { display: flex; }
  body { padding-bottom: 68px; }

  /* Cookie banner — sit above sticky bar */
  .cookie-banner { bottom: 80px; width: calc(100% - 32px); }

  .section { padding-block: 72px; }
}

/* ============================================================
   SPEAKERS SECTION  —  minimal style
   ============================================================ */
.speakers-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(48px, 8vw, 80px);
}
.speakers-header__desc {
  font-size: .95rem;
  color: rgba(255, 255, 255, .42);
  line-height: 1.8;
  align-self: end;
}

/* 6-column speaker row */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px 16px;
}

/* Individual speaker item */
.spk {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.spk__av {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .88);
  margin-bottom: 16px;
  border: 2px solid rgba(255, 255, 255, .1);
  transition: transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid);
}
.spk__av:hover,
.spk:hover .spk__av {
  transform: scale(1.07);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .4);
}

/* 6 unique gradient avatars */
.spk__av--1 { background: linear-gradient(145deg, #1e3d7a, #2563eb); }
.spk__av--2 { background: linear-gradient(145deg, #065a60, #06b6d4); }
.spk__av--3 { background: linear-gradient(145deg, #3b0f6e, #7c3aed); }
.spk__av--4 { background: linear-gradient(145deg, #7c2d12, #ea580c); }
.spk__av--5 { background: linear-gradient(145deg, #064e32, #059669); }
.spk__av--6 { background: linear-gradient(145deg, #5b1040, #db2777); }

.spk__name {
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
  line-height: 1.3;
  margin-bottom: 5px;
}

.spk__role {
  font-size: .72rem;
  color: rgba(255, 255, 255, .38);
  line-height: 1.45;
}

/* ============================================================
   EXTRA KEYFRAMES  (orbital + chips + mol)
   ============================================================ */
@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes mol-pulse {
  0%, 100% { opacity: .85; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.04); }
}

@keyframes core-pulse {
  0%, 100% { transform: scale(1);    opacity: .6; }
  50%       { transform: scale(1.3); opacity: .2; }
}

@keyframes chip-float-a {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes chip-float-b {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(8px); }
}

/* ============================================================
   RESPONSIVE — hero visual + speakers
   ============================================================ */
@media (max-width: 1240px) {
  .speakers-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 12px; }
}

@media (max-width: 1024px) {
  .speakers-header { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   MOBILE  ≤ 768px — improved
   ============================================================ */
/* (already has a block above; these are additive overrides) */

/* ============================================================
   SMALL  ≤ 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero__label .pill:nth-child(n+3) { display: none; }

  /* speakers: 2 columns on small screens */
  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 12px;
  }
  .speakers-header { gap: 10px; }
  .spk__av { width: 76px; height: 76px; font-size: 1.1rem; }

  /* partners: wrap nicely */
  .partners__row { flex-wrap: wrap; }
  .partner { flex: 0 0 calc(50% - 1px); min-width: 0; padding: 18px 16px; }
  .partner:first-child { border-left: none; }
  .partner:nth-child(odd) { border-left: 1px solid var(--border); }

  .partner__logo { height: 34px; }

  .vis-chip--tl, .vis-chip--bl { display: none; }

  /* section titles on mobile */
  .section-title { font-size: clamp(1.8rem, 9vw, 2.6rem); }

  /* bento on very small */
  .bento__stat-num { font-size: clamp(2.2rem, 10vw, 3.5rem); }
}

