:root {
  --bg: #0e0e1a;
  --bg-alt: #14142a;
  --bg-light: #f5f0ea;
  --fg: #f0ece6;
  --fg-dark: #1a1a2e;
  --accent: #ff6b35;
  --accent-dim: rgba(255, 107, 53, 0.15);
  --text-muted: rgba(240, 236, 230, 0.55);
  --border: rgba(255, 255, 255, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(14, 14, 26, 0.85);
  backdrop-filter: blur(12px);
}
.navbar-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
}
.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.05em;
  border-radius: 6px;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.navbar-links {
  display: flex;
  gap: 32px;
}
.navbar-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.navbar-links a:hover { color: var(--fg); }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,107,53,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow { margin-bottom: 24px; }
.eyebrow-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,107,53,0.25);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--fg);
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
}
.stat-label { font-size: 13px; color: var(--text-muted); max-width: 140px; }
.stat-divider { width: 1px; height: 48px; background: var(--border); }

/* Price Gap Widget */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.price-gap-widget {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  width: 100%;
  max-width: 340px;
}
.gap-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.gap-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.gap-row:last-of-type { border-bottom: none; }
.gap-row.highlight .gap-platform { color: var(--accent); }
.gap-platform { font-size: 14px; color: var(--text-muted); }
.gap-price { font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.gap-price.retail { color: var(--text-muted); }
.gap-price.amazon { color: var(--fg); }
.gap-price.margin { color: var(--accent); }
.gap-note { font-size: 11px; color: var(--text-muted); margin-top: 12px; text-align: right; }

/* Sections */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--fg);
}
.section-sub { font-size: 16px; color: var(--text-muted); max-width: 560px; margin-bottom: 56px; }

/* Platforms */
.platforms { padding: 100px 0; background: var(--bg-alt); }
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.platform-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}
.platform-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.platform-icon { color: var(--accent); margin-bottom: 20px; }
.platform-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}
.platform-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.platform-facts { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.platform-facts li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.platform-facts li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

/* How It Works */
.how-it-works { padding: 100px 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.step { position: relative; }
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-dim);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* Why RiftKart */
.why-riftkart { padding: 100px 0; background: var(--bg-alt); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.why-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.why-list li {
  font-size: 15px;
  color: var(--fg);
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.why-list strong { color: var(--accent); }
.why-data {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
}
.data-block { display: flex; flex-direction: column; gap: 6px; }
.data-value {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
}
.data-label { font-size: 14px; color: var(--text-muted); }

/* Manifesto */
.manifesto {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
}
.manifesto::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.manifesto-inner { max-width: 800px; margin: 0 auto; padding: 0 48px; text-align: center; }
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--fg);
  margin-bottom: 16px;
  font-style: normal;
}
.manifesto-attribution {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
}
.manifesto-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Footer */
.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-legal { font-size: 12px; color: var(--text-muted); }

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { order: -1; }
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .navbar { padding: 0 24px; }
  .navbar-links { display: none; }
  .hero { padding: 100px 24px 60px; }
  .hero-stats { flex-direction: column; gap: 20px; align-items: flex-start; }
  .stat-divider { display: none; }
  .section-inner { padding: 0 24px; }
  .platforms, .how-it-works, .why-riftkart { padding: 64px 0; }
  .platform-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .manifesto-inner { padding: 0 24px; }
  .footer-inner { padding: 0 24px; }
}