@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Newsreader:opsz,wght@6..72,300;6..72,400&display=swap");

:root {
  --navy: #081225;
  --navy-soft: #0b132b;
  --navy-card: rgba(11, 19, 43, 0.82);
  --blue: #2563eb;
  --blue-light: #38bdf8;
  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.82);
  --muted: rgba(255, 255, 255, 0.58);
  --line: rgba(255, 255, 255, 0.16);
  --shadow: rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--navy);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--navy);
  color: var(--white);
  font-family: "Inter", sans-serif;
}

.page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(520px, 47%) minmax(0, 53%);
  background:
    radial-gradient(circle at 16% 14%, rgba(37, 99, 235, 0.18), transparent 32%),
    linear-gradient(135deg, #050b18 0%, #081225 48%, #0b132b 100%);
}

.left-panel {
  min-height: 100vh;
  padding: 44px clamp(28px, 5vw, 76px) 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  overflow-y: auto;
}

.brand {
  position: absolute;
  top: 42px;
  left: clamp(28px, 5vw, 76px);
}

.brand img {
  width: 160px;
  margin-bottom: 28px;
  height: auto;
  display: block;
  border-radius: 10px;
}

.content {
  width: min(100%, 610px);
  padding-top: 120px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: none;
}

h1 {
  margin: 0 0 24px;
  font-family: "Newsreader", serif;
  font-size: clamp(46px, 4vw, 78px);
  line-height: 0.92;
  font-weight: 300;
  letter-spacing: -0.055em;
}

.intro {
  margin-bottom: 36px;
  max-width: 440px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

.waitlist-form {
  width: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 80px var(--shadow);
  backdrop-filter: blur(18px);
  margin-top: 32px;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

label {
  display: block;
  margin-bottom: 22px;
}

label span,
.role-group p {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

input,
select {
  width: 100%;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 17px;
  outline: none;
  padding: 0 16px;
}

input:focus,
select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.16);
}

select {
  appearance: none;
}

.role-group {
  margin: 0 0 24px;
}

.role-group p {
  margin-bottom: 14px;
}

.role-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.role-options label {
  margin: 0;
}

.role-options input {
  display: none;
}

.role-options span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: 0.2s ease;
}

.role-options input:checked + span {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.32);
}

button {
  width: 100%;
  height: 58px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #2563eb 0%, #064fe5 100%);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.35);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

button:hover {
  transform: translateY(-1px);
  opacity: 0.94;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.microcopy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.legal {
  margin-top: 18px;
  padding: 0 4px 4px;
}

.legal summary {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 500;
}

.legal p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.75;
}

.right-panel {
  position: sticky;
  top: 0;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(5, 11, 24, 0.1), rgba(5, 11, 24, 0.3)),
    url("images/stadium.jpg") center center / cover no-repeat;
}

.right-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 58% 16%, rgba(37, 99, 235, 0.24), transparent 30%),
    linear-gradient(to right, rgba(8, 18, 37, 0.9), rgba(8, 18, 37, 0.24) 45%, rgba(8, 18, 37, 0.2)),
    linear-gradient(to top, rgba(8, 18, 37, 0.84), transparent 54%);
}

.hero-overlay {
  position: absolute;
  z-index: 1;
  left: clamp(36px, 7vw, 90px);
  bottom: 40px;
  width: min(500px, calc(100% - 72px));
}

.hero-icon {
  display: none;
}

.statement {
  margin: 0;
  font-family: "Newsreader", serif;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.02;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--white);
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.45);
}

.blue-line {
  width: 56px;
  height: 3px;
  margin: 22px 0 20px;
  background: var(--blue);
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.7);
}

.hero-text {
  margin: 0;
  max-width: 390px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.55;
}

/* ====================== MEDIA QUERIES ====================== */

@media (max-width: 980px) {
  .page {
    grid-template-columns: 1fr;
  }
  .right-panel {
    position: relative;
    order: -1;
    min-height: 46vh;
  }
  .left-panel {
    min-height: auto;
    padding: 34px 22px 34px;
  }
  .brand {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 36px;
  }
  .brand img {
    width: 235px;
  }
  .content {
    width: 100%;
    padding-top: 0;
  }
  .hero-overlay {
    left: 24px;
    right: 24px;
    bottom: 30px;
    width: auto;
  }
  .hero-icon {
    display: none;
  }
  .statement {
    font-size: 44px;
  }
  .hero-text {
    display: none;
  }
  .blue-line {
    margin: 24px 0 0;
  }
}

@media (max-width: 620px) {
  .left-panel {
    padding: 28px 18px 32px;
  }
  .brand img {
    width: 180px;
  }
  h1 {
    font-size: 58px;
    line-height: 0.92;
  }
  .content {
    width: 100%;
  }
  .intro {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .waitlist-form {
    padding: 18px;
    border-radius: 20px;
  }
  .row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .role-options {
    flex-direction: column;
  }
  .role-options span {
    width: 100%;
  }
  button {
    width: 100%;
  }
  .right-panel {
    min-height: 40vh;
  }
  .statement {
    font-size: 36px;
  }
}