/* ============================================
   RATECHOS — Industrial Operations Theme
   Dark control-room aesthetic
   ============================================ */

:root {
  --bg:        #070b14;
  --bg-alt:    #0b1120;
  --bg-card:   #0d1627;
  --bg-card-hover: #111d35;
  --border:    rgba(255,255,255,0.07);
  --border-bright: rgba(255,255,255,0.14);
  --text-primary:   #e8edf5;
  --text-secondary: #7a8ba8;
  --text-muted:     #4a5c78;
  --amber:     #f59e0b;
  --amber-dim: rgba(245,158,11,0.12);
  --blue:      #3b82f6;
  --blue-dim:  rgba(59,130,246,0.12);
  --green:     #10b981;
  --green-dim: rgba(16,185,129,0.12);
  --red:       #ef4444;
  --font-mono: 'IBM Plex Mono', monospace;
  --font-sans: 'IBM Plex Sans', sans-serif;
  --radius:    6px;
  --radius-lg: 10px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── TOPBAR ── */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 52px;
  background: rgba(7,11,20,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.topbar-logo {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

.logo-accent { color: var(--amber); }

.topbar-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.status-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 32px 60px;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(59,130,246,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(245,158,11,0.04) 0%, transparent 60%),
    var(--bg);
}

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

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.eyebrow-line {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--amber);
}

.eyebrow-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--amber);
}

.hero-headline {
  font-family: var(--font-mono);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.headline-accent { color: var(--amber); }

.hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 380px;
}

/* ── DASHBOARD WINDOW ── */
.dashboard-window {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.03) inset;
}

.dw-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.dw-dots { display: flex; gap: 6px; }
.dw-dot { width: 10px; height: 10px; border-radius: 50%; }
.dw-red   { background: #ef4444; }
.dw-amber { background: #f59e0b; }
.dw-green { background: #10b981; }

.dw-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.dw-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  padding: 14px;
  gap: 10px;
}

.dw-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.col-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 4px;
  background: var(--bg-card);
}

.col-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.col-dot--amber { background: var(--amber); }
.col-dot--blue  { background: var(--blue); }
.col-dot--green { background: var(--green); }

.col-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  flex: 1;
}

.col-count {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.06);
  padding: 1px 6px;
  border-radius: 3px;
}

.job-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  transition: background 0.2s, border-color 0.2s;
}

.job-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-bright);
}

.job-card--pending { opacity: 0.65; }
.job-card--done    { opacity: 0.5; }

.job-id {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.job-name {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.job-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.job-client {
  font-size: 10px;
  color: var(--text-secondary);
}

.job-time {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-muted);
}

.job-bar {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}

.job-bar-fill {
  height: 100%;
  background: var(--blue);
  border-radius: 2px;
}
.job-bar-fill--amber { background: var(--amber); }

/* ── HERO STATS ── */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.stat-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  text-align: center;
}

.stat-val {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-key {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── DATA FEED ── */
.datafeed {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.datafeed-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}

.feed-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.feed-row {
  display: flex;
  gap: 40px;
  flex: 1;
  overflow: hidden;
}

.feed-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.feed-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.feed-dot--amber { background: var(--amber); }
.feed-dot--blue  { background: var(--blue); }
.feed-dot--green { background: var(--green); }

.feed-text {
  font-size: 12px;
  color: var(--text-secondary);
}

.feed-time {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
}

/* ── FEATURES ── */
.features {
  padding: 100px 32px;
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(245,158,11,0.04) 0%, transparent 60%),
    var(--bg);
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--font-mono);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-primary);
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  background: var(--bg-alt);
  padding: 32px;
  transition: background 0.2s;
}

.feature-card:hover {
  background: var(--bg-card);
}

.fc-icon {
  color: var(--amber);
  margin-bottom: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-dim);
  border-radius: var(--radius);
}

.fc-title {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.fc-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ── WORKBOARD ── */
.workboard {
  padding: 100px 32px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.workboard-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.wb-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-top: 20px;
  max-width: 400px;
}

.wb-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wb-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.wb-step:first-child { padding-top: 0; }
.wb-step:last-child  { border-bottom: none; }

.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  width: 32px;
  flex-shrink: 0;
  padding-top: 2px;
}

.step-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

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

/* ── CLOSING ── */
.closing {
  padding: 120px 32px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.closing-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }

.closing-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(245,158,11,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(59,130,246,0.05) 0%, transparent 55%);
  pointer-events: none;
}

.closing-headline {
  font-family: var(--font-mono);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.closing-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.closing-stamp {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

/* ── FOOTER ── */
.site-footer {
  padding: 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

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

/* ── CTA BUTTONS ── */
.hero-cta-row {
  display: flex;
  gap: 16px;
  margin: 32px 0 0;
  flex-wrap: wrap;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: var(--amber);
  color: #070b14;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}

.cta-primary:hover {
  background: #fbbf24;
  transform: translateY(-1px);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: 1px solid var(--border-bright);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.cta-secondary:hover {
  border-color: var(--amber);
  color: var(--text-primary);
}

/* ── WHY SECTION ── */
.why-section {
  padding: 100px 32px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.advantage-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.advantage-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.advantage-item:first-child { padding-top: 0; }

.adv-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-dim);
  border-radius: 50%;
  color: var(--green);
}

.adv-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.adv-desc {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ── CONTACT SECTION ── */
.contact-section {
  padding: 100px 32px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 20px 0 32px;
  max-width: 420px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.contact-value {
  font-size: 14px;
  color: var(--text-primary);
}

/* ── CONTACT FORM ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.form-input,
.form-textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 14px;
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--amber);
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: var(--amber);
  color: #070b14;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  margin-top: 4px;
}

.form-submit:hover {
  background: #fbbf24;
  transform: translateY(-1px);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dw-body {
    grid-template-columns: 1fr 1fr;
  }

  .dw-col:last-child { display: none; }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .workboard-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .datafeed-inner { flex-direction: column; gap: 12px; }
  .feed-row { gap: 24px; }
}

@media (max-width: 600px) {
  .hero { padding: 80px 20px 40px; }
  .features,
  .why-section,
  .workboard,
  .contact-section { padding: 60px 20px; }
  .closing { padding: 80px 20px; }

  .dw-body {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .topbar { padding: 0 20px; }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .feed-row { flex-direction: column; gap: 8px; }

  .hero-cta-row { flex-direction: column; }
  .cta-primary, .cta-secondary { width: 100%; justify-content: center; }
}

/* ── VALUES BAND ── */
.values-band {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 32px;
}

.values-band-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.vb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.vb-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--amber);
}

.vb-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.vb-link:hover { color: var(--amber); }

.vb-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.vb-item {
  background: var(--bg);
  padding: 24px 20px;
  transition: background 0.2s;
}

.vb-item:hover {
  background: var(--bg-card);
}

.vb-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-dim);
  border-radius: 6px;
  color: var(--amber);
  margin-bottom: 14px;
}

.vb-icon svg {
  width: 15px;
  height: 15px;
}

.vb-name {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.vb-stance {
  font-size: 11px;
  line-height: 1.55;
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .vb-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 500px) {
  .vb-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-band { padding: 40px 20px; }
}

/* ── PILOT PAGE ── */
.pilot-page {
  padding: 96px 32px 80px;
  max-width: 960px;
  margin: 0 auto;
}
.pilot-hero { margin-bottom: 72px; }
.pilot-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.pilot-eyebrow-line { display: block; width: 28px; height: 2px; background: var(--amber); }
.pilot-eyebrow-text { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em; color: var(--amber); }
.pilot-headline { font-family: var(--font-mono); font-size: clamp(32px,4.5vw,56px); font-weight: 700; line-height: 1.1; color: var(--text-primary); letter-spacing: -0.02em; margin-bottom: 24px; max-width: 780px; }
.pilot-headline .accent { color: var(--amber); }
.pilot-sub { font-size: 17px; line-height: 1.7; color: var(--text-secondary); max-width: 640px; margin-bottom: 32px; }
.pilot-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--amber-dim); border: 1px solid rgba(245,158,11,0.25); border-radius: 4px; padding: 8px 16px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--amber); }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 6px var(--amber); animation: pulse 2s infinite; }
.pilot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 56px; }
.pilot-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.pilot-card--full { grid-column: 1 / -1; }
.card-tag { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em; color: var(--text-muted); margin-bottom: 14px; }
.card-heading { font-family: var(--font-mono); font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 16px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
.check-list li::before { content: ''; width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%23f59e0b' stroke-width='1.5' fill='none'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23f59e0b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-size: contain; }
.tech-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-chip { font-family: var(--font-mono); font-size: 11px; padding: 5px 10px; border-radius: 4px; background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2); color: var(--blue); letter-spacing: 0.04em; }
.timeline-row { display: flex; align-items: center; gap: 16px; }
.timeline-val { font-family: var(--font-mono); font-size: 40px; font-weight: 700; color: var(--amber); line-height: 1; }
.timeline-label { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
.conversion-steps { display: flex; flex-direction: column; gap: 12px; }
.conv-step { display: flex; gap: 14px; align-items: flex-start; }
.conv-num { font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: var(--amber); background: var(--amber-dim); border: 1px solid rgba(245,158,11,0.2); border-radius: 3px; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.conv-text { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
.conv-text strong { color: var(--text-primary); font-weight: 500; }
.pilot-cta-section { background: var(--bg-card); border: 1px solid var(--border-bright); border-radius: var(--radius-lg); padding: 48px; margin-bottom: 56px; }
.cta-heading { font-family: var(--font-mono); font-size: 22px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.cta-sub { font-size: 15px; color: var(--text-secondary); margin-bottom: 36px; max-width: 480px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-full { grid-column: 1 / -1; }
.form-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); border-radius: var(--radius); padding: 12px 16px; font-size: 13px; color: #ef4444; margin-bottom: 20px; }
.form-success { text-align: center; padding: 32px 0 8px; }
.success-icon { font-size: 40px; margin-bottom: 16px; }
.success-heading { font-family: var(--font-mono); font-size: 20px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.success-sub { font-size: 15px; color: var(--text-secondary); }
@media (max-width: 640px) {
  .pilot-grid { grid-template-columns: 1fr; }
  .pilot-cta-section { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
}