:root {
  color-scheme: dark;
  --bg: #07130f;
  --bg-soft: #0c1c16;
  --text: #f4fff8;
  --muted: #a7b8ad;
  --line: rgba(255, 255, 255, 0.12);
  --lime: #b8ff3d;
  --mint: #2cf4a2;
  --blue: #42b8ff;
  --danger: #ff7066;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(44, 244, 162, 0.16), transparent 30%),
    linear-gradient(135deg, #07130f 0%, #0b1719 48%, #12180e 100%);
}

button,
input {
  font: inherit;
}

.site-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 40px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 56px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-size: 1.28rem;
  font-weight: 800;
}

.brand img {
  display: block;
}

.nav-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav-pills span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 0.86rem;
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(30px, 5vw, 76px);
  min-height: calc(100vh - 220px);
  padding: clamp(44px, 7vw, 92px) 0 48px;
}

.hero-copy {
  max-width: 710px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 16px;
  border: 1px solid rgba(184, 255, 61, 0.38);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--lime);
  background: rgba(184, 255, 61, 0.08);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.55rem, 6.2vw, 5.05rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
  line-height: 1.65;
}

.notify-form {
  width: min(100%, 560px);
  margin-top: 36px;
}

.notify-form label {
  display: block;
  margin-bottom: 10px;
  color: #d8eee0;
  font-weight: 750;
}

.input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.input-row input {
  min-width: 0;
  border: 0;
  outline: 0;
  border-radius: 6px;
  padding: 14px 14px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.22);
}

.input-row input::placeholder {
  color: rgba(244, 255, 248, 0.46);
}

.input-row button {
  border: 0;
  border-radius: 6px;
  padding: 0 18px;
  color: #06130d;
  background: linear-gradient(135deg, var(--lime), var(--mint));
  font-weight: 850;
  cursor: pointer;
}

.input-row button:focus-visible,
.input-row input:focus-visible {
  outline: 3px solid rgba(66, 184, 255, 0.6);
  outline-offset: 2px;
}

.form-note {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-note.success {
  color: var(--mint);
}

.match-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 530px;
}

.stadium {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.9;
}

.phone-card {
  position: relative;
  width: min(100%, 360px);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 30px;
  padding: 18px;
  background: rgba(6, 16, 13, 0.8);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.phone-header span {
  border-radius: 999px;
  padding: 6px 9px;
  color: #150805;
  background: var(--danger);
  font-size: 0.72rem;
  font-weight: 900;
}

.phone-header strong {
  font-size: 1.05rem;
}

.score-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 66px;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.score-line.active {
  border-color: rgba(184, 255, 61, 0.4);
  background: rgba(184, 255, 61, 0.11);
}

.team {
  color: #dff5e7;
  font-weight: 850;
}

.score-line strong {
  color: var(--text);
  font-size: 1.32rem;
}

.score-line small {
  color: var(--lime);
  font-weight: 850;
}

.event-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 14px;
  padding: 0 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(44, 244, 162, 0.14);
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.feature-band article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.feature-band span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 850;
}

.feature-band h2 {
  margin: 10px 0 8px;
  font-size: 1.05rem;
}

.feature-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 44px;
  }

  .match-visual {
    min-height: 430px;
  }

  .feature-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-shell {
    width: min(100% - 28px, 1180px);
    padding-top: 18px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-pills {
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

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

  .input-row button {
    min-height: 48px;
  }

  .match-visual {
    min-height: 390px;
  }

  .phone-card {
    width: min(100%, 330px);
    border-radius: 24px;
  }
}
