:root {
  --bg: #07090f;
  --bg-soft: #0d111c;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #f7fbff;
  --muted: #aeb9c8;
  --line: rgba(255, 255, 255, 0.16);
  --cyan: #32e6ff;
  --pink: #ff3d9a;
  --lime: #b7ff47;
  --amber: #ffca45;
  --red: #ff5a66;
  --max: 1180px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(50, 230, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 61, 154, 0.04) 1px, transparent 1px),
    var(--bg);
  background-size: 54px 54px, 54px 54px, auto;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

p,
h1,
h2,
h3 {
  margin: 0;
}

.nowrap {
  white-space: nowrap;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 9, 15, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
}

.brand,
.nav-links,
.header-cta {
  font-size: 13px;
  font-weight: 800;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  letter-spacing: 0;
}

.brand-mark {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 35%, var(--pink) 35% 43%, transparent 43% 57%, var(--lime) 57% 65%, transparent 65%),
    radial-gradient(circle at 50% 50%, rgba(50, 230, 255, 0.28), transparent 60%);
  box-shadow: 0 0 24px rgba(50, 230, 255, 0.45);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
}

.nav-links a,
.site-footer a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--cyan);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
}

.section,
.section-dark {
  position: relative;
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 100px 0;
}

.section-dark {
  width: 100%;
}

.hero {
  min-height: 94vh;
  display: grid;
  align-items: center;
  padding: 128px max(16px, calc((100vw - var(--max)) / 2)) 72px;
  background: #05070c;
  isolation: isolate;
  overflow: hidden;
}

.page-hero {
  min-height: 48vh;
  display: grid;
  align-items: end;
  padding: 128px max(16px, calc((100vw - var(--max)) / 2)) 58px;
  background:
    linear-gradient(135deg, rgba(50, 230, 255, 0.16), transparent 36%),
    linear-gradient(45deg, transparent 45%, rgba(255, 61, 154, 0.12)),
    #05070c;
}

.page-hero-inner {
  max-width: 930px;
}

.hero-canvas,
.hero-noise {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-canvas {
  z-index: -3;
}

.hero-noise {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 7, 12, 0.86) 0%, rgba(5, 7, 12, 0.56) 48%, rgba(5, 7, 12, 0.2) 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 4px);
}

.hero-content {
  max-width: 860px;
}

.eyebrow {
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  margin-top: 18px;
  max-width: 980px;
  font-size: clamp(58px, 11vw, 142px);
  line-height: 0.86;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lead {
  max-width: 700px;
  margin-top: 28px;
  color: #dbe6f2;
  font-size: clamp(19px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.22;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  color: #061015;
  box-shadow: 0 18px 48px rgba(50, 230, 255, 0.24);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(760px, 100%);
  margin-top: 48px;
}

.hero-facts div,
.info-tile,
.sponsor-card,
.timeline-item,
.faq-list details,
.content-card,
.score-card,
.formula-card,
.value-card,
.positioning-card {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(16px);
}

.hero-facts div {
  min-height: 104px;
  padding: 18px;
  border-radius: 8px;
}

.hero-facts span,
.sponsor-label {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-facts strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: clamp(20px, 2.8vw, 34px);
  line-height: 1.05;
}

.scroll-hint {
  position: absolute;
  left: max(16px, calc((100vw - var(--max)) / 2));
  bottom: 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 44px;
}

.section-copy {
  max-width: 640px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.section-heading h2,
.final-cta h2 {
  margin-top: 12px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.steps-grid,
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.info-tile,
.sponsor-card {
  min-height: 300px;
  padding: 28px;
  border-radius: 8px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.info-tile:hover,
.sponsor-card:hover {
  transform: translateY(-4px);
  border-color: rgba(50, 230, 255, 0.42);
  background: var(--panel-strong);
}

.tile-number {
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
}

.info-tile h3,
.sponsor-card h3,
.timeline-item h3 {
  margin-top: 18px;
  font-size: 24px;
  line-height: 1.08;
}

.info-tile p,
.sponsor-card p,
.timeline-item p,
.faq-list p,
.final-cta p,
.content-card p,
.score-card p,
.value-card p {
  margin-top: 16px;
  color: var(--muted);
}

.content-grid,
.score-grid,
.value-grid {
  display: grid;
  gap: 16px;
}

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

.three-columns,
.score-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-card,
.score-card,
.value-card,
.formula-card,
.positioning-card {
  border-radius: 8px;
  padding: 26px;
}

.content-card h3,
.score-card h3,
.value-card h3 {
  font-size: 24px;
  line-height: 1.1;
}

.clean-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 700;
}

.clean-list li::marker {
  color: var(--cyan);
}

.requirements-section {
  padding-top: 40px;
}

.tool-cloud,
.nomination-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tool-cloud span,
.nomination-strip span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.07);
  color: #dce8f4;
  font-size: 14px;
  font-weight: 850;
}

.score-card {
  min-height: 430px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)),
    var(--panel);
}

.score-card strong {
  display: block;
  color: var(--lime);
  font-size: 56px;
  line-height: 0.9;
}

.score-card h3 {
  margin-top: 20px;
}

.formula-card,
.positioning-card {
  margin-top: 16px;
  background: linear-gradient(135deg, rgba(50, 230, 255, 0.12), rgba(255, 61, 154, 0.08));
}

.formula-card span,
.positioning-card span {
  display: block;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.formula-card p,
.positioning-card p {
  margin-top: 10px;
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 900;
  line-height: 1.15;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 40px;
  align-items: start;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
}

.audience-list span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.audience-list span:nth-child(3n + 1) {
  color: var(--cyan);
}

.audience-list span:nth-child(3n + 2) {
  color: var(--amber);
}

.audience-list span:nth-child(3n) {
  color: var(--pink);
}

.timeline-section {
  padding-top: 60px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 14px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 15px;
  width: 2px;
  background: linear-gradient(var(--cyan), var(--pink), var(--lime));
}

.timeline-item {
  position: relative;
  margin-left: 46px;
  padding: 24px;
  border-radius: 8px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 26px;
  left: -39px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 28px rgba(50, 230, 255, 0.65);
}

.timeline-item:nth-child(2)::before {
  background: var(--amber);
  box-shadow: 0 0 28px rgba(255, 202, 69, 0.58);
}

.timeline-item:nth-child(3)::before {
  background: var(--pink);
  box-shadow: 0 0 28px rgba(255, 61, 154, 0.58);
}

.timeline-item:nth-child(4)::before {
  background: var(--lime);
  box-shadow: 0 0 28px rgba(183, 255, 71, 0.58);
}

.timeline-item:nth-child(5)::before {
  background: var(--red);
  box-shadow: 0 0 28px rgba(255, 90, 102, 0.54);
}

.timeline-item:nth-child(6)::before {
  background: var(--cyan);
  box-shadow: 0 0 28px rgba(50, 230, 255, 0.65);
}

.timeline-item time {
  color: var(--lime);
  font-weight: 900;
}

.prizes-section {
  padding: 100px max(16px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(255, 61, 154, 0.12), transparent 38%),
    linear-gradient(45deg, transparent 52%, rgba(50, 230, 255, 0.12)),
    #090b13;
}

.sponsor-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.04) 18px 20px);
}

.sponsor-card summary {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  align-items: start;
  cursor: pointer;
  list-style: none;
}

.sponsor-card summary::-webkit-details-marker {
  display: none;
}

.sponsor-secret {
  display: inline-grid;
  grid-row: span 4;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(50, 230, 255, 0.44);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 30px;
  font-weight: 900;
  box-shadow: 0 0 30px rgba(50, 230, 255, 0.22);
}

.sponsor-card summary > :not(.sponsor-secret) {
  grid-column: 2;
}

.sponsor-card strong {
  display: block;
  margin-top: 28px;
  color: var(--lime);
  font-size: 22px;
}

.brief-toggle {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 13px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.sponsor-card[open] .brief-toggle {
  color: var(--lime);
}

.brief-preview {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.brief-preview h4 {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.15;
}

.brief-preview p {
  margin-top: 10px;
}

.nomination-strip {
  margin-top: 24px;
}

.nomination-strip span {
  color: var(--lime);
}

.workflow-section {
  padding-bottom: 70px;
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  min-height: 190px;
  padding: 22px;
  border-top: 3px solid var(--cyan);
  background: rgba(255, 255, 255, 0.065);
}

.workflow-list li:nth-child(2) {
  border-color: var(--amber);
}

.workflow-list li:nth-child(3) {
  border-color: var(--pink);
}

.workflow-list li:nth-child(4) {
  border-color: var(--lime);
}

.workflow-list span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  font-weight: 900;
}

.workflow-list p {
  margin-top: 22px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.rules-link-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(50, 230, 255, 0.1), rgba(255, 61, 154, 0.08));
}

.rules-link-card span {
  display: block;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.rules-link-card p {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
}

.rules-link-card .button {
  flex: 0 0 auto;
}

.rules-section {
  padding-top: 70px;
}

.rules-bottom {
  margin-top: 16px;
}

.danger-card {
  border-color: rgba(255, 90, 102, 0.34);
  background: rgba(255, 90, 102, 0.08);
}

.danger-card .clean-list li::marker {
  color: var(--red);
}

.sponsor-value-section {
  padding-top: 70px;
}

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

.value-card {
  min-height: 240px;
  padding: 22px;
}

.value-card span {
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
}

.value-card h3 {
  margin-top: 18px;
}

.faq-section {
  padding-top: 70px;
}

.privacy-section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.privacy-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  padding: 0 24px;
}

.privacy-card summary {
  cursor: pointer;
  padding: 24px 0;
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
}

.privacy-card summary::marker {
  color: var(--cyan);
}

.privacy-content {
  display: grid;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 24px 0 28px;
}

.privacy-content h3 {
  font-size: 22px;
  line-height: 1.15;
}

.privacy-content p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border-radius: 8px;
  padding: 0 22px;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 0;
  font-size: 19px;
  font-weight: 900;
}

.faq-list summary::marker {
  color: var(--cyan);
}

.faq-list p {
  padding-bottom: 22px;
}

.final-cta {
  padding: 104px 16px;
  background:
    linear-gradient(90deg, rgba(50, 230, 255, 0.14), transparent 38%),
    linear-gradient(270deg, rgba(183, 255, 71, 0.11), transparent 44%),
    #05070c;
}

.final-cta-inner {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.final-cta p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
}

.final-cta .button {
  margin-top: 30px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .steps-grid,
  .sponsor-grid,
  .workflow-list,
  .section-split,
  .two-columns,
  .three-columns,
  .score-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .info-tile,
  .sponsor-card,
  .score-card,
  .value-card {
    min-height: auto;
  }

  .rules-link-card {
    align-items: stretch;
    flex-direction: column;
  }

  .workflow-list li {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 8px;
    gap: 10px;
  }

  .brand span:last-child {
    max-width: 136px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-cta {
    min-height: 34px;
    padding: 0 12px;
  }

  .hero {
    min-height: 92vh;
    padding-top: 106px;
    padding-bottom: 54px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .hero-lead {
    font-size: 19px;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .hero-facts div {
    min-height: 84px;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(32px, 11vw, 48px);
  }

  .timeline-item {
    margin-left: 34px;
    padding: 20px;
  }

  .timeline::before {
    left: 10px;
  }

  .timeline-item::before {
    left: -32px;
  }

  .site-footer {
    flex-direction: column;
  }
}
