@view-transition { navigation: auto; }

:root {
  --bg: #f5f5f7;
  --paper: #ffffff;
  --ink: #0b0b0d;
  --ink-2: #1d1d1f;
  --muted: #6e6e73;
  --muted-2: #8e8e93;
  --line: rgba(18, 18, 22, .12);
  --line-dark: rgba(255, 255, 255, .12);
  --black: #000000;
  --violet: #7c3aed;
  --blue: #3b82f6;
  --cyan: #22d3ee;
  --aurora: linear-gradient(115deg, #8b5cf6 0%, #3b82f6 48%, #22d3ee 100%);
  --aurora-soft: linear-gradient(135deg, rgba(124,58,237,.22), rgba(59,130,246,.18) 48%, rgba(34,211,238,.16));
  --shadow-sm: 0 8px 30px rgba(0,0,0,.07);
  --shadow-md: 0 22px 70px rgba(0,0,0,.12);
  --shadow-lg: 0 45px 120px rgba(0,0,0,.2);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --radius-xl: 48px;
  --max: 1280px;
  --ease: cubic-bezier(.2,.75,.25,1);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
::selection { background: rgba(99,102,241,.22); }

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
  color: #000;
  box-shadow: var(--shadow-md);
  transition: top .2s;
}
.skip-link:focus { top: 18px; }

.shell { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.shell--narrow { width: min(calc(100% - 48px), 980px); margin-inline: auto; }
.section { position: relative; padding: 150px 0; }
.section--tight { padding: 96px 0; }
.section--white { background: #fff; }
.section--black { background: #000; color: #fff; }
.section--paper { background: var(--bg); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--aurora);
  box-shadow: 0 0 18px rgba(99,102,241,.6);
}
.eyebrow--light { color: rgba(255,255,255,.62); }

.gradient-text {
  background: var(--aurora);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.button {
  --button-bg: #111114;
  --button-color: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--button-bg);
  color: var(--button-color);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -.01em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(255,255,255,.18), transparent 38%, transparent 62%, rgba(255,255,255,.12));
  transform: translateX(-110%);
  transition: transform .7s var(--ease);
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,.18); }
.button:hover::before { transform: translateX(110%); }
.button:active { transform: translateY(0) scale(.985); }
.button--light { --button-bg: #fff; --button-color: #0b0b0d; }
.button--soft { --button-bg: rgba(17,17,20,.07); --button-color: #111114; }
.button--outline { --button-bg: transparent; --button-color: #111114; border: 1px solid rgba(17,17,20,.18); }
.button--outline-light { --button-bg: transparent; --button-color: #fff; border: 1px solid rgba(255,255,255,.22); }
.button--small { min-height: 40px; padding-inline: 17px; font-size: 13px; }
.button .arrow { transition: transform .25s var(--ease); }
.button:hover .arrow { transform: translateX(3px); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 650;
  color: var(--ink-2);
}
.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span { transform: translateX(4px); }
.text-link--light { color: #fff; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(245,245,247,.72);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  transition: background .35s, border-color .35s, transform .35s var(--ease);
}
.site-header.is-scrolled { background: rgba(245,245,247,.9); border-color: rgba(0,0,0,.08); }
.header-inner { min-height: 76px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; justify-self: start; }
.brand-symbol { width: 40px; height: 40px; flex: 0 0 auto; }
.brand-lockup { width: 228px; height: auto; flex: 0 0 auto; mix-blend-mode: multiply; object-fit: contain; }
.brand-symbol--faith { width: 54px; height: 54px; mix-blend-mode: multiply; object-fit: contain; }
.brand-word.brand-word--doxazo { font-family: Georgia, "Times New Roman", serif; font-size: 25px; font-weight: 400; letter-spacing: .13em; text-transform: uppercase; }
.brand-story-mark img { mix-blend-mode: multiply; }
.brand-story-mark::before, .brand-story-mark::after { display: none; }
.brand-word {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .19em;
  white-space: nowrap;
}
.primary-nav { display: flex; align-items: center; gap: 31px; justify-self: center; }
.primary-nav a { position: relative; font-size: 13px; color: rgba(17,17,20,.72); transition: color .2s; }
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: #111;
  transition: right .3s var(--ease);
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: #000; }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(17,17,20,.06);
  cursor: pointer;
}
.menu-toggle span { display: block; width: 17px; height: 1.5px; margin: 5px auto; background: #111; transition: transform .25s, opacity .25s; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  align-content: center;
  padding: 110px 24px 40px;
  background: rgba(245,245,247,.98);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .3s, visibility .3s, transform .3s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu nav { display: grid; gap: 3px; }
.mobile-menu nav a { display: flex; align-items: center; justify-content: space-between; padding: 17px 0; border-bottom: 1px solid var(--line); font-size: clamp(34px, 9vw, 56px); font-weight: 650; letter-spacing: -.04em; }
.mobile-menu nav small { font-size: 11px; letter-spacing: .12em; color: var(--muted); }
.mobile-menu-footer { margin-top: 42px; display: flex; justify-content: space-between; align-items: end; gap: 24px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.mobile-menu-footer p { max-width: 330px; }

/* Hero */
.hero {
  position: relative;
  padding: 150px 0 70px;
  background:
    radial-gradient(circle at 50% 15%, rgba(124,58,237,.08), transparent 30%),
    radial-gradient(circle at 85% 35%, rgba(34,211,238,.08), transparent 28%),
    var(--bg);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 64px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.08), transparent);
}
.hero-copy { position: relative; z-index: 2; max-width: 1040px; margin: 0 auto; text-align: center; }
.hero h1 {
  margin: 24px auto 0;
  max-width: 1060px;
  font-size: clamp(64px, 8.25vw, 118px);
  line-height: .91;
  font-weight: 740;
  letter-spacing: -.065em;
}
.hero-lede {
  max-width: 760px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
  letter-spacing: -.018em;
}
.hero-actions { margin-top: 32px; display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-proof {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 12px;
}
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof i { width: 4px; height: 4px; border-radius: 50%; background: #b0b0b4; }

.product-theater {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), 1240px);
  min-height: 720px;
  margin: 76px auto 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 42px;
  background: #050506;
  color: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  isolation: isolate;
  transform: perspective(1600px) rotateX(var(--theater-rx, 0deg)) rotateY(var(--theater-ry, 0deg));
  transition: transform .25s ease-out;
}
.product-theater::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -3;
  background:
    radial-gradient(circle at 18% 32%, rgba(124,58,237,.35), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(34,211,238,.22), transparent 22%),
    radial-gradient(circle at 60% 85%, rgba(59,130,246,.2), transparent 28%);
  filter: blur(20px);
}
.product-theater::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 92%);
}
#cosmos-canvas { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; opacity: .78; }
.theater-topbar {
  height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.32);
  backdrop-filter: blur(18px);
}
.theater-status { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 10px; letter-spacing: .1em; color: rgba(255,255,255,.55); }
.theater-status i { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 14px rgba(74,222,128,.85); }
.demo-tabs { display: flex; align-items: center; gap: 4px; padding: 4px; border-radius: 999px; background: rgba(255,255,255,.07); }
.demo-tab { border: 0; border-radius: 999px; padding: 8px 16px; background: transparent; color: rgba(255,255,255,.55); font-size: 11px; font-weight: 700; letter-spacing: .08em; cursor: pointer; transition: background .25s, color .25s; }
.demo-tab.active { color: #050506; background: #fff; }
.theater-clock { justify-self: end; font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,.42); }
.demo-viewport { position: relative; min-height: 650px; padding: 50px; }
.demo-panel { position: absolute; inset: 50px; display: grid; grid-template-columns: .72fr 1.28fr; gap: 44px; align-items: center; opacity: 0; visibility: hidden; transform: translateY(18px) scale(.985); transition: opacity .6s var(--ease), visibility .6s, transform .6s var(--ease); }
.demo-panel.active { opacity: 1; visibility: visible; transform: none; }
.demo-panel-copy { align-self: center; max-width: 380px; }
.demo-panel-copy .demo-index { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: rgba(255,255,255,.45); }
.demo-panel-copy h2 { margin: 20px 0 0; font-size: clamp(38px, 4.4vw, 62px); line-height: .98; letter-spacing: -.05em; }
.demo-panel-copy p { margin-top: 22px; color: rgba(255,255,255,.62); font-size: 15px; line-height: 1.65; }
.demo-stack { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 25px; }
.demo-stack span { padding: 7px 9px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: rgba(255,255,255,.58); font-family: var(--mono); font-size: 9px; }
.demo-device-wrap { position: relative; min-height: 520px; display: grid; place-items: center; }

/* Demo UI: common */
.browser-window, .app-window, .assistant-window {
  position: relative;
  width: min(100%, 690px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background: rgba(248,248,250,.98);
  color: #111;
  box-shadow: 0 35px 90px rgba(0,0,0,.45);
  overflow: hidden;
}
.window-bar { height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 14px; border-bottom: 1px solid rgba(0,0,0,.08); background: rgba(255,255,255,.94); }
.window-dot { width: 8px; height: 8px; border-radius: 50%; background: #d7d7db; }
.window-address { margin-left: 8px; height: 22px; flex: 1; border-radius: 999px; background: #f1f1f3; display: flex; align-items: center; justify-content: center; font-size: 8px; color: #8c8c91; }
.window-badge { padding: 5px 7px; border-radius: 7px; background: #111; color: #fff; font-family: var(--mono); font-size: 7px; }

.web-demo-body { display: grid; grid-template-columns: 1fr .88fr; min-height: 410px; background: #f7f7f8; }
.web-demo-copy { padding: 44px 34px; }
.web-demo-brand { font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.web-demo-copy h3 { margin: 54px 0 0; max-width: 280px; font-size: 39px; line-height: .95; letter-spacing: -.055em; }
.web-demo-copy p { margin-top: 15px; max-width: 260px; color: #77777c; font-size: 10px; line-height: 1.55; }
.web-demo-cta { display: inline-flex; margin-top: 20px; padding: 9px 13px; border-radius: 999px; background: #111; color: #fff; font-size: 8px; font-weight: 700; }
.web-demo-product { position: relative; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg,#d9ddff,#d8fbff); }
.web-demo-product::before { content: ""; position: absolute; width: 210px; height: 210px; border-radius: 50%; background: radial-gradient(circle at 35% 25%, #fff, #8496ff 45%, #342a9d 72%); filter: saturate(.9); box-shadow: 0 30px 70px rgba(46,41,129,.28); }
.web-demo-product::after { content: ""; position: absolute; width: 250px; height: 72px; bottom: 38px; border-radius: 50%; background: rgba(255,255,255,.48); filter: blur(8px); }
.device-phone { position: absolute; right: -22px; bottom: 4px; width: 150px; height: 310px; border: 7px solid #151517; border-radius: 31px; background: #f8f8fa; box-shadow: 0 28px 70px rgba(0,0,0,.35); overflow: hidden; transform: rotate(5deg); }
.device-phone::before { content: ""; position: absolute; z-index: 3; width: 56px; height: 14px; top: 8px; left: 50%; transform: translateX(-50%); border-radius: 999px; background: #151517; }
.phone-content { padding: 30px 12px 12px; }
.phone-nav { width: 62px; height: 5px; border-radius: 999px; background: #1b1b1d; }
.phone-hero { margin-top: 14px; height: 148px; border-radius: 17px; background: linear-gradient(145deg,#d9ddff,#d8fbff); display: grid; place-items: center; }
.phone-orb { width: 76px; height: 76px; border-radius: 50%; background: radial-gradient(circle at 35% 25%, #fff, #8496ff 45%, #342a9d 72%); }
.phone-lines { margin-top: 16px; display: grid; gap: 7px; }
.phone-lines i { height: 5px; border-radius: 999px; background: #dadade; }
.phone-lines i:nth-child(2) { width: 72%; }

.app-window { width: min(100%, 720px); background: #0e0f12; color: #fff; }
.app-window .window-bar { background: #16171b; border-color: rgba(255,255,255,.08); }
.app-window .window-address { background: rgba(255,255,255,.07); color: rgba(255,255,255,.38); }
.dashboard-body { min-height: 450px; display: grid; grid-template-columns: 155px 1fr; }
.dashboard-sidebar { padding: 22px 15px; border-right: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.018); }
.dashboard-logo { display: flex; align-items: center; gap: 8px; font-size: 9px; font-weight: 750; }
.dashboard-logo i { width: 19px; height: 19px; border-radius: 6px; background: var(--aurora); }
.dashboard-nav { margin-top: 30px; display: grid; gap: 7px; }
.dashboard-nav span { display: flex; align-items: center; gap: 8px; padding: 9px; border-radius: 8px; color: rgba(255,255,255,.38); font-size: 8px; }
.dashboard-nav span.active { color: #fff; background: rgba(255,255,255,.08); }
.dashboard-nav i { width: 7px; height: 7px; border: 1px solid currentColor; border-radius: 2px; }
.dashboard-main { padding: 24px; }
.dashboard-heading { display: flex; justify-content: space-between; align-items: center; }
.dashboard-heading h4 { margin: 0; font-size: 16px; }
.dashboard-heading button { border: 0; border-radius: 8px; padding: 8px 10px; background: #fff; color: #111; font-size: 8px; font-weight: 700; }
.metric-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 19px; }
.metric-card { padding: 15px; border: 1px solid rgba(255,255,255,.09); border-radius: 13px; background: rgba(255,255,255,.035); }
.metric-card small { color: rgba(255,255,255,.38); font-size: 7px; }
.metric-card strong { display: block; margin-top: 9px; font-size: 20px; }
.metric-card em { display: inline-block; margin-top: 7px; color: #4ade80; font-size: 7px; font-style: normal; }
.dashboard-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 10px; margin-top: 10px; }
.chart-card, .queue-card { min-height: 222px; padding: 15px; border: 1px solid rgba(255,255,255,.09); border-radius: 13px; background: rgba(255,255,255,.035); }
.chart-head { display: flex; justify-content: space-between; font-size: 8px; color: rgba(255,255,255,.5); }
.chart-svg { width: 100%; height: 150px; margin-top: 18px; overflow: visible; }
.chart-path { stroke-dasharray: 430; stroke-dashoffset: 430; animation: drawChart 2.5s var(--ease) forwards; }
@keyframes drawChart { to { stroke-dashoffset: 0; } }
.queue-card h5 { margin: 0; font-size: 9px; }
.queue-list { display: grid; gap: 8px; margin-top: 15px; }
.queue-item { display: grid; grid-template-columns: 24px 1fr auto; align-items: center; gap: 8px; }
.queue-avatar { width: 24px; height: 24px; border-radius: 8px; background: linear-gradient(135deg,#8b5cf6,#22d3ee); }
.queue-copy b { display: block; font-size: 7px; }
.queue-copy span { display: block; margin-top: 3px; color: rgba(255,255,255,.34); font-size: 6px; }
.queue-state { padding: 4px 6px; border-radius: 999px; background: rgba(74,222,128,.1); color: #4ade80; font-size: 5px; }

.assistant-window { width: min(100%, 680px); background: #f7f7f8; }
.assistant-body { min-height: 450px; display: grid; grid-template-columns: 180px 1fr; }
.assistant-sidebar { padding: 19px 14px; border-right: 1px solid rgba(0,0,0,.08); background: #fff; }
.assistant-sidebar strong { font-size: 9px; }
.assistant-new { margin-top: 18px; padding: 9px 10px; border-radius: 8px; background: #111; color: #fff; font-size: 7px; }
.assistant-history { margin-top: 20px; display: grid; gap: 6px; }
.assistant-history span { padding: 8px; border-radius: 8px; color: #85858a; font-size: 7px; }
.assistant-history span.active { background: #f1f1f3; color: #111; }
.assistant-chat { display: flex; flex-direction: column; padding: 20px; }
.chat-heading { display: flex; justify-content: space-between; align-items: center; }
.chat-heading b { font-size: 11px; }
.chat-heading span { padding: 5px 7px; border-radius: 999px; background: #e8fff0; color: #18864b; font-size: 6px; }
.chat-thread { flex: 1; display: grid; align-content: start; gap: 11px; margin-top: 22px; }
.chat-bubble { max-width: 82%; padding: 11px 13px; border-radius: 13px; font-size: 8px; line-height: 1.55; }
.chat-bubble.user { justify-self: end; background: #111; color: #fff; border-bottom-right-radius: 4px; }
.chat-bubble.ai { background: #fff; border: 1px solid rgba(0,0,0,.08); border-bottom-left-radius: 4px; }
.tool-call { display: grid; grid-template-columns: 26px 1fr auto; gap: 9px; align-items: center; padding: 10px; border: 1px solid rgba(99,102,241,.18); border-radius: 12px; background: linear-gradient(135deg, rgba(124,58,237,.05), rgba(34,211,238,.06)); }
.tool-icon { width: 26px; height: 26px; border-radius: 8px; background: var(--aurora); }
.tool-copy b { display: block; font-family: var(--mono); font-size: 7px; }
.tool-copy span { color: #7f7f85; font-family: var(--mono); font-size: 6px; }
.tool-status { color: #18a05d; font-size: 6px; }
.product-results { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }
.product-result { padding: 8px; border: 1px solid rgba(0,0,0,.08); border-radius: 10px; background: #fff; }
.product-thumb { height: 52px; border-radius: 7px; background: linear-gradient(145deg,#e3e6ff,#e0fbff); }
.product-result b { display: block; margin-top: 7px; font-size: 6px; }
.product-result span { display: block; margin-top: 3px; color: #777; font-size: 5px; }
.chat-input { height: 36px; display: flex; align-items: center; justify-content: space-between; padding: 0 10px; border: 1px solid rgba(0,0,0,.1); border-radius: 10px; background: #fff; color: #999; font-size: 7px; }
.chat-send { width: 23px; height: 23px; display: grid; place-items: center; border-radius: 7px; background: #111; color: #fff; }

/* Intro and headings */
.section-heading { display: grid; grid-template-columns: minmax(0,1fr) minmax(300px, .48fr); gap: 72px; align-items: end; margin-bottom: 64px; }
.section-heading h2 { margin: 14px 0 0; max-width: 820px; font-size: clamp(48px, 6.2vw, 86px); line-height: .96; letter-spacing: -.055em; }
.section-heading > p { color: var(--muted); font-size: 16px; line-height: 1.65; }
.section-heading--light > p { color: rgba(255,255,255,.56); }
.section-heading--light h2 { color: #fff; }

.promise-strip { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.promise-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.promise-item { min-height: 210px; padding: 38px 28px; border-right: 1px solid var(--line); }
.promise-item:last-child { border-right: 0; }
.promise-item span { font-family: var(--mono); font-size: 10px; color: var(--muted); }
.promise-item strong { display: block; margin-top: 55px; font-size: 22px; line-height: 1.15; letter-spacing: -.025em; }
.promise-item p { margin-top: 10px; color: var(--muted); font-size: 13px; line-height: 1.55; }

/* Projects */
.project-stack { display: grid; gap: 28px; }
.project-story {
  position: relative;
  min-height: 680px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.project-story--dark { background: #070708; color: #fff; }
.project-story--light { background: #fff; color: #111; }
.project-story--mist { background: linear-gradient(145deg,#f0f1ff,#eefcff); color: #111; }
.project-layout { min-height: inherit; display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 40px; padding: 72px; }
.project-copy { position: relative; z-index: 3; max-width: 410px; }
.project-number { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; color: currentColor; opacity: .45; }
.project-copy h3 { margin: 25px 0 0; font-size: clamp(44px,5vw,72px); line-height: .96; letter-spacing: -.055em; }
.project-copy p { margin-top: 22px; color: rgba(255,255,255,.58); font-size: 15px; line-height: 1.65; }
.project-story--light .project-copy p, .project-story--mist .project-copy p { color: var(--muted); }
.project-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 26px; }
.project-meta span { padding: 7px 9px; border: 1px solid currentColor; border-radius: 999px; opacity: .56; font-family: var(--mono); font-size: 8px; }
.project-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.project-story--dark::before { content: ""; position: absolute; width: 520px; height: 520px; right: -110px; top: -170px; border-radius: 50%; background: radial-gradient(circle, rgba(124,58,237,.34), transparent 67%); filter: blur(4px); }

.retail-ui { position: relative; width: min(100%, 710px); height: 490px; border-radius: 28px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06); box-shadow: 0 38px 90px rgba(0,0,0,.42); overflow: hidden; backdrop-filter: blur(22px); }
.retail-top { height: 54px; display: flex; justify-content: space-between; align-items: center; padding: 0 18px; border-bottom: 1px solid rgba(255,255,255,.1); }
.retail-brand { font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.retail-live { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.46); font-family: var(--mono); font-size: 7px; }
.retail-live i { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 10px #4ade80; }
.retail-body { height: calc(100% - 54px); display: grid; grid-template-columns: 1fr 1.2fr; }
.retail-chat { padding: 24px; border-right: 1px solid rgba(255,255,255,.1); }
.retail-chat h4 { margin: 0; font-size: 24px; letter-spacing: -.035em; }
.retail-chat p { margin-top: 10px; color: rgba(255,255,255,.5); font-size: 9px; line-height: 1.6; }
.retail-thread { margin-top: 28px; display: grid; gap: 10px; }
.retail-message { padding: 12px; border-radius: 12px; font-size: 8px; line-height: 1.5; }
.retail-message.user { margin-left: 34px; background: #fff; color: #111; }
.retail-message.ai { margin-right: 24px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.82); }
.retail-tool { display: flex; align-items: center; gap: 9px; padding: 10px; border: 1px solid rgba(34,211,238,.2); border-radius: 11px; background: rgba(34,211,238,.06); }
.retail-tool i { width: 22px; height: 22px; border-radius: 7px; background: var(--aurora); }
.retail-tool b { display: block; font-family: var(--mono); font-size: 6px; }
.retail-tool span { color: rgba(255,255,255,.42); font-family: var(--mono); font-size: 5px; }
.retail-results { padding: 22px; display: grid; align-content: start; }
.retail-results-head { display: flex; justify-content: space-between; align-items: center; }
.retail-results-head b { font-size: 11px; }
.retail-results-head span { color: rgba(255,255,255,.4); font-size: 7px; }
.retail-product-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-top: 15px; }
.retail-product { padding: 10px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: rgba(255,255,255,.05); }
.retail-product-image { height: 105px; border-radius: 10px; background: linear-gradient(135deg,#222436,#0c0d12); position: relative; overflow: hidden; }
.retail-product-image::before { content: ""; position: absolute; inset: 18px; border-radius: 4px; border: 3px solid rgba(255,255,255,.75); background: linear-gradient(135deg,rgba(124,58,237,.8),rgba(34,211,238,.4)); }
.retail-product b { display: block; margin-top: 9px; font-size: 7px; }
.retail-product span { display: block; margin-top: 4px; color: rgba(255,255,255,.4); font-size: 6px; }
.retail-product button { width: 100%; margin-top: 9px; padding: 7px; border: 0; border-radius: 7px; background: #fff; color: #111; font-size: 6px; font-weight: 700; }

.script-ui { position: relative; width: min(100%, 720px); min-height: 500px; border: 1px solid rgba(0,0,0,.1); border-radius: 28px; background: #f7f7f8; box-shadow: 0 30px 80px rgba(0,0,0,.12); overflow: hidden; }
.script-bar { height: 54px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; border-bottom: 1px solid rgba(0,0,0,.08); background: #fff; }
.script-bar strong { font-size: 9px; letter-spacing: .08em; }
.script-bar span { color: var(--muted); font-family: var(--mono); font-size: 7px; }
.script-body { display: grid; grid-template-columns: 170px 1fr; min-height: 446px; }
.script-sidebar { padding: 17px 13px; border-right: 1px solid rgba(0,0,0,.08); background: #fff; }
.script-score { padding: 14px; border-radius: 13px; background: #111; color: #fff; }
.script-score small { color: rgba(255,255,255,.5); font-size: 6px; }
.script-score strong { display: block; margin-top: 7px; font-size: 24px; }
.script-score span { color: #fbbf24; font-size: 6px; }
.script-filters { margin-top: 16px; display: grid; gap: 6px; }
.script-filters span { padding: 8px; border-radius: 8px; color: #777; font-size: 7px; }
.script-filters span.active { color: #111; background: #f1f1f3; }
.script-main { padding: 18px; }
.issue-card { padding: 14px; border: 1px solid rgba(0,0,0,.08); border-radius: 14px; background: #fff; }
.issue-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.issue-head b { font-size: 9px; }
.issue-severity { padding: 5px 7px; border-radius: 999px; background: #fff3e5; color: #c76800; font-size: 5px; font-weight: 700; }
.issue-card p { margin-top: 9px; color: #777; font-size: 7px; line-height: 1.5; }
.script-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 13px; }
.script-page { padding: 12px; border-radius: 10px; background: #f6f6f8; }
.script-page small { color: #8a8a8f; font-family: var(--mono); font-size: 5px; }
.script-page p { margin-top: 8px; color: #333; font-family: Georgia,serif; font-size: 7px; line-height: 1.65; }
.script-page mark { padding: 1px 2px; background: rgba(255,195,0,.28); color: inherit; }
.evidence-path { margin-top: 12px; display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 6px; color: #888; font-family: var(--mono); font-size: 5px; }
.evidence-dot { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 7px; background: #111; color: #fff; }
.evidence-line { height: 1px; background: linear-gradient(90deg,#111,#8b5cf6); }
.script-list { display: grid; gap: 8px; margin-top: 10px; }
.script-list-row { display: grid; grid-template-columns: 8px 1fr auto; gap: 8px; align-items: center; padding: 10px; border: 1px solid rgba(0,0,0,.07); border-radius: 10px; background: #fff; }
.script-list-row i { width: 7px; height: 7px; border-radius: 50%; background: #f59e0b; }
.script-list-row b { font-size: 6px; }
.script-list-row span { color: #999; font-size: 5px; }

.estimate-ui { position: relative; width: min(100%, 710px); min-height: 500px; border-radius: 28px; background: rgba(255,255,255,.86); border: 1px solid rgba(0,0,0,.08); box-shadow: 0 32px 90px rgba(69,76,120,.18); overflow: hidden; backdrop-filter: blur(20px); }
.estimate-top { height: 58px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; border-bottom: 1px solid rgba(0,0,0,.08); }
.estimate-top b { font-size: 9px; letter-spacing: .08em; }
.estimate-step { display: flex; gap: 6px; }
.estimate-step i { width: 22px; height: 4px; border-radius: 99px; background: #dedee2; }
.estimate-step i.active { background: #111; }
.estimate-body { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 442px; }
.estimate-input { padding: 22px; border-right: 1px solid rgba(0,0,0,.08); }
.estimate-input h4 { margin: 0; font-size: 22px; letter-spacing: -.035em; }
.estimate-input > p { margin-top: 8px; color: #777; font-size: 8px; line-height: 1.55; }
.voice-box { margin-top: 20px; padding: 16px; border: 1px solid rgba(0,0,0,.08); border-radius: 15px; background: #fff; }
.voice-head { display: flex; align-items: center; justify-content: space-between; }
.voice-head span { font-size: 7px; color: #777; }
.voice-live { display: inline-flex; align-items: center; gap: 5px; color: #ee4b4b; font-size: 6px; }
.voice-live i { width: 6px; height: 6px; border-radius: 50%; background: #ee4b4b; animation: pulse 1.2s infinite; }
@keyframes pulse { 50% { opacity: .35; transform: scale(.8); } }
.waveform { height: 42px; display: flex; align-items: center; justify-content: center; gap: 3px; margin-top: 14px; }
.waveform i { width: 3px; border-radius: 99px; background: linear-gradient(#7c3aed,#22d3ee); animation: wave 1.1s ease-in-out infinite alternate; }
.waveform i:nth-child(1){height:10px}.waveform i:nth-child(2){height:24px;animation-delay:.1s}.waveform i:nth-child(3){height:17px;animation-delay:.2s}.waveform i:nth-child(4){height:35px;animation-delay:.3s}.waveform i:nth-child(5){height:22px;animation-delay:.4s}.waveform i:nth-child(6){height:30px;animation-delay:.5s}.waveform i:nth-child(7){height:13px;animation-delay:.6s}.waveform i:nth-child(8){height:26px;animation-delay:.7s}.waveform i:nth-child(9){height:18px;animation-delay:.8s}
@keyframes wave { to { transform: scaleY(.45); opacity: .45; } }
.transcript { margin-top: 13px; color: #555; font-size: 7px; line-height: 1.6; }
.detected-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 7px; margin-top: 12px; }
.detected { padding: 9px; border-radius: 9px; background: #f5f5f7; }
.detected small { color: #999; font-size: 5px; }
.detected b { display: block; margin-top: 4px; font-size: 7px; }
.estimate-output { padding: 22px; }
.estimate-output h5 { margin: 0; font-size: 9px; }
.estimate-total { margin-top: 15px; padding: 16px; border-radius: 15px; background: #111; color: #fff; }
.estimate-total small { color: rgba(255,255,255,.45); font-size: 6px; }
.estimate-total strong { display: block; margin-top: 7px; font-size: 31px; }
.estimate-lines { display: grid; gap: 9px; margin-top: 15px; }
.estimate-line { display: grid; grid-template-columns: 1fr auto; gap: 10px; padding-bottom: 9px; border-bottom: 1px solid rgba(0,0,0,.08); font-size: 7px; }
.estimate-line span { color: #777; }
.estimate-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; }
.estimate-actions button { padding: 10px; border: 0; border-radius: 9px; font-size: 7px; font-weight: 700; }
.estimate-actions button:first-child { background: #111; color: #fff; }
.estimate-actions button:last-child { background: #ececf0; color: #111; }

/* Architecture */
.architecture-section { overflow: hidden; }
.architecture-section::before { content: ""; position: absolute; width: 800px; height: 800px; left: 50%; top: 60%; transform: translate(-50%,-50%); border-radius: 50%; background: radial-gradient(circle, rgba(99,102,241,.18), transparent 65%); filter: blur(12px); }
.architecture-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: center; }
.architecture-copy { position: relative; z-index: 2; }
.architecture-copy h2 { margin: 19px 0 0; font-size: clamp(54px,6vw,84px); line-height: .96; letter-spacing: -.055em; }
.architecture-copy p { margin-top: 24px; max-width: 500px; color: rgba(255,255,255,.56); font-size: 16px; line-height: 1.7; }
.architecture-list { display: grid; gap: 10px; margin-top: 34px; }
.architecture-list button { display: grid; grid-template-columns: 34px 1fr auto; gap: 12px; align-items: center; width: 100%; padding: 14px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.1); background: transparent; color: rgba(255,255,255,.5); text-align: left; cursor: pointer; transition: color .25s; }
.architecture-list button.active, .architecture-list button:hover { color: #fff; }
.architecture-list b { font-family: var(--mono); font-size: 9px; color: rgba(255,255,255,.32); }
.architecture-list span { font-size: 14px; }
.architecture-list i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.architecture-map { position: relative; min-height: 650px; }
.architecture-orbit { position: absolute; left: 50%; top: 50%; width: 520px; height: 520px; transform: translate(-50%,-50%); border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.architecture-orbit::before, .architecture-orbit::after { content: ""; position: absolute; inset: 70px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.architecture-orbit::after { inset: 150px; }
.arch-center { position: absolute; left: 50%; top: 50%; width: 132px; height: 132px; transform: translate(-50%,-50%); display: grid; place-items: center; border-radius: 34px; background: #fff; color: #111; box-shadow: 0 0 80px rgba(99,102,241,.28); text-align: center; }
.arch-center img { width: 54px; }
.arch-center span { display: block; margin-top: -12px; font-size: 8px; font-weight: 750; letter-spacing: .11em; }
.arch-node { position: absolute; width: 132px; min-height: 88px; padding: 15px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.055); backdrop-filter: blur(18px); color: rgba(255,255,255,.58); transition: border-color .25s, background .25s, color .25s, transform .25s var(--ease); }
.arch-node.active { border-color: rgba(99,102,241,.7); background: rgba(99,102,241,.14); color: #fff; transform: scale(1.05); }
.arch-node b { display: block; font-size: 10px; color: inherit; }
.arch-node span { display: block; margin-top: 7px; font-family: var(--mono); font-size: 6px; line-height: 1.45; opacity: .6; }
.arch-node[data-node="experience"] { left: 4%; top: 13%; }
.arch-node[data-node="api"] { right: 3%; top: 16%; }
.arch-node[data-node="ai"] { right: -1%; bottom: 17%; }
.arch-node[data-node="data"] { left: 10%; bottom: 9%; }
.arch-node[data-node="ops"] { left: 42%; top: 0; }
.arch-lines { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.arch-lines line { stroke: rgba(255,255,255,.1); stroke-width: 1; transition: stroke .25s, stroke-width .25s; }
.arch-lines line.active { stroke: url(#archGradient); stroke-width: 2; }
.architecture-detail { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: min(90%, 420px); text-align: center; color: rgba(255,255,255,.5); font-size: 12px; line-height: 1.6; }

/* Capability bento */
.bento-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 20px; }
.bento-card { position: relative; min-height: 360px; padding: 34px; border-radius: 30px; background: #fff; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,.045); }
.bento-card--wide { grid-column: span 7; min-height: 440px; }
.bento-card--wide h3, .bento-card--wide p { max-width: 47%; }
.bento-card--small { grid-column: span 5; }
.bento-card--half { grid-column: span 6; }
.bento-card--dark { background: #070708; color: #fff; }
.bento-card--gradient { background: linear-gradient(145deg,#f2efff,#eafcff); }
.bento-label { font-family: var(--mono); font-size: 9px; letter-spacing: .1em; color: var(--muted); }
.bento-card--dark .bento-label { color: rgba(255,255,255,.42); }
.bento-card h3 { position: relative; z-index: 2; max-width: 480px; margin: 94px 0 0; font-size: clamp(34px,3.8vw,54px); line-height: .98; letter-spacing: -.048em; }
.bento-card p { position: relative; z-index: 2; max-width: 480px; margin-top: 16px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.bento-card--dark p { color: rgba(255,255,255,.54); }
.bento-icon { position: absolute; right: 28px; top: 25px; width: 90px; height: 90px; display: grid; place-items: center; border-radius: 26px; background: #f5f5f7; }
.bento-card--dark .bento-icon { background: rgba(255,255,255,.08); }
.bento-icon svg { width: 46px; }
.code-window { position: absolute; right: -36px; bottom: -28px; width: 62%; min-width: 340px; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; background: #111216; box-shadow: var(--shadow-md); overflow: hidden; transform: rotate(-2deg); }
.code-top { height: 35px; display: flex; align-items: center; gap: 5px; padding: 0 11px; border-bottom: 1px solid rgba(255,255,255,.08); }
.code-top i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.18); }
.code-body { padding: 14px 16px 22px; color: #c9d1d9; font-family: var(--mono); font-size: 7px; line-height: 1.8; }
.code-body .purple { color: #c084fc; }.code-body .blue { color: #60a5fa; }.code-body .green { color: #86efac; }.code-body .gray { color: #6b7280; }
.integration-orbit { position: absolute; width: 230px; height: 230px; right: 22px; bottom: 3px; border: 1px solid rgba(0,0,0,.1); border-radius: 50%; }
.integration-orbit::before { content: ""; position: absolute; inset: 50px; border: 1px solid rgba(0,0,0,.1); border-radius: 50%; }
.integration-core { position: absolute; left: 50%; top: 50%; width: 56px; height: 56px; transform: translate(-50%,-50%); border-radius: 17px; background: #111; }
.integration-dot { position: absolute; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: #fff; border: 1px solid rgba(0,0,0,.08); box-shadow: var(--shadow-sm); font-size: 8px; font-weight: 750; }
.integration-dot:nth-child(3){left:-12px;top:88px}.integration-dot:nth-child(4){right:2px;top:16px}.integration-dot:nth-child(5){right:-9px;bottom:45px}.integration-dot:nth-child(6){left:65px;bottom:-10px}

/* Lab teaser */
.lab-panel { position: relative; border-radius: 42px; background: #000; color: #fff; overflow: hidden; }
.lab-panel-inner { min-height: 600px; display: grid; grid-template-columns: .68fr 1.32fr; align-items: center; gap: 70px; padding: 72px; }
.lab-copy h2 { margin: 20px 0 0; font-size: clamp(52px,6vw,86px); line-height: .96; letter-spacing: -.055em; }
.lab-copy p { margin-top: 22px; color: rgba(255,255,255,.55); font-size: 15px; line-height: 1.7; }
.lab-copy .button { margin-top: 28px; }
.pipeline-demo { position: relative; min-height: 440px; display: grid; place-items: center; }
.pipeline-line { position: absolute; left: 8%; right: 8%; top: 50%; height: 1px; background: linear-gradient(90deg,transparent,rgba(255,255,255,.22),transparent); }
.pipeline-line::after { content: ""; position: absolute; top: -1px; left: 0; width: 90px; height: 3px; border-radius: 99px; background: var(--aurora); box-shadow: 0 0 25px rgba(59,130,246,.8); animation: pipeline 3.8s linear infinite; }
@keyframes pipeline { from{left:0} to{left:calc(100% - 90px)} }
.pipeline-nodes { position: relative; z-index: 2; width: 100%; display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.pipeline-node { min-height: 126px; padding: 16px; display: grid; align-content: center; justify-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; background: rgba(255,255,255,.055); backdrop-filter: blur(15px); text-align: center; }
.pipeline-node i { width: 36px; height: 36px; border-radius: 12px; background: rgba(255,255,255,.09); }
.pipeline-node b { margin-top: 12px; font-size: 9px; }
.pipeline-node span { margin-top: 5px; color: rgba(255,255,255,.4); font-family: var(--mono); font-size: 6px; }

/* About/brand story */
.brand-story { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; align-items: start; }
.brand-story-mark { position: sticky; top: 120px; min-height: 480px; display: grid; place-items: center; border-radius: 36px; background: #fff; overflow: hidden; }
.brand-story-mark::before { content: ""; position: absolute; width: 430px; height: 430px; border-radius: 50%; border: 1px solid rgba(0,0,0,.08); }
.brand-story-mark::after { content: ""; position: absolute; width: 280px; height: 1px; background: linear-gradient(90deg,transparent,#111,transparent); }
.brand-story-mark img { width: 210px; position: relative; z-index: 2; }
.brand-story-copy h2 { margin: 18px 0 0; font-size: clamp(52px,6vw,86px); line-height: .98; letter-spacing: -.055em; }
.brand-story-copy > p { margin-top: 27px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.brand-quote { margin-top: 38px; padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.brand-quote blockquote { margin: 0; font-size: 27px; line-height: 1.35; letter-spacing: -.025em; }
.brand-quote cite { display: block; margin-top: 14px; color: var(--muted); font-size: 11px; font-style: normal; letter-spacing: .11em; text-transform: uppercase; }

/* CTA */
.cta-section { padding: 0 0 24px; background: var(--bg); }
.cta-panel { position: relative; min-height: 670px; display: grid; align-items: end; padding: 74px; border-radius: 44px; background: #000; color: #fff; overflow: hidden; }
.cta-panel::before { content: ""; position: absolute; width: 780px; height: 780px; right: -210px; top: -350px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.cta-panel::after { content: ""; position: absolute; width: 500px; height: 500px; right: -70px; top: -210px; border-radius: 50%; background: radial-gradient(circle, rgba(99,102,241,.28), transparent 66%); filter: blur(20px); }
.cta-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .45fr; gap: 70px; align-items: end; }
.cta-content h2 { margin: 0; max-width: 820px; font-size: clamp(64px,8vw,112px); line-height: .88; letter-spacing: -.065em; }
.cta-side p { color: rgba(255,255,255,.56); font-size: 15px; line-height: 1.7; }
.cta-side .button { margin-top: 24px; }

/* Footer */
.site-footer { padding: 72px 0 30px; background: var(--bg); }
.footer-top { display: grid; grid-template-columns: 1.2fr .4fr .4fr .5fr; gap: 50px; padding-bottom: 58px; }
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p { max-width: 410px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.footer-col { display: grid; align-content: start; gap: 11px; }
.footer-col strong { margin-bottom: 8px; color: var(--muted); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }
.footer-col a { font-size: 13px; color: #3a3a3d; }
.footer-col a:hover { color: #000; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.footer-bottom span:last-child { text-align: right; }

/* Page hero */
.page-hero { position: relative; padding: 168px 0 105px; background: var(--bg); overflow: hidden; }
.page-hero::before { content: ""; position: absolute; width: 720px; height: 720px; right: -190px; top: -360px; border: 1px solid rgba(0,0,0,.08); border-radius: 50%; }
.page-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .44fr; gap: 70px; align-items: end; }
.page-hero h1 { margin: 22px 0 0; max-width: 980px; font-size: clamp(70px,9vw,132px); line-height: .88; letter-spacing: -.07em; }
.page-hero p { color: var(--muted); font-size: 18px; line-height: 1.7; }
.page-hero--black { background: #000; color: #fff; }
.page-hero--black::before { border-color: rgba(255,255,255,.1); }
.page-hero--black p { color: rgba(255,255,255,.55); }

/* Services */
.service-block { display: grid; grid-template-columns: .37fr 1fr .6fr; gap: 56px; padding: 62px 0; border-top: 1px solid var(--line); }
.service-block:last-child { border-bottom: 1px solid var(--line); }
.service-block-number { font-family: var(--mono); font-size: 10px; color: var(--muted); }
.service-block h2 { margin: 0; font-size: clamp(40px,5vw,66px); line-height: .98; letter-spacing: -.05em; }
.service-block-copy p { color: var(--muted); font-size: 15px; line-height: 1.72; }
.service-list { margin: 24px 0 0; padding: 0; list-style: none; }
.service-list li { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.service-list li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--aurora); }
.service-block-aside { display: grid; align-content: start; gap: 10px; }
.service-tech { padding: 13px; border-radius: 14px; background: #fff; font-family: var(--mono); font-size: 9px; color: #5e5e63; }
.engagement-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.engagement-card { min-height: 430px; padding: 32px; border-radius: 28px; background: #fff; }
.engagement-card.featured { background: #000; color: #fff; }
.engagement-card span { font-family: var(--mono); font-size: 9px; color: var(--muted); }
.engagement-card.featured span { color: rgba(255,255,255,.45); }
.engagement-card h3 { margin: 95px 0 0; font-size: 37px; line-height: 1; letter-spacing: -.045em; }
.engagement-card p { margin-top: 16px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.engagement-card.featured p { color: rgba(255,255,255,.55); }
.engagement-card ul { margin: 25px 0 0; padding: 0; list-style: none; display: grid; gap: 9px; font-size: 12px; }
.engagement-card li { display: flex; gap: 9px; }
.engagement-card li::before { content: "✓"; color: #22c55e; }

/* Work page */
.case-index { display: grid; gap: 22px; }
.case-index-card { position: relative; min-height: 560px; display: grid; grid-template-columns: .62fr 1.38fr; align-items: center; gap: 40px; padding: 60px; border-radius: 36px; overflow: hidden; }
.case-index-card:nth-child(1) { background: #000; color: #fff; }
.case-index-card:nth-child(2) { background: #fff; }
.case-index-card:nth-child(3) { background: linear-gradient(145deg,#f2efff,#eafcff); }
.case-index-copy h2 { margin: 22px 0 0; font-size: clamp(44px,5.5vw,76px); line-height: .96; letter-spacing: -.055em; }
.case-index-copy p { margin-top: 18px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.case-index-card:first-child .case-index-copy p { color: rgba(255,255,255,.55); }
.case-index-visual { min-height: 430px; display: grid; place-items: center; }
.case-index-visual > * { transform: scale(.82); transform-origin: center; }

/* About */
.about-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; align-items: start; }
.about-card { position: sticky; top: 105px; min-height: 560px; padding: 38px; border-radius: 34px; background: #000; color: #fff; overflow: hidden; }
.about-card::before { content: "AA"; position: absolute; right: -20px; bottom: -45px; color: rgba(255,255,255,.05); font-size: 240px; font-weight: 800; letter-spacing: -.1em; }
.about-card h2 { margin: 170px 0 0; font-size: 58px; line-height: .95; letter-spacing: -.055em; }
.about-card p { margin-top: 18px; max-width: 430px; color: rgba(255,255,255,.54); font-size: 14px; line-height: 1.65; }
.about-details h2 { margin: 0; font-size: clamp(48px,5.5vw,78px); line-height: .98; letter-spacing: -.055em; }
.about-details > p { margin-top: 27px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.about-facts { margin-top: 46px; display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--line); }
.about-fact { padding: 24px 16px 24px 0; border-bottom: 1px solid var(--line); }
.about-fact:nth-child(odd) { border-right: 1px solid var(--line); }
.about-fact:nth-child(even) { padding-left: 24px; }
.about-fact span { color: var(--muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.about-fact strong { display: block; margin-top: 9px; font-size: 17px; }
.stack-cloud { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 35px; }
.stack-cloud span { padding: 10px 13px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-family: var(--mono); font-size: 9px; }

/* Lab page */
.lab-grid { display: grid; gap: 24px; }
.lab-demo { position: relative; min-height: 620px; border-radius: 36px; background: #fff; overflow: hidden; }
.lab-demo--dark { background: #000; color: #fff; }
.lab-demo-header { display: flex; justify-content: space-between; align-items: center; padding: 30px 32px; border-bottom: 1px solid var(--line); }
.lab-demo--dark .lab-demo-header { border-color: var(--line-dark); }
.lab-demo-header h2 { margin: 0; font-size: 28px; letter-spacing: -.035em; }
.lab-demo-header span { color: var(--muted); font-family: var(--mono); font-size: 9px; }
.lab-demo-body { min-height: 530px; display: grid; grid-template-columns: .58fr 1.42fr; }
.lab-demo-copy { padding: 45px 32px; border-right: 1px solid var(--line); }
.lab-demo--dark .lab-demo-copy { border-color: var(--line-dark); }
.lab-demo-copy h3 { margin: 0; font-size: 46px; line-height: .98; letter-spacing: -.05em; }
.lab-demo-copy p { margin-top: 18px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.lab-demo--dark .lab-demo-copy p { color: rgba(255,255,255,.5); }
.prompt-buttons { display: grid; gap: 8px; margin-top: 28px; }
.prompt-buttons button { padding: 12px 13px; border: 1px solid var(--line); border-radius: 12px; background: transparent; text-align: left; font-size: 11px; cursor: pointer; transition: background .2s, border-color .2s; }
.prompt-buttons button:hover, .prompt-buttons button.active { background: #111; border-color: #111; color: #fff; }
.lab-demo--dark .prompt-buttons button { border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.65); }
.lab-demo--dark .prompt-buttons button:hover, .lab-demo--dark .prompt-buttons button.active { background: #fff; color: #111; }
.lab-stage { position: relative; display: grid; place-items: center; padding: 38px; }
.router-stage { width: min(100%, 700px); }
.router-input { padding: 16px; border: 1px solid rgba(0,0,0,.09); border-radius: 16px; background: #f7f7f8; }
.router-input small { color: #999; font-family: var(--mono); font-size: 7px; }
.router-input p { margin-top: 7px; font-size: 12px; }
.router-flow { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; margin-top: 26px; align-items: center; }
.router-node { min-height: 84px; display: grid; place-items: center; padding: 10px; border: 1px solid rgba(0,0,0,.1); border-radius: 14px; background: #fff; text-align: center; font-family: var(--mono); font-size: 7px; transition: border-color .2s, background .2s, transform .2s; }
.router-node.active { border-color: #6366f1; background: rgba(99,102,241,.07); transform: translateY(-4px); }
.router-arrow { color: #aaa; text-align: center; }
.router-output { margin-top: 25px; padding: 17px; border-radius: 15px; background: #111; color: #fff; }
.router-output small { color: rgba(255,255,255,.4); font-family: var(--mono); font-size: 6px; }
.router-output pre { margin: 10px 0 0; white-space: pre-wrap; color: #d7d7db; font-family: var(--mono); font-size: 8px; line-height: 1.6; }

.latency-stage { width: min(100%, 680px); }
.latency-meter { position: relative; width: 310px; height: 155px; margin: auto; overflow: hidden; }
.latency-meter::before { content: ""; position: absolute; inset: 0; border: 18px solid rgba(255,255,255,.1); border-bottom: 0; border-radius: 310px 310px 0 0; }
.latency-arc { position: absolute; inset: 0; border: 18px solid transparent; border-top-color: #22d3ee; border-left-color: #7c3aed; border-radius: 310px 310px 0 0; transform: rotate(var(--meter-rotate,-35deg)); transform-origin: 50% 100%; transition: transform .7s var(--ease); }
.latency-needle { position: absolute; left: 50%; bottom: 0; width: 3px; height: 125px; border-radius: 99px; background: #fff; transform-origin: 50% 100%; transform: rotate(var(--needle,-55deg)); transition: transform .7s var(--ease); }
.latency-value { text-align: center; margin-top: 12px; }
.latency-value strong { font-size: 55px; letter-spacing: -.05em; }
.latency-value span { color: rgba(255,255,255,.45); font-family: var(--mono); font-size: 9px; }
.latency-controls { display: flex; justify-content: center; gap: 8px; margin-top: 25px; }
.latency-controls button { padding: 10px 13px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: rgba(255,255,255,.06); color: rgba(255,255,255,.65); font-size: 9px; cursor: pointer; }
.latency-controls button.active { background: #fff; color: #111; }
.latency-bars { display: grid; gap: 9px; margin-top: 30px; }
.latency-row { display: grid; grid-template-columns: 90px 1fr 50px; gap: 12px; align-items: center; font-family: var(--mono); font-size: 7px; color: rgba(255,255,255,.45); }
.latency-bar { height: 6px; border-radius: 99px; background: rgba(255,255,255,.08); overflow: hidden; }
.latency-bar i { display: block; width: var(--bar-width); height: 100%; border-radius: inherit; background: var(--aurora); transition: width .7s var(--ease); }

.responsive-stage { width: min(100%, 720px); display: grid; place-items: center; }
.responsive-controls { display: flex; gap: 7px; margin-bottom: 22px; padding: 4px; border-radius: 999px; background: #f0f0f2; }
.responsive-controls button { padding: 8px 12px; border: 0; border-radius: 999px; background: transparent; color: #777; font-size: 8px; cursor: pointer; }
.responsive-controls button.active { background: #111; color: #fff; }
.responsive-device { width: var(--device-width, 660px); max-width: 100%; min-height: 350px; border: 7px solid #151517; border-radius: var(--device-radius, 22px); background: #fff; box-shadow: var(--shadow-md); overflow: hidden; transition: width .6s var(--ease), border-radius .6s var(--ease); }
.responsive-site-top { height: 40px; display: flex; align-items: center; justify-content: space-between; padding: 0 14px; border-bottom: 1px solid var(--line); font-size: 7px; }
.responsive-site-hero { min-height: 210px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 18px; padding: 24px; background: #f5f5f7; }
.responsive-site-hero h4 { margin: 0; font-size: clamp(18px,4vw,38px); line-height: .98; letter-spacing: -.05em; }
.responsive-site-visual { aspect-ratio: 1.2; border-radius: 20px; background: linear-gradient(145deg,#e8e5ff,#dffaff); }
.responsive-device.phone .responsive-site-hero { grid-template-columns: 1fr; padding: 17px; }
.responsive-device.phone .responsive-site-visual { aspect-ratio: 1.4; }
.responsive-device.phone .responsive-site-top nav { display: none; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: .58fr 1.42fr; gap: 90px; align-items: start; }
.contact-aside { position: sticky; top: 115px; }
.contact-aside h2 { margin: 20px 0 0; font-size: clamp(50px,6vw,82px); line-height: .98; letter-spacing: -.055em; }
.contact-aside p { margin-top: 22px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.contact-lines { margin-top: 36px; border-top: 1px solid var(--line); }
.contact-line { display: flex; justify-content: space-between; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.contact-line span { color: var(--muted); }
.project-form { padding: 38px; border-radius: 30px; background: #fff; }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 21px; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1/-1; }
.field label { color: #5f5f64; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid rgba(0,0,0,.13); border-radius: 13px; background: #fbfbfc; padding: 14px 15px; color: #111; outline: none; transition: border-color .2s, box-shadow .2s, background .2s; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #6366f1; background: #fff; box-shadow: 0 0 0 4px rgba(99,102,241,.09); }
.field textarea { min-height: 155px; resize: vertical; }
.form-note { grid-column: 1/-1; color: var(--muted); font-size: 11px; line-height: 1.6; }
.form-actions { grid-column: 1/-1; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-status { color: var(--muted); font-size: 11px; }

/* FAQ and legal */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; padding: 24px 0; border: 0; background: transparent; text-align: left; font-size: 18px; cursor: pointer; }
.faq-icon { width: 18px; height: 18px; position: relative; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; left: 0; top: 8px; width: 18px; height: 1px; background: #111; transition: transform .25s; }
.faq-icon::after { transform: rotate(90deg); }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq-answer > div { overflow: hidden; }
.faq-answer p { max-width: 780px; padding: 0 50px 24px 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.legal { max-width: 850px; margin: auto; }
.legal h1 { margin: 0; font-size: clamp(60px,8vw,108px); line-height: .9; letter-spacing: -.065em; }
.legal h2 { margin: 50px 0 0; font-size: 24px; }
.legal p, .legal li { color: var(--muted); font-size: 15px; line-height: 1.8; }
.legal ul { padding-left: 20px; }

/* 404 / thanks */
.center-page { min-height: 100svh; display: grid; place-items: center; padding: 90px 24px 40px; background: #000; color: #fff; text-align: center; }
.center-page-mark { width: 120px; margin: auto; filter: invert(1); mix-blend-mode: screen; opacity: .9; }
.center-page h1 { margin: 28px 0 0; font-size: clamp(68px,12vw,150px); line-height: .85; letter-spacing: -.075em; }
.center-page p { max-width: 580px; margin: 24px auto 0; color: rgba(255,255,255,.52); font-size: 16px; line-height: 1.65; }
.center-page .button { margin-top: 28px; }

/* Motion */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

/* Responsive */
@media (max-width: 1100px) {
  .primary-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .header-actions { grid-column: 2; }
  .menu-toggle { display: block; }
  .header-actions .button { display: none; }
  .product-theater { min-height: 800px; }
  .demo-viewport { min-height: 730px; }
  .demo-panel { grid-template-columns: 1fr; gap: 28px; align-content: start; }
  .demo-panel-copy { max-width: 720px; }
  .demo-panel-copy h2 { font-size: 45px; }
  .demo-panel-copy p { max-width: 650px; }
  .demo-device-wrap { min-height: 470px; }
  .section-heading { grid-template-columns: 1fr; gap: 26px; }
  .section-heading > p { max-width: 650px; }
  .promise-grid { grid-template-columns: repeat(2,1fr); }
  .promise-item:nth-child(2) { border-right: 0; }
  .promise-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .project-layout { grid-template-columns: 1fr; padding: 56px; }
  .project-copy { max-width: 720px; }
  .project-visual { min-height: 520px; }
  .architecture-grid { grid-template-columns: 1fr; }
  .architecture-copy { max-width: 760px; }
  .architecture-map { min-height: 680px; }
  .bento-card--wide, .bento-card--small, .bento-card--half { grid-column: span 6; }
  .bento-card--wide { min-height: 500px; }
  .bento-card--wide h3, .bento-card--wide p { max-width: 100%; }
  .bento-card--wide .code-window { width: 84%; }
  .lab-panel-inner { grid-template-columns: 1fr; }
  .brand-story { grid-template-columns: 1fr; gap: 60px; }
  .brand-story-mark { position: relative; top: auto; }
  .cta-content { grid-template-columns: 1fr; }
  .cta-side { max-width: 520px; }
  .footer-top { grid-template-columns: 1.4fr repeat(2,.6fr); }
  .footer-top > :last-child { grid-column: 2/-1; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero p { max-width: 680px; }
  .service-block { grid-template-columns: .25fr 1fr; }
  .service-block-copy, .service-block-aside { grid-column: 2; }
  .case-index-card { grid-template-columns: 1fr; }
  .contact-layout, .about-grid { grid-template-columns: 1fr; }
  .contact-aside, .about-card { position: relative; top: auto; }
  .lab-demo-body { grid-template-columns: 1fr; }
  .lab-demo-copy { border-right: 0; border-bottom: 1px solid var(--line); }
  .lab-demo--dark .lab-demo-copy { border-color: var(--line-dark); }
}

@media (max-width: 760px) {
  .shell, .shell--narrow { width: min(calc(100% - 30px), var(--max)); }
  .section { padding: 96px 0; }
  .section--tight { padding: 72px 0; }
  .site-header { background: rgba(245,245,247,.88); }
  .header-inner { min-height: 58px; }
  .brand-lockup { width: 174px; }
  .brand-symbol--faith { width: 42px; height: 42px; }
  .brand-word.brand-word--doxazo { font-size: 21px; letter-spacing: .1em; }
  .brand-symbol { width: 28px; height: 28px; }
  .brand-word { font-size: 11px; }
  .hero { padding: 120px 0 35px; }
  .hero h1 { font-size: clamp(55px, 16vw, 78px); }
  .hero-lede { font-size: 17px; }
  .hero-actions { gap: 14px; }
  .hero-actions .button, .hero-actions .text-link { width: 100%; }
  .hero-proof { gap: 9px 15px; }
  .product-theater { width: calc(100% - 18px); min-height: 785px; margin-top: 55px; border-radius: 27px; transform: none !important; }
  .theater-topbar { height: auto; min-height: 64px; grid-template-columns: 1fr auto; gap: 12px; padding: 12px 14px; }
  .theater-status { display: none; }
  .demo-tabs { grid-column: 1; }
  .demo-tab { padding: 7px 10px; font-size: 9px; }
  .theater-clock { grid-column: 2; grid-row: 1; }
  .demo-viewport { min-height: 720px; padding: 22px 14px; }
  .demo-panel { inset: 22px 14px; gap: 18px; }
  .demo-panel-copy h2 { margin-top: 14px; font-size: 38px; }
  .demo-panel-copy p { margin-top: 14px; font-size: 13px; }
  .demo-stack { margin-top: 15px; }
  .demo-device-wrap { min-height: 430px; align-items: start; }
  .browser-window, .app-window, .assistant-window { border-radius: 17px; }
  .web-demo-body { grid-template-columns: 1fr; min-height: 365px; }
  .web-demo-product { display: none; }
  .web-demo-copy { padding: 30px 22px; }
  .web-demo-copy h3 { margin-top: 36px; font-size: 34px; }
  .device-phone { width: 135px; height: 270px; right: -5px; bottom: -65px; }
  .dashboard-body { grid-template-columns: 1fr; min-height: 390px; }
  .dashboard-sidebar { display: none; }
  .dashboard-main { padding: 15px; }
  .metric-grid { gap: 6px; }
  .metric-card { padding: 10px; }
  .metric-card strong { font-size: 15px; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .queue-card { display: none; }
  .assistant-body { grid-template-columns: 1fr; min-height: 405px; }
  .assistant-sidebar { display: none; }
  .assistant-chat { padding: 14px; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise-item { min-height: 170px; border-right: 0; border-bottom: 1px solid var(--line); }
  .promise-item strong { margin-top: 34px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2 { font-size: 48px; }
  .project-story { min-height: auto; border-radius: 28px; }
  .project-layout { padding: 35px 22px 30px; }
  .project-copy h3 { font-size: 45px; }
  .project-visual { min-height: 390px; }
  .retail-ui, .script-ui, .estimate-ui { width: 760px; transform: scale(.49); transform-origin: center; }
  .architecture-copy h2 { font-size: 52px; }
  .architecture-map { min-height: 570px; transform: scale(.82); transform-origin: center; margin-inline: -40px; }
  .architecture-orbit { width: 460px; height: 460px; }
  .arch-node[data-node="ops"] { left: 38%; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--wide, .bento-card--small, .bento-card--half { grid-column: auto; min-height: 360px; }
  .bento-card h3 { margin-top: 100px; font-size: 39px; }
  .code-window { width: 82%; min-width: 290px; }
  .lab-panel { border-radius: 28px; }
  .lab-panel-inner { min-height: 700px; padding: 38px 22px; }
  .lab-copy h2 { font-size: 50px; }
  .pipeline-demo { min-height: 420px; overflow: hidden; }
  .pipeline-nodes { width: 650px; transform: scale(.58); }
  .brand-story-mark { min-height: 390px; }
  .brand-story-copy h2 { font-size: 49px; }
  .brand-story-copy > p { font-size: 16px; }
  .cta-panel { min-height: 580px; padding: 42px 25px; border-radius: 30px; }
  .cta-content h2 { font-size: 61px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .footer-top > :first-child, .footer-top > :last-child { grid-column: 1/-1; }
  .footer-bottom { display: grid; }
  .footer-bottom span:last-child { text-align: left; }
  .page-hero { padding: 128px 0 72px; }
  .page-hero h1 { font-size: 65px; }
  .page-hero p { font-size: 16px; }
  .service-block { grid-template-columns: 1fr; gap: 16px; padding: 42px 0; }
  .service-block-copy, .service-block-aside { grid-column: auto; }
  .service-block h2 { font-size: 43px; }
  .engagement-grid { grid-template-columns: 1fr; }
  .engagement-card { min-height: 360px; }
  .engagement-card h3 { margin-top: 65px; }
  .case-index-card { min-height: auto; padding: 34px 22px; border-radius: 28px; }
  .case-index-copy h2 { font-size: 48px; }
  .case-index-visual { min-height: 390px; }
  .case-index-visual > * { transform: scale(.5); }
  .about-card { min-height: 470px; }
  .about-card h2 { margin-top: 130px; font-size: 47px; }
  .about-facts { grid-template-columns: 1fr; }
  .about-fact:nth-child(odd) { border-right: 0; }
  .about-fact:nth-child(even) { padding-left: 0; }
  .lab-demo { border-radius: 28px; }
  .lab-demo-header { align-items: flex-start; gap: 12px; padding: 24px 22px; }
  .lab-demo-header h2 { font-size: 23px; }
  .lab-demo-body { min-height: auto; }
  .lab-demo-copy { padding: 32px 22px; }
  .lab-demo-copy h3 { font-size: 40px; }
  .lab-stage { min-height: 490px; padding: 24px 12px; overflow: hidden; }
  .router-stage { width: 720px; transform: scale(.47); }
  .latency-stage { transform: scale(.8); }
  .responsive-stage { width: 680px; transform: scale(.48); }
  .contact-layout { gap: 50px; }
  .contact-aside h2 { font-size: 52px; }
  .project-form { padding: 25px 18px; border-radius: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full, .form-note, .form-actions { grid-column: auto; }
  .faq-question { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .product-theater { transform: none !important; }
}
