/* ============================================================
   11 ODDS — coming soon landing page
   Brand: mint #3DD68C · navy #0F2438 · bg #0F1218 · white
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg: #0F1218;
  --bg-elev-1: #141921;
  --bg-elev-2: #1A1F2A;
  --navy: #0F2438;
  --mint: #3DD68C;
  --mint-glow: rgba(61, 214, 140, 0.35);
  --white: #FFFFFF;
  --text: #FFFFFF;
  --text-muted: #8A93A6;
  --text-subtle: #5A6377;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-soft: 0 1px 0 rgba(255,255,255,0.04) inset, 0 24px 48px rgba(0,0,0,0.35);
  --shadow-glow: 0 0 0 1px rgba(61,214,140,0.35), 0 12px 40px rgba(61,214,140,0.18);

  --container: 1180px;
  --gap: clamp(16px, 2vw, 24px);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 150ms;
  --dur: 240ms;
  --dur-slow: 400ms;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--mint); text-decoration: none; transition: color var(--dur-fast) var(--ease); }
a:hover { color: #6EE5A8; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; }
p { margin: 0; }
ul, ol { padding: 0; margin: 0; list-style: none; }

/* ---------- A11y ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 12px;
  background: var(--mint); color: var(--navy);
  padding: 10px 16px; border-radius: var(--radius-sm);
  font-weight: 700; z-index: 100;
}
.skip-link:focus { left: 12px; }

:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 18, 24, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 16px;
}
.nav-logo { display: inline-flex; align-items: center; }
.nav-logo img { height: 36px; width: auto; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61, 214, 140, 0.08);
  color: var(--mint);
  border: 1px solid rgba(61, 214, 140, 0.22);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 var(--mint-glow);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(61,214,140,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(61,214,140,0);  }
  100% { box-shadow: 0 0 0 0 rgba(61,214,140,0);     }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(72px, 12vw, 140px) 0 clamp(48px, 8vw, 100px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 100%);
  height: 700px;
  background: radial-gradient(closest-side, rgba(61, 214, 140, 0.15), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(44px, 8vw, 92px);
  letter-spacing: -0.04em;
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 24px;
}
.accent {
  color: var(--mint);
  /* subtle text glow per design system */
  text-shadow: 0 0 24px rgba(61, 214, 140, 0.25);
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* ---------- Fixture callout ---------- */
.fixture-callout {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  background: rgba(61, 214, 140, 0.06);
  border: 1px solid rgba(61, 214, 140, 0.22);
  color: var(--text);
  padding: 10px 18px;
  border-radius: 999px;
  margin: 0 auto 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.fixture-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(61,214,140,0.55);
  animation: pulse 2.4s var(--ease) infinite;
}
.fixture-label {
  color: var(--mint);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
}
.fixture-name { font-weight: 700; }
.fixture-meta { color: var(--text-muted); }
.fixture-sep { color: var(--text-subtle); }

/* ---------- Form ---------- */
.signup-form { max-width: 540px; margin: 0 auto; position: relative; }
.signup-form-stacked { max-width: 560px; }

.signup-input-wrap {
  display: flex;
  align-items: stretch;
  background: var(--bg-elev-1);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.signup-input-wrap:focus-within {
  border-color: rgba(61, 214, 140, 0.5);
  box-shadow: 0 0 0 4px rgba(61, 214, 140, 0.12);
}
.signup-input-wrap input[type="email"] {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--text);
  font: inherit;
  font-size: 16px;
  padding: 14px 18px;
  outline: none;
  min-width: 0;
}
.signup-input-wrap input::placeholder {
  color: var(--text-subtle);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border-radius: 999px;
  padding: 14px 22px;
  transition: transform var(--dur-fast) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--mint);
  color: var(--navy);
  box-shadow: 0 6px 20px rgba(61, 214, 140, 0.18);
}
.btn-primary:hover {
  background: #4FE39A;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(61, 214, 140, 0.28);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn-arrow {
  display: inline-block;
  transition: transform var(--dur) var(--ease);
}
.btn:hover .btn-arrow { transform: translateX(2px); }

.signup-help {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-subtle);
  text-align: center;
}
.signup-status {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  min-height: 1.4em;
}
.signup-status.is-success { color: var(--mint); }
.signup-status.is-error   { color: #FF8A8A; }

/* ---------- Success card ---------- */
.signup-form.is-success .signup-input-wrap,
.signup-form.is-success .signup-help,
.signup-form.is-success .signup-status {
  display: none;
}
.signup-form.is-success .signup-success {
  display: block;
}
.signup-success {
  display: none;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(61, 214, 140, 0.10), transparent 60%),
    var(--bg-elev-1);
  border: 1px solid rgba(61, 214, 140, 0.30);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px) clamp(20px, 4vw, 36px);
  animation: successIn 360ms var(--ease) both;
}
@keyframes successIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.success-check {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(61, 214, 140, 0.12);
  color: var(--mint);
  display: grid;
  place-items: center;
  border: 1px solid rgba(61, 214, 140, 0.30);
}
.success-title {
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.success-sub {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 380px;
  margin: 0 auto 22px;
}

.btn-telegram {
  background: var(--mint);
  color: var(--navy);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(61, 214, 140, 0.25);
  transition: transform var(--dur-fast) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn-telegram:hover {
  background: #4FE39A;
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(61, 214, 140, 0.35);
}
.btn-telegram:active { transform: translateY(0); }
.btn-telegram svg { flex: 0 0 auto; }

.success-confirm-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-subtle);
  line-height: 1.5;
}

/* ---------- Social proof ---------- */
.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}
.proof-avatars { display: flex; }
.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  background: var(--bg-elev-2);
}
.avatar:first-child { margin-left: 0; }
.avatar-1 { background: linear-gradient(135deg, #3DD68C, #1FA86C); }
.avatar-2 { background: linear-gradient(135deg, #4D8BFF, #1F4FA8); }
.avatar-3 { background: linear-gradient(135deg, #FFD06E, #C77F00); }
.avatar-4 { background: linear-gradient(135deg, #C58CFF, #6E3FB1); }

.proof-text {
  color: var(--text-muted);
  font-size: 14px;
}
.proof-text strong {
  color: var(--text);
  font-weight: 700;
}

/* ---------- Section heads ---------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(30px, 5vw, 54px);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* ---------- The Edge cards ---------- */
.section-edge {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.card {
  background: var(--bg-elev-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 2px;
  background: var(--mint);
  opacity: 0.6;
  transition: width var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  background: var(--bg-elev-2);
}
.card:hover::before { width: 100%; opacity: 1; }
.card-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-subtle);
  margin-bottom: 18px;
}
.card-title {
  font-size: clamp(20px, 2vw, 24px);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.card-body {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ---------- How it works steps ---------- */
.steps {
  display: grid;
  gap: 18px;
  max-width: 780px;
  margin: 0 auto;
}
.step {
  display: flex;
  gap: 24px;
  background: var(--bg-elev-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.5vw, 28px) clamp(20px, 3vw, 36px);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.step:hover {
  border-color: var(--border-strong);
  background: var(--bg-elev-2);
}
.step-num {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--mint), #2BB078);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
}
.step-title {
  font-size: clamp(18px, 1.8vw, 22px);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.step-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- Cards section (yellow & red infographic) ---------- */
.section-cards {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.section-cards::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(245, 200, 0, 0.06), transparent 40%),
    radial-gradient(circle at 82% 70%, rgba(220, 50, 50, 0.06), transparent 40%);
  pointer-events: none;
}
.section-cards .container { position: relative; }

.section-sub {
  color: var(--text-muted);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.6;
  max-width: 640px;
  margin: 18px auto 0;
}

.cards-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}

.card-tile {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  background: var(--bg-elev-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.card-tile:hover {
  border-color: var(--border-strong);
  background: var(--bg-elev-2);
  transform: translateY(-2px);
}
.card-tile-yellow:hover { box-shadow: 0 18px 40px rgba(245, 200, 0, 0.10); }
.card-tile-red:hover    { box-shadow: 0 18px 40px rgba(220, 50, 50, 0.10); }

/* Card visual container */
.card-tile-visual {
  flex: 0 0 auto;
  width: clamp(120px, 14vw, 160px);
  height: clamp(170px, 20vw, 220px);
  display: grid;
  place-items: center;
  perspective: 800px;
}

/* Football card itself */
.football-card {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  position: relative;
  transition: transform var(--dur-slow) var(--ease);
  will-change: transform;
}
.football-card::before {
  /* subtle linen-paper grain */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,0.045) 0 2px,
      transparent 2px 4px),
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.18), transparent 55%);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.football-card::after {
  /* soft inner shadow at the bottom edge */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    inset 0 -3px 0 rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.22);
  pointer-events: none;
}
.football-card-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.20);
  border-radius: 2px;
}
.football-card-corner-tl { top: 12px; left: 12px;  border-right: 0; border-bottom: 0; }
.football-card-corner-br { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

.football-card-yellow {
  background: linear-gradient(160deg, #FFE34A 0%, #F5C842 50%, #DEAB22 100%);
  box-shadow:
    0 14px 30px rgba(245, 200, 0, 0.30),
    0 4px 12px rgba(0, 0, 0, 0.45);
  transform: rotate(-7deg) translateZ(0);
}
.card-tile-yellow:hover .football-card-yellow {
  transform: rotate(-4deg) translateZ(0) scale(1.03);
}

.football-card-red {
  background: linear-gradient(160deg, #FF5A4F 0%, #E63946 50%, #B22A36 100%);
  box-shadow:
    0 14px 30px rgba(220, 50, 50, 0.30),
    0 4px 12px rgba(0, 0, 0, 0.45);
  transform: rotate(6deg) translateZ(0);
}
.card-tile-red:hover .football-card-red {
  transform: rotate(3deg) translateZ(0) scale(1.03);
}

/* Body text */
.card-tile-body { flex: 1 1 auto; min-width: 0; }
.card-tile-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.card-tile-eyebrow-yellow {
  color: #F5C842;
  background: rgba(245, 200, 0, 0.10);
  border: 1px solid rgba(245, 200, 0, 0.30);
}
.card-tile-eyebrow-red {
  color: #FF6B6B;
  background: rgba(220, 50, 50, 0.10);
  border: 1px solid rgba(220, 50, 50, 0.30);
}
.card-tile-title {
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.card-tile-stats {
  display: grid;
  gap: 10px;
}
.card-tile-stats li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}
.stat-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  margin-top: 7px;
}
.stat-dot-yellow {
  background: #F5C842;
  box-shadow: 0 0 8px rgba(245, 200, 0, 0.45);
}
.stat-dot-red {
  background: #E63946;
  box-shadow: 0 0 8px rgba(220, 50, 50, 0.45);
}

.cards-footnote {
  text-align: center;
  font-size: 12px;
  color: var(--text-subtle);
  margin-top: clamp(28px, 4vw, 40px);
  letter-spacing: 0.02em;
}

/* ---------- Closing CTA ---------- */
.section-cta { padding-bottom: clamp(80px, 10vw, 140px); }
.cta-box {
  position: relative;
  background:
    radial-gradient(circle at 80% 0%, rgba(61, 214, 140, 0.10), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(15, 36, 56, 0.7), transparent 60%),
    var(--bg-elev-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 64px);
  text-align: center;
  overflow: hidden;
}
.cta-box::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mint), transparent);
  opacity: 0.5;
}
.cta-title {
  font-size: clamp(28px, 5vw, 52px);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  line-height: 1.1;
}
.cta-sub {
  color: var(--text-muted);
  font-size: clamp(15px, 1.4vw, 17px);
  max-width: 520px;
  margin: 0 auto 32px;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
  background: var(--bg);
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand img { width: 28px; height: 28px; }
.footer-mark {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--text);
}
.footer-meta {
  font-size: 13px;
  color: var(--text-subtle);
}
.footer-disclaimer {
  font-size: 12px;
  color: var(--text-subtle);
  letter-spacing: 0.02em;
}
.footer-disclaimer a { color: var(--text-muted); }
.footer-disclaimer a:hover { color: var(--mint); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .cards { grid-template-columns: 1fr; }
  .cards-showcase { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .card-tile { flex-direction: column; align-items: flex-start; gap: 24px; }
  .card-tile-visual {
    width: 110px;
    height: 154px;
    align-self: center;
  }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav-logo img { height: 30px; }
  .status-pill { font-size: 11px; padding: 5px 10px; }
  .hero-title { font-size: clamp(40px, 12vw, 60px); }
  .signup-input-wrap {
    flex-direction: column;
    border-radius: var(--radius-lg);
    padding: 8px;
    gap: 6px;
  }
  .signup-input-wrap input[type="email"] {
    padding: 14px 16px;
  }
  .btn {
    width: 100%;
    padding: 14px 22px;
    border-radius: var(--radius);
  }
  .step { flex-direction: column; gap: 14px; }
  .footer-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-meta, .footer-disclaimer { font-size: 12px; }
  .fixture-callout {
    font-size: 12px;
    padding: 8px 14px;
    gap: 8px;
  }
  .fixture-sep { display: none; }
  .btn-telegram { width: 100%; justify-content: center; }
}

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