:root {
  --bg: #0c0c0f;
  --bg-2: #131318;
  --bg-3: #1a1a21;
  --fg: #f0f0f5;
  --fg-2: #9898a8;
  --accent: #e8620a;
  --accent-glow: rgba(232, 98, 10, 0.25);
  --success: #22c55e;
  --border: rgba(255,255,255,0.06);
  --radius: 12px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* ── NAV ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12,12,15,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: var(--fg);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--fg-2);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,98,10,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,98,10,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,98,10,0.12);
  border: 1px solid rgba(232,98,10,0.25);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.85; }
.btn-ghost {
  color: var(--fg-2);
  text-decoration: none;
  padding: 14px 28px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--fg-2); color: var(--fg); }
.hero-note {
  font-size: 0.8rem;
  color: var(--fg-2);
}

/* Dashboard mockup card */
.hero-dashboard-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.dash-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-3);
}
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot.red { background: #ff5f57; }
.dash-dot.yellow { background: #ffbd2e; }
.dash-dot.green { background: #28c840; }
.dash-title { font-size: 0.75rem; color: var(--fg-2); margin-left: 8px; font-weight: 500; }
.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 20px 16px;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.dash-stat { text-align: center; }
.dash-num { display: block; font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--accent); }
.dash-label { font-size: 0.65rem; color: var(--fg-2); text-transform: uppercase; letter-spacing: 0.06em; }
.dash-items { padding: 12px; }
.dash-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--bg-3);
  margin-bottom: 6px;
  font-size: 0.75rem;
}
.dash-item-icon { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0; }
.dash-item-icon.success { background: rgba(34,197,94,0.15); color: var(--success); }
.dash-item span:first-of-type { flex: 1; color: var(--fg); }
.dash-item-time { color: var(--fg-2); font-size: 0.65rem; white-space: nowrap; }

/* ── STATS ── */
.stats { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 40px 24px;
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-number { display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--accent); }
.stat-desc { font-size: 0.85rem; color: var(--fg-2); margin-top: 4px; }

/* ── SECTION LABELS ── */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub { font-size: 1rem; color: var(--fg-2); max-width: 540px; line-height: 1.7; }

/* ── HOW IT WORKS ── */
.how-it-works {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.how-it-works .section-label { text-align: center; }
.how-it-works .section-title { text-align: center; }
.how-it-works .section-sub { text-align: center; margin: 0 auto 56px; }
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  text-align: left;
}
.step { max-width: 220px; }
.step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step p { font-size: 0.85rem; color: var(--fg-2); line-height: 1.6; }
.step-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 40px 16px 0;
  flex-shrink: 0;
}

/* ── FEATURES ── */
.features {
  background: var(--bg-2);
  padding: 80px 24px;
}
.features .section-label { }
.features .section-title { }
.features .section-sub { margin-bottom: 56px; }
.feature-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: rgba(232,98,10,0.3);
  transform: translateY(-2px);
}
.feature-icon { font-size: 1.8rem; margin-bottom: 16px; }
.feature-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p { font-size: 0.85rem; color: var(--fg-2); line-height: 1.6; }

/* ── PLATFORMS ── */
.platforms {
  padding: 48px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-3);
}
.platforms-label {
  font-size: 0.85rem;
  color: var(--fg-2);
  margin-bottom: 24px;
  font-weight: 500;
}
.platform-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.platform-chip {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ── TESTIMONIALS ── */
.testimonials {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}
.testimonials .section-label { }
.testimonials .section-title { }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.testimonial-card.highlight {
  border-color: rgba(232,98,10,0.3);
  background: linear-gradient(135deg, var(--bg-2), rgba(232,98,10,0.04));
}
.stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 16px; }
.testimonial-text { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; color: var(--fg); }
.testimonial-author strong { display: block; font-size: 0.85rem; }
.testimonial-author span { font-size: 0.75rem; color: var(--fg-2); }

/* ── MANIFESTO ── */
.manifesto {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.manifesto-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.manifesto-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 28px;
}
.manifesto-body { font-size: 1rem; color: var(--fg-2); line-height: 1.8; margin-bottom: 20px; }
.manifesto-statement {
  margin-top: 36px;
  padding: 28px;
  background: var(--bg-3);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.manifesto-statement p {
  font-size: 1.05rem;
  color: var(--fg);
  font-weight: 500;
  line-height: 1.7;
}

/* ── FOOTER ── */
.site-footer {
  padding: 48px 24px 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 8px;
  display: block;
}
.footer-brand p { font-size: 0.85rem; color: var(--fg-2); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--fg-2); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--fg); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--fg-2);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 48px 24px; min-height: auto; }
  .hero-visual { display: none; }
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; align-items: center; gap: 24px; }
  .step-connector { width: 1px; height: 32px; background: linear-gradient(180deg, var(--accent), transparent); margin: 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .nav-links a:not(.nav-cta) { display: none; }
}