:root {
  --bg: #0c1117;
  --bg-elevated: #151c25;
  --bg-card: #1a222d;
  --fg: #e8edf3;
  --fg-muted: #7e8c9e;
  --accent: #f5a623;
  --accent-glow: rgba(245, 166, 35, 0.12);
  --border: rgba(255,255,255,0.06);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* ── Hero ── */
.hero {
  padding: 120px 32px 80px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.hero-inner { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  border: 1px solid rgba(245, 166, 35, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero .accent { color: var(--accent); }
.hero .lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
}
.hero-line {
  position: absolute;
  right: -40px;
  top: 60px;
  width: 3px;
  height: 300px;
  background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
  border-radius: 3px;
  opacity: 0.4;
}

/* ── Stats ── */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 0;
}
.stat { text-align: center; flex: 1; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ── Services ── */
.services {
  padding: 96px 32px;
  max-width: 900px;
  margin: 0 auto;
}
.services-header { margin-bottom: 56px; }
.services-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.services-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 480px;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.2s;
}
.service-card:hover { border-color: rgba(245, 166, 35, 0.25); }
.service-card-large { grid-column: 1 / -1; }
.service-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--accent);
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.service-card p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ── Edge ── */
.edge {
  padding: 96px 32px;
  background: var(--bg-elevated);
}
.edge-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 64px;
  align-items: start;
}
.edge-text h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.edge-points { display: flex; flex-direction: column; gap: 32px; }
.edge-point { display: flex; gap: 20px; align-items: flex-start; }
.edge-marker {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 7px;
  flex-shrink: 0;
}
.edge-point h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.edge-point p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}
.edge-visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 60px;
}
.edge-box {
  background: var(--accent-glow);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 16px;
  padding: 36px 32px;
  text-align: center;
  min-width: 200px;
}
.edge-box-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.edge-box-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* ── Closing ── */
.closing {
  padding: 120px 32px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.closing h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.closing-text {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.footer-location {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero { padding: 80px 24px 60px; }
  .hero-line { display: none; }
  .stats-inner { flex-direction: column; gap: 28px; padding: 40px 0; }
  .stat-divider { width: 48px; height: 1px; }
  .services { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-large { grid-column: auto; }
  .edge { padding: 64px 24px; }
  .edge-inner { grid-template-columns: 1fr; gap: 40px; }
  .edge-visual { padding-top: 0; }
  .closing { padding: 80px 24px; }
  .site-footer { padding: 32px 24px; }
}