/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #111912;
  --surface: #182B22;
  --surface-2: #1f362a;
  --fg: #F5F0E8;
  --fg-muted: rgba(245,240,232,0.55);
  --lime: #C8FF00;
  --lime-dim: rgba(200,255,0,0.12);
  --lime-border: rgba(200,255,0,0.25);
}

html { scroll-behavior: smooth; }

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

/* ─── Typography ──────────────────────────────────────────── */
h1, h2, h3, .hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.1;
  font-weight: 400;
}

/* ─── Nav ────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(17,25,18,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,255,0,0.08);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--fg);
}
.nav-logo .lime { color: var(--lime); }
.nav-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 80px 48px 100px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 50%;
  background: radial-gradient(ellipse at 80% 50%, rgba(200,255,0,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { max-width: 580px; }
.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 600;
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid var(--lime-border);
  background: var(--lime-dim);
}
.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-headline .lime { color: var(--lime); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}
.hero-visual {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-img-frame { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero-img-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 600;
}
.hero-img-box {
  width: 220px;
  height: 280px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.hero-img-box.before {
  background: linear-gradient(160deg, #3a2510 0%, #5c3a1a 40%, #2a1a08 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 0 40px rgba(0,0,0,0.5);
}
.hero-img-box.before::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(80,50,10,0.3) 0px, rgba(80,50,10,0.3) 4px, transparent 4px, transparent 10px);
}
.hero-img-box.after {
  background: linear-gradient(160deg, #1a3020 0%, #2a4a30 40%, #163020 100%);
  border: 1px solid var(--lime-border);
  box-shadow: 0 0 24px rgba(200,255,0,0.08), inset 0 0 40px rgba(200,255,0,0.03);
}
.hero-arrow { flex-shrink: 0; }

/* ─── Proof / Stats Bar ──────────────────────────────────── */
.proof {
  background: var(--surface);
  border-top: 1px solid rgba(200,255,0,0.1);
  border-bottom: 1px solid rgba(200,255,0,0.1);
  padding: 36px 48px;
}
.proof-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.proof-stat { text-align: center; flex: 1; }
.proof-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 4px;
}
.proof-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}
.proof-divider {
  width: 1px;
  height: 48px;
  background: rgba(200,255,0,0.15);
  margin: 0 28px;
  flex-shrink: 0;
}

/* ─── Section Shared ─────────────────────────────────────── */
.section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--fg);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
}

/* ─── Services ───────────────────────────────────────────── */
.services {
  padding: 96px 48px;
  background: var(--bg);
}
.services-header { margin-bottom: 56px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(200,255,0,0.08);
  border: 1px solid rgba(200,255,0,0.08);
  border-radius: 16px;
  overflow: hidden;
}
.service-card {
  background: var(--surface);
  padding: 36px 32px;
  transition: background 0.2s;
}
.service-card:hover { background: var(--surface-2); }
.service-icon {
  margin-bottom: 18px;
  display: block;
}
.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── Process ────────────────────────────────────────────── */
.process {
  padding: 96px 48px;
  background: var(--surface);
}
.process-inner { max-width: 900px; margin: 0 auto; }
.process .section-title { margin-bottom: 56px; }
.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.step { flex: 1; }
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  color: var(--lime);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 10px;
}
.step p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 200px;
}
.step-connector {
  flex-shrink: 0;
  padding: 0 16px;
  margin-top: -24px;
}

/* ─── Content / Platform ─────────────────────────────────── */
.content {
  padding: 96px 48px;
  background: var(--bg);
}
.content-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.content-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 24px;
}
.content-text p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}
.content-platforms {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}
.platform {
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid rgba(200,255,0,0.1);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: center;
}
.platform-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--lime);
}
.platform-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ─── Closing ────────────────────────────────────────────── */
.closing {
  padding: 100px 48px;
  background: var(--surface);
  border-top: 1px solid rgba(200,255,0,0.1);
}
.closing-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.closing h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 28px;
}
.closing h2 .lime { color: var(--lime); }
.closing p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  padding: 48px;
  border-top: 1px solid rgba(200,255,0,0.08);
}
.footer-inner { text-align: center; }
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--fg);
  margin-bottom: 12px;
}
.footer-logo .lime { color: var(--lime); }
.footer-copy {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.footer-links span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
  font-weight: 500;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 60px 28px 80px; min-height: auto; }
  .hero-visual { justify-content: center; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .content-inner { grid-template-columns: 1fr; gap: 48px; }
  .process-steps { flex-direction: column; gap: 40px; }
  .step-connector { display: none; }
  .proof-inner { flex-wrap: wrap; gap: 28px; }
  .proof-divider { display: none; }
  .proof-stat { flex: 0 0 calc(50% - 14px); }
}

@media (max-width: 600px) {
  .nav { padding: 14px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .services, .process, .content, .closing, .proof { padding: 60px 20px; }
  .hero-img-box { width: 160px; height: 200px; }
  .proof-stat { flex: 0 0 100%; }
  .platform { grid-template-columns: 1fr; gap: 8px; }
}