:root {
  --bg: #04091A;
  --surface: #0A1628;
  --surface-2: #0F1E35;
  --border: rgba(255,255,255,0.08);
  --accent: #00E5A0;
  --accent-dim: rgba(0,229,160,0.12);
  --amber: #F5A623;
  --text: #F0F4FA;
  --text-dim: rgba(240,244,250,0.55);
  --text-muted: rgba(240,244,250,0.3);
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
}

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

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

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 40px 100px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0,229,160,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,160,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
}
.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0,229,160,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  background: var(--accent-dim);
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text);
}
.accent-text { color: var(--accent); }
.hero-lede {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat { padding: 0 24px; }
.stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* APP MOCKUP */
.hero-visual {
  display: flex;
  justify-content: center;
}
.app-mockup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 60px rgba(0,229,160,0.05);
}
.mockup-bar {
  background: var(--surface-2);
  padding: 12px 16px;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.12); }
.mockup-body { padding: 20px; }
.mock-row { margin-bottom: 16px; }
.mock-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.mock-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #00A87A); flex-shrink: 0; }
.mock-lines { flex: 1; }
.mock-line { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; margin-bottom: 6px; }
.mock-line.long { width: 70%; }
.mock-line.short { width: 45%; }
.mock-badge {
  font-size: 10px;
  padding: 4px 8px;
  background: rgba(0,229,160,0.15);
  color: var(--accent);
  border-radius: 100px;
  font-weight: 600;
  white-space: nowrap;
}
.mock-tasks { display: flex; flex-direction: column; gap: 8px; }
.task {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-dim);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.task.done { color: var(--accent); background: var(--accent-dim); }
.task.active { color: var(--amber); background: rgba(245,166,35,0.1); border-left: 2px solid var(--amber); }
.check { color: var(--accent); }
.arrow { color: var(--amber); }

/* MANIFESTO */
.manifesto {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 40px;
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
}
.manifesto-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding-top: 6px;
}
.manifesto-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.manifesto-content p:last-child {
  color: var(--text);
  font-weight: 500;
}

/* FEATURES */
.features {
  padding: 100px 40px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 50%, var(--bg) 100%);
}
.features-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
  color: var(--text);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-card {
  padding: 36px 32px;
  background: var(--surface);
  transition: background 0.2s;
}
.feature-card.featured {
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,160,0.2);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.featured .feature-icon { background: rgba(0,229,160,0.15); }
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.feature-card p { font-size: 14px; color: var(--text-dim); line-height: 1.65; }

/* COVERAGE */
.coverage {
  padding: 80px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.coverage-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.coverage-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--text);
}
.coverage-text p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.75;
}
.coverage-languages {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lang-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.lang-card:hover { border-color: var(--accent); }
.lang-flag { font-size: 24px; }
.lang-name {
  font-size: 16px;
  font-weight: 600;
  flex: 1;
}
.lang-status {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 10px;
  border-radius: 100px;
}

/* CLOSING */
.closing {
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}
.closing-glow {
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(245,166,35,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.closing-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.closing-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--text);
}
.closing-body {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 40px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 10px;
}
.footer-tagline { font-size: 14px; color: var(--text-dim); margin-bottom: 20px; }
.footer-copy { font-size: 12px; color: var(--text-muted); }

/* MOBILE */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 16px; }
  .feature-grid { grid-template-columns: 1fr; }
  .coverage-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-sep { width: 40px; height: 1px; }
}