:root {
  --bg: #13071c;
  --bg-deep: #160824;
  --bg-mid: #1a0826;
  --bg-card: #240d34;
  --purple: #522a70;
  --purple-mid: #693e8e;
  --purple-bright: #693e8f;
  --purple-light: #8e67b3;
  --purple-line: #7b579a;
  --purple-soft: #b293d3;
  --gold: #f7d774;
  --gold-deep: #ffc72d;
  --gold-soft: #ffe5ad;
  --lavender: #cad3fe;
  --text: #ffffff;
  --text-muted: #d5d4d9;
  --text-dim: #bebec4;
  --text-soft: #c9c9ce;
  --text-faint: #b3b3b9;
  --ink: #0a0a0a;
  --header-h: 72px;
  --container: 1328px;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --shadow-card: 0 20px 25px #2c0c4180, 0 8px 10px #ffc72d22;
  --shadow-gold: 0 0 30px #ffc72c73;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Montserrat", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --font-alt: "Plus Jakarta Sans", "Montserrat", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-width: 360px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
a {
  font-family: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  background: var(--gold);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + 32px);
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  position: relative;
  overflow: hidden;
}

.eyebrow,
.eyebrow-center {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 26px;
  padding: 4px 12px 4px 10px;
  border-radius: 6px;
  background: rgba(82, 42, 112, 0.28);
  border: 1px solid rgba(123, 87, 154, 0.4);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.eyebrow img,
.eyebrow-center img {
  width: 14px;
  height: 14px;
}

.eyebrow-center {
  display: flex;
  width: fit-content;
  margin: 0 auto;
}

.section-title {
  margin: 12px 0 0;
  font-size: clamp(24px, 5vw, 36px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.section-title .gold {
  color: var(--gold);
}

.section-lead {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
}

.section-kicker {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
}

.icon-ink {
  filter: brightness(0);
}

.icon-gold {
  filter: brightness(0) invert(86%) sepia(38%) saturate(580%) hue-rotate(359deg) brightness(102%) contrast(96%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  letter-spacing: 0.4px;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, border-color 0.25s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid #ffe099;
  box-shadow: var(--shadow-gold);
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
}

.btn-gold:hover {
  box-shadow: 0 0 36px #ffc72ccc;
}

.btn-ghost {
  background: rgba(36, 13, 52, 0.72);
  color: #f7f6f9;
  border: 1px solid rgba(123, 87, 154, 0.5);
  font-weight: 600;
  font-size: 16px;
  gap: 16px;
}

.btn-ghost:hover {
  border-color: var(--gold);
}

.btn-outline {
  background: rgba(28, 8, 43, 0.8);
  color: #f7f6f9;
  border: 1px solid rgba(224, 223, 227, 0.4);
  font-weight: 700;
  font-size: 14px;
}

.btn-outline:hover {
  border-color: var(--gold);
}

.btn-header {
  background: var(--purple-mid);
  color: var(--text);
  border: 1px solid var(--lavender);
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
  min-height: 56px;
  padding: 0 28px;
  gap: 12px;
}

.btn-header:hover {
  background: #7a4aa3;
}

.btn-wide {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(82, 42, 112, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(74, 34, 107, 0.6);
  overflow: visible;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, #a855f7 50%, transparent);
  opacity: 0.8;
}

.site-header.is-scrolled {
  background: rgba(54, 22, 77, 0.94);
  box-shadow: 0 10px 30px rgba(19, 7, 28, 0.45);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: nowrap;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: min(168px, 62vw);
}

.logo img {
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
}

.site-nav {
  display: none;
}

.site-nav a {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 8px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.header-cta {
  display: none;
}

.header-cta .cta-short {
  display: none;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid rgba(202, 211, 254, 0.55);
  background: var(--purple-mid);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  z-index: 60;
}

body.nav-open .nav-toggle {
  background: #7a4aa3;
}

.hero {
  background: linear-gradient(180deg, #522a70 0%, #1a0826 52%, #13071c 100%);
  padding: 40px 0 72px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 71% 71% at 50% 18%, #ab6ae5 0%, transparent 50%);
  opacity: 0.06;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  width: min(650px, 90vw);
  height: min(650px, 90vw);
  left: 50%;
  top: -80px;
  transform: translateX(-50%);
  background: #522a70;
  opacity: 0.28;
  filter: blur(140px);
  border-radius: 50%;
  pointer-events: none;
}

.deco {
  position: absolute;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.45;
  z-index: 0;
}

.deco-hero-mid {
  width: min(287px, 42vw);
  top: -90px;
  left: 36%;
  transform: rotate(147deg);
  opacity: 0.7;
}

.deco-hero-l {
  width: 44px;
  top: 70px;
  left: -8px;
}

.deco-hero-r {
  width: 90px;
  right: -20px;
  bottom: 40px;
  transform: rotate(150deg);
  opacity: 0.4;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px 10px;
  max-width: 100%;
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  background: rgba(53, 22, 77, 0.92);
  border: 1px solid rgba(124, 62, 168, 0.6);
  box-shadow: 0 10px 15px #2c0c4166, 0 4px 6px #ffc72d26;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.hero-badge-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 8px;
  row-gap: 2px;
  min-width: 0;
}

.hero-badge-label {
  min-width: 0;
}

.hero-badge .dot {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(247, 215, 116, 0.7);
  animation: pulse 2s infinite;
}

.hero-badge .season {
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}

.hero-kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 28px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  margin: 12px 0 0;
  max-width: 467px;
  font-size: clamp(32px, 5.2vw, 60px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
  text-shadow: 0 4px 3px #00000012;
}

.hero h1 .grad {
  display: inline-block;
  background: linear-gradient(90deg, #ffc72d, #ffe5ad 50%, #ffc72d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-actions .btn-gold {
  min-width: min(100%, 322px);
}

.hero-actions .btn-ghost {
  min-width: min(100%, 215px);
}

.hero-text {
  margin: 18px 0 0;
  max-width: 657px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: 28px;
}

.hero-notes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(82, 42, 112, 0.45);
  width: 100%;
}

.hero-notes span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 500;
}

.hero-notes img {
  width: 16px;
  height: 16px;
}

.hero-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 440px);
}

.hero-glow {
  position: absolute;
  inset: 20px -10px auto;
  height: 70%;
  background: linear-gradient(45deg, #522a7066, #693e8f4d, #ffc72d33);
  filter: blur(40px);
  border-radius: 24px;
  z-index: 0;
}

.device {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  background: linear-gradient(180deg, #401a5db3, #220c33e6);
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 25px 50px #2c0c41cc;
}

.device-screen {
  position: relative;
  margin-top: 12px;
  height: min(62vw, 472px);
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #2a103d, #160621);
}

.device-screen > img {
  position: absolute;
  top: -64px;
  left: 20%;
  width: 151%;
  max-width: none;
  height: auto;
  mix-blend-mode: lighten;
}

.device-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px 10px;
  border-bottom: 1px solid rgba(105, 62, 143, 0.3);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.8s infinite;
}

.start-chip {
  position: absolute;
  left: 40px;
  top: 45%;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 8px;
  z-index: 2;
}

.system-label {
  position: absolute;
  left: 40px;
  top: calc(45% + 42px);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  z-index: 2;
}

.idea-card {
  position: absolute;
  left: 24px;
  width: min(292px, calc(100% - 40px));
  bottom: 24px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(29, 8, 44, 0.92);
  border: 1px solid rgba(255, 199, 45, 0.4);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  z-index: 2;
}

.idea-card .bulb {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gold);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.idea-card .bulb img {
  position: static;
  width: 16px;
  height: 16px;
  mix-blend-mode: normal;
}

.idea-card strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.25;
}

.idea-card small {
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
}

.about {
  background: linear-gradient(180deg, #13071c 0%, #1a0826 50%, #522a70 100%);
  padding: 64px 0 72px;
}

.about-grid {
  display: grid;
  gap: 36px;
}

.about-copy p {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.62;
}

.about-copy p strong {
  color: var(--text-muted);
}

.about-note {
  margin-top: 18px;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.65;
}

.about-pills {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.mini-card {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(105, 62, 142, 0.32);
  border: 1px solid rgba(82, 42, 112, 0.35);
  border-radius: var(--radius-sm);
}

.mini-card img {
  width: 20px;
  height: 20px;
  margin-top: 1px;
}

.mini-card strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.mini-card span {
  display: block;
  margin-top: 2px;
  color: var(--text-dim);
  font-size: 11px;
}

.stages {
  position: relative;
  background: linear-gradient(180deg, #522a70, #1a0826 55%, #13071c);
  border: 1px solid rgba(142, 103, 179, 0.4);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px 24px 22px;
}

.stages-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(82, 42, 112, 0.35);
}

.stages-head h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.stages-head p {
  margin: 4px 0 0;
  color: var(--text-faint);
  font-size: 12px;
}

.tag {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 10px;
  border-radius: 10px;
  background: var(--lavender);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.stage {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px 14px;
  padding: 14px 0;
}

.stage-num {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 900;
}

.stage-num.gold {
  background: var(--gold);
  color: var(--ink);
}

.stage-num.mid {
  background: var(--purple-mid);
}

.stage-num.dark {
  background: var(--purple);
}

.stage-num.lav {
  background: var(--lavender);
  color: #1d1f23;
}

.stage-top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 4px 12px;
}

.stage-top h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.stage-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-soft);
}

.stage:first-of-type .stage-date {
  color: var(--gold);
}

.stage:last-of-type .stage-date {
  color: var(--lavender);
}

.stage p {
  grid-column: 2;
  margin: 0;
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.4;
}

.stage-extra {
  grid-column: 2;
  margin-top: 10px !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 700;
  line-height: 1.4 !important;
}

.stats .section-title,
.orgs .section-title,
.partners .section-title {
  font-size: clamp(24px, 4.2vw, 30px);
  letter-spacing: 0;
}

.stats {
  background: linear-gradient(180deg, #522a70, #1a0826 50%, #13071c);
  padding: 64px 0 72px;
  text-align: center;
}

.stats .section-title {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  text-align: left;
}

.stat-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 24px 22px;
  background: rgba(105, 62, 142, 0.3);
  border: 1px solid rgba(82, 42, 112, 0.4);
  border-radius: var(--radius);
  box-shadow: 0 4px 6px #2c0c4159;
}

.stat-card.featured {
  border: 2px solid rgba(255, 199, 45, 0.6);
  box-shadow: 0 0 25px #ffc72c26;
}

.stat-card.alt {
  border: 2px solid rgba(142, 103, 179, 0.5);
}

.stat-card::after {
  content: "";
  position: absolute;
  width: 96px;
  height: 96px;
  right: -10px;
  top: -18px;
  background: rgba(255, 199, 45, 0.1);
  filter: blur(24px);
  border-radius: 50%;
  pointer-events: none;
}

.stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
}

.stat-icon.lav {
  background: var(--lavender);
}

.stat-icon.purp {
  background: var(--purple);
}

.stat-icon img {
  width: 24px;
  height: 24px;
}

.chip {
  height: 20px;
  padding: 0 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}

.chip-gold {
  background: rgba(255, 199, 45, 0.2);
  border: 1px solid rgba(255, 199, 45, 0.4);
  color: var(--gold);
}

.chip-purple {
  background: rgba(82, 42, 112, 0.2);
  border: 1px solid rgba(142, 103, 179, 0.4);
  color: var(--lavender);
}

.chip-solid {
  background: var(--purple);
  color: var(--lavender);
  font-weight: 600;
}

.stat-value {
  display: block;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: clamp(36px, 8vw, 48px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1px;
}

.stat-card.featured .stat-value {
  color: var(--lavender);
}

.stat-card h3 {
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.stat-card p {
  margin: 8px 0 0;
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.4;
}

.opps {
  background: linear-gradient(180deg, #13071c, #1a0826 50%, #522a70);
  padding: 64px 0 72px;
  text-align: center;
}

.opps .section-lead {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.opps-grid {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  text-align: left;
}

.opp-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 128px;
  padding: 18px 18px 18px 24px;
  background: rgba(105, 62, 142, 0.3);
  border: 1px solid rgba(82, 42, 112, 0.4);
  border-radius: var(--radius);
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}

.opp-card:hover {
  transform: translateY(-3px);
  border-color: rgba(142, 103, 179, 0.7);
  box-shadow: 0 12px 24px rgba(44, 12, 65, 0.35);
}

.opp-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #522a70, #693e8f);
  border: 1px solid rgba(123, 87, 154, 0.3);
  box-shadow: 0 4px 6px #2c0c4159;
}

.opp-icon img {
  width: 24px;
  height: 24px;
}

.opp-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.dirs {
  background: linear-gradient(180deg, #13071c, #1a0826 50%, #522a70);
  padding: 56px 0 72px;
}

.dirs-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "eyebrow ."
    "title   btn"
    "lead    .";
  column-gap: 24px;
  align-items: center;
}

.dirs-head .eyebrow {
  grid-area: eyebrow;
  justify-self: start;
}

.dirs-head .section-title {
  grid-area: title;
  max-width: 520px;
}

.dirs-head .section-lead {
  grid-area: lead;
  max-width: 480px;
  font-family: var(--font-alt);
  font-size: 14px;
  line-height: 1.43;
}

.dirs-head .btn {
  grid-area: btn;
  align-self: center;
  justify-self: end;
  min-height: 46px;
  width: auto;
  min-width: 293px;
  padding: 0 24px;
  border-radius: 16px;
  font-family: var(--font-alt);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  box-shadow: 0 4px 12px #2c0c4173;
  text-transform: uppercase;
}

@media (max-width: 799px) {
  .dirs-head {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "btn"
      "lead";
  }

  .dirs-head .btn {
    justify-self: stretch;
    width: 100%;
    min-width: 0;
    margin-top: 8px;
  }
}

.dirs-grid {
  display: grid;
  gap: 13px;
  margin-top: 28px;
  align-items: start;
}

.dir-card {
  padding: 21px;
  background: rgba(105, 62, 142, 0.72);
  border: 1px solid rgba(123, 87, 154, 0.45);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s var(--ease), border-color 0.25s;
}

.dir-card:hover {
  transform: translateY(-3px);
  border-color: rgba(247, 215, 116, 0.45);
}

.dir-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dir-num {
  min-width: 36px;
  height: 22px;
  padding: 0 8px;
  border-radius: 4px;
  background: rgba(82, 42, 112, 0.6);
  border: 1px solid rgba(123, 87, 154, 0.5);
  color: var(--gold-deep);
  font-family: var(--font-alt);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dir-top img {
  width: 20px;
  height: 20px;
}

.dir-card p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.42;
}

.cta {
  background: linear-gradient(180deg, #13071c, #1a0826 50%, #522a70);
  padding: 64px 0;
  border-top: 2px solid rgba(255, 199, 45, 0.4);
  border-bottom: 2px solid rgba(247, 215, 116, 0.4);
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-row {
  display: grid;
  gap: 20px;
  width: 100%;
  margin-top: 12px;
}

.pill-open {
  width: fit-content;
  height: 26px;
  padding: 0 12px;
  border-radius: 13px;
  background: var(--lavender);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}

.cta h2 {
  margin: 0;
  font-size: clamp(28px, 7vw, 48px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  max-width: 640px;
}

.cta p {
  margin: 16px 0 0;
  max-width: 660px;
  color: #e0dfe3;
  font-size: 16px;
  line-height: 1.5;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-actions .btn-gold {
  min-width: min(100%, 274px);
  padding: 0 32px;
  font-weight: 900;
  box-shadow: 0 0 30px #ffc72c80;
}

.cta-actions .btn-outline {
  min-width: min(100%, 260px);
}

.cta-actions .btn-outline .icon {
  width: 16px;
  height: 16px;
}

.ideas {
  background: var(--bg-deep);
  padding: 64px 0 72px;
  text-align: center;
}

.ideas .section-lead {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.ideas-grid {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  text-align: left;
}

.idea-block {
  min-height: 280px;
  padding: 34px 34px 22px;
  background: rgba(90, 51, 122, 0.3);
  border: 2px solid rgba(142, 103, 179, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.idea-block-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.idea-ico {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--gold);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 15px #2c0c4166, 0 4px 6px #ffc72d26;
}

.idea-ico img {
  width: 28px;
  height: 28px;
}

.chip-priority {
  height: 26px;
  padding: 0 12px;
  border-radius: 13px;
  background: rgba(82, 42, 112, 0.4);
  border: 1px solid rgba(142, 103, 179, 0.6);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
}

.idea-block h3 {
  margin: 22px 0 0;
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 900;
  text-transform: uppercase;
}

.idea-block p {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 520px;
}

.idea-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(82, 42, 112, 0.4);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
}

.idea-meta img {
  width: 16px;
  height: 16px;
}

.orgs {
  background: var(--bg-deep);
  padding: 56px 0 64px;
  text-align: center;
}

.orgs .section-lead {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.orgs-grid {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  text-align: left;
}

.org-card {
  min-height: 211px;
  padding: 25px;
  background: var(--bg-card);
  border: 1px solid rgba(82, 42, 112, 0.4);
  border-radius: var(--radius);
  box-shadow: 0 10px 15px #2c0c4166, 0 4px 6px #ffc72d26;
}

.org-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: auto;
  height: 52px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: rgba(82, 42, 112, 0.5);
  border: 1px solid rgba(123, 87, 154, 0.4);
}

.org-ico img {
  display: block;
  width: auto;
  height: 38px;
  object-fit: contain;
}

.org-card h3 {
  margin: 16px 0 0;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.org-card p {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.partners {
  background: var(--bg);
  padding: 56px 0 64px;
  text-align: center;
}

.partners-list {
  display: grid;
  gap: 16px;
  max-width: 840px;
  margin: 32px auto 0;
}

.partner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  min-height: 72px;
  padding: 14px 24px;
  background: rgba(90, 51, 122, 0.7);
  border: 2px solid rgba(142, 103, 179, 0.4);
  border-radius: var(--radius);
  box-shadow: 0 10px 20px #2c0c4180;
  text-align: left;
}

.partner-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: auto;
  height: 48px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: var(--gold);
  flex-shrink: 0;
}

.partner-ico img {
  display: block;
  width: auto;
  height: 36px;
  object-fit: contain;
}

.partner strong {
  flex: 1 1 120px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.partner-role {
  margin-left: auto;
  height: 28px;
  padding: 0 12px;
  border-radius: 10px;
  background: var(--purple);
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.site-footer {
  background: linear-gradient(180deg, #522a70, #1a0826 50%, #13071c);
  padding: 40px 0 0;
  border-top: 1px solid #4a226b;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold-deep), transparent);
  opacity: 0.8;
}

.footer-grid {
  display: grid;
  gap: 32px;
  padding-bottom: 28px;
}

.footer-brand img {
  width: 153px;
  mix-blend-mode: screen;
}

.footer-brand p {
  margin: 14px 0 0;
  max-width: 360px;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
}

.status-pill {
  margin-top: 18px;
  width: fit-content;
  height: 30px;
  padding: 0 14px 0 12px;
  border-radius: 999px;
  background: var(--purple-bright);
  border: 1px solid #522974;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
}

.status-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

.footer-col h3 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list a,
.contact-list p {
  display: flex;
  gap: 10px;
  margin: 0;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.45;
}

.contact-list img {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-list a:hover {
  color: var(--gold);
}

.socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px 0 14px;
  border-radius: 999px;
  background: var(--purple-bright);
  border: 1px solid #522974;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
}

.social:hover {
  background: #7a4aa3;
  transform: translateY(-1px);
}

.social img {
  width: 13px;
  height: 13px;
}

.social .ext {
  width: 10px;
  height: 10px;
  opacity: 0.6;
  margin-left: 4px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0 20px;
  border-top: 1px solid rgba(82, 42, 112, 0.25);
  color: var(--text-dim);
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.footer-links a:hover {
  color: var(--gold);
}

.yanix {
  background: #1e0a29;
  padding: 11px 0;
  color: #f2eafb;
  font-size: 12px;
  border-top: 1px solid rgba(82, 42, 112, 0.2);
}

.yanix .container {
  text-align: right;
}

.yanix b {
  color: inherit;
  font-weight: 600;
}

.yanix-link {
  color: var(--gold);
  font-weight: 600;
}

.yanix-link:hover {
  text-decoration: underline;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(247, 215, 116, 0.55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(247, 215, 116, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(247, 215, 116, 0);
  }
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .site-header {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.nav-open .site-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--header-h);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 55;
  width: 100%;
  height: calc(100dvh - var(--header-h));
  background: #160824;
  padding: 20px 16px 32px;
  gap: 6px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

body.nav-open .site-nav a {
  font-size: 18px;
  padding: 14px 12px;
  border-bottom: 1px solid rgba(82, 42, 112, 0.35);
}

body.nav-open .site-nav .btn {
  margin-top: 16px;
  width: 100%;
}

@media (min-width: 480px) {
  .container {
    padding: 0 24px;
  }

  .hero-badge {
    font-size: 12px;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
  }

  .btn-gold,
  .hero-actions .btn-ghost {
    width: auto;
    min-width: 200px;
  }

  .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cta-actions .btn {
    width: auto;
  }
}

@media (min-width: 640px) {
  .about-pills {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid,
  .orgs-grid,
  .ideas-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .device-screen {
    min-height: 360px;
  }

  .partner strong {
    font-size: 18px;
  }

  .hero-kicker {
    letter-spacing: 3px;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }

  .logo {
    width: 212px;
  }

  .hero-notes {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 28px;
  }

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

  .footer-grid {
    grid-template-columns: 1.1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1100px) {
  .dirs-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  :root {
    --header-h: 83px;
  }

  .container {
    padding: 0 40px;
  }

  .hero {
    padding: 40px 0 72px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 440px);
    align-items: center;
    gap: 40px;
  }

  .device-screen {
    height: 472px;
    min-height: 472px;
  }

  .device-screen > img {
    top: -64px;
    left: 85px;
    width: 623px;
  }

  .start-chip {
    top: 214px;
  }

  .system-label {
    top: 256px;
  }

  .hero-actions {
    flex-wrap: nowrap;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 40px;
  }

  .cta-row {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
  }

  .cta-actions {
    justify-content: flex-end;
    flex-wrap: nowrap;
  }

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

  .footer-grid {
    grid-template-columns: 1.15fr 1fr 0.9fr;
  }

  .orgs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1100px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
  }

  .site-nav .btn {
    display: none;
  }

  .header-cta {
    display: inline-flex;
    width: 322px;
    min-width: 322px;
    min-height: 56px;
    margin-left: 18px;
    padding: 0 20px;
  }

  .header-cta .icon {
    display: block;
  }

  .header-cta .cta-full {
    display: inline;
  }

  body.nav-open .site-nav {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: auto;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
    flex-direction: row;
    overflow: visible;
  }

  body.nav-open .site-nav a {
    font-size: 14px;
    padding: 8px 10px;
    border: 0;
  }

  body.nav-open .site-nav .btn {
    display: none;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 56px;
  }

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

  .dirs-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 479px) {
  .btn-wide,
  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-badge {
    font-size: 10px;
    letter-spacing: 0.2px;
  }

  .partner-role {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }

  .chip-priority {
    font-size: 11px;
    padding: 0 8px;
  }

  .hero h1 {
    font-size: 32px;
  }
}

.apply-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s var(--ease), visibility 0.28s var(--ease);
}

.apply-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.apply-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 3, 14, 0.78);
  backdrop-filter: blur(10px);
}

.apply-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(1080px, 100%);
  height: min(860px, calc(100vh - 36px));
  background: linear-gradient(180deg, #241036 0%, #160824 48%, #11061a 100%);
  border: 1px solid rgba(247, 215, 116, 0.28);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 40px rgba(247, 215, 116, 0.08);
  overflow: hidden;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.32s var(--ease);
}

.apply-modal.is-open .apply-dialog {
  transform: none;
}

.apply-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px 14px;
  border-bottom: 1px solid rgba(123, 87, 154, 0.35);
}

.apply-kicker {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.apply-dialog-head h2 {
  margin: 4px 0 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.apply-close {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: rgba(82, 42, 112, 0.55);
  border: 1px solid rgba(247, 215, 116, 0.35);
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.2s, transform 0.2s;
}

.apply-close:hover {
  background: rgba(247, 215, 116, 0.16);
  transform: rotate(90deg);
}

.apply-frame-wrap {
  position: relative;
  flex: 1;
  min-height: 0;
  background: #fff;
}

.apply-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.apply-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #160824;
  color: var(--gold);
  font-weight: 700;
  z-index: 1;
}

.apply-frame-wrap.is-ready .apply-loader {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}

.apply-spinner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid rgba(247, 215, 116, 0.2);
  border-top-color: var(--gold);
  animation: apply-spin 0.8s linear infinite;
}

@keyframes apply-spin {
  to {
    transform: rotate(360deg);
  }
}

.apply-dialog-foot {
  padding: 12px 20px;
  border-top: 1px solid rgba(123, 87, 154, 0.3);
  text-align: center;
}

.apply-dialog-foot a {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.apply-dialog-foot a:hover {
  text-decoration: underline;
}

body.apply-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .apply-modal {
    padding: 0;
  }

  .apply-dialog {
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: 0;
  }

  .apply-dialog-head h2 {
    font-size: 18px;
  }
}

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

  .reveal,
  .btn,
  .opp-card,
  .dir-card,
  .live-dot,
  .hero-badge .dot,
  .status-pill i {
    animation: none;
    transition: none;
  }

  .apply-spinner {
    animation: none;
  }

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