:root {
  --bg: #090909;
  --bg-elevated: #0f0f0f;
  --bg-card: #111111;
  --tx: #ffffff;
  --tx-muted: #bbbbbb;
  --tx-dim: #777777;
  --accent: #b892ff;
  --accent-glow: rgba(184, 146, 255, 0.15);
  --purple: #a78bfa;
  --purple-glow: rgba(167, 139, 250, 0.12);
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --mono: "Space Mono", ui-monospace, Menlo, monospace;
  --radius: 100px;
  --radius-sm: 8px;
  --radius-md: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--tx);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-weight: 300;
  position: relative;
  overflow-x: hidden;
}

/* ── Noise texture ── */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ── Gradient orbs ── */
.orb-wrap {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}
.orb-1 { width: 700px; height: 700px; top: -250px; right: -150px; background: radial-gradient(circle, var(--accent-glow), transparent 70%); }
.orb-2 { width: 500px; height: 500px; bottom: -150px; left: -100px; background: radial-gradient(circle, var(--purple-glow), transparent 70%); }
.orb-3 { width: 300px; height: 300px; top: 40%; left: 30%; background: radial-gradient(circle, rgba(255,255,255,0.03), transparent 70%); }

/* ── Abstract hero geometry ── */
.hero-geo {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}

/* ── Layout ── */
.wrap { max-width: 980px; margin: 0 auto; padding: 0 48px; position: relative; z-index: 2; }

/* ── Header ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 9, 9, 0.65);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
nav {
  max-width: 980px;
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--tx);
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
}
.navlinks {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 400;
  color: var(--tx-muted);
}
.navlinks a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
  position: relative;
}
.navlinks a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--tx);
  transition: width 0.3s;
}
.navlinks a:hover { color: var(--tx); }
.navlinks a:hover::after { width: 100%; }
.navlinks a.active { color: var(--tx); }
.navlinks a.active::after { width: 100%; }

/* ── Mobile nav toggle ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--tx);
  font-size: 20px;
  cursor: pointer;
}

/* ── Buttons ── */
.btn {
  font-size: 13px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  text-decoration: none;
  background: transparent;
  color: var(--tx);
  letter-spacing: 0.3px;
}
.btn:hover {
  border-color: var(--tx);
  background: rgba(255, 255, 255, 0.05);
}
.btn-primary {
  background: var(--tx);
  color: var(--bg);
  border-color: var(--tx);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--tx);
}
.btn-accent {
  background: var(--accent);
  color: var(--tx);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: transparent;
  color: var(--accent);
}

/* ── Hero ── */
.hero { padding: 140px 0 100px; position: relative; }
.hero-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--tx-dim);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero h1 {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -2px;
  font-weight: 300;
  max-width: 720px;
}
.hero h1 strong, .hero h1 em { font-weight: 600; font-style: normal; color: var(--accent); }
.hero p {
  font-size: 17px;
  color: var(--tx-muted);
  margin-top: 32px;
  max-width: 480px;
  line-height: 1.8;
  font-weight: 300;
}
.hero-actions { margin-top: 40px; display: flex; gap: 14px; }

/* ── Stats ── */
.stats {
  display: flex;
  gap: 56px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--tx-dim);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.stat-value {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -1px;
  color: var(--tx);
}
.stat-value.accent { color: var(--accent); }
.stat-value.purple { color: var(--purple); }

/* ── Sections ── */
section { padding: 120px 0; }
.sec-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--tx-dim);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.sec-h {
  font-size: 36px;
  letter-spacing: -1.2px;
  font-weight: 300;
  line-height: 1.2;
  max-width: 560px;
}
.sec-h strong, .sec-h em { font-weight: 600; font-style: normal; color: var(--accent); }
.sec-p {
  font-size: 16px;
  color: var(--tx-muted);
  margin-top: 24px;
  max-width: 480px;
  line-height: 1.8;
  font-weight: 300;
}

/* ── Services list ── */
.services { margin-top: 56px; border-top: 1px solid var(--border); }
.service {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 40px;
  align-items: flex-start;
  transition: padding 0.3s;
}
.service:hover { padding-left: 8px; }
.service-icon {
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.service-icon svg { width: 24px; height: 24px; }
.service-body { flex: 1; }
.service h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.service h3 strong { font-weight: 600; }
.service p {
  font-size: 15px;
  color: var(--tx-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 540px;
}
.service-tag {
  font-family: var(--mono);
  font-size: 10px;
  padding: 4px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  color: var(--tx-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 14px;
  display: inline-block;
}
.service-tag.offense { border-color: var(--accent-glow); color: var(--accent); background: var(--accent-glow); }
.service-tag.defense { border-color: var(--purple-glow); color: var(--purple); background: var(--purple-glow); }

/* ── Cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.card:hover::before { opacity: 0.4; }
.card h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.card h3 strong { font-weight: 600; }
.card p {
  font-size: 14px;
  color: var(--tx-muted);
  line-height: 1.65;
  font-weight: 300;
}
.card-tag {
  font-family: var(--mono);
  font-size: 10px;
  padding: 3px 10px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: inline-block;
}

/* ── Quote / provocative block ── */
.provoke {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 48px;
  margin-top: 48px;
  position: relative;
}
.provoke::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), transparent);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}
.provoke p {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.5px;
  max-width: 700px;
}
.provoke p strong { font-weight: 600; color: var(--accent); }
.provoke .source {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--tx-dim);
  margin-top: 20px;
  letter-spacing: 0.5px;
}

/* ── Steps / How we work ── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.step {
  padding: 32px 0 0;
  border-top: 1px solid var(--border);
  transition: border-color 0.3s;
}
.step:hover { border-color: var(--accent); }
.step-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 10px;
}
.step h3 strong { font-weight: 600; }
.step p {
  font-size: 14px;
  color: var(--tx-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── CTA section ── */
.cta {
  text-align: center;
  padding: 100px 0;
}
.cta h2 {
  font-size: 36px;
  letter-spacing: -1.2px;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 16px;
}
.cta h2 strong { font-weight: 600; }
.cta p {
  font-size: 16px;
  color: var(--tx-muted);
  margin-bottom: 32px;
  font-weight: 300;
}
.cta .actions {
  display: flex;
  gap: 14px;
  justify-content: center;
}

/* ── Footer ── */
footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand {
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 14px;
  color: var(--tx-muted);
  line-height: 1.6;
  font-weight: 300;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--tx-dim);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--tx-muted);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--tx); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--tx-dim);
}
.footer-bottom a {
  color: var(--tx-dim);
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--tx); }

/* ── Page header ── */
.page-header { padding: 100px 0 60px; }
.page-header h1 {
  font-size: 42px;
  letter-spacing: -1.5px;
  font-weight: 300;
  line-height: 1.15;
  max-width: 640px;
}
.page-header h1 strong, .page-header h1 em { font-weight: 600; font-style: normal; color: var(--accent); }
.page-header p {
  font-size: 17px;
  color: var(--tx-muted);
  margin-top: 20px;
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
}

/* ── Contact form ── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--tx-dim);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--tx);
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--tx-dim); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-error {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  min-height: 16px;
  margin-top: 6px;
}
.form-success {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--green);
  line-height: 1.6;
  display: none;
}

/* ── Loader ── */
.loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #090909;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader-overlay.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  text-align: center;
  max-width: 360px;
  padding: 24px;
}
.loader-logo {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  display: block;
}
.loader-torii {
  opacity: 0;
  transform: scale(0.85);
  animation: toriiBuild 0.6s ease forwards;
  animation-delay: 0.2s;
}
@keyframes toriiBuild {
  to { opacity: 1; transform: scale(1); }
}
.loader-circuits {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: circuitDraw 1s ease forwards;
  animation-delay: 0.5s;
}
@keyframes circuitDraw {
  to { stroke-dashoffset: 0; }
}
.loader-brand {
  font-family: var(--mono);
  font-size: 20px;
  letter-spacing: 6px;
  font-weight: 700;
  color: var(--tx);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeIn 0.4s ease forwards;
  animation-delay: 0.3s;
}
@keyframes fadeIn {
  to { opacity: 1; }
}
.loader-progress-wrap {
  width: 100%;
  max-width: 280px;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  margin: 0 auto 16px;
  overflow: hidden;
}
.loader-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--purple));
  border-radius: 2px;
  animation: progressFill 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.4s;
}
@keyframes progressFill {
  0% { width: 0%; }
  30% { width: 35%; }
  60% { width: 72%; }
  80% { width: 88%; }
  100% { width: 100%; }
}
.loader-status {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--tx-muted);
  min-height: 18px;
  margin-bottom: 10px;
}
.loader-pipeline {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--tx-dim);
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
  animation-delay: 1.8s;
}

/* ── Legal pages ── */
.legal { padding: 60px 0 100px; }
.legal h1 {
  font-size: 32px;
  letter-spacing: -1px;
  font-weight: 300;
  margin-bottom: 32px;
}
.legal h2 {
  font-size: 20px;
  font-weight: 400;
  margin: 40px 0 16px;
  letter-spacing: -0.3px;
}
.legal h2 strong { font-weight: 600; }
.legal p {
  font-size: 15px;
  color: var(--tx-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 300;
}
.legal ul {
  margin: 16px 0 16px 24px;
  color: var(--tx-muted);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
}
.legal li { margin-bottom: 8px; }
.legal a { color: var(--accent); text-decoration: none; }
.legal a:hover { text-decoration: underline; }

/* ── Gradient text ── */
.gradient-text {
  background: linear-gradient(135deg, #c084fc, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Glow border cards ── */
.glow-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 1px;
  overflow: hidden;
}
.glow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  padding: 1px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}
.glow-card:hover::before { opacity: 0.6; }
.glow-card-inner {
  background: var(--bg-card);
  border-radius: calc(var(--radius-md) - 1px);
  padding: 32px;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* ── Terminal / code blocks ── */
.terminal {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
  overflow-x: auto;
}
.terminal-header {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  align-items: center;
}
.terminal-dot { width: 10px; height: 10px; border-radius: 50%; opacity: 0.5; }
.terminal-dot.r { background: var(--accent); }
.terminal-dot.y { background: #fbbf24; }
.terminal-dot.g { background: var(--purple); }
.terminal-title { font-size: 11px; color: var(--tx-dim); margin-left: 8px; }
.terminal .line { margin-bottom: 4px; }
.terminal .prompt { color: var(--purple); margin-right: 6px; }
.terminal .cmd { color: var(--tx); }
.terminal .comment { color: var(--tx-dim); }
.terminal .output { color: var(--tx-muted); }

/* ── Feature grid ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.feature-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: all 0.3s;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.feature-card:hover::before { opacity: 0.5; }
.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.feature-card p {
  font-size: 14px;
  color: var(--tx-muted);
  line-height: 1.65;
  font-weight: 300;
}
.feature-list {
  margin-top: 20px;
  list-style: none;
  padding: 0;
}
.feature-list li {
  font-size: 13px;
  color: var(--tx-muted);
  padding: 6px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-list li::before {
  content: "›";
  color: var(--accent);
  font-family: var(--mono);
}

/* ── Process flow ── */
.process-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 48px;
}
.process-step {
  flex: 1;
  padding: 32px 24px;
  border-top: 2px solid var(--border);
  position: relative;
  transition: border-color 0.3s;
}
.process-step:hover { border-color: var(--accent); }
.process-step::after {
  content: "";
  position: absolute;
  top: -6px;
  right: -6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.3s;
}
.process-step:hover::after { background: var(--accent); }
.process-step:last-child::after { display: none; }
.process-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.process-step h3 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14px;
  color: var(--tx-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── Comparison ── */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.comparison-col {
  padding: 40px 32px;
}
.comparison-col:first-child {
  border-right: 1px solid var(--border);
  background: var(--bg-card);
}
.comparison-col h3 {
  font-size: 14px;
  font-family: var(--mono);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.comparison-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.comparison-col li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--tx-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.comparison-col li:last-child { border-bottom: 0; }
.comparison-col .x { color: var(--tx-dim); }
.comparison-col .check { color: var(--purple); }

/* ── Live system mockup ── */
.live-system {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 48px;
  font-family: var(--mono);
  font-size: 12px;
  position: relative;
  overflow: hidden;
}
.live-system::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}
.live-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.live-cell {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.live-label {
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--tx-dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.live-value {
  font-size: 20px;
  color: var(--tx);
  font-weight: 500;
}
.live-value.accent { color: var(--accent); }
.live-value.pulse {
  animation: pulseGlow 2s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.live-bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 10px;
  overflow: hidden;
}
.live-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--purple));
  border-radius: 2px;
  animation: barPulse 3s ease-in-out infinite;
}
@keyframes barPulse {
  0%, 100% { width: 60%; }
  50% { width: 85%; }
}

/* ── Section divider ── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
  border: 0;
}

/* ── Marquee / trusted by ── */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: inline-block;
  animation: marqueeScroll 20s linear infinite;
}
.marquee-item {
  display: inline-block;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--tx-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 40px;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Quote / testimonial ── */
.quote-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 48px;
  position: relative;
  margin-top: 48px;
}
.quote-block::before {
  content: """;
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 64px;
  color: var(--accent);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}
.quote-text {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.3px;
  max-width: 700px;
  position: relative;
  z-index: 1;
}
.quote-author {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.quote-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--accent);
}
.quote-info { font-family: var(--mono); font-size: 12px; }
.quote-name { color: var(--tx); font-weight: 500; }
.quote-role { color: var(--tx-dim); margin-top: 2px; }

/* ── Torii hero visual ── */
.torii-hero-wrap {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.torii-hero-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  animation: toriiFloat 5s ease-in-out infinite, toriiGlow 3s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(184,146,255,0.15));
}
@keyframes toriiFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes toriiGlow {
  0%, 100% { filter: drop-shadow(0 0 40px rgba(184,146,255,0.12)); }
  50% { filter: drop-shadow(0 0 60px rgba(184,146,255,0.25)); }
}

/* ── Responsive additions ── */
@media (max-width: 860px) {
  .feature-grid { grid-template-columns: 1fr; }
  .process-flow { flex-direction: column; }
  .process-step::after { display: none; }
  .comparison { grid-template-columns: 1fr; }
  .comparison-col:first-child { border-right: 0; border-bottom: 1px solid var(--border); }
  .live-grid { grid-template-columns: 1fr; }
  .marquee { display: none; }
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .wrap { padding: 0 28px; }
  nav { padding: 16px 28px; }
  .navlinks { display: none; }
  .nav-toggle { display: block; }
  .hero { padding-top: 80px; }
  .hero h1 { font-size: 36px; letter-spacing: -1px; }
  .stats { flex-wrap: wrap; gap: 32px; }
  .sec-h { font-size: 28px; }
  .service { flex-direction: column; gap: 16px; }
  .card-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .page-header h1 { font-size: 30px; }
  .provoke { padding: 32px; }
  .provoke p { font-size: 20px; }
  .cta h2 { font-size: 28px; }
}
