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

:root {
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #1a1a1a;
  --accent: #f0a500;
  --text: #f0ece4;
  --muted: #888;
  --border: rgba(255,255,255,0.08);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}
.logo span { color: var(--accent); }
nav ul { display: flex; gap: 2rem; list-style: none; }
nav ul a { color: var(--muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
nav ul a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent);
  color: #000;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(240,165,0,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(240,165,0,0.1);
  border: 1px solid rgba(240,165,0,0.3);
  color: var(--accent);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 14ch;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 50ch;
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn-primary {
  background: var(--accent);
  color: #000;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); opacity: 0.9; }
.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }
.platforms { display: flex; justify-content: center; gap: 2rem; margin-top: 3rem; flex-wrap: wrap; }
.platform { color: var(--muted); font-size: 0.85rem; }

/* MOCKUP */
.preview-section { padding: 4rem 2rem; display: flex; justify-content: center; }
.app-mockup {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%; max-width: 900px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
}
.mockup-bar {
  background: var(--bg3);
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.mockup-title { font-size: 0.8rem; color: var(--muted); margin: 0 auto; }
.mockup-body {
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  min-height: 260px;
}
.pad-card {
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: flex-end;
  min-height: 140px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.pad-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.pad-card span {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  position: relative;
  z-index: 1;
}
.pad-1 { background: #1a1a2e; border-color: rgba(100,80,200,0.4); }
.pad-2 { background: #1a2e1a; border-color: rgba(80,200,100,0.4); }
.pad-3 { background: #2e1a1a; border-color: rgba(240,80,60,0.5); }
.pad-4 { background: #2e2a1a; border-color: rgba(240,165,0,0.5); }
.pad-5 { background: #1a2a2e; border-color: rgba(60,180,240,0.4); }
.pad-6 { background: #2e1a2e; border-color: rgba(200,80,200,0.4); }
.pad-active { box-shadow: 0 0 0 2px rgba(240,165,0,0.6); }

/* SECTIONS */
.section { padding: 6rem 2rem; max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
}
.section h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  max-width: 18ch;
  line-height: 1.1;
}
.section-sub { color: var(--muted); font-size: 1.1rem; max-width: 48ch; margin-bottom: 4rem; font-weight: 300; }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.feature-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.feature-card:hover { border-color: rgba(240,165,0,0.3); transform: translateY(-4px); }
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(240,165,0,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 20px;
}
.feature-card h3 { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
.feature-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.price-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; }
.price-card.featured { border-color: var(--accent); background: rgba(240,165,0,0.05); }
.price-badge {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.price-name { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.price-amount { font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; margin: 1rem 0; }
.price-amount span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.price-desc { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.5rem; }
.price-features { list-style: none; margin-bottom: 2rem; }
.price-features li { padding: 0.4rem 0; font-size: 0.9rem; color: var(--muted); display: flex; gap: 0.6rem; align-items: center; }
.price-features li::before { content: '✓'; color: var(--accent); font-weight: 700; }
.price-btn {
  display: block;
  text-align: center;
  padding: 0.8rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.2s;
  border: 1px solid var(--border);
  color: var(--text);
}
.price-card.featured .price-btn { background: var(--accent); color: #000; border-color: transparent; }
.price-btn:hover { opacity: 0.8; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 3rem; max-width: 700px; }
.faq-item { border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; }
.faq-item h3 { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; }
.faq-item p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}
.footer-logo { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 800; margin-bottom: 1rem; }
.footer-logo span { color: var(--accent); }
footer a { color: var(--muted); text-decoration: none; margin: 0 1rem; }
footer a:hover { color: var(--text); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero > * { animation: fadeUp 0.7s ease both; }
.hero-badge { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.2s; }
.hero p { animation-delay: 0.3s; }
.hero-buttons { animation-delay: 0.4s; }
.platforms { animation-delay: 0.5s; }
