/* Fonts */
:root {
  --bg: #080c10;
  --bg-card: #0d1117;
  --bg-light: #111827;
  --fg: #e8eaf0;
  --fg-muted: #8892a4;
  --accent: #00d4ff;
  --accent-dim: rgba(0, 212, 255, 0.08);
  --accent-glow: rgba(0, 212, 255, 0.15);
  --border: rgba(255,255,255,0.06);
  --mono: 'IBM Plex Mono', monospace;
  --display: 'Syne', sans-serif;
}

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

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

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.5px;
}

.brand-mark {
  color: var(--accent);
  margin-right: 4px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  font-family: var(--mono);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--fg); }

/* Hero */
.hero {
  padding: 0 48px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
  border-bottom: 1px solid var(--border);
}

.hero-content {
  padding: 80px 64px 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-lede {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 420px;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 30%);
}

.hero-stats {
  display: flex;
  align-items: center;
  padding: 32px 48px;
  gap: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 48px 0 0;
}

.stat:first-child { padding-left: 0; }

.stat-value {
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 500;
  color: var(--accent);
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  font-family: var(--mono);
  letter-spacing: 0.5px;
}

.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 48px;
}

/* Section label */
.section-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

/* What we do */
.what-we-do {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 48px;
}

.service-dark { border-left: 3px solid var(--accent); }

.service-accent { border-left: 3px solid #a855f7; }

.service-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.service-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-desc {
  color: var(--fg-muted);
  font-size: 15px;
  margin-bottom: 24px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-list li {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}

.service-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Niches */
.niches {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
}

.niches-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.niches-headline {
  font-size: 36px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.niches-body {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.7;
}

.niches-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.niche-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.niche-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
}

.niche-card-light::before { background: #a855f7; }

.niche-icon {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.niche-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.niche-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.niche-pricing {
  font-family: var(--mono);
  font-size: 12px !important;
  color: var(--accent) !important;
  margin-top: 16px !important;
}

/* Process */
.process {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
}

.process-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  padding-right: 48px;
}

.step-num {
  font-family: var(--mono);
  font-size: 48px;
  font-weight: 500;
  color: var(--accent-dim);
  margin-bottom: 16px;
  line-height: 1;
}

.process-step h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.process-sep {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 0 48px;
}

/* Closing */
.closing {
  position: relative;
  padding: 120px 48px;
  overflow: hidden;
}

.closing-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.06;
}

.closing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 40%, var(--bg) 100%);
}

.closing-content {
  position: relative;
  max-width: 700px;
}

.closing-headline {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.closing-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
}

/* Footer */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-brand {
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 500;
  color: var(--fg);
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-family: var(--mono);
}

.footer-copy {
  font-size: 12px;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .hero { padding: 0 24px; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-wrap { height: 240px; }
  .hero-image-overlay { background: linear-gradient(180deg, transparent 0%, var(--bg) 100%); }
  .hero-content { padding: 48px 0 32px; }
  .hero-stats { padding: 24px; flex-wrap: wrap; gap: 24px; }
  .stat-sep { display: none; }
  .stat { padding: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .niches-inner { grid-template-columns: 1fr; gap: 40px; }
  .process-grid { flex-direction: column; gap: 32px; }
  .process-sep { display: none; }
  .process-step { padding-right: 0; }
  .what-we-do, .niches, .process { padding: 64px 24px; }
  .closing { padding: 80px 24px; }
}
