:root {
  --bg: #080b16;
  --panel: #10162a;
  --panel2: #151d35;
  --ink: #f6f7ff;
  --muted: #a7b0cb;
  --line: rgba(235, 240, 255, 0.11);
  --accent: #b59aff;
  --warn: #ffb16e;
  --max: 1050px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font:
    16px/1.55 Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  max-width: var(--max);
  margin: auto;
  padding: 0 28px;
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-weight: 850;
  font-size: 18px;
  letter-spacing: -0.045em;
}
.brand b {
  color: var(--accent);
}
.back {
  font-size: 14px;
  color: var(--muted);
}
.back:hover {
  color: var(--ink);
}
.hero {
  padding: 104px 0 86px;
  background: radial-gradient(
    ellipse 62% 68% at 78% 0,
    rgba(139, 92, 246, 0.24),
    transparent 70%
  );
}
.eyebrow {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow.archive {
  color: var(--warn);
}
h1 {
  max-width: 800px;
  margin: 16px 0 18px;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.07em;
}
h1 em {
  font-style: normal;
  color: var(--accent);
}
.lede {
  max-width: 700px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 11px;
  padding: 12px 17px;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn.primary {
  background: linear-gradient(135deg, #c4b5fd, #8b5cf6);
  color: #110b24;
  box-shadow: 0 10px 28px rgba(139, 92, 246, 0.22);
}
.btn.alt {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
}
.proof {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0c1020;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof-item {
  padding: 25px 23px;
  border-right: 1px solid var(--line);
}
.proof-item:last-child {
  border: 0;
}
.proof-item strong {
  display: block;
  color: var(--accent);
  font-size: 24px;
  letter-spacing: -0.05em;
}
.proof-item span {
  font-size: 13px;
  color: var(--muted);
}
section {
  padding: 98px 0;
}
.label {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.label.warn {
  color: var(--warn);
}
h2 {
  max-width: 740px;
  margin: 13px 0 16px;
  font-size: clamp(31px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}
.intro {
  max-width: 690px;
  color: var(--muted);
  font-size: 17px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
}
.card {
  padding: 26px;
  background: linear-gradient(145deg, var(--panel), #0d1325);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.card .n {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}
.card h3 {
  margin: 14px 0 8px;
  font-size: 18px;
  letter-spacing: -0.03em;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.band {
  background: linear-gradient(180deg, #0d1224, #090d1a);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.box {
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel2);
}
.box h3 {
  margin: 9px 0;
  font-size: 21px;
  letter-spacing: -0.04em;
}
.box p,
.box li {
  color: var(--muted);
  font-size: 14px;
}
.box ul {
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}
.box li {
  margin: 8px 0;
}
.box li:before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
  margin-right: 9px;
}
.box.future li:before {
  content: "→";
  color: var(--warn);
}
.note {
  margin-top: 17px;
  padding: 17px 20px;
  border-left: 2px solid var(--warn);
  background: rgba(255, 177, 110, 0.07);
  color: #bdc9cf;
  font-size: 14px;
}
.archive-box {
  max-width: 760px;
  padding: 30px;
  border: 1px solid rgba(255, 177, 110, 0.35);
  border-radius: 16px;
  background: rgba(255, 177, 110, 0.05);
}
.archive-box p {
  color: var(--muted);
  margin: 10px 0 0;
}
.cta {
  text-align: center;
  padding: 108px 0;
  background: radial-gradient(
    ellipse at center,
    rgba(139, 92, 246, 0.19),
    transparent 62%
  );
}
.cta h2 {
  margin-left: auto;
  margin-right: auto;
}
.cta p {
  max-width: 560px;
  margin: 0 auto 27px;
  color: var(--muted);
  font-size: 17px;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 29px 0 38px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #74809f;
  font-size: 12px;
}
@media (max-width: 720px) {
  .wrap {
    padding: 0 20px;
  }
  .proof-grid,
  .cards,
  .twocol {
    grid-template-columns: 1fr;
  }
  .proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .proof-item:last-child {
    border-bottom: 0;
  }
  .nav {
    height: 66px;
  }
  .hero {
    padding: 78px 0 64px;
  }
  section {
    padding: 72px 0;
  }
  .footer {
    flex-direction: column;
  }
}
/* Shared navigation controls for every competition page. */
.brand:before {
  background: var(--bg) url("favicon.svg") center/cover no-repeat;
  box-shadow: 0 7px 18px rgba(139, 92, 246, 0.3);
}
.brand > .brand-name {
  display: block;
  white-space: nowrap;
}
.brand > .brand-name i {
  font-style: normal;
  color: var(--ink);
}
.pilot-banner {
  max-width: 1050px;
  margin: 28px auto 0;
  padding: 0 28px;
}
.pilot-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 23px;
  border: 1px solid rgba(94, 234, 212, 0.24);
  border-radius: 15px;
  background: linear-gradient(
    110deg,
    rgba(94, 234, 212, 0.09),
    rgba(139, 92, 246, 0.11)
  );
}
.pilot-banner-kicker {
  display: block;
  margin-bottom: 3px;
  color: #5eead4;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pilot-banner strong {
  display: block;
  font-size: 16px;
  letter-spacing: -0.03em;
}
.pilot-banner p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.pilot-banner a {
  flex: 0 0 auto;
  color: #110b24;
  background: linear-gradient(135deg, #99f6e4, #5eead4);
  border-radius: 9px;
  padding: 10px 13px;
  font-size: 12px;
  font-weight: 850;
}
@media (max-width: 720px) {
  .pilot-banner {
    padding: 0 20px;
  }
  .pilot-banner-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .pilot-banner a {
    width: 100%;
    text-align: center;
  }
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
.brand:before {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, #c4b5fd, #7c3aed);
  box-shadow: 0 7px 18px rgba(139, 92, 246, 0.3);
}
.brand span {
  color: var(--ink);
  font-weight: 850;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.language-picker {
  position: relative;
}
.language-current {
  min-width: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font:
    800 11px/1 Inter,
    ui-sans-serif,
    system-ui,
    sans-serif;
  letter-spacing: 0.06em;
  cursor: pointer;
}
.language-current:hover,
.language-current[aria-expanded="true"] {
  border-color: rgba(181, 154, 255, 0.65);
  color: var(--ink);
}
.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 10;
  min-width: 86px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #151d35;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3);
}
.language-menu button {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 6px;
  padding: 7px 8px;
  background: transparent;
  color: var(--muted);
  font:
    800 11px/1 Inter,
    ui-sans-serif,
    system-ui,
    sans-serif;
  letter-spacing: 0.06em;
  text-align: left;
  cursor: pointer;
}
.language-menu button:hover,
.language-menu button.active {
  background: rgba(181, 154, 255, 0.14);
  color: #c4b5fd;
}
@media (max-width: 520px) {
  .nav-actions {
    gap: 10px;
  }
  .brand:before {
    width: 24px;
    height: 24px;
  }
  .brand span {
    font-size: 16px;
  }
  .back {
    font-size: 12px;
  }
}
.brand:before {
  background: var(--bg) url("favicon.svg") center/cover no-repeat;
}

.product-video {
  padding-top: 18px;
  background: linear-gradient(180deg, #0a0f1d, #0d1224);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-video h2 { margin-bottom: 14px; }
.video-placeholder { position: relative; display: flex; min-height: 260px; flex-direction: column; align-items: center; justify-content: center; gap: 9px; margin-top: 34px; border: 1px dashed rgba(196,181,253,.5); border-radius: 18px; background: radial-gradient(circle at 50% 40%,rgba(139,92,246,.19),transparent 42%),#0b1020; color: var(--ink); text-align: center; }
.video-placeholder:before { position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,.05); border-radius: 11px; content: ""; pointer-events: none; }
.video-placeholder strong { font-size: 18px; letter-spacing: -.03em; }
.video-placeholder small { color: var(--muted); font-size: 13px; }
.video-play { z-index: 1; display: grid; width: 54px; height: 54px; place-items: center; padding-left: 3px; border-radius: 50%; background: linear-gradient(135deg,#c4b5fd,#8b5cf6); color: #130d26; box-shadow: 0 12px 32px rgba(139,92,246,.35); }
.video-player { display: block; width: 100%; max-height: 680px; margin-top: 34px; border: 1px solid var(--line); border-radius: 18px; background: #060912; }
.pilot-reference { margin: 20px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.pilot-reference a { color: var(--accent); font-weight: 800; text-decoration: none; }
.pilot-reference a:hover { text-decoration: underline; }
