/* =====================================================
   ORDIS AI LABS — Design System
   ===================================================== */

@font-face {
  font-family: 'WT Bobine';
  src: url('fonts/wtbobinetrial-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'WT Bobine';
  src: url('fonts/wtbobinetrial-italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'WT Bobine';
  src: url('fonts/wtbobinetrial-bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'WT Bobine';
  src: url('fonts/wtbobinetrial-bolditalic.woff2') format('woff2');
  font-weight: 700; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'WT Bobine Titling';
  src: url('fonts/wtbobinetrial-titling.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'WT Goose';
  src: url('fonts/wt-goose-031.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}

/* ----------------------------------------------------- Tokens */
:root {
  --bg:           #030303;
  --bg-surface:   #070707;
  --bg-card:      #0c0c0c;
  --bg-elevated:  #121212;

  --text:         #F5F0E6;
  --text-sec:     #A8A29A;
  --text-muted:   #6B6560;

  --accent:       #E09040;
  --accent-h:     #F0A050;
  --accent-dim:   rgba(224,144,64,0.08);
  --accent-glow:  rgba(224,144,64,0.15);
  --accent-border:rgba(224,144,64,0.30);

  --border:       rgba(255,255,255,0.07);
  --border-light: rgba(255,255,255,0.12);
  --border-strong:rgba(255,255,255,0.20);

  --success:      #5BB380;
  --red:          #E4322B;

  --font:         'WT Bobine', sans-serif;
  --font-title:   'WT Bobine Titling', 'WT Bobine', sans-serif;
  --font-mono:    'JetBrains Mono', 'IBM Plex Mono', monospace;

  --r-sm:   8px;
  --r:      12px;
  --r-xl:   20px;
  --r-2xl:  28px;
  --r-pill: 999px;

  --ease:   cubic-bezier(0.4,0,0.2,1);
  --fast:   0.15s cubic-bezier(0.4,0,0.2,1);
  --mid:    0.3s  cubic-bezier(0.4,0,0.2,1);
  --slow:   0.6s  cubic-bezier(0.4,0,0.2,1);

  --py: clamp(4rem,10vh,8rem);
}

/* ----------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ----------------------------------------------------- Layout */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px,4vw,64px);
}

/* ----------------------------------------------------- Ambient Glow */
.ambient-glow {
  position: fixed;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120vw;
  height: 600px;
  background: radial-gradient(ellipse at top, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ----------------------------------------------------- Nav */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px clamp(16px,3vw,48px);
  background: transparent;
  transition: background var(--mid), box-shadow var(--mid), backdrop-filter var(--mid);
}
.nav-header.scrolled {
  background: rgba(3,3,3,0.92);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 700 1.1rem/1 var(--font);
  letter-spacing: 0.04em;
  color: var(--text);
  flex-shrink: 0;
  transition: opacity var(--fast);
}
.brand-text:hover { opacity: 0.7; }
.brand-mark { width: 48px; height: 48px; object-fit: contain; }

.nav-pill {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 13px 28px;
  background: rgba(3,3,3,0.80);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  transition: border-color var(--mid), box-shadow var(--mid);
}
.nav-header.scrolled .nav-pill {
  border-color: var(--border-light);
}
.nav-link {
  font: 700 11px/1 var(--font);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-sec);
  transition: color var(--fast);
  white-space: nowrap;
}
.nav-link:hover { color: var(--text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.nav-btn {
  font: 700 10px/1 var(--font);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-light);
  color: var(--text);
  background: transparent;
  transition: border-color var(--fast), background var(--fast);
}
.nav-btn:hover { border-color: var(--border-strong); background: rgba(255,255,255,0.05); }
.nav-btn-primary { background: var(--accent); color: #000; border-color: var(--accent); }
.nav-btn-primary:hover { background: var(--accent-h); border-color: var(--accent-h); }

/* ----------------------------------------------------- Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  font: 500 0.9rem/1 var(--font);
  border-radius: var(--r-pill);
  transition: all var(--fast);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary { background: var(--accent); color: #000; border: 1px solid var(--accent); }
.btn-primary:hover { background: var(--accent-h); border-color: var(--accent-h); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border-light); }
.btn-outline:hover { border-color: var(--border-strong); background: rgba(255,255,255,0.04); }

/* ----------------------------------------------------- Utilities */
.eyebrow {
  display: block;
  font: 700 11px/1 var(--font);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.accent-text { color: var(--accent); }
.mono-text { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-muted); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--slow), transform var(--slow);
}
.reveal.visible { opacity: 1; transform: none; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.feature-list li { font-size: 0.95rem; color: var(--text-sec); }

.link-btn {
  font: 700 0.9rem/1 var(--font);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--fast), gap var(--fast);
}
.link-btn:hover { color: var(--accent-h); gap: 10px; }

/* ----------------------------------------------------- Section Header */
.section-header { margin-bottom: 56px; }
.section-header h2 {
  font: 700 clamp(1.75rem,3.5vw,2.25rem)/1.1 var(--font);
  letter-spacing: -0.015em;
}
.section-header p {
  color: var(--text-sec);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-top: 14px;
}
.section-header.centered { text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-header.centered p { max-width: 560px; }

/* ----------------------------------------------------- Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(3,3,3,0.96) 0%, rgba(3,3,3,0.82) 35%, rgba(3,3,3,0.40) 62%, rgba(3,3,3,0.05) 85%, rgba(3,3,3,0) 100%),
    linear-gradient(to top,    rgba(3,3,3,0.90) 0%, rgba(3,3,3,0.20) 28%, transparent 55%),
    linear-gradient(to bottom, rgba(3,3,3,0.60) 0%, transparent 18%);
}
.hero-content { position: relative; z-index: 1; width: 100%; }
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 680px;
  padding: clamp(140px,22vh,200px) 0 clamp(80px,12vh,120px);
}
.hero-title { font: 700 clamp(2.6rem,6vw,4.5rem)/1.05 var(--font); letter-spacing: -0.02em; margin-bottom: 24px; }
.hero-sub { font-size: clamp(1rem,1.4vw,1.1rem); color: var(--text-sec); max-width: 440px; line-height: 1.7; margin-bottom: 40px; }
.hero-actions { display: flex; align-items: center; gap: 12px; }
.hero-trust { margin-top: 28px; font: 700 10px/1 var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }

/* ----------------------------------------------------- Trust Strip */
.trust {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  z-index: 1;
}
.trust-label { font: 700 0.675rem/1 var(--font); letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 28px; }
.marquee { overflow: hidden; mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent); }
.marquee-track { display: flex; width: max-content; }
.marquee-group { display: flex; align-items: center; gap: 64px; padding-right: 64px; animation: marquee 22s linear infinite; }
.marquee-group span { font: 700 0.95rem/1 var(--font); letter-spacing: 0.08em; color: var(--text-muted); opacity: 0.55; white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-100%); } }

/* ----------------------------------------------------- Bento */
.bento-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: clamp(4rem,8vh,7rem) 0;
}
.logo-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
}
.logo-canvas img {
  position: absolute;
  left: var(--lx);
  top:  var(--ly);
  width: var(--ls);
  transform: rotate(var(--lr));
  opacity: 0.18;
  filter: grayscale(1);
}

.bento {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  grid-template-rows: 300px 140px;
  gap: 16px;
  position: relative;
}
.bento-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; overflow: visible; z-index: 10; }
.flow-path { fill: none; stroke: var(--accent); stroke-width: 1.5; stroke-dasharray: 6 5; stroke-linecap: round; opacity: 0.55; animation: flow-dash 3.5s linear infinite; }
@keyframes flow-dash { to { stroke-dashoffset: -55; } }

.bento-cell { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 20px; overflow: hidden; position: relative; transition: border-color var(--mid); }
.bento-cell:hover { border-color: var(--border-light); }

.cell-eye { font: 700 0.65rem/1 var(--font); letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-sec); margin-bottom: 6px; }
.cell-title { font: 700 0.95rem/1 var(--font); color: var(--text); margin-bottom: 16px; }

.cell-mcp { grid-column: 1; grid-row: 1; }
.mcp-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; }
.mcp-tile { padding: 4px; border-radius: 4px; background: var(--bg-elevated); border: 1px solid var(--border-light); display: flex; align-items: center; justify-content: center; height: 32px; cursor: pointer; transition: all var(--fast); user-select: none; }
.mcp-tile img { width: 14px; height: 14px; object-fit: contain; filter: brightness(0) invert(1) opacity(0.6); transition: filter var(--fast); }
.mcp-tile.on img, .mcp-tile.pulse img { filter: brightness(0) invert(1) opacity(1) drop-shadow(0 0 2px rgba(255,255,255,0.5)); }
.mcp-tile.on { background: var(--accent-dim); border-color: var(--accent-border); }
.mcp-tile.pulse { background: var(--accent-dim); border-color: var(--accent); box-shadow: 0 0 8px var(--accent-glow); }

.cell-docs { grid-column: 1; grid-row: 2; }
.docs-lines { display: flex; flex-direction: column; gap: 12px; }
.docs-row { display: flex; align-items: center; gap: 10px; font-size: 0.75rem; color: var(--text-sec); }
.docs-label { white-space: nowrap; min-width: 82px; font-family: var(--font-mono); }
.docs-bar { flex: 1; height: 4px; background: var(--bg-elevated); border-radius: var(--r-pill); overflow: hidden; }
.docs-fill { height: 100%; background: var(--accent); border-radius: var(--r-pill); opacity: 0.8; }
.docs-pct { font-family: var(--font-mono); min-width: 26px; text-align: right; }

.cell-router { grid-column: 2; grid-row: 1; display: flex; flex-direction: column; gap: 12px; padding: 24px; }
.router-head { display: flex; align-items: center; justify-content: space-between; }
.badge-live { font: normal 0.6rem/1 var(--font-mono); color: var(--success); background: rgba(91,179,128,0.1); border: 1px solid rgba(91,179,128,0.25); border-radius: var(--r-pill); padding: 4px 8px; letter-spacing: 0.05em; }
.router-body { flex: 1; display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
.chat-msg { display: flex; flex-direction: column; gap: 4px; padding: 10px 12px; border-radius: var(--r-sm); font-size: 0.8rem; line-height: 1.5; }
.chat-role { font: 700 0.6rem/1 var(--font); letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-sec); }
.user-msg { background: var(--bg-elevated); color: var(--text-sec); }
.system-msg { background: var(--accent-dim); border: 1px solid var(--accent-border); color: var(--text-sec); }
.assistant-msg { background: var(--bg-surface); color: var(--text-sec); }
.router-footer { display: flex; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border); }
.router-stat { font: normal 0.8rem/1 var(--font-mono); color: var(--text-sec); }

.cell-llm { grid-column: 3; grid-row: 1; }
.llm-list { display: flex; flex-direction: column; gap: 6px; }
.llm-row { display: flex; align-items: center; gap: 8px; font-size: 0.65rem; }
.llm-name { font-family: var(--font-mono); color: var(--text-sec); min-width: 90px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: flex; align-items: center; gap: 6px; }
.llm-bar { flex: 1; height: 4px; background: var(--bg-elevated); border-radius: var(--r-pill); overflow: hidden; }
.llm-fill { height: 100%; background: linear-gradient(to right, var(--accent), var(--accent-h)); border-radius: var(--r-pill); }
.llm-score { font-family: var(--font-mono); color: var(--accent); min-width: 20px; text-align: right; }

.mbadge { display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; border-radius: 4px; background: #fff; flex-shrink: 0; overflow: hidden; padding: 2px; }
.mbadge img { width: 100%; height: 100%; object-fit: contain; }
.mbadge-invert { background: #111; }

.cell-agents { grid-column: 3; grid-row: 2; }
.agents-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.agent-pill { font: normal 0.65rem/1 var(--font-mono); padding: 4px 10px; border-radius: var(--r-pill); background: var(--bg-elevated); border: 1px solid var(--border-light); color: var(--text-sec); }
.agent-pill.on { background: var(--accent-dim); border-color: var(--accent-border); color: var(--accent); }
.agent-pill.on::before { content: '● '; font-size: 0.5rem; }

/* ----------------------------------------------------- Voice Section */
.voice-section { padding: var(--py) 0; }

.showcase-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.showcase-rev { direction: rtl; }
.showcase-rev > * { direction: ltr; }
.showcase-text { max-width: 520px; }

.showcase-heading { font: 700 clamp(1.75rem,3.5vw,2.25rem)/1.1 var(--font); letter-spacing: -0.015em; margin-bottom: 16px; }
.showcase-sub { color: var(--text-sec); font-size: 1rem; line-height: 1.65; margin-bottom: 28px; }

.product-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}
.card-glow { --cx: 50%; --cy: 50%; }
.card-glow::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--cx) var(--cy), var(--accent-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--mid);
  pointer-events: none;
  border-radius: inherit;
}
.card-glow:hover::before { opacity: 1; }

.pp-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.pp-eye { font: 700 0.7rem/1 var(--font); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

.voice-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.voice-chip { font-size: 0.75rem; padding: 6px 12px; border-radius: var(--r-pill); background: var(--bg-elevated); border: 1px solid var(--border); color: var(--text-sec); }
.voice-selected { background: var(--accent); color: #000; border-color: var(--accent); }
.voice-ghost { background: transparent; border-style: dashed; }

.voice-wave { display: block; width: 100%; max-width: 100%; height: 56px; margin-bottom: 32px; overflow: hidden; }

.voice-transcript { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.vt-row { display: flex; flex-direction: column; gap: 4px; font-size: 0.85rem; }
.vt-role { font: 700 0.6rem/1 var(--font); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.vt-text { color: var(--text-sec); }
.vt-escalation { margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--border); font-size: 0.7rem; color: var(--text-muted); display: flex; justify-content: space-between; }

/* ----------------------------------------------------- Agents Section */
.agents-section { padding: var(--py) 0; }

.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-steps { display: flex; flex-direction: column; }

.step { display: flex; gap: 24px; margin-bottom: 48px; opacity: 0.35; transition: opacity 0.45s ease; }
.step.active, .step.completed { opacity: 1; }
.step-number {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; flex-shrink: 0;
  transition: background 0.35s, border-color 0.35s, color 0.35s, box-shadow 0.35s;
}
.step.active .step-number { background: var(--accent-dim); border-color: var(--accent-border); color: var(--accent); animation: step-pulse 1.8s ease-in-out infinite; }
.step.completed .step-number { background: var(--accent-dim); border-color: var(--accent-border); color: var(--accent); }
@keyframes step-pulse { 0%,100% { box-shadow: 0 0 0 0 var(--accent-glow); } 50% { box-shadow: 0 0 0 8px transparent; } }
.step-content h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step-content p { color: var(--text-sec); font-size: 0.95rem; }

.terminal {
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}
.terminal-header { background: #111; padding: 12px 16px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--border); }
.terminal-dot { width: 12px; height: 12px; border-radius: 50%; }
.terminal-dot.red    { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green  { background: #27c93f; }
.terminal-title { margin: 0 auto; color: var(--text-muted); font: normal 0.82rem/1 var(--font); }
.terminal-body { padding: 24px; font: normal 0.88rem/1.6 var(--font-mono); color: var(--text); overflow-x: auto; white-space: nowrap; min-height: 168px; }

.term-prompt { color: #50fa7b; margin-right: 8px; }
.term-line { margin-bottom: 10px; white-space: nowrap; animation: line-in 0.22s ease forwards; }
@keyframes line-in { from { opacity: 0; transform: translateX(-6px); } to { opacity: 1; transform: none; } }
.term-ok   { color: #50fa7b; }
.term-info { color: var(--text-sec); }
.term-cursor { display: inline-block; width: 2px; height: 0.92em; background: var(--accent); border-radius: 1px; animation: blink 0.85s step-end infinite; vertical-align: text-bottom; margin-left: 1px; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* ----------------------------------------------------- Integrations */
.integrations-section { padding: var(--py) 0; }
.integrations-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.integration-card { height: 100px; background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font: 700 1rem/1 var(--font); color: var(--text-sec); transition: all var(--mid); cursor: default; }
.integration-card:hover { border-color: var(--border-light); background: rgba(255,255,255,0.05); color: var(--text); }

/* ----------------------------------------------------- Deep Dive */
.deep-section { padding: var(--py) 0; }

.deep-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,96px); align-items: center; margin-bottom: clamp(80px,12vh,140px); }
.deep-row:last-child { margin-bottom: 0; }
.deep-row-rev { direction: rtl; }
.deep-row-rev > * { direction: ltr; }

.deep-text h2 { font: 700 clamp(1.75rem,3.5vw,2.25rem)/1.1 var(--font); letter-spacing: -0.015em; margin-bottom: 18px; }
.deep-text > p { color: var(--text-sec); font-size: 1rem; line-height: 1.7; margin-bottom: 28px; }

.visual-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

.approval-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.queue-count { font: 700 10px/1 var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.approval-list { display: flex; flex-direction: column; }
.approval-item { padding: 14px 0; border-bottom: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
.approval-item:last-child { border-bottom: none; }
.appr-query { font-size: 0.85rem; color: var(--text-sec); }
.appr-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.risk-pill { font: 700 9px/1 var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 9px; border-radius: var(--r-pill); flex-shrink: 0; }
.risk-high { background: rgba(228,50,43,0.12); border: 1px solid rgba(228,50,43,0.30); color: var(--red); }
.risk-med  { background: var(--accent-dim); border: 1px solid var(--accent-border); color: var(--accent); }
.risk-low  { background: rgba(91,179,128,0.10); border: 1px solid rgba(91,179,128,0.25); color: var(--success); }
.appr-btns { display: flex; gap: 6px; }
.appr-yes, .appr-no { font: 700 9px/1 var(--font); letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--r-pill); transition: all var(--fast); }
.appr-yes { background: rgba(91,179,128,0.12); border: 1px solid rgba(91,179,128,0.25); color: var(--success); }
.appr-yes:hover { background: rgba(91,179,128,0.22); }
.appr-no  { background: var(--bg-elevated); border: 1px solid var(--border); color: var(--text-muted); }
.appr-no:hover { border-color: var(--border-light); color: var(--text); }
.approval-footer { margin-top: 12px; font: normal 0.7rem/1 var(--font-mono); color: var(--text-muted); }

.model-mkt-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mkt-savings { font: 700 10px/1 var(--font-mono); letter-spacing: 0.08em; }
.mkt-filters { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.mkt-filter { font: 700 9px/1 var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 10px; border-radius: var(--r-pill); border: 1px solid var(--border); color: var(--text-muted); cursor: pointer; transition: all var(--fast); }
.mkt-filter-active { background: var(--accent-dim); border-color: var(--accent-border); color: var(--accent); }
.mkt-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-bottom: 14px; }
.mkt-tile { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 10px; display: flex; flex-direction: column; gap: 4px; opacity: 0.5; transition: opacity var(--fast); }
.mkt-on { opacity: 1; border-color: var(--border-light); }
.mkt-provider { font: 700 8px/1 var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.mkt-model { font: 700 0.8rem/1 var(--font); color: var(--text); }
.mkt-meta { font: normal 0.65rem/1 var(--font-mono); color: var(--text-muted); }
.mkt-footer { font: normal 0.7rem/1 var(--font-mono); color: var(--text-muted); padding-top: 10px; border-top: 1px solid var(--border); }

/* ----------------------------------------------------- CTA */
.cta-section { padding: var(--py) 0 clamp(6rem,12vh,10rem); }
.cta-box {
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-2xl);
  padding: clamp(48px,8vw,96px) clamp(32px,6vw,80px);
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-glow {
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 220px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.cta-content h2 { font: 700 clamp(2rem,5vw,3rem)/1.05 var(--font); letter-spacing: -0.02em; margin-bottom: 14px; }
.cta-content > p { color: var(--text-sec); font-size: 1.05rem; margin-bottom: 40px; max-width: 420px; line-height: 1.65; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ----------------------------------------------------- Footer */
.footer { border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-inner { display: flex; justify-content: space-between; gap: 64px; margin-bottom: 48px; }
.footer-brand-name { display: block; font: 700 1.1rem/1 var(--font); letter-spacing: 0.04em; margin-bottom: 12px; }
.footer-brand p { color: var(--text-muted); font-size: 0.875rem; max-width: 240px; line-height: 1.6; }
.footer-links { display: flex; gap: 56px; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em; margin-bottom: 20px; }
.footer-col a { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; transition: color var(--fast); }
.footer-col a:hover { color: var(--text); }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); padding-top: 24px; border-top: 1px solid var(--border); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.social-link { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--text-muted); transition: all var(--fast); }
.social-link:hover { background: rgba(255,255,255,0.1); border-color: var(--border-light); color: var(--text); }

/* ----------------------------------------------------- Hamburger + Mobile Menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--mid), opacity var(--mid);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(3,3,3,0.97);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 100px 40px 60px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font: 700 1.6rem/1 var(--font);
  color: var(--text-sec);
  letter-spacing: -0.01em;
  padding: 20px 0;
  width: 100%;
  max-width: 320px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  transition: color var(--fast);
}
.mobile-link:first-child { border-top: 1px solid var(--border); }
.mobile-link:hover { color: var(--text); }
.mobile-menu-actions {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
}
.mobile-menu-actions .btn { width: 100%; justify-content: center; padding: 14px 24px; font-size: 1rem; }

/* ----------------------------------------------------- Responsive */
@media (max-width: 1024px) {
  .bento { grid-template-columns: 1fr 1.4fr 1fr; }
  .split-layout { gap: 40px; }
}

@media (max-width: 900px) {
  .deep-row, .deep-row-rev {
    direction: ltr;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: clamp(60px,8vh,100px);
  }
  .showcase-row { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .showcase-text { max-width: 100%; }
  .split-layout { grid-template-columns: 1fr; gap: 40px; }
  .split-steps { order: 2; }
  .split-visual { order: 1; }
}

@media (max-width: 768px) {
  .nav-pill { display: none; }
  .nav-hide-mobile { display: none; }
  .nav-btn-primary { display: none; }
  .nav-hamburger { display: flex; }
  .nav-header { padding: 14px 20px; }

  .hero-img { object-position: 70% center; }
  .hero-overlay {
    background:
      linear-gradient(to bottom, rgba(3,3,3,0.80) 0%, rgba(3,3,3,0.50) 45%, rgba(3,3,3,0.92) 100%),
      linear-gradient(to right,  rgba(3,3,3,0.95) 0%, rgba(3,3,3,0.60) 55%, rgba(3,3,3,0.10) 100%);
  }
  .hero-inner { max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }

  .bento { display: flex; flex-direction: column; }
  .bento-svg { display: none; }
  .cell-router { order: -1; min-height: 320px; }
  .cell-mcp { order: 0; }
  .cell-docs { order: 1; }
  .cell-llm { order: 2; }
  .cell-agents { order: 3; }
  .mcp-grid { grid-template-columns: repeat(4,1fr); }

  .integrations-grid { grid-template-columns: repeat(2,1fr); }

  .terminal-body { font-size: 0.78rem; padding: 16px; min-height: 220px; }

  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
}

@media (max-width: 600px) {
  .section-header { margin-bottom: 40px; }
  .mkt-grid { grid-template-columns: repeat(2,1fr); }
  .mcp-grid { grid-template-columns: repeat(3,1fr); }
  .appr-meta { flex-wrap: wrap; gap: 8px; }
  .appr-btns { margin-left: auto; }
  .integrations-grid { grid-template-columns: repeat(2,1fr); }
  .voice-chips { gap: 6px; }
  .voice-chip { font-size: 0.7rem; padding: 5px 10px; }
}

@media (max-width: 480px) {
  .nav-header { padding: 12px 16px; }
  .brand-mark { width: 38px; height: 38px; }

  .hero-title { font-size: clamp(2rem,9vw,2.8rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-inner { padding-top: clamp(110px,20vh,160px); }

  .bento-cell { padding: 16px; }
  .cell-router { min-height: 280px; }
  .mcp-grid { grid-template-columns: repeat(3,1fr); }
  .llm-name { min-width: 70px; font-size: 0.6rem; }

  .step { gap: 16px; margin-bottom: 36px; }
  .step-number { width: 34px; height: 34px; font-size: 0.9rem; }
  .step-content h3 { font-size: 1rem; }

  .terminal-body { font-size: 0.72rem; padding: 14px; }

  .integrations-grid { gap: 10px; }
  .integration-card { height: 80px; font-size: 0.875rem; }

  .mkt-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .mkt-model { font-size: 0.72rem; }

  .approval-item { padding: 12px 0; }
  .appr-query { font-size: 0.8rem; }

  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }

  .footer-links { gap: 24px; }
  .footer-col h4 { margin-bottom: 14px; }
}
