/* =====================
   CSS RESET & VARIABLES
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0d1117;
  --surface: #161b22;
  --surface-2: #1c2330;
  --border: #2a3441;
  --text: #e8e6e1;
  --text-2: #8a949e;
  --accent: #00d4aa;
  --accent-dim: rgba(0, 212, 170, 0.12);
  --white: #ffffff;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-sm: 6px;
}

html { scroll-behavior: smooth; }

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

/* =====================
   TYPOGRAPHY
   ===================== */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
}

/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.nav-tagline {
  font-size: 12px;
  color: var(--text-2);
  letter-spacing: 0.05em;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-highlight {
  color: var(--accent);
  position: relative;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 480px;
}

/* =====================
   QUEUE CARD (HERO)
   ===================== */
.queue-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}

.queue-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.queue-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.queue-live {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.queue-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.qitem {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
}

.qdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.qdot--green { background: #00d4aa; box-shadow: 0 0 6px rgba(0, 212, 170, 0.6); }
.qdot--yellow { background: #f5a623; }
.qdot--grey { background: #3d4a5c; }

.qinfo {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.qname {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
}

.qdetail {
  font-size: 11px;
  color: var(--text-2);
}

.qbadge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 3px;
  background: rgba(0, 212, 170, 0.15);
  color: var(--accent);
}

.qbadge--pending {
  background: rgba(245, 166, 35, 0.15);
  color: #f5a623;
}

.queue-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.qstat {
  text-align: center;
}

.qstat-num {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  display: block;
}

.qstat-label {
  font-size: 10px;
  color: var(--text-2);
  display: block;
  margin-top: 2px;
}

/* =====================
   PIPELINE SECTION
   ===================== */
.pipeline {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}

.pipeline-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pipeline-stages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.stage {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.2s;
}

.stage:hover { border-color: var(--accent); }

.stage-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stage-body { flex: 1; }

.stage-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.stage-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* =====================
   PROBLEM SECTION
   ===================== */
.problem {
  padding: 100px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-inner { max-width: 1200px; margin: 0 auto; }

.problem-title {
  max-width: 720px;
  margin-top: 8px;
}

.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 64px 0;
}

.pstat {
  border-left: 2px solid var(--accent);
  padding-left: 24px;
}

.pstat-number {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}

.pstat-label {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
  max-width: 260px;
}

.problem-cta {
  max-width: 600px;
}

.problem-cta-text {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
}

/* =====================
   PROCESS SECTION
   ===================== */
.process {
  padding: 100px 48px;
}

.process-inner { max-width: 1200px; margin: 0 auto; }

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

.proc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s;
}

.proc-card:hover { border-color: var(--accent); }

.proc-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.proc-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.proc-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

/* =====================
   VERTICALS SECTION
   ===================== */
.verticals {
  padding: 100px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.verticals-inner { max-width: 1200px; margin: 0 auto; }

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

.v-card {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition: border-color 0.2s;
}

.v-card:hover { border-color: rgba(0, 212, 170, 0.4); }

.v-emoji {
  margin-bottom: 20px;
}

.v-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.v-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

/* =====================
   MANIFESTO SECTION
   ===================== */
.manifesto {
  padding: 100px 48px;
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-rule {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 48px;
}

.manifesto-quote {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 48px;
}

.manifesto-pricing {
  margin-top: 56px;
}

.mp-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 12px;
}

.mp-price {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}

.mp-period {
  font-size: 18px;
  color: var(--text-2);
  font-weight: 400;
}

.mp-note {
  font-size: 14px;
  color: var(--text-2);
}

/* =====================
   FOOTER
   ===================== */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-2);
}

.footer-copy {
  font-size: 12px;
  color: var(--border);
  margin-top: 16px;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 100px 24px 60px; }
  .pipeline { padding: 60px 24px; }
  .pipeline-stages { grid-template-columns: 1fr; }
  .problem { padding: 60px 24px; }
  .problem-stats { grid-template-columns: 1fr; gap: 32px; }
  .process { padding: 60px 24px; }
  .process-grid { grid-template-columns: 1fr; }
  .verticals { padding: 60px 24px; }
  .v-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 60px 24px; }
  .navbar { padding: 16px 24px; }
}

@media (max-width: 600px) {
  .queue-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-headline { font-size: 36px; }
}
