:root {
  --bg: #06070f;
  --surface: #0d1024;
  --surface-2: #131729;
  --border: #1e2540;
  --fg: #e8eaf6;
  --fg-2: #8b92b8;
  --fg-3: #555a7a;
  --accent: #ff8c00;
  --accent-dim: rgba(255, 140, 0, 0.12);
  --accent-2: #ffb347;
  --danger: #ff4757;
  --success: #2ed573;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 7, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-tag {
  font-size: 13px;
  color: var(--fg-3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.nav-cta {
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid rgba(255,140,0,0.3);
  border-radius: 8px;
  background: var(--accent-dim);
  transition: all 0.15s;
}
.nav-cta:hover { background: rgba(255,140,0,0.2); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 0%, transparent 100%);
  opacity: 0.35;
}
.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(255, 140, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(255, 140, 0, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-2);
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-pill {
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 6px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--fg-2);
}

/* DASHBOARD MOCK */
.hero-visual {
  position: relative;
  z-index: 2;
}
.dashboard-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,140,0,0.08) inset;
}
.mock-topbar {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mock-dots { display: flex; gap: 6px; }
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }
.mock-title {
  font-size: 12px;
  color: var(--fg-3);
  font-family: var(--font-display);
}
.mock-body { display: flex; height: 340px; }
.mock-sidebar {
  width: 130px;
  border-right: 1px solid var(--border);
  padding: 16px 0;
  background: var(--surface);
}
.sidebar-item {
  padding: 9px 16px;
  font-size: 12px;
  color: var(--fg-3);
  cursor: pointer;
}
.sidebar-item.active {
  background: var(--accent-dim);
  color: var(--accent);
  border-left: 2px solid var(--accent);
  font-weight: 600;
}
.mock-main {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}
.mock-header-row { display: flex; gap: 12px; }
.mock-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  flex: 1;
}
.card-wide { flex: 1; }
.card-label { font-size: 11px; color: var(--fg-3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.card-val { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--fg); }
.card-sub { font-size: 11px; color: var(--success); margin-top: 2px; }
.mock-row { display: flex; gap: 12px; }
.pipeline { display: flex; gap: 6px; align-items: center; margin-top: 4px; flex-wrap: wrap; }
.pipe {
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--fg-3);
}
.pipe:last-child { background: var(--accent-dim); border-color: rgba(255,140,0,0.3); color: var(--accent); }
.task-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.task-row:last-child { border-bottom: none; }
.task-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); flex-shrink: 0; }
.task-name { font-size: 12px; color: var(--fg-2); flex: 1; }
.task-tag { font-size: 10px; padding: 2px 7px; border-radius: 4px; background: var(--accent-dim); color: var(--accent); }

/* WHAT */
.what {
  padding: 120px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.what-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.what-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.what-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--fg);
  max-width: 640px;
  margin-bottom: 64px;
}
.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.what-card {
  background: var(--surface);
  padding: 40px 36px;
}
.what-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-dim);
  border: 1px solid rgba(255,140,0,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.what-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.what-card p {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.65;
}

/* SERVICES */
.services { padding: 120px 0; }
.services-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.services-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.services-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 64px;
}
.services-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.service-block { border-left: 1px solid var(--border); padding-left: 28px; }
.service-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}
.service-block h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 20px;
}
.service-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-block li {
  font-size: 14px;
  color: var(--fg-2);
  padding-left: 16px;
  position: relative;
}
.service-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.services-cta {
  border-top: 1px solid var(--border);
  padding-top: 36px;
}
.cta-note {
  font-size: 15px;
  color: var(--fg-3);
  max-width: 560px;
  line-height: 1.7;
}

/* PROCESS */
.process {
  padding: 120px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.process-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.process-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 72px;
}
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: start;
}
.phase { padding-right: 40px; }
.phase-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}
.phase-body h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.phase-body p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.65;
}
.phase-connector {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin-top: 28px;
}

/* MANIFESTO */
.manifesto {
  padding: 120px 0;
}
.manifesto-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.manifesto-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: var(--fg);
  max-width: 860px;
  margin-bottom: 40px;
  font-style: normal;
  border: none;
  padding: 0;
}
.manifesto-body {
  font-size: 17px;
  color: var(--fg-2);
  max-width: 600px;
  line-height: 1.75;
}

/* CLOSING */
.closing {
  padding: 120px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.closing-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-2);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
.footer { padding: 48px 0; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}
.footer-tagline { font-size: 13px; color: var(--fg-3); }
.footer-meta {
  font-size: 13px;
  color: var(--fg-3);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-sep { color: var(--border); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 80px 0 60px; }
  .what-grid { grid-template-columns: 1fr; }
  .services-row { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; gap: 40px; }
  .phase-connector { display: none; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .nav-inner { padding: 14px 20px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 32px; }
  .what-card { padding: 28px 24px; }
  .service-block { padding-left: 0; border-left: none; }
}