:root {
  --bg: #060810;
  --bg-secondary: #0a0f1a;
  --bg-card: #0d1424;
  --accent: #00d4ff;
  --accent-dim: #00d4ff18;
  --accent-glow: #00d4ff40;
  --text: #e8edf5;
  --text-muted: #4a5568;
  --text-dim: #8896a8;
  --critical: #ff4444;
  --warning: #f5a623;
  --info: #3b82f6;
  --resolved: #00e676;
  --border: #1a2438;
  --border-bright: #243050;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(6,8,16,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.12em;
  color: var(--text);
}
.nav-logo-accent { color: var(--accent); }
.nav-logo-sub {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  display: block;
  margin-top: 1px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--resolved);
  box-shadow: 0 0 8px var(--resolved);
  animation: pulse 2s infinite;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
}
.nav-link:hover { color: var(--text); }
.nav-cta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid rgba(0,212,255,0.25);
  padding: 7px 18px;
  border-radius: 3px;
  transition: background 0.2s, border-color 0.2s;
}
.nav-cta:hover {
  background: rgba(0,212,255,0.08);
  border-color: var(--accent);
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 32px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/generated-images/company_148356/91907692-33dc-4e8e-b7a5-7f8fd1809a44.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  filter: grayscale(80%) brightness(0.4);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,8,16,0.6) 0%, rgba(6,8,16,0.2) 40%, rgba(6,8,16,0.8) 80%, var(--bg) 100%);
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.25;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, black 0%, transparent 100%);
}
.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow { margin-bottom: 20px; }
.eyebrow-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  padding: 5px 12px;
  border-radius: 2px;
  display: inline-block;
}
.hero-headline {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-headline strong {
  font-weight: 600;
  color: var(--text);
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-cta-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.btn-primary {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 3px;
  transition: opacity 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 24px rgba(0,212,255,0.2);
  white-space: nowrap;
  display: inline-block;
}
.btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 0 32px rgba(0,212,255,0.35);
}
.btn-secondary {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: transparent;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 3px;
  border: 1px solid var(--border-bright);
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--text-dim); color: var(--text); }
.hero-microcopy {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.hero-stats {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  width: fit-content;
}
.hero-stat { padding: 14px 22px; }
.hero-stat + .hero-stat { border-left: 1px solid var(--border); }
.stat-value {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 20px;
  color: var(--accent);
  display: block;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-top: 2px;
}

/* SOC WIDGET */
.soc-widget {
  background: rgba(10,15,26,0.85);
  border: 1px solid var(--border-bright);
  border-radius: 4px;
  overflow: hidden;
  font-family: 'IBM Plex Mono', monospace;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 60px rgba(0,212,255,0.04), 0 20px 60px rgba(0,0,0,0.4);
}
.soc-widget-header {
  background: rgba(10,15,26,0.95);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.soc-widget-title {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.soc-widget-badge {
  font-size: 8px;
  letter-spacing: 0.15em;
  color: var(--resolved);
  background: rgba(0,230,118,0.08);
  border: 1px solid rgba(0,230,118,0.2);
  padding: 2px 7px;
  border-radius: 2px;
}
.soc-alerts { padding: 0; }
.soc-alert-item {
  display: grid;
  grid-template-columns: 3px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-bottom: 1px solid var(--border);
}
.soc-alert-item:last-child { border-bottom: none; }
.soc-alert-item:hover { background: rgba(255,255,255,0.02); }
.alert-severity-bar {
  width: 2px;
  height: 32px;
  border-radius: 1px;
}
.alert-severity-bar.critical { background: var(--critical); box-shadow: 0 0 6px var(--critical); }
.alert-severity-bar.warning { background: var(--warning); }
.alert-severity-bar.resolved { background: var(--resolved); opacity: 0.4; }
.alert-severity-bar.info { background: var(--info); }
.alert-title {
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
  display: block;
}
.alert-meta {
  font-size: 9px;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.02em;
}
.alert-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; }
.alert-action {
  font-size: 8px;
  letter-spacing: 0.1em;
  padding: 2px 5px;
  border-radius: 2px;
  text-transform: uppercase;
  font-family: 'IBM Plex Mono', monospace;
}
.alert-action.triage { background: rgba(255,68,68,0.15); color: var(--critical); border: 1px solid rgba(255,68,68,0.25); }
.alert-action.investigating { background: rgba(245,166,35,0.12); color: var(--warning); border: 1px solid rgba(245,166,35,0.2); }
.alert-action.resolved { background: rgba(0,230,118,0.1); color: var(--resolved); border: 1px solid rgba(0,230,118,0.2); }
.alert-action.review { background: rgba(59,130,246,0.1); color: var(--info); border: 1px solid rgba(59,130,246,0.2); }
.alert-time { font-size: 9px; color: var(--text-muted); font-family: 'IBM Plex Mono', monospace; }
.soc-widget-footer {
  background: rgba(10,15,26,0.95);
  border-top: 1px solid var(--border);
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.soc-live-indicator {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--resolved);
  display: flex;
  align-items: center;
  gap: 5px;
}
.soc-live-indicator::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--resolved);
  box-shadow: 0 0 4px var(--resolved);
  animation: pulse 1.5s infinite;
}
.soc-count { font-size: 9px; color: var(--text-muted); }

/* FOUNDER / CREDENTIALS */
.founder-section {
  padding: 80px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}
.founder-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.founder-identity {
  padding-top: 4px;
}
.founder-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.founder-name {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 300;
  font-size: 28px;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.founder-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}
.founder-bio {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.75;
  font-weight: 300;
  max-width: 340px;
}
.founder-credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cred-section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.cred-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cred-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  padding: 6px 12px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: border-color 0.2s, color 0.2s;
}
.cred-badge:hover { border-color: var(--accent); color: var(--accent); }
.cred-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.cred-degree {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--text-dim);
  padding: 6px 14px;
  background: rgba(0,212,255,0.04);
  border: 1px solid rgba(0,212,255,0.12);
  border-radius: 2px;
}
.cred-verify-link {
  font-size: 10px;
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  transition: color 0.2s;
}
.cred-verify-link:hover { color: var(--accent); }

/* MANIFESTO */
.manifesto {
  padding: 100px 32px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}
.manifesto-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  display: block;
}
.manifesto-headline {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 36px;
}
.manifesto-headline strong { font-weight: 600; }
.manifesto-body p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.85;
  margin-bottom: 20px;
  font-weight: 300;
}
.manifesto-quote {
  margin-top: 48px;
  padding: 28px 32px;
  border: 1px solid rgba(0,212,255,0.12);
  border-left: 2px solid var(--accent);
  border-radius: 0 4px 4px 0;
  background: rgba(0,212,255,0.03);
}
.manifesto-quote p {
  font-size: 17px;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  font-weight: 300;
}
.quote-attr {
  display: block;
  font-size: 11px;
  font-style: normal;
  color: var(--text-muted);
  margin-top: 14px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.05em;
}

/* SOCIAL PROOF */
.social-proof {
  padding: 80px 32px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}
.sp-inner { max-width: 1240px; margin: 0 auto; }
.sp-header { margin-bottom: 48px; }
.cap-label, .sp-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.sp-headline {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(22px, 3vw, 34px);
  color: var(--text);
  letter-spacing: -0.01em;
  max-width: 640px;
  line-height: 1.25;
}
.sp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 40px;
}
.sp-stat {
  background: var(--bg-secondary);
  padding: 28px 24px;
  text-align: left;
}
.sp-stat-value {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: clamp(24px, 2.5vw, 34px);
  color: var(--critical);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.sp-stat-label {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.55;
  margin-bottom: 6px;
}
.sp-stat-source {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.sp-compliance {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.sp-compliance-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.sp-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.sp-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-dim);
  border: 1px solid var(--border-bright);
  padding: 4px 12px;
  border-radius: 2px;
  letter-spacing: 0.06em;
  transition: border-color 0.2s, color 0.2s;
  cursor: default;
}
.sp-badge:hover { border-color: var(--accent); color: var(--accent); }

/* CAPABILITIES */
.capabilities { padding: 100px 32px; }
.cap-inner { max-width: 1240px; margin: 0 auto; }
.cap-label { margin-bottom: 16px; }
.cap-headline {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--text);
  margin-bottom: 56px;
  letter-spacing: -0.01em;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.cap-card {
  background: var(--bg-secondary);
  padding: 28px;
  position: relative;
  transition: background 0.2s;
}
.cap-card:hover { background: rgba(255,255,255,0.02); }
.cap-card.cap-card-lg { grid-column: span 1; }
.cap-icon {
  margin-bottom: 18px;
  display: flex;
}
.cap-card h3 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0;
}
.cap-card p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
  font-weight: 300;
}
.cap-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.15);
  padding: 3px 7px;
  border-radius: 2px;
}

/* PRICING */
.pricing { padding: 100px 32px; background: var(--bg-secondary); }
.pricing-inner { max-width: 960px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.pricing-headline {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(24px, 3vw, 38px);
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.pricing-sub { font-size: 15px; color: var(--text-dim); font-weight: 300; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 4px;
  padding: 36px 32px;
  position: relative;
}
.pricing-card-pro {
  border-color: rgba(0,212,255,0.25);
  background: linear-gradient(135deg, rgba(0,212,255,0.04) 0%, var(--bg-card) 60%);
}
.pricing-card-pro::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 4px 4px 0 0;
}
.pc-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.15em;
  color: var(--bg);
  background: var(--accent);
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.pc-name {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.pc-price {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 52px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}
.pc-period { font-size: 18px; color: var(--text-muted); font-weight: 300; }
.pc-tagline {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 24px;
  line-height: 1.55;
  font-weight: 300;
}
.pc-features { list-style: none; margin-bottom: 28px; }
.pc-features li {
  font-size: 13px;
  color: var(--text-dim);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 300;
}
.pc-features li:last-child { border-bottom: none; }
.pc-features li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.pc-cta {
  display: block;
  text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--bg-secondary);
  border: 1px solid var(--border-bright);
  text-decoration: none;
  padding: 12px;
  border-radius: 3px;
  transition: border-color 0.2s;
}
.pc-cta:hover { border-color: var(--accent); color: var(--accent); }
.pc-cta-pro {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 20px rgba(0,212,255,0.15);
}
.pc-cta-pro:hover { opacity: 0.9; color: var(--bg); border-color: var(--accent); }
.pricing-note {
  text-align: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
}

/* WORKINGS */
.workings {
  padding: 100px 32px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.workings-inner { max-width: 1100px; margin: 0 auto; }
.workings-header { margin-bottom: 56px; }
.workings-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.workings-headline {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(22px, 3vw, 34px);
  color: var(--text);
  letter-spacing: -0.01em;
}
.workings-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.work-step { flex: 1; padding: 0 20px; }
.step-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 12px;
}
.step-body h4 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 10px;
}
.step-body p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.75;
  font-weight: 300;
}
.step-connector {
  width: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-top: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='12' viewBox='0 0 40 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 6h40' stroke='%231a2438' stroke-width='1'/%3E%3Cpath d='M35 2l5 4-5 4' stroke='%231a2438' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* TRIAL SECTION */
.trial-section {
  padding: 100px 32px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-secondary) 100%);
}
.trial-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.trial-headline {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(24px, 3.5vw, 38px);
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.trial-sub {
  font-size: 15px;
  color: var(--text-dim);
  margin-bottom: 40px;
  font-weight: 300;
}
.trial-form {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 4px;
  padding: 32px;
  text-align: left;
}
.trial-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.trial-form-row.full { grid-template-columns: 1fr; }
.trial-form label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.trial-form input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-bright);
  border-radius: 3px;
  padding: 11px 14px;
  color: var(--text);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.trial-form input:focus { border-color: var(--accent); }
.trial-form input::placeholder { color: var(--text-muted); }
.trial-submit {
  width: 100%;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-of-terrain: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  border: none;
  padding: 14px;
  border-radius: 3px;
  cursor: pointer;
  margin-top: 18px;
  transition: opacity 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(0,212,255,0.15);
}
.trial-submit:hover { opacity: 0.9; box-shadow: 0 0 28px rgba(0,212,255,0.3); }
.trial-form-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  font-family: 'IBM Plex Mono', monospace;
}
.trial-success {
  display: none;
  text-align: center;
  padding: 48px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 4px;
}
.trial-success-icon {
  font-size: 40px;
  margin-bottom: 16px;
  color: var(--accent);
}
.trial-success h3 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
}
.trial-success p {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 300;
}
.form-error {
  font-size: 11px;
  color: var(--critical);
  margin-top: 4px;
  display: none;
}

/* CLOSING */
.closing { padding: 100px 32px; }
.closing-inner { max-width: 860px; margin: 0 auto; }
.closing-box {
  text-align: center;
  padding: 56px 48px;
  border: 1px solid var(--border-bright);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(0,212,255,0.03) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}
.closing-box::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.closing-headline {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(22px, 3.5vw, 38px);
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.closing-sub {
  font-size: 15px;
  color: var(--text-dim);
  margin-bottom: 36px;
  font-weight: 300;
}
.closing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}
.closing-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--text-dim);
  border: 1px solid var(--border-bright);
  padding: 4px 12px;
  border-radius: 2px;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}
.closing-tag:hover { border-color: var(--accent); color: var(--accent); }
.closing-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 32px;
  text-align: center;
  background: var(--bg-secondary);
}
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-brand {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.12em;
}
.footer-accent { color: var(--accent); }
.footer-tagline {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 6px;
  font-weight: 300;
}
.footer-copy {
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'IBM Plex Mono', monospace;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .founder-inner { grid-template-columns: 1fr; gap: 48px; }
  .founder-bio { max-width: 100%; }
  .founder-credentials { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .workings-steps { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
  .sp-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  body { font-size: 14px; }
  .hero { padding: 80px 20px 60px; }
  .hero-headline { font-size: 32px; }
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .cap-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; width: 100%; }
  .hero-stat + .hero-stat { border-left: none; border-top: 1px solid var(--border); }
  .closing-box { padding: 40px 24px; }
  .btn-primary, .btn-secondary { display: inline-block; }
  .hero-cta-wrap { flex-direction: column; align-items: flex-start; gap: 10px; }
  .trial-form-row { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .founder-section { padding: 60px 20px; }
  .manifesto, .capabilities, .pricing, .workings, .trial-section, .closing { padding: 80px 20px; }
  .sp-stats { grid-template-columns: 1fr 1fr; }
  .footer { padding: 40px 20px; }
}