:root {
  --bg: #080c14;
  --bg-card: #0d1420;
  --bg-card-2: #111a29;
  --frost: #00d4ff;
  --frost-dim: rgba(0, 212, 255, 0.12);
  --frost-glow: rgba(0, 212, 255, 0.06);
  --text: #e8edf5;
  --text-muted: #6b7a8f;
  --text-dim: #3d4f63;
  --accent: #00d4ff;
  --accent-warm: #ff8c42;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 48px;
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.08);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.navbar-logo {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.navbar-logo .accent { color: var(--frost); }
.navbar-tagline {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 48px 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 140, 66, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-fog {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(0, 212, 255, 0.04) 0%, transparent 100%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--frost);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-headline .frost { color: var(--frost); }
.hero-body {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 16px;
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
}
.hero-card--main { }
.hero-card--secondary {
  background: var(--bg-card-2);
  border-color: rgba(0, 212, 255, 0.06);
}
.card-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.card-metric {
  font-family: 'Syne', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: var(--frost);
  line-height: 1;
  margin-bottom: 6px;
}
.card-sub {
  font-size: 14px;
  color: var(--text-muted);
}
.card-divider {
  height: 1px;
  background: rgba(0, 212, 255, 0.08);
  margin: 20px 0;
}
.card-row {
  display: flex;
  gap: 32px;
}
.card-stat {}
.stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
}
.stat-lbl {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.card-process {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.process-step {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 6px;
  padding: 6px 12px;
}
.process-arrow {
  color: var(--text-dim);
  font-size: 12px;
}
.process-step.frost {
  color: var(--frost);
  background: rgba(0, 212, 255, 0.12);
  border-color: rgba(0, 212, 255, 0.25);
}

/* Section eyebrow/title */
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--frost);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.15;
}

/* Manifesto */
.manifesto {
  padding: 100px 48px;
  background: var(--bg-card);
  border-top: 1px solid rgba(0, 212, 255, 0.06);
  border-bottom: 1px solid rgba(0, 212, 255, 0.06);
}
.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 36px;
  padding-left: 28px;
  border-left: 3px solid var(--frost);
}
.manifesto-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Numbers */
.numbers {
  padding: 100px 48px;
}
.numbers-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.numbers-header {
  margin-bottom: 56px;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.number-card {
  background: var(--bg-card);
  padding: 36px 32px;
  border: 1px solid rgba(0, 212, 255, 0.06);
  position: relative;
  overflow: hidden;
}
.number-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--frost), transparent);
  opacity: 0.3;
}
.number-val {
  font-family: 'Syne', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--frost);
  margin-bottom: 8px;
  line-height: 1;
}
.number-lbl {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.number-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Process */
.process-section {
  padding: 100px 48px;
  background: var(--bg-card);
  border-top: 1px solid rgba(0, 212, 255, 0.06);
  border-bottom: 1px solid rgba(0, 212, 255, 0.06);
}
.process-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.process-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.process-step-card {
  background: var(--bg-card-2);
  border: 1px solid rgba(0, 212, 255, 0.05);
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.2s ease;
}
.process-step-card:hover {
  border-color: rgba(0, 212, 255, 0.15);
}
.process-step-card--accent {
  background: rgba(0, 212, 255, 0.05);
  border-color: rgba(0, 212, 255, 0.15);
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--frost);
  opacity: 0.5;
  line-height: 1;
  padding-top: 2px;
  flex-shrink: 0;
  width: 36px;
}
.step-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Operations */
.operations {
  padding: 100px 48px;
}
.operations-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.ops-header {
  margin-bottom: 56px;
}
.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.ops-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 212, 255, 0.06);
  padding: 32px;
  transition: border-color 0.2s ease;
}
.ops-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
}
.ops-icon {
  width: 36px;
  height: 36px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--frost);
  font-size: 14px;
}
.ops-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.ops-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Closing */
.closing {
  padding: 120px 48px;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg) 100%);
  border-top: 1px solid rgba(0, 212, 255, 0.06);
}
.closing-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.closing-frost-line {
  width: 60px;
  height: 2px;
  background: var(--frost);
  margin: 0 auto 48px;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 28px;
}
.closing-headline .frost { color: var(--frost); }
.closing-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

/* Footer */
.footer {
  padding: 40px 48px;
  border-top: 1px solid rgba(0, 212, 255, 0.06);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.footer-logo .accent { color: var(--frost); }
.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}
.footer-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-dot { color: var(--text-dim); }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .process-inner { grid-template-columns: 1fr; }
  .ops-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .hero { padding: 120px 24px 60px; }
  .manifesto, .numbers, .process-section, .operations, .closing { padding: 72px 24px; }
  .numbers-grid { grid-template-columns: 1fr; }
  .ops-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-meta { justify-content: center; }
  .hero-headline { font-size: 40px; }
  .card-metric { font-size: 56px; }
}