/* === TOKENS === */
:root {
  --bg: #080C14;
  --surface: #0F1623;
  --surface-2: #161D2E;
  --amber: #E8A317;
  --amber-dim: rgba(232, 163, 23, 0.15);
  --text: #F0F2F5;
  --text-muted: #8A94A6;
  --border: rgba(240, 242, 245, 0.08);
  --radius: 12px;
  --max-w: 1100px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Sora', system-ui, sans-serif; font-weight: 700; line-height: 1.2; }
a { color: var(--amber); text-decoration: none; }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}
.nav-tag {
  font-size: 13px;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
}

/* === HERO === */
.hero {
  padding: 100px 32px 80px;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--amber);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
  background: var(--amber-dim);
  border: 1px solid rgba(232, 163, 23, 0.25);
  border-radius: 20px;
  padding: 6px 14px;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 28px;
  line-height: 1.05;
}
.highlight { color: var(--amber); }
.hero-sub {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 56px;
  line-height: 1.6;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 800px;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.stat-number {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -1px;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* === SECTIONS === */n.section-title {
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}
.section-lead {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* === PROBLEM === */
.problem { padding: 80px 32px; }
.problem-inner { max-width: var(--max-w); margin: 0 auto; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.problem-icon {
  width: 48px;
  height: 48px;
  background: var(--amber-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.problem-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.problem-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === HOW === */
.how { padding: 80px 32px; border-top: 1px solid var(--border); }
.how-inner { max-width: var(--max-w); margin: 0 auto; }
.how-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-top: 48px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--amber);
  opacity: 0.5;
  margin-bottom: 12px;
}
.step-body h3 { font-size: 17px; margin-bottom: 8px; }
.step-body p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 56px;
  padding-left: 12px;
  padding-right: 12px;
}

/* === INDUSTRIES === */
.industries {
  padding: 80px 32px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.industries-inner { max-width: var(--max-w); margin: 0 auto; }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.industry-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.industry-icon {
  width: 52px;
  height: 52px;
  background: var(--amber-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.industry-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}
.industry-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === CTA === */
.cta {
  padding: 100px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(232, 163, 23, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-headline {
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.cta-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.cta-detail {
  margin-top: 40px;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  color: var(--amber);
  font-weight: 600;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 32px 32px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-brand { margin-bottom: 32px; }
.footer-tagline {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 12px;
  margin-bottom: 4px;
}
.footer-local { font-size: 13px; color: var(--amber); font-weight: 600; }
.footer-bottom {
  font-size: 13px;
  color: var(--text-muted);
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-stats, .problem-grid, .industry-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .hero { padding: 60px 24px 50px; }
  .problem, .how, .industries { padding: 60px 24px; }
  .cta { padding: 60px 24px; }
  .hero-headline { letter-spacing: -1px; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero-sub { font-size: 17px; }
  .stat { padding: 20px 18px; }
  .stat-number { font-size: 28px; }
}