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

:root {
  --bg: #0c0d12;
  --card: #14151c;
  --surface: #1a1b24;
  --border: rgba(255, 255, 255, 0.06);
  --accent: #ff7a51;
  --accent-dark: rgba(255, 122, 81, 0.9);
  --accent-glow: rgba(255, 122, 81, 0.15);
  --text-primary: #f5f5f5;
  --text-secondary: #9ea4b5;
  --text-muted: #62697a;
  --chip-bg: rgba(255, 255, 255, 0.08);
  --chip-border: rgba(255, 255, 255, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent {
  color: var(--accent);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(12, 13, 18, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  font-size: 28px;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.btn-nav {
  background: var(--accent) !important;
  color: var(--bg) !important;
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: 600 !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.hero {
  padding: 140px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: var(--chip-bg);
  border: 1px solid var(--chip-border);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.3px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--chip-border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 280px;
  background: var(--card);
  border-radius: 36px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 60px var(--accent-glow);
  transform: perspective(800px) rotateY(-5deg) rotateX(2deg);
}

.phone-screen {
  background: var(--bg);
  border-radius: 26px;
  padding: 20px 16px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

.mock-header {
  margin-bottom: 20px;
}

.mock-region {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

.mock-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mock-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border-radius: 12px;
  padding: 12px;
}

.mock-poster {
  width: 50px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-glow), var(--surface));
  border-radius: 8px;
  flex-shrink: 0;
}

.mock-buzz {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 600;
}

.mock-tabs {
  display: flex;
  justify-content: space-around;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.mock-tab {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 600;
}

.mock-tab.active {
  color: var(--accent);
}

.features {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: rgba(255, 122, 81, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pro-section {
  padding: 60px 0 100px;
}

.pro-card {
  background: linear-gradient(135deg, var(--card) 0%, rgba(255, 122, 81, 0.08) 100%);
  border: 1px solid rgba(255, 122, 81, 0.2);
  border-radius: 28px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pro-card::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.pro-content {
  position: relative;
  z-index: 1;
}

.pro-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 6px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.pro-card h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.pro-card > .pro-content > p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.pro-pricing {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.price-option {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 36px;
  text-align: center;
  transition: all 0.2s;
}

.price-option:hover {
  border-color: var(--accent);
}

.price-option.highlight {
  border-color: var(--accent);
  box-shadow: 0 0 30px var(--accent-glow);
}

.price {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
}

.period {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.download-section {
  padding: 100px 0;
  text-align: center;
}

.download-section h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.download-section > .container > p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.store-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.store-badge {
  text-decoration: none;
  background: var(--card);
  border: 1px solid var(--chip-border);
  border-radius: 16px;
  padding: 16px 28px;
  transition: all 0.2s;
}

.store-badge:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.store-badge-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.store-icon {
  font-size: 28px;
}

.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-small {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.store-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand .logo-icon,
.footer-brand .logo-text {
  display: inline;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent);
}

.credit-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-subtitle {
    margin: 0 auto 36px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .phone-mockup {
    transform: none;
    width: 240px;
  }

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

  .footer-links {
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .pro-card {
    padding: 40px 24px;
  }

  .pro-card h2 {
    font-size: 28px;
  }

  .pro-pricing {
    flex-direction: column;
    align-items: center;
  }

  .download-section h2 {
    font-size: 28px;
  }

  .nav-links a:not(.btn-nav) {
    display: none;
  }

  .footer-links {
    flex-direction: column;
    gap: 32px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
}
