/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #060611;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; border-radius: 14px; }

/* ── Nav ─────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(6, 6, 17, .72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 17px; letter-spacing: -.3px;
}
.nav-logo img { border-radius: 10px; }
.nav-cta {
  padding: 8px 20px;
  border-radius: 10px;
  background: #2ed573;
  color: #060611;
  font-weight: 600; font-size: 14px;
  transition: transform .15s, opacity .15s;
}
.nav-cta:hover { transform: translateY(-1px); opacity: .9; }

/* ── Hero ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(46,213,115,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: 1120px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; gap: 64px;
}
.hero-text { flex: 1; min-width: 0; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(46,213,115,.1);
  border: 1px solid rgba(46,213,115,.2);
  font-size: 13px; font-weight: 500;
  color: #2ed573;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #2ed573;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.gradient-text {
  background: linear-gradient(135deg, #2ed573 0%, #7bed9f 50%, #2ed573 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: 17px; line-height: 1.65;
  color: rgba(255,255,255,.55);
  max-width: 480px;
  margin-bottom: 36px;
}

/* Store buttons */
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 22px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  transition: background .2s, border-color .2s, transform .15s;
}
.store-btn:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-2px);
}
.store-btn svg { flex-shrink: 0; opacity: .85; }
.store-btn small { display: block; font-size: 10px; color: rgba(255,255,255,.5); font-weight: 400; line-height: 1.2; }
.store-btn strong { display: block; font-size: 15px; font-weight: 600; line-height: 1.3; }

/* ── Phone / Widget ──────────────────────────── */
.hero-widget { flex-shrink: 0; }

.phone-frame {
  width: 320px;
  background: #111127;
  border-radius: 40px;
  border: 3px solid rgba(255,255,255,.08);
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04),
    0 24px 80px rgba(0,0,0,.6),
    0 0 120px rgba(46,213,115,.06);
  position: relative;
}
.phone-notch {
  width: 100px; height: 24px;
  background: #111127;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative; z-index: 2;
}
.phone-screen {
  background: #0D0D1A;
  border-radius: 28px;
  min-height: 460px;
  overflow: hidden;
}
.phone-status-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 24px 4px;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.5);
}
.status-icons { font-size: 10px; letter-spacing: 2px; }

.widget-container { padding: 16px 12px; }

.widget-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 14px;
}
.widget-header {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 10px;
}
.widget-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #2ed573;
  animation: pulse 2s ease-in-out infinite;
}
.widget-title {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: .3px;
}

/* Match rows */
.match-row {
  padding: 8px 10px;
  border-radius: 12px;
  margin-bottom: 5px;
  background: rgba(255,255,255,.03);
}
.match-row.live {
  background: rgba(46,213,115,.06);
  border: 1px solid rgba(46,213,115,.12);
}
.match-league {
  display: flex; align-items: center; gap: 5px;
  margin-bottom: 5px;
}
.league-icon { width: 14px; height: 14px; border-radius: 2px; object-fit: contain; flex-shrink: 0; }
.league-name {
  font-size: 9px; font-weight: 500;
  color: rgba(255,255,255,.35);
  flex: 1;
}
.live-indicator {
  display: flex; align-items: center; gap: 3px;
  font-size: 9px; font-weight: 600; color: #2ed573;
}
.live-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: #2ed573;
  animation: pulse 2s ease-in-out infinite;
}
.match-time {
  font-size: 9px; color: rgba(255,255,255,.25);
}
.match-teams {
  display: flex; align-items: center;
}
.team {
  flex: 1; display: flex; align-items: center; gap: 5px;
  min-width: 0;
}
.team.home { justify-content: flex-end; }
.team-name {
  font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,.8);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  min-width: 0;
}
.team-crest { width: 18px; height: 18px; border-radius: 2px; object-fit: contain; flex-shrink: 0; }
.match-score {
  width: 50px; text-align: center; flex-shrink: 0;
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,.5);
}
.match-score.live-score { color: #2ed573; }

/* ── Features ────────────────────────────────── */
.features {
  padding: 100px 24px;
  background: linear-gradient(180deg, #060611 0%, #0a0a1e 100%);
}
.features-inner {
  max-width: 1120px; margin: 0 auto;
}
.features-inner h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -.8px;
  text-align: center;
  margin-bottom: 56px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.feature-card {
  padding: 32px 28px;
  border-radius: 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  transition: border-color .25s, transform .25s;
}
.feature-card:hover {
  border-color: rgba(46,213,115,.2);
  transform: translateY(-4px);
}
.feature-icon {
  font-size: 28px;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-size: 17px; font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px; line-height: 1.65;
  color: rgba(255,255,255,.45);
}

/* ── CTA ─────────────────────────────────────── */
.cta {
  padding: 100px 24px;
  text-align: center;
}
.cta-inner { max-width: 560px; margin: 0 auto; }
.cta-logo {
  margin: 0 auto 28px;
  box-shadow: 0 8px 40px rgba(46,213,115,.12);
}
.cta-inner h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -.8px;
  margin-bottom: 16px;
}
.cta-inner p {
  font-size: 16px;
  color: rgba(255,255,255,.5);
  margin-bottom: 36px;
}
.cta-buttons { justify-content: center; }

/* ── Footer ──────────────────────────────────── */
.footer {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 28px 24px;
}
.footer-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-brand {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px;
}
.footer-brand img { border-radius: 8px; }
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,.3);
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .badge { margin-left: auto; margin-right: auto; }
}
@media (max-width: 600px) {
  .phone-frame { width: 260px; }
  .phone-screen { min-height: 400px; }
  .hero { padding-top: 100px; }
  .features { padding: 60px 16px; }
  .cta { padding: 60px 16px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .store-btn { padding: 10px 16px; }
}
