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

:root {
  --bg: #0F0F0F;
  --surface: #1A1A1A;
  --surface-2: #242424;
  --orange: #FF4D00;
  --orange-dim: rgba(255, 77, 0, 0.15);
  --text: #F5F0E8;
  --text-muted: rgba(245, 240, 232, 0.55);
  --border: rgba(255,255,255,0.08);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3 { font-family: 'Syne', sans-serif; }

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(15,15,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 20px; letter-spacing: -0.5px; color: var(--text); }
.accent-dot { color: var(--orange); }
.nav-tagline { font-size: 13px; color: var(--text-muted); font-weight: 400; }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 120px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-label {
  display: inline-block;
  background: var(--orange-dim);
  border: 1px solid rgba(255,77,0,0.25);
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 48px;
  font-weight: 400;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0;
}
.trust-item { padding: 0 28px; }
.trust-item:first-child { padding-left: 0; }
.trust-num { display: block; font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 700; color: var(--orange); }
.trust-label { display: block; font-size: 11px; color: var(--text-muted); max-width: 120px; line-height: 1.4; margin-top: 4px; }
.trust-divider { width: 1px; height: 40px; background: var(--border); }

/* PHONE FRAME */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.phone-frame {
  width: 280px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 36px;
  padding: 16px;
  box-shadow: 0 0 80px rgba(255,77,0,0.08), 0 30px 60px rgba(0,0,0,0.5);
}
.phone-screen {
  background: #111;
  border-radius: 24px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.5;
}
.chat-bubble.mine { align-self: flex-end; background: var(--orange); color: #fff; border-bottom-right-radius: 4px; }
.chat-bubble.theirs { align-self: flex-start; background: var(--surface-2); color: var(--text); border-bottom-left-radius: 4px; }
.order-badge {
  align-self: flex-start;
  background: rgba(255,77,0,0.12);
  border: 1px solid rgba(255,77,0,0.3);
  border-radius: 12px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.badge-icon { color: var(--orange); font-size: 14px; }
.badge-text { font-size: 12px; color: var(--orange); font-weight: 600; }

/* PROOF SECTION */
.proof-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
}
.proof-inner { max-width: 1200px; margin: 0 auto; }
.proof-label { font-size: 14px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 48px; font-weight: 500; }
.proof-stats { display: flex; flex-direction: column; gap: 32px; max-width: 700px; }
.proof-stat { display: flex; flex-direction: column; gap: 10px; }
.stat-bar { height: 3px; background: var(--surface-2); border-radius: 2px; overflow: hidden; }
.stat-fill { height: 100%; background: var(--orange); border-radius: 2px; }
.stat-text { font-size: 15px; color: var(--text); line-height: 1.5; }
.stat-text strong { color: var(--orange); }

/* FEATURES */
.features-section { padding: 100px 40px; max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 64px; }
.section-tag { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.section-header h2 { font-size: clamp(30px, 4vw, 52px); font-weight: 700; letter-spacing: -1px; line-height: 1.15; max-width: 560px; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(255,77,0,0.3); }
.feature-icon { color: var(--orange); margin-bottom: 20px; }
.feature-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.3px; }
.feature-card p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

/* NICHES */
.niches-section { padding: 0 40px 100px; max-width: 1200px; margin: 0 auto; }
.niches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.niche-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.niche-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.niche-1::before { background: var(--orange); }
.niche-2::before { background: #FF9800; }
.niche-3::before { background: #00BCD4; }
.niche-emoji { color: var(--text-muted); margin-bottom: 20px; }
.niche-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.niche-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.niche-meta { font-size: 13px; font-weight: 600; color: var(--orange); }

/* MANIFESTO */
.manifesto-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 40px;
}
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 40px;
  max-width: 800px;
}
.manifesto-body { font-size: 17px; color: var(--text-muted); line-height: 1.7; max-width: 620px; }

/* FOOTER */
.footer { padding: 60px 40px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 22px; letter-spacing: -0.5px; }
.footer-desc { font-size: 14px; color: var(--text-muted); margin-top: 6px; }
.footer-links { font-size: 13px; color: var(--text-muted); }

/* MOBILE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 100px 24px 60px; text-align: center; }
  .hero-trust { justify-content: center; flex-wrap: wrap; gap: 20px; }
  .trust-item { padding: 0; text-align: center; }
  .trust-divider { display: none; }
  .hero-visual { order: -1; }
  .phone-frame { width: 240px; }
  .features-grid { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: 1fr; }
  .section-header h2 { max-width: 100%; }
  .navbar { padding: 0 24px; }
  .nav-tagline { display: none; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 38px; letter-spacing: -1px; }
  .proof-section, .features-section, .niches-section, .manifesto-section { padding-left: 24px; padding-right: 24px; }
  .navbar { padding: 0 20px; }
}
