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

:root {
  --bg: #0A0A0A;
  --bg-light: #F2F1EC;
  --fg: #FFFFFF;
  --fg-muted: #888888;
  --accent: #D4FF00;
  --accent-dark: #A8CC00;
  --surface: #141414;
  --border: #242424;
  --text-dark: #1A1A1A;
  --text-mid: #444444;
  --text-body: #555555;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: var(--fg);
}
.nav-logo .accent { color: var(--accent); }
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex: 1;
}
.nav-cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  background: var(--accent);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 2px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-dark); }

.nav-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 8px 12px;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--fg); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212,255,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: 880px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* STATS */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 40px;
}
.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}
.stat-number {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* SECTION SHARED */
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--fg);
  text-transform: uppercase;
}

/* PROBLEMS */
.problems {
  background: var(--bg);
  padding: 100px 40px;
}
.problems-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.problems .section-headline {
  margin-bottom: 60px;
}
.problem-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.problem-card {
  background: var(--surface);
  padding: 40px 36px;
  position: relative;
}
.problem-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 20px;
}
.problem-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 12px;
}
.problem-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* INDUSTRIES */
.industries {
  background: var(--bg-light);
  padding: 100px 40px;
}
.industries-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.industries .section-label { color: var(--text-mid); }
.industries .section-headline { color: var(--text-dark); margin-bottom: 60px; }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.industry-card {
  background: var(--fg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.industry-icon {
  font-size: 1.8rem;
}
.industry-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
}
.industry-desc {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* PROCESS */
.process {
  background: var(--bg);
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}
.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.process .section-headline {
  margin-bottom: 16px;
}
.process-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 64px;
  max-width: 480px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}
.process-step {
  position: relative;
}
.process-step::before {
  content: '';
  position: absolute;
  top: 28px;
  right: -20px;
  width: 40px;
  height: 1px;
  background: var(--border);
}
.process-step:last-child::before { display: none; }
.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}
.process-step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fg);
  margin-bottom: 12px;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 100px 40px;
  text-align: center;
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}
.closing-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.closing-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--fg);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}
.closing-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-link {
  font-size: 0.9rem;
  color: var(--fg);
  text-decoration: none;
  font-weight: 500;
}
.contact-link:hover { color: var(--accent); }
.contact-sep { color: var(--fg-muted); }

/* FOOTER */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--fg);
}
.footer-logo .accent { color: var(--accent); }
.footer-location {
  font-size: 0.8rem;
  color: var(--fg-muted);
  border-left: 1px solid var(--border);
  padding-left: 16px;
}
.footer-meta {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-tagline { display: none; }
  .hero { padding: 100px 24px 60px; }
  .stats { padding: 40px 20px; }
  .stats-grid { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .stat-item { min-width: 45%; padding: 0 16px; }
  .stat-number { font-size: 2.2rem; }
  .problem-cards { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .process-step::before { display: none; }
  .problems, .industries, .process, .closing { padding: 72px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-location { border-left: none; padding-left: 0; }
}
@media (max-width: 480px) {
  .industry-grid { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
}