:root {
  --bg-primary: #0c1220;
  --bg-secondary: #111a2e;
  --bg-card: #162035;
  --bg-card-hover: #1a2640;
  --fg-primary: #e8ecf4;
  --fg-secondary: #8a95aa;
  --fg-muted: #5a6478;
  --accent: #c9a227;
  --accent-glow: rgba(201, 162, 39, 0.15);
  --accent-light: #e0c157;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.accent {
  color: var(--accent);
}

.lede {
  font-size: 1.2rem;
  color: var(--fg-secondary);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-gradient {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* ---- CREDENTIALS STRIP ---- */
.credentials {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 40px;
}

.credentials-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cred-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-secondary);
  padding: 6px 28px;
  white-space: nowrap;
}

.cred-item:hover {
  color: var(--fg-primary);
  transition: color 0.2s ease;
}

.cred-icon {
  font-size: 0.5rem;
  color: var(--accent);
  flex-shrink: 0;
}

.cred-sep {
  width: 1px;
  height: 20px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .credentials {
    padding: 20px 24px;
  }

  .cred-item {
    padding: 6px 14px;
    font-size: 0.72rem;
  }

  .cred-sep {
    display: none;
  }
}

/* ---- SERVICES ---- */
.services {
  padding: 100px 40px;
  background: var(--bg-secondary);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(201, 162, 39, 0.2);
}

.service-card.card-large {
  grid-column: span 1;
}

.service-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg-primary);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  line-height: 1.65;
}

/* ---- EDGE ---- */
.edge {
  padding: 100px 40px;
  background: var(--bg-primary);
}

.edge-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.edge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.edge-item {
  padding: 0;
}

.edge-icon {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.edge-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg-primary);
}

.edge-item p {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  line-height: 1.65;
}

/* ---- CLOSING ---- */
.closing {
  padding: 120px 40px;
  background: var(--bg-secondary);
  text-align: center;
}

.closing-inner {
  max-width: 780px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
}

.closing-text {
  font-size: 1.1rem;
  color: var(--fg-secondary);
  line-height: 1.75;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 40px;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg-primary);
  margin-bottom: 6px;
}

.footer-detail {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 80px 24px 60px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .lede {
    font-size: 1.05rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .services, .edge, .closing {
    padding: 60px 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card.card-large {
    grid-column: span 1;
  }

  .edge-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .closing h2 {
    font-size: 1.5rem;
  }

  .hero-gradient {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -150px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }
}