:root {
  --bg: #FAF8F5;
  --fg: #1A1A1A;
  --accent: #FF4D00;
  --accent-dark: #E64000;
  --secondary: #F0EDE8;
  --muted: #6B6B6B;
  --border: #E0DDD8;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  border-radius: 8px;
}

.brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Hero */
.hero {
  padding: 80px 48px 60px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow { margin-bottom: 24px; }

.eyebrow-tag {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.65;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-art {
  position: relative;
  width: 380px;
  height: 380px;
}

.art-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--accent);
}

.art-circle-1 { width: 200px; height: 200px; top: 40px; left: 60px; border-color: var(--accent); opacity: 0.2; }
.art-circle-2 { width: 300px; height: 300px; top: 10px; left: 30px; border-color: var(--accent); opacity: 0.12; }
.art-circle-3 { width: 380px; height: 380px; top: -20px; left: -10px; border-color: var(--accent); opacity: 0.07; }

.art-bar-set {
  position: absolute;
  bottom: 80px;
  left: 50px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.art-bar {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}
.bar-1 { height: 60px; }
.bar-2 { height: 90px; }
.bar-3 { height: 40px; }

.art-tag-group {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.art-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.tag-icon-tiktok { width: 14px; height: 14px; background: #FF0050; border-radius: 3px; }
.tag-icon-fb { width: 14px; height: 14px; background: #1877F2; border-radius: 3px; }

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1200px;
  margin: 60px auto 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* Section shared */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

/* How It Works */
.howitworks {
  padding: 100px 48px;
  background: var(--white);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  padding: 40px 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 20px;
}

.step-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* The Edge */
.theedge {
  padding: 100px 48px;
  background: var(--bg);
}

.edge-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.edge-headline { color: var(--fg); }

.edge-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.edge-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
}

/* Comparison card */
.comparison-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.comp-header {
  padding: 16px 24px;
  background: var(--fg);
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.comp-row {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1fr;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.comp-head { color: var(--muted); font-weight: 500; }

.comp-row:last-child { border-bottom: none; }
.comp-active { background: var(--secondary); }

.comp-platform { font-weight: 600; }
.comp-bold { color: var(--accent); }
.comp-val { color: var(--muted); }
.comp-highlight { color: #16a34a; font-weight: 600; }

/* Proof */
.proof {
  padding: 80px 48px;
  background: var(--fg);
  color: white;
}

.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.proof-stat { flex: 1; text-align: center; padding: 0 32px; }

.proof-number {
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

.proof-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
  line-height: 1.5;
}

.proof-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.15);
}

.proof-footnote {
  text-align: center;
  margin-top: 48px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* Manifesto */
.manifesto {
  padding: 100px 48px;
  background: var(--white);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 32px;
  font-style: normal;
}

.manifesto-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.manifesto-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.manifesto-tag {
  padding: 10px 20px;
  background: var(--secondary);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}

/* Closing */
.closing {
  padding: 100px 48px;
  background: var(--bg);
}

.closing-inner { max-width: 1200px; margin: 0 auto; }

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.closing-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 48px;
}

.closing-vibe {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.vibe-pill {
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}

.vibe-highlight {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* Footer */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  flex: 1;
}

.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .hero { padding: 60px 24px 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { width: 240px; height: 240px; margin: 0 auto; }
  .art-circle-1 { width: 130px; height: 130px; top: 30px; left: 40px; }
  .art-circle-2 { width: 190px; height: 190px; top: 10px; left: 20px; }
  .art-circle-3 { width: 240px; height: 240px; top: -10px; left: 0; }
  .art-bar-set { bottom: 50px; left: 30px; }
  .art-tag-group { top: 10px; right: 10px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat-divider { width: 40px; height: 1px; }
  .howitworks, .theedge, .manifesto, .closing { padding: 60px 24px; }
  .step-grid { grid-template-columns: 1fr; }
  .edge-inner { grid-template-columns: 1fr; }
  .proof-inner { flex-direction: column; gap: 32px; }
  .proof-divider { width: 40px; height: 1px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}