:root {
  --bg: #0a0a0f;
  --bg-card: #111118;
  --fg: #ffffff;
  --fg-muted: #8a8a9a;
  --accent: #00d4ff;
  --accent-dim: rgba(0, 212, 255, 0.12);
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(0, 212, 255, 0.25);
}

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

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

/* NAV */
.site-nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* HERO */
.hero {
  padding: 80px 48px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat { padding: 0 32px 0 0; }
.stat:first-child { padding-left: 0; }
.stat-value {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 32px;
}
.hero-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-svg {
  width: 100%;
  max-width: 480px;
  height: auto;
}

/* SECTION SHARED */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

/* DIVISIONS */
.divisions {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  max-width: 1400px;
  margin: 0 auto;
}
.section-header { margin-bottom: 56px; }
.divisions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.division-card {
  background: var(--bg-card);
  padding: 40px;
  position: relative;
}
.division-number {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.division-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.division-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.division-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid var(--border-accent);
  padding: 4px 10px;
  border-radius: 2px;
}

/* WHY */
.why-section {
  border-top: 1px solid var(--border);
  padding: 80px 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.why-pillars {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.pillar {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.pillar-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.pillar h4 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.pillar p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* SERVICES */
.services-section {
  border-top: 1px solid var(--border);
  padding: 80px 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.services-header { margin-bottom: 48px; }
.services-sub {
  font-size: 15px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.65;
  margin-top: 8px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}
.service-card {
  background: var(--bg-card);
  padding: 28px;
}
.service-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.service-card h4 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.pricing-note {
  font-size: 14px;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 24px;
  line-height: 1.6;
}
.pricing-note strong { color: var(--fg); }

/* PRICING */
.pricing-section {
  border-top: 1px solid var(--border);
  padding: 80px 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.pricing-header { margin-bottom: 48px; }
.pricing-sub { font-size: 15px; color: var(--fg-muted); max-width: 540px; line-height: 1.65; margin-top: 8px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}
.pricing-card {
  background: var(--bg-card);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card--featured { border: 1px solid var(--border-accent); }
.pricing-tier-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); font-weight: 600; margin-bottom: 16px;
}
.pricing-name { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.01em; }
.pricing-price { margin-bottom: 12px; }
.price-amount { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 700; color: var(--fg); }
.price-period { font-size: 16px; color: var(--fg-muted); font-weight: 400; }
.pricing-tagline { font-size: 13px; color: var(--fg-muted); line-height: 1.55; margin-bottom: 28px; min-height: 52px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; flex: 1; }
.pricing-features li { font-size: 13px; color: var(--fg-muted); display: flex; align-items: flex-start; gap: 8px; }
.check-icon { color: var(--accent); font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.pricing-cta {
  display: block; background: var(--bg); border: 1px solid var(--border);
  text-align: center; padding: 14px; font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 700; color: var(--fg);
  text-decoration: none; border-radius: 4px;
  transition: background 0.2s, border-color 0.2s;
}
.pricing-cta:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); }
.pricing-cta--featured { background: var(--accent); color: #0a0a0f; border-color: var(--accent); }
.pricing-cta--featured:hover { opacity: 0.85; }
.pricing-setup-note { font-size: 13px; color: var(--fg-muted); border-top: 1px solid var(--border); padding-top: 24px; line-height: 1.65; }
.pricing-setup-note strong { color: var(--fg); }

/* PITCH DECK SECTION */
.pitch-deck {
  border-top: 1px solid var(--border);
  padding: 80px 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.pitch-inner { max-width: 1000px; }
.pitch-header { margin-bottom: 56px; }
.pitch-headline {
  font-family: 'Syne', sans-serif; font-size: clamp(26px, 3vw, 38px);
  font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 16px;
}
.pitch-sub { font-size: 15px; color: var(--fg-muted); line-height: 1.65; max-width: 540px; margin-top: 8px; }
.stack-diagram { margin-bottom: 56px; }
.stack-row { display: flex; align-items: stretch; }
.stack-node {
  flex: 1; background: var(--bg-card); padding: 24px;
  display: flex; flex-direction: column; gap: 6px;
  border-right: 1px solid var(--border);
}
.stack-node:last-child { border-right: none; }
.stack-node-label { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--fg); }
.stack-node-desc { font-size: 12px; color: var(--fg-muted); line-height: 1.55; }
.stack-arrow {
  display: flex; align-items: center; padding: 0 12px;
  color: var(--accent); font-size: 16px; background: var(--bg);
  border-right: 1px solid var(--border); flex-shrink: 0;
}
.stack-divider { padding: 16px 0; }
.stack-flow-line { height: 1px; background: var(--border); margin: 0 24px; }
.pitch-verticals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 56px; }
.vertical-card { background: var(--bg-card); padding: 32px; }
.vertical-icon { font-size: 28px; margin-bottom: 16px; }
.vertical-card h4 { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.vertical-card p { font-size: 13px; color: var(--fg-muted); line-height: 1.65; }
.pitch-cta-block {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 48px; text-align: center;
}
.pitch-cta-block h3 { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.pitch-cta-block p { font-size: 14px; color: var(--fg-muted); margin-bottom: 28px; }
.pitch-cta-btn {
  display: inline-block; background: var(--accent); color: #0a0a0f;
  font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700;
  padding: 16px 40px; border-radius: 4px; text-decoration: none;
  transition: opacity 0.2s; letter-spacing: -0.01em;
}
.pitch-cta-btn:hover { opacity: 0.85; }

/* VISION */
.vision-section {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  max-width: 1400px;
  margin: 0 auto;
}
.vision-inner {
  max-width: 800px;
}
.vision-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.vision-eyebrow p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
}
.vision-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.vision-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 12px;
  color: var(--fg-muted);
}
.footer-meta p {
  font-size: 12px;
  color: var(--fg-muted);
  text-align: right;
}

/* MOBILE */
@media (max-width: 900px) {
  .site-nav, .hero, .divisions, .why-section, .services-section, .vision-section, .site-footer, .pricing-section, .pitch-deck {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-graphic { order: -1; }
  .orbit-svg { max-width: 300px; margin: 0 auto; }
  .divisions-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pitch-verticals { grid-template-columns: 1fr; }
  .stack-row { flex-direction: column; }
  .stack-arrow { display: none; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .footer-meta p { text-align: left; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
}