/* =========================================================
   UzTech — Landing page styles
   Palette: light theme · cool mint paper · blue + green accents
   Typography: Sora (display + body) + JetBrains Mono (labels)
   ========================================================= */

:root {
  --bg:        #F5FAF7;    /* light cool mint */
  --bg-2:      #EEF5F1;    /* tint card */
  --paper:    #FFFFFF;
  --ink:       #0E2233;    /* deep blue-ink */
  --ink-2:     #1F3849;
  --ink-3:     #314A5C;
  --muted:     #5C7585;
  --line:      #DCE6DF;
  --line-2:    #C7D7CE;

  --blue:      #1F6FEB;
  --blue-2:    #0E4FB5;
  --blue-soft: #E5EEFD;
  --blue-deep: #06224F;

  --green:     #1E9A6F;
  --green-soft:#DEF0E5;
  --green-deep:#063B2A;

  --ff-display: "Sora", -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  --ff-body:    "Sora", -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  --ff-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --c-max: 1200px;
  --c-pad: clamp(20px, 4vw, 40px);
  --r-3: 20px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

.container {
  max-width: var(--c-max);
  margin: 0 auto;
  padding-left: var(--c-pad);
  padding-right: var(--c-pad);
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--bg);
  padding: 10px 14px; border-radius: 4px;
  z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

/* =========================================================
   Type primitives
   ========================================================= */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.kicker.light { color: rgba(255,255,255,.72); }
.kicker-dash {
  display: inline-block;
  width: 22px; height: 1.5px;
  background: var(--green);
  border-radius: 2px;
}
.kicker.light .kicker-dash { background: rgba(255,255,255,.5); }

.section-title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(32px, 4.8vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 .3em;
  color: var(--ink);
}
.section-title em {
  font-style: normal;
  color: var(--blue);
}

.section-head { margin-bottom: 40px; }
.section-head--row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 46ch;
  margin: 0;
}
.section-lede {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 62ch;
  margin: 18px 0 0;
}
.section-lede strong { font-weight: 600; }

/* highlighted text token — used in hero + finale */
.hl { position: relative; display: inline-block; }
.hl-blue {
  color: var(--blue);
  position: relative;
  z-index: 1;
}
.hl-blue::after {
  content: "";
  position: absolute; left: -2px; right: -2px; bottom: 2px;
  height: 18%;
  background: var(--blue-soft);
  z-index: -1;
  border-radius: 4px;
}
.hl-green {
  color: var(--green);
  position: relative;
  z-index: 1;
}
.hl-green::after {
  content: "";
  position: absolute; left: -2px; right: -2px; bottom: 2px;
  height: 18%;
  background: var(--green-soft);
  z-index: -1;
  border-radius: 4px;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 6px 16px -8px rgba(31,111,235,.45);
}
.btn-primary:hover { background: var(--blue-2); border-color: var(--blue-2); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.btn-light {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn-light:hover { background: var(--green); color: #fff; border-color: var(--green); }

.btn-lg { padding: 16px 28px; font-size: 16px; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.brand {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.015em;
}
.brand-mark { display:block; width: 36px; height: 36px; object-fit: contain; }
.brand-word { line-height: 1; }

.primary-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 28px;
}
.primary-nav a {
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
}
.primary-nav a:hover { color: var(--blue); }
.primary-nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1.5px; background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.primary-nav a:hover::after { transform: scaleX(1); }

.header-cta { padding: 9px 16px; font-size: 14px; }

.nav-toggle {
  display: none;
  background: transparent; border: 0;
  padding: 8px;
  flex-direction: column; gap: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Floating dropdown card under sticky header (Outtalent-style) */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  padding: 8px 12px 0;
  pointer-events: none;
  z-index: 49;
}
.mobile-nav[hidden] { display: none; }

.mobile-nav-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 24px 60px -24px rgba(14,34,51,.30),
    0 8px 20px -12px rgba(14,34,51,.18);
  padding: 12px;
  display: flex; flex-direction: column; gap: 8px;
  pointer-events: auto;
  transform: translateY(-8px);
  opacity: 0;
  animation: mobileNavIn .26s cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes mobileNavIn {
  to { transform: translateY(0); opacity: 1; }
}

.mobile-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}

.mobile-nav a {
  display: flex; align-items: center; justify-content: center;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--bg-2);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
  transition: background .15s ease, color .15s ease, transform .12s ease;
}
.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: var(--blue-soft);
  color: var(--blue-2);
}
.mobile-nav a:active { transform: scale(0.985); }

.mobile-nav-cta {
  width: 100%;
  justify-content: center;
  padding: 16px 18px;
  margin-top: 4px;
  font-size: 15px;
  font-family: var(--ff-body);
  font-weight: 600;
  background: var(--blue) !important;
  color: #fff !important;
  border-radius: 14px !important;
}
.mobile-nav-cta:hover {
  background: var(--blue-2) !important;
  color: #fff !important;
}

/* =========================================================
   Hero — centered variant
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(40px, 6vw, 80px) 0 0;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 80% 0%, rgba(31,111,235,.10), transparent 60%),
    radial-gradient(50% 60% at 20% 0%, rgba(30,154,111,.10), transparent 60%),
    radial-gradient(60% 40% at 50% 100%, rgba(31,111,235,.06), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: var(--c-pad);
  padding-right: var(--c-pad);
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding-bottom: clamp(20px, 3vw, 40px);
}
.hero-inner > * { min-width: 0; max-width: 100%; }

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  box-shadow: 0 1px 0 var(--bg-2);
}
.hero-pill .sep { opacity: .35; }
@media (max-width: 480px) {
  .hero-pill { font-size: 10px; padding: 5px 10px; letter-spacing: .1em; gap: 6px; }
}

.hero-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(36px, 5.6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
  max-width: 18ch;
}
.hero-title .hl { display: inline; }

.hero-lede {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 56ch;
  margin: 0;
}

.hero-actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-top: 4px;
}


/* =========================================================
   Event Card (used in hero + grid)
   ========================================================= */
.ev-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ev-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink-3);
  box-shadow: 0 20px 40px -28px rgba(14,34,51,.25);
}

.ev-visual {
  position: relative;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
  padding: 18px 18px 14px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.ev-visual::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.0) 0%, rgba(0,0,0,.15) 40%, rgba(0,0,0,.75) 100%);
  z-index: 0;
  pointer-events: none;
}
.ev-visual > * { position: relative; z-index: 1; }
.ev-eye {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  padding: 3px 9px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(0,0,0,.45);
  align-self: flex-start;
  backdrop-filter: blur(6px);
}
.ev-date {
  display: flex; align-items: baseline; gap: 12px;
  color: #fff;
}
.ev-day {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 80px);
  line-height: .85;
  letter-spacing: -0.04em;
}
.ev-mo {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: rgba(255,255,255,.86);
}

.ev-body {
  padding: 20px 22px 22px;
  display: flex; flex-direction: column; gap: 8px;
}
.ev-tag {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  align-self: flex-start;
}
.ev-title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(19px, 1.6vw, 21px);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.ev-sub {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}


/* =========================================================
   About
   ========================================================= */
.about { padding: clamp(80px, 9vw, 130px) 0; }
.pillars {
  list-style: none; padding: 0; margin: 56px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pillars li {
  padding: 30px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
}
.pillar-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--c) 12%, var(--paper));
  color: var(--c);
  margin-bottom: 18px;
}
.pillar-ic svg { width: 22px; height: 22px; }
.pillars h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.pillars p { font-size: 15px; color: var(--muted); margin: 0; line-height: 1.5; }

/* =========================================================
   Tracks
   ========================================================= */
.tracks {
  background: var(--bg-2);
  padding: clamp(80px, 9vw, 130px) 0;
}
.track-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.track-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  padding: 30px 26px 32px;
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 270px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.track-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 140px;
  background: radial-gradient(60% 100% at 50% 0%, var(--accent-bg) 0%, transparent 80%);
  z-index: 0;
  opacity: .9;
}
.track-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 22px 44px -26px rgba(14,34,51,.22);
}
.track-card > * { position: relative; z-index: 1; }

.track-ic-3d {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 12px;
  filter: drop-shadow(0 10px 18px rgba(14,34,51,.12));
  transition: transform .25s ease;
}
.track-card:hover .track-ic-3d {
  transform: translateY(-3px) rotate(-2deg);
}

.track-card h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 4px 0 10px;
}
.track-card p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
  max-width: 30ch;
}

/* =========================================================
   Events grid
   ========================================================= */
.events { padding: clamp(80px, 9vw, 130px) 0; }
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.events-more {
  margin-top: 36px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  overflow: hidden;
}
.events-more summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.events-more summary::-webkit-details-marker { display: none; }
.events-more summary svg { color: var(--green); transition: transform .2s ease; }
.events-more[open] summary svg { transform: rotate(90deg); }

.events-list {
  list-style: none; margin: 0; padding: 0 22px 22px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.events-list li {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 60%, transparent);
  font-size: 15px;
  color: var(--ink-2);
}
.events-list li:last-child,
.events-list li:nth-last-child(2):not(:last-child) { border-bottom: 0; }
.ml-date {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--blue);
  text-transform: uppercase;
}
.ml-tag {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--bg-2);
  color: var(--muted);
}

/* =========================================================
   Vision
   ========================================================= */
.vision {
  padding: clamp(80px, 9vw, 130px) 0;
  background: var(--bg-2);
}
.vision-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.vision-col {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  padding: 36px 32px;
}
.vision-col h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
}
.goal-list, .vision-list {
  list-style: none; padding: 0; margin: 0;
}
.goal-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  color: var(--ink-2);
  font-size: 15.5px;
}
.goal-list li:first-child { border-top: 0; padding-top: 0; }
.goal-list .goal-num {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--green);
  letter-spacing: .12em;
  padding-top: 4px;
}
.goal-list .goal-text { display: block; }
.goal-list strong { font-weight: 700; color: var(--ink); }

.vision-col--accent {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--green-deep) 100%);
  color: #fff;
  border-color: transparent;
  position: relative;
  overflow: hidden;
}
.vision-col--accent::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 90% 10%, rgba(31,111,235,.35), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(30,154,111,.35), transparent 50%);
  pointer-events: none;
}
.vision-eye {
  position: relative;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  display: inline-block;
  margin-bottom: 22px;
}
.vision-statement {
  position: relative;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.22;
  letter-spacing: -0.018em;
  margin: 0 0 24px;
  color: #fff;
}
.vision-statement em {
  font-style: normal;
  color: #82F2BD;
}
.vision-list li {
  position: relative;
  padding: 12px 0 12px 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.88);
  font-size: 15px;
}
.vision-list li:first-child { border-top: 0; padding-top: 0; }
.vision-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 19px;
  width: 10px; height: 1.5px;
  background: #82F2BD;
}
.vision-list li:first-child::before { top: 7px; }

/* =========================================================
   Platforms
   ========================================================= */
.platforms { padding: clamp(80px, 9vw, 130px) 0; }
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.plat {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 40px 28px 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  text-decoration: none;
  color: var(--ink);
  background: var(--paper);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.plat:hover {
  transform: translateY(-3px);
  border-color: var(--ink-3);
  box-shadow: 0 22px 44px -26px rgba(14,34,51,.22);
}
.plat-logo {
  width: 100px;
  height: 100px;
  margin-bottom: 22px;
  filter: drop-shadow(0 14px 26px rgba(14,34,51,.16));
  transition: transform .3s ease;
}
.plat:hover .plat-logo {
  transform: translateY(-4px) rotate(-3deg) scale(1.06);
}
.plat h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.015em;
  margin: 0 0 4px;
}
.plat-handle {
  margin: 0;
  font-family: var(--ff-mono);
  font-size: 14px;
  color: var(--muted);
  letter-spacing: -0.005em;
}

/* =========================================================
   Partners
   ========================================================= */
.partners { padding: 0 0 clamp(60px, 8vw, 100px); }
.partners-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
}
.partners-card {
  padding: 44px 38px;
  border-radius: var(--r-3);
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
  align-items: flex-start;
}
.partners-card h2 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}
.partners-card p { margin: 0; color: var(--muted); max-width: 48ch; }
.partners-card--primary {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--green-deep) 100%);
  color: #fff;
  border-color: transparent;
  position: relative;
  overflow: hidden;
}
.partners-card--primary::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 100% 0%, rgba(31,111,235,.35), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(30,154,111,.40), transparent 50%);
  pointer-events: none;
}
.partners-card--primary > * { position: relative; }
.partners-card--primary p { color: rgba(255,255,255,.86); }
.partners-card--primary h2 { color: #fff; }

/* =========================================================
   Finale
   ========================================================= */
.finale {
  padding: clamp(80px, 9vw, 130px) 0;
  text-align: center;
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(31,111,235,.10), transparent 65%),
    radial-gradient(50% 60% at 50% 100%, rgba(30,154,111,.10), transparent 65%),
    var(--bg);
  border-top: 1px solid var(--line);
}
.finale-eyebrow {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
}
.finale-title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(38px, 7vw, 92px);
  line-height: .96;
  letter-spacing: -0.035em;
  margin: 0 auto;
  max-width: 16ch;
  color: var(--ink);
}
.finale-text {
  margin: 28px auto 36px;
  color: var(--muted);
  max-width: 48ch;
  font-size: 17px;
}
.finale-actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: var(--bg);
  padding: 76px 0 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(245,250,247,.14);
}
.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.footer-brand-mark img {
  width: 48px;
  height: 48px;
  display: block;
}
.footer-brand p {
  margin: 16px 0 0;
  color: rgba(245,250,247,.7);
  font-size: 15px;
  max-width: 36ch;
}
.brand-word--lg {
  font-family: var(--ff-display);
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
}
.footer-col h4 {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245,250,247,.6);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 4px 0; }
.footer-col a {
  text-decoration: none;
  color: rgba(245,250,247,.86);
  font-size: 15px;
  transition: color .15s ease;
}
.footer-col a:hover { color: #82F2BD; }

.footer-bottom {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 12px;
  padding-top: 22px;
  text-align: center;
  font-family: var(--ff-mono);
  font-size: 12px;
  color: rgba(245,250,247,.55);
  letter-spacing: .04em;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .section-head--row { grid-template-columns: 1fr; gap: 18px; }
  .track-grid { grid-template-columns: repeat(2, 1fr); }
  .event-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .partners-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .vision-cols { grid-template-columns: 1fr; }
  .events-list { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }

  .hero-title { font-size: clamp(34px, 9vw, 50px); }

  .track-grid { grid-template-columns: 1fr; }
  .event-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: 1fr; }

  .pillars li { padding: 24px; }
  .partners-card { padding: 30px 24px; }
  .vision-col { padding: 28px 22px; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: center; }

  .events-list li {
    grid-template-columns: 64px 1fr;
  }
  .events-list .ml-tag { grid-column: 2 / 3; justify-self: start; margin-top: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

@media print {
  .site-header, .nav-toggle, .mobile-nav, .finale-actions, .events-more { display: none; }
  body { background: white; color: black; }
}
