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

:root {
  --orange: #FF6B35;
  --bg: #0e0e0e;
  --card: #161616;
  --border: #222;
  --text: #f0f0f0;
  --muted: #888;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
.orange { color: var(--orange); }

/* Nav */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  background: rgba(14,14,14,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.logo { font-size: 22px; font-weight: 900; letter-spacing: -0.5px; }
.logo-p { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.btn-nav {
  background: var(--orange);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700 !important;
  font-size: 14px !important;
}

/* Hero */
.hero {
  position: relative;
  padding: 100px 40px 80px;
  text-align: center;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.hero-glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.badge {
  display: inline-block;
  background: rgba(255,107,53,0.12);
  border: 1px solid rgba(255,107,53,0.3);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}
h1 {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(255,107,53,0.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,107,53,0.45); }
.btn-ghost {
  border: 1.5px solid var(--border);
  color: var(--muted);
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 15px;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: #444; color: var(--text); }
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: inline-flex;
}
.stat { text-align: center; }
.stat-num { display: block; font-size: 28px; font-weight: 800; color: var(--text); }
.stat-label { font-size: 12px; color: var(--muted); font-weight: 500; }
.stat-div { width: 1px; height: 40px; background: var(--border); }

/* Sections */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.section-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -1px; margin-bottom: 48px; }

/* Features */
.features { padding: 100px 0; border-top: 1px solid var(--border); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: border-color .2s;
}
.feature-card:hover { border-color: #333; }
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* Pro */
.pro { padding: 100px 0; border-top: 1px solid var(--border); }
.pro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.pro-list { list-style: none; margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.pro-list li { font-size: 16px; color: var(--muted); }
.pro-price { font-size: 16px; color: var(--muted); margin-bottom: 28px; }
.price { font-size: 36px; font-weight: 900; color: var(--text); }

.pro-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 24px;
  padding: 28px;
  text-align: center;
}
.pro-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.pro-card-logo { font-size: 18px; font-weight: 900; }
.pro-badge { color: var(--orange); font-size: 13px; font-weight: 700; }
.pro-card-avatar {
  width: 72px; height: 72px; border-radius: 36px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 800; color: #fff;
  margin: 0 auto 12px;
}
.pro-card-name { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.pro-card-stats {
  display: flex;
  justify-content: space-around;
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding: 16px;
}
.pro-card-stats div { text-align: center; }
.pro-card-stats span { display: block; font-size: 18px; font-weight: 800; color: var(--text); }
.pro-card-stats small { font-size: 11px; color: var(--muted); }

/* Download */
.download {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.download-inner { max-width: 600px; }
.download h2 { margin-bottom: 12px; }
.download p { color: var(--muted); margin-bottom: 36px; font-size: 16px; }
.download-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #000;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  transition: opacity .2s;
}
.store-btn svg path { fill: #000; }
.store-btn:hover { opacity: 0.85; }
.coming-soon { font-size: 13px; color: #555; }

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--muted); font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { color: #444; font-size: 13px; }

/* Mobile */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links a:not(.btn-nav) { display: none; }
  .hero { padding: 60px 20px 60px; }
  h1 { letter-spacing: -1px; }
  .hero-stats { gap: 20px; padding: 20px; }
  .section-inner { padding: 0 20px; }
  .features, .pro, .download { padding: 60px 0; }
  .pro-inner { grid-template-columns: 1fr; }
  .pro-card { display: none; }
  footer { padding: 32px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
