@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #1a1a25;
  --fg-primary: #f0f0f5;
  --fg-secondary: #8a8a9a;
  --fg-muted: #5a5a6a;
  --accent: #ff5a1d;
  --accent-dim: #c43d0f;
  --accent-glow: rgba(255, 90, 29, 0.12);
  --accent-glow-strong: rgba(255, 90, 29, 0.25);
  --border: #2a2a35;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--fg-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 6rem 2rem 5rem;
  overflow: hidden;
}

/* Football diagonal stripe background */
.hero-stripes {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(255, 90, 29, 0.04) 40px,
    rgba(255, 90, 29, 0.04) 42px
  );
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  top: -30%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 90, 29, 0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-inner > h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-inner > h1 .accent { color: var(--accent); }

.hero-inner > .lede {
  font-size: 1.2rem;
  color: var(--fg-secondary);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ---- WAITLIST FORM ---- */
.waitlist-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin-bottom: 0.75rem;
}

.waitlist-form input[type="email"] {
  flex: 1;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 6px 0 0 6px;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--fg-primary);
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-form input[type="email"]::placeholder {
  color: var(--fg-muted);
}

.waitlist-form input[type="email"]:focus {
  border-color: var(--accent);
}

.waitlist-form button {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  border-radius: 0 6px 6px 0;
  padding: 0.9rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
  min-width: 160px;
}

.waitlist-form button:hover:not(:disabled) {
  background: var(--accent-dim);
  transform: translateY(-1px);
}

.waitlist-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.waitlist-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
}

.waitlist-success {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg-primary);
  padding: 0.9rem 1.2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--accent-dim);
  border-radius: 6px;
  max-width: 400px;
}

/* ---- HERO STATS ---- */
.hero-stat-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 0.5rem;
}

.hero-stat {
  border-left: 3px solid var(--accent);
  padding-left: 1.1rem;
}

.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-top: 0.25rem;
}

/* ---- SECTION SHARED ---- */
.section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--fg-secondary);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.75;
}

/* ---- FEATURES GRID ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.25s, border-color 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-dim);
  box-shadow: 0 8px 30px rgba(255, 90, 29, 0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--fg-secondary);
  line-height: 1.65;
}

/* ---- STRATEGIES SECTION ---- */
.strategies-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.strategies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.strategy-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-primary);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.strategy-card:hover {
  border-color: var(--accent-dim);
  box-shadow: 0 4px 20px rgba(255, 90, 29, 0.08);
}

.strategy-card .strategy-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--fg-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.strategy-card .strategy-range {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
}

.strategy-card .strategy-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ---- CLOSING ---- */
.closing {
  text-align: center;
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow-strong) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.closing-inner {
  position: relative;
  z-index: 1;
}

.closing-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1.2rem;
  line-height: 1.05;
}

.closing p {
  font-size: 1.1rem;
  color: var(--fg-secondary);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.closing-cta {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bg-primary);
  background: var(--accent);
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255, 90, 29, 0.3);
}

.closing-cta:hover {
  background: var(--accent-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 90, 29, 0.4);
}

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.footer-partner {
  font-size: 0.78rem;
  margin-top: 0.5rem;
}

.footer a {
  color: var(--accent);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner { flex-direction: column; gap: 0; }
  .features-grid { grid-template-columns: 1fr; }
  .strategies-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stat-row { flex-wrap: wrap; gap: 1.5rem; }
  .waitlist-form { flex-direction: column; gap: 0.5rem; max-width: 100%; }
  .waitlist-form input[type="email"] { border-radius: 6px; border-right: 1px solid var(--border); }
  .waitlist-form button { border-radius: 6px; width: 100%; }
}

@media (max-width: 600px) {
  .hero { padding: 4rem 1.5rem 3rem; min-height: auto; }
  .section { padding: 4rem 1.5rem; }
  .strategies-grid { grid-template-columns: 1fr; }
  .closing { padding: 5rem 1.5rem; }
  .hero-stat-row { gap: 1.5rem; }
}