:root {
  --black: #04050a;
  --black-2: #0b0d14;
  --white: #f7f7f4;
  --paper: #ffffff;
  --ink: #11131a;
  --muted: #b7bfcb;
  --muted-dark: #535b68;
  --pink: #ff2c7d;
  --blue: #2e87ff;
  --yellow: #ffd21f;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(17, 19, 26, 0.12);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

h1,
h2,
h3,
.logo {
  font-family: "Anton", Impact, Haettenschweiler, "Arial Narrow Bold", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
}

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

h1 {
  max-width: 700px;
  color: var(--white);
  font-size: 76px;
  text-shadow: 0 0 22px rgba(255, 44, 125, 0.34);
  font-weight: 400;
  line-height: 1.1;
}

h2 {
  font-size: 50px;
  line-height: 1.1;
}

h3 {
  font-size: 24px;
  line-height: 1.2;
}

.narrow {
  max-width: 860px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  padding: 0;
  background: rgba(4, 5, 10, 0.82);
  border-bottom: 1px solid var(--line);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.site-header .container {
  width: 100%;
  max-width: 2560px;
  padding-left: 6%;
  padding-right: 6%;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 20px;
  white-space: nowrap;
}

.logo strong {
  padding: 4px 7px;
  background: var(--white);
  color: var(--black);
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
}

.header-cta {
  display: inline-flex;
  max-width: 230px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, var(--pink), var(--blue));
  color: white;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: white;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  background: var(--black);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 5, 10, 0.94) 0%, rgba(4, 5, 10, 0.7) 48%, rgba(4, 5, 10, 0.18) 100%),
    linear-gradient(0deg, rgba(4, 5, 10, 0.92) 0%, transparent 48%);
}

.hero .container {
  width: 100%;
  max-width: 2560px;
  padding-left: 6%;
  padding-right: 6%;
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-content {
  width: calc(100% - clamp(36px, 12vw, 160px));
  max-width: 760px;
  align-self: center;
  margin-left: 0;
  padding: 86px 0 120px;
  color: var(--white);
}

.kicker {
  margin-bottom: 14px;
  color: #4f5b6b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-black .kicker,
.who-wins .kicker,
.launch .kicker,
.site-footer .kicker {
  color: var(--pink);
}

.hero .kicker {
  color: #ffffff;
}

.hero-subtitle {
  max-width: 660px;
  margin-top: 18px;
  color: var(--white);
  font-size: 23px;
  font-weight: 300;
}

.hero-meta {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.button-primary {
  background: linear-gradient(90deg, var(--pink), var(--blue));
  color: white;
  box-shadow: 0 0 26px rgba(255, 44, 125, 0.32);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
  color: white;
}

.button.is-disabled {
  cursor: not-allowed;
  opacity: 0.62;
  pointer-events: none;
}

.section {
  padding: 86px 0;
  background: var(--white);
}

.section-black {
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 44, 125, 0.12), transparent 28%),
    radial-gradient(circle at 94% 14%, rgba(46, 135, 255, 0.12), transparent 30%),
    var(--black);
  color: var(--white);
}

.copy-block p:not(.kicker),
.creators p:not(.kicker),
.launch-panel p:not(.kicker) {
  margin-top: 18px;
  color: var(--muted-dark);
  font-size: 18px;
}

.section-black .copy-block p:not(.kicker),
.section-black .creators p:not(.kicker),
.section-black p:not(.kicker) {
  color: var(--muted);
}

.product-card {
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 34px;
}

.section-head.compact {
  max-width: 780px;
}

.steps article,
.choice-grid article,
.edition-grid article {
  height: 100%;
  min-width: 0;
  border-radius: var(--radius);
  padding: 22px;
}

.steps article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.steps span,
.choice-grid span,
.edition-grid strong {
  display: inline-grid;
  min-width: 54px;
  height: 44px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  font-weight: 900;
}

.steps .col:nth-of-type(even) span {
  background: var(--blue);
  color: white;
}

.steps .col:nth-of-type(odd) span {
  background: var(--pink);
  color: white;
}

.steps p,
.choice-grid p,
.edition-grid p,
.round-list p {
  margin-top: 10px;
  color: var(--muted);
}

.cards-section {
  background: #f1f3f6;
}

.card-grid img {
  width: 100%;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

@media (min-width: 1200px) {
  .card-grid > .col {
    flex: 0 0 auto;
    width: 25%;
  }
}

.choice-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.choice-grid .col:nth-of-type(1) span {
  background: #4bd34b;
}

.choice-grid .col:nth-of-type(2) span {
  background: var(--pink);
  color: white;
}

.choice-grid .col:nth-of-type(3) span {
  background: var(--blue);
  color: white;
}

.choice-grid .col:nth-of-type(4) span {
  background: var(--yellow);
}

.editions {
  align-items: start;
}

.edition-grid {
  margin-top: 26px;
}

.edition-grid article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.9fr);
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line-dark);
  background: white;
}

.edition-image {
  width: 100%;
  height: 260px;
  border-radius: var(--radius);
  object-fit: contain;
  background: #f6f7f9;
}

.edition-grid .col:first-child article {
  border-top: 5px solid var(--blue);
}

.edition-grid .col:last-child article {
  border-top: 5px solid var(--pink);
}

.edition-grid h3 {
  margin-bottom: 10px;
}

.edition-grid p {
  color: var(--muted-dark);
}

.edition-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.edition-grid li {
  padding: 6px 9px;
  border-radius: 999px;
  background: #eef1f5;
  color: #20242d;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.rounds {
  align-items: start;
}

.round-list {
  display: grid;
  gap: 0;
  margin-top: 28px;
}

.round-list article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: var(--round-color);
}

.round-list h3 {
  color: var(--round-color);
  text-shadow: 0 0 18px color-mix(in srgb, var(--round-color) 52%, transparent);
}

.round-icon {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 0 18px color-mix(in srgb, currentColor 58%, transparent);
}

.round-icon::after {
  content: "";
  position: absolute;
  right: -14px;
  width: 3px;
  height: 42px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.round-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.round-common {
  --round-color: #ff2f88;
}

.round-personal {
  --round-color: #a94cff;
}

.round-creative {
  --round-color: #ffa51f;
}

.round-charity {
  --round-color: #50e34f;
}

.infographic {
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.who-wins {
  padding: 76px 0;
  background: #07080d;
  border-top: 1px solid var(--line);
  color: var(--white);
}

.who-wins-panel {
  max-width: 980px;
}

.winner-trophy-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.winner-trophy {
  max-width: 150px;
  height: auto;
}

.who-wins h2 {
  font-size: 30px;
  text-transform: none;
  line-height: 1.2;
}

.who-wins h2 span {
  color: var(--blue);
  text-shadow: 0 0 18px rgba(46, 135, 255, 0.48);
}

.big-line {
  margin-top: 28px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.money-line {
  color: var(--pink);
  text-shadow: 0 0 18px rgba(255, 44, 125, 0.42);
}

.people-line {
  color: var(--blue);
  text-shadow: 0 0 18px rgba(46, 135, 255, 0.46);
}

.box-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.box-list li {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 18px;
  font-weight: 800;
}

.box-list strong {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
}

.creators {
  text-align: center;
}

.creator-names {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.creator-names span {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
}

.launch {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--pink), var(--blue));
}

.launch-panel {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--black);
  color: white;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.36);
}

.launch-panel p {
  color: var(--muted);
}

.signup-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.signup-form {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.form-row input {
  min-width: 0;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.form-message {
  min-height: 22px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.form-message.is-error {
  color: #ff98b9;
}

.form-message.is-success {
  color: #8dffae;
}

.full {
  width: 100%;
  margin-top: 12px;
}

.signup-form .full:first-child {
  margin-top: 0;
  margin-bottom: 28px;
}

.faq {
  background: #f1f3f6;
}

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

.faq-list article {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: white;
  overflow: hidden;
}

.faq-list button {
  width: 100%;
  padding: 18px 20px;
  border: 0;
  background: white;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.faq-list button::after {
  content: "+";
  float: right;
  color: var(--pink);
  font-size: 22px;
  line-height: 1;
}

.faq-list button[aria-expanded="true"]::after {
  content: "-";
}

.faq-list article > div {
  max-height: 0;
  overflow: hidden;
  transition: max-height 180ms ease;
}

.faq-list p {
  padding: 0 20px 18px;
  color: var(--muted-dark);
}

.site-footer {
  padding: 42px 0;
  background: var(--black);
  color: var(--white);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-inner p {
  margin-top: 12px;
  color: var(--muted);
}

.copyright {
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
  font-weight: 800;
}

.footer-email {
  font-weight: 500;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 22px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .edition-grid article {
    grid-template-columns: 1fr;
  }

  .edition-image {
    order: -1;
    height: 220px;
  }

  .who-wins h2 {
    font-size: 24px;
    text-transform: none;
  }

  .big-line {
    font-size: 26px;
  }

  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav.is-open {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 20px 18px;
    background: rgba(4, 5, 10, 0.97);
    border-bottom: 1px solid var(--line);
    justify-content: start;
    text-align: left;
  }

  .main-nav.is-open a {
    padding: 12px 0;
  }

}

@media (max-width: 720px) {
  .site-header .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-inner {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .header-cta {
    justify-self: end;
  }

  .nav-toggle {
    justify-self: end;
  }

  .hero {
    min-height: 760px;
    padding: 0;
  }

  .hero .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(4, 5, 10, 0.96) 0%, rgba(4, 5, 10, 0.78) 58%, rgba(4, 5, 10, 0.24) 100%);
  }

  .section {
    padding: 64px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .edition-grid article {
    grid-template-columns: 1fr;
  }

  .card-grid {
    max-width: 360px;
    margin: 0 auto;
  }

  .launch-panel {
    padding: 24px;
  }

  .winner-trophy {
    width: min(72vw, 250px);
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .logo {
    font-size: 17px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 20px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-meta {
    font-size: 14px;
  }

  .who-wins h2 {
    font-size: 24px;
    text-transform: none;
  }

  .big-line {
    font-size: 22px;
  }

  .hero-actions .button {
    width: 100%;
  }

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