/* ============================================================
   LANDING PAGE - BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; }

.landing-page {
  background-color: #14161B;
  color: #FFFFFF;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

.lp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.lp-btn-primary {
  display: inline-block;
  background: #1DB954;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.4rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.lp-btn-primary:hover { background: #17a349; color: #fff; text-decoration: none; }

.lp-btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.4rem;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.lp-btn-outline:hover { border-color: #fff; color: #fff; text-decoration: none; }

.lp-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1DB954;
  margin-bottom: 0.75rem;
}

.lp-img-placeholder {
  background: #2A2D35;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 0.8rem;
  overflow: hidden;
  position: relative;
}
.lp-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* ============================================================
   NAVIGATION
============================================================ */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 22, 27, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.lp-nav-logo img {
  height: 34px;
}
.lp-nav-logo span {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lp-nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.lp-nav-links a:hover { color: #fff; }

.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.lp-nav-actions .lp-btn-ghost {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s;
}
.lp-nav-actions .lp-btn-ghost:hover { color: #fff; }

/* ============================================================
   HERO
============================================================ */
.lp-hero {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 5rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.lp-hero-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.lp-hero-logo img {
  height: 52px;
}
.lp-hero-logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1DB954;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.lp-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.lp-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 420px;
}

.lp-hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.lp-hero-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.lp-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   KEY FEATURES
============================================================ */
.lp-features {
  background: #F4F5F7;
  color: #14161B;
  padding: 5rem 2rem;
}

.lp-features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lp-features-content .lp-section-label { color: #1DB954; }

.lp-features-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #14161B;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.lp-features-content .lp-features-desc {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.lp-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-feature-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #22252D;
}

.lp-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #1DB954;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 1rem;
}

.lp-features-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.lp-features-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   HIGHLIGHTS
============================================================ */
.lp-highlights {
  background: #14161B;
  padding: 6rem 2rem;
}

.lp-highlights-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.lp-highlights-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.lp-highlights-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.lp-highlights-header p {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.lp-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.lp-highlight-card {
  background: #1E2028;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.2s, border-color 0.2s;
}
.lp-highlight-card:hover { transform: translateY(-4px); border-color: rgba(29,185,84,0.3); }

.lp-highlight-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.lp-highlight-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-highlight-card-body {
  padding: 1.25rem;
}

.lp-highlight-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.4rem;
}

.lp-highlight-card-body p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   TUNE IN WEEKLY
============================================================ */
.lp-tune-in {
  background: #0D2B1E;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.lp-tune-in::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(29,185,84,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.lp-tune-in-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lp-tune-in-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.lp-tune-in-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 440px;
}

.lp-tune-in-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(29,185,84,0.2);
}
.lp-tune-in-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   APP PREVIEW
============================================================ */
.lp-app-preview {
  background: #1A1C23;
  padding: 6rem 2rem;
}

.lp-app-preview-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lp-app-preview-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 64px rgba(0,0,0,0.4);
}
.lp-app-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-app-preview-content .lp-section-label { color: #1DB954; }

.lp-app-preview-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.lp-app-preview-content > p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.lp-bullet-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lp-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.lp-bullet-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1DB954;
  flex-shrink: 0;
  margin-top: 0.42em;
}

/* ============================================================
   FREE SEASON CTA
============================================================ */
.lp-free-season {
  background: #1DB954;
  padding: 5rem 2rem;
  text-align: center;
}

.lp-free-season h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.lp-free-season p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin: 0 auto 2rem;
  max-width: 520px;
  line-height: 1.6;
}

.lp-free-season-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.lp-free-season .lp-btn-primary {
  background: #fff;
  color: #1DB954;
}
.lp-free-season .lp-btn-primary:hover { background: #f0f0f0; color: #1DB954; }

.lp-free-season .lp-btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.lp-free-season .lp-btn-outline:hover { border-color: #fff; color: #fff; }

/* ============================================================
   LEAGUE MIGRATION
============================================================ */
.lp-migration {
  background: #14161B;
  padding: 6rem 2rem;
}

.lp-migration-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.lp-migration-header {
  margin-bottom: 3rem;
}

.lp-migration-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.lp-migration-header p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 560px;
}

.lp-migration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.lp-migration-card {
  background: #1E2028;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.2s;
}
.lp-migration-card:hover { border-color: rgba(29,185,84,0.3); }

.lp-migration-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.lp-migration-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-migration-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.4rem;
}

.lp-migration-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   WAITLIST / FOOTER
============================================================ */
.lp-waitlist {
  background: #1A1C23;
  padding: 6rem 2rem 0;
}

.lp-waitlist-cta {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 5rem;
}

.lp-waitlist-cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.lp-waitlist-cta p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.lp-waitlist-form {
  display: flex;
  gap: 0.5rem;
  max-width: 440px;
  margin: 0 auto;
}

.lp-waitlist-form input {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.lp-waitlist-form input::placeholder { color: rgba(255,255,255,0.3); }
.lp-waitlist-form input:focus { border-color: #1DB954; }

.lp-footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.lp-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.lp-footer-logo img { height: 28px; }
.lp-footer-logo span {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

.lp-footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lp-footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.lp-footer-links a:hover { color: rgba(255,255,255,0.8); }

.lp-footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .lp-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 3rem 1.5rem;
    gap: 2.5rem;
  }
  .lp-hero-image { max-width: 100%; }

  .lp-features-inner,
  .lp-tune-in-inner,
  .lp-app-preview-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .lp-highlights-grid { grid-template-columns: 1fr; }
  .lp-migration-grid { grid-template-columns: repeat(2, 1fr); }

  .lp-nav-links { display: none; }
}

@media (max-width: 480px) {
  .lp-migration-grid { grid-template-columns: 1fr; }
  .lp-waitlist-form { flex-direction: column; }
  .lp-footer { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
