/* AllSteer v0.6 website — hand-written, dependency-free. */
:root {
  --bg: #09090b;
  --bg-soft: #0d0d10;
  --bg-elev: #111115;
  --card: rgba(24, 24, 27, 0.66);
  --card-solid: #151518;
  --border: #2a2a2f;
  --border-soft: rgba(63, 63, 70, 0.55);
  --text: #fafafa;
  --text-dim: #aaaab4;
  --text-faint: #92929d;
  --emerald: #21d19f;
  --emerald-deep: #0ea97b;
  --sky: #22b7ef;
  --amber: #f4b942;
  --red: #fb7185;
  --grad: linear-gradient(110deg, #3be0ad 0%, #12bb8b 42%, #21b5ef 100%);
  --radius: 16px;
  --radius-sm: 11px;
  --nav-h: 68px;
  --max-w: 1180px;
  color-scheme: dark;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 18px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.dialog-open { overflow: hidden; }

::selection { color: var(--text); background: rgba(33, 209, 159, 0.3); }

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

:focus-visible {
  outline: 3px solid rgba(34, 183, 239, 0.9);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 500;
  padding: 9px 14px;
  border-radius: 8px;
  color: #06251c;
  background: var(--emerald);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 0.15s ease;
}

.skip-link:focus { transform: translateY(0); }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(850px 520px at 8% -5%, rgba(33, 209, 159, 0.12), transparent 68%),
    radial-gradient(920px 560px at 94% 8%, rgba(34, 183, 239, 0.1), transparent 67%),
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, 42px 42px, 42px 42px, auto;
  mask-image: linear-gradient(to bottom, #000 0, rgba(0, 0, 0, 0.82) 65%, transparent 100%);
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  border-bottom: 1px solid var(--border-soft);
  background: rgba(9, 9, 11, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand,
.footer-brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand img { width: 31px; height: 31px; border-radius: 8px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav-links a,
.nav-links button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  appearance: none;
  border: 0;
  padding: 8px 13px;
  border-radius: 9px;
  color: var(--text-dim);
  background: transparent;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.nav-links a:hover,
.nav-links button:hover { color: var(--text); background: rgba(255, 255, 255, 0.055); }

.nav-links .nav-demo { color: #8be8ce; }

.nav-links a.nav-cta {
  margin-left: 5px;
  border: 1px solid rgba(33, 209, 159, 0.35);
  color: #c9fff0;
  background: rgba(33, 209, 159, 0.085);
}

.nav-links a.nav-cta:hover {
  border-color: rgba(33, 209, 159, 0.7);
  background: rgba(33, 209, 159, 0.14);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 680;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.2s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  color: #04251b;
  background: var(--grad);
  box-shadow: 0 12px 34px -14px rgba(33, 209, 159, 0.64);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px -14px rgba(34, 183, 239, 0.64);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: rgba(24, 24, 27, 0.76);
}

.btn-ghost:hover { border-color: rgba(34, 183, 239, 0.48); background: rgba(34, 183, 239, 0.075); }
.btn-large { min-height: 52px; padding-inline: 26px; font-size: 16px; white-space: nowrap; }
.btn.disabled, .btn[disabled] { opacity: 0.5; pointer-events: none; box-shadow: none; }

.play-mark {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}

/* Hero */
.hero { padding: 86px 0 86px; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
  align-items: center;
  gap: clamp(42px, 6vw, 82px);
}

.hero-copy { min-width: 0; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-dim);
  background: rgba(24, 24, 27, 0.72);
  font-size: 12.5px;
  letter-spacing: 0.02em;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 4px rgba(33, 209, 159, 0.1), 0 0 12px rgba(33, 209, 159, 0.85);
}

.hero h1 {
  margin: 0 0 22px;
  max-width: 650px;
  font-size: clamp(42px, 5.6vw, 68px);
  font-weight: 820;
  line-height: 1.01;
  letter-spacing: -0.046em;
}

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

.hero-sub {
  max-width: 610px;
  margin: 0 0 31px;
  color: var(--text-dim);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.68;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { margin: 16px 0 0; color: var(--text-faint); font-size: 13.5px; }

.platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: #cacad0;
  font-size: 13.5px;
}

.platform-list li { display: inline-flex; align-items: center; gap: 7px; }
.platform-list li img { width: 15px; height: 15px; object-fit: contain; }

/* Product-window illustration */
.product-window {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #34343a;
  border-radius: 18px;
  background: #0e0e11;
  box-shadow: 0 28px 90px -34px rgba(0, 0, 0, 0.92), 0 0 70px -38px rgba(33, 209, 159, 0.65);
}

.product-window::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(125deg, rgba(33, 209, 159, 0.38), transparent 38%, rgba(34, 183, 239, 0.2));
  filter: blur(12px);
}

.window-bar {
  height: 43px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid #27272b;
  color: var(--text-faint);
  font-size: 10.5px;
}

.window-dots { display: flex; gap: 5px; }
.window-dots span { width: 7px; height: 7px; border-radius: 50%; background: #33333a; }
.window-dots span:first-child { background: rgba(251, 113, 133, 0.65); }
.window-dots span:nth-child(2) { background: rgba(244, 185, 66, 0.65); }
.window-dots span:last-child { background: rgba(33, 209, 159, 0.65); }
.window-title { color: #8a8a94; letter-spacing: 0.025em; }
.window-status { justify-self: end; display: flex; align-items: center; gap: 5px; }
.window-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); }

.workspace-preview {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 388px;
}

.preview-chat,
.preview-activity { min-width: 0; padding: 17px; }
.preview-chat { display: flex; flex-direction: column; border-right: 1px solid #26262b; }

.pane-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 17px;
  color: #7f7f89;
  font-size: 10.5px;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.overall-progress { color: var(--emerald); }

.chat-bubble {
  max-width: 94%;
  margin-bottom: 12px;
  padding: 11px 12px;
  border: 1px solid #2b2b31;
  border-radius: 11px;
  color: #d5d5db;
  background: #17171b;
  font-size: 11.5px;
  line-height: 1.55;
}

.user-bubble { margin-left: auto; border-bottom-right-radius: 4px; background: rgba(34, 183, 239, 0.08); }
.agent-bubble { border-bottom-left-radius: 4px; }
.bubble-name { display: block; margin-bottom: 4px; color: var(--emerald); font-size: 9px; font-weight: 750; letter-spacing: 0.07em; text-transform: uppercase; }

.mini-composer {
  min-height: 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 6px;
  margin-top: auto;
  padding: 10px;
  border: 1px solid #303037;
  border-radius: 12px;
  color: #676772;
  background: #141418;
  font-size: 10.5px;
}

.mini-composer kbd { font: inherit; color: #5d5d68; }
.mini-composer b { grid-column: 2; padding: 3px 7px; border-radius: 6px; color: #7fe3c7; background: rgba(33, 209, 159, 0.1); font-size: 9px; }

.mini-progress { height: 4px; overflow: hidden; margin: -7px 0 18px; border-radius: 99px; background: #232328; }
.mini-progress span { display: block; width: 68%; height: 100%; border-radius: inherit; background: var(--grad); }

.agent-mini {
  display: grid;
  grid-template-columns: 29px 1fr auto;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  padding: 10px;
  border: 1px solid #28282e;
  border-radius: 10px;
  background: #141418;
}

.agent-avatar,
.lane-avatar {
  display: grid;
  place-items: center;
  border: 1px solid rgba(33, 209, 159, 0.25);
  border-radius: 8px;
  color: #8aead0;
  background: rgba(33, 209, 159, 0.08);
  font-size: 10px;
  font-weight: 800;
}

.agent-avatar { width: 29px; height: 29px; }
.agent-mini div:nth-child(2) { display: flex; min-width: 0; flex-direction: column; }
.agent-mini strong { color: #e8e8eb; font-size: 11px; font-weight: 650; }
.agent-mini small { overflow: hidden; color: #6f6f79; font-size: 8.8px; text-overflow: ellipsis; white-space: nowrap; }
.agent-mini > span { padding: 3px 6px; border-radius: 99px; color: #7f7f89; background: #202026; font-size: 8px; }
.agent-mini.running > span { color: #8be8ce; background: rgba(33, 209, 159, 0.09); }
.agent-mini.review > span { color: #8fdcf8; background: rgba(34, 183, 239, 0.09); }
.agent-mini.done > span { color: #b2b2bb; }

.preview-summary {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  padding: 9px 10px;
  border: 1px solid rgba(34, 183, 239, 0.16);
  border-radius: 8px;
  color: #7c7c86;
  background: rgba(34, 183, 239, 0.04);
  font-size: 9px;
}

.preview-summary i { width: 6px; height: 6px; border-radius: 50%; background: var(--sky); box-shadow: 0 0 8px rgba(34, 183, 239, 0.75); }

/* Trust strip */
.trust-strip { border-block: 1px solid rgba(63, 63, 70, 0.42); background: rgba(14, 14, 17, 0.72); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid p { margin: 0; padding: 25px 22px; border-right: 1px solid rgba(63, 63, 70, 0.34); }
.trust-grid p:first-child { padding-left: 0; }
.trust-grid p:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { color: #e8e8eb; font-size: 14px; }
.trust-grid span { color: var(--text-faint); font-size: 12px; }

/* General sections */
.section { padding: 96px 0; }
.section-alt { border-block: 1px solid rgba(63, 63, 70, 0.34); background: rgba(14, 14, 17, 0.68); }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head.split-head { max-width: none; display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: end; gap: 50px; text-align: left; }
.split-head .section-sub { margin: 0 0 4px; }

.section-kicker {
  margin-bottom: 12px;
  color: var(--emerald);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 16px;
  font-size: clamp(31px, 4.4vw, 48px);
  font-weight: 790;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.section-sub { max-width: 650px; margin: 0 auto; color: var(--text-dim); font-size: 16.5px; line-height: 1.7; }

/* Journey */
.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }

.journey-card {
  position: relative;
  min-width: 0;
  padding: 29px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(19, 19, 23, 0.72);
  overflow: hidden;
}

.journey-card.featured { border-color: rgba(33, 209, 159, 0.38); background: linear-gradient(145deg, rgba(33, 209, 159, 0.085), rgba(19, 19, 23, 0.78) 52%); }
.journey-num { position: absolute; top: 18px; right: 23px; color: rgba(255, 255, 255, 0.055); font: 800 60px/1 ui-monospace, monospace; letter-spacing: -0.08em; }
.journey-level { position: relative; margin: 0 0 30px; color: var(--emerald); font-size: 11px; font-weight: 720; letter-spacing: 0.1em; text-transform: uppercase; }
.journey-card h3 { position: relative; margin: 0 0 11px; font-size: 20px; letter-spacing: -0.02em; }
.journey-card > p:not(.journey-level) { position: relative; min-height: 92px; margin: 0 0 26px; color: var(--text-dim); font-size: 14px; }
.journey-outcome { display: block; padding-top: 17px; border-top: 1px solid var(--border-soft); color: #c9c9d0; font-size: 12px; font-weight: 600; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.card {
  min-width: 0;
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(22, 22, 26, 0.65);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.card:hover { transform: translateY(-3px); border-color: rgba(33, 209, 159, 0.38); background: rgba(25, 25, 29, 0.84); }

.feature-tag {
  display: inline-flex;
  margin-bottom: 19px;
  padding: 4px 8px;
  border: 1px solid rgba(33, 209, 159, 0.24);
  border-radius: 6px;
  color: #79ddc1;
  background: rgba(33, 209, 159, 0.07);
  font: 700 10px/1.2 ui-monospace, "SFMono-Regular", Consolas, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-tag.sky { border-color: rgba(34, 183, 239, 0.24); color: #7bd6f7; background: rgba(34, 183, 239, 0.07); }
.feature-tag.amber { border-color: rgba(244, 185, 66, 0.24); color: #edc875; background: rgba(244, 185, 66, 0.07); }
.card h3 { margin: 0 0 9px; font-size: 18px; letter-spacing: -0.015em; }
.card p { margin: 0; color: var(--text-dim); font-size: 14px; line-height: 1.68; }

/* Orchestration */
.orchestration-section { overflow: hidden; }
.orchestration-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; align-items: center; gap: clamp(46px, 7vw, 90px); }
.orchestration-copy .section-title { max-width: 590px; }
.orchestration-copy .section-sub { margin: 0; max-width: 610px; }

.check-list { display: grid; gap: 20px; margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; }
.check-list li > span { display: grid; place-items: center; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%; color: #05261c; background: var(--emerald); font-size: 12px; font-weight: 900; }
.check-list strong { color: #ececf0; font-size: 14.5px; }
.check-list p { margin: 3px 0 0; color: var(--text-faint); font-size: 13px; line-height: 1.6; }

.flow-panel {
  position: relative;
  padding: 22px;
  border: 1px solid #34343b;
  border-radius: 18px;
  background: rgba(16, 16, 19, 0.9);
  box-shadow: 0 30px 80px -40px rgba(34, 183, 239, 0.48);
}

.flow-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 17px; color: #cfcfd5; font-size: 12px; font-weight: 690; }
.flow-live { display: flex; align-items: center; gap: 6px; color: var(--text-faint); font-size: 10px; font-weight: 500; text-transform: uppercase; }
.flow-live i { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 8px rgba(33, 209, 159, 0.8); }
.flow-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.flow-list > li:not(.branch-row) { display: grid; grid-template-columns: 32px 1fr auto; align-items: center; gap: 11px; padding: 12px; border: 1px solid #292930; border-radius: 10px; background: #141418; }
.flow-index { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid #33333a; border-radius: 8px; color: #757580; background: #1b1b20; font: 700 9px/1 ui-monospace, monospace; }
.flow-list strong, .flow-list small { display: block; }
.flow-list strong { color: #e1e1e5; font-size: 11.5px; }
.flow-list small { color: #70707b; font-size: 9.5px; }
.flow-list li > b { padding: 4px 7px; border-radius: 99px; color: #787883; background: #202026; font-size: 8px; font-weight: 650; }
.flow-list li.active > b { color: #82e2c8; background: rgba(33, 209, 159, 0.09); }
.flow-list li.reviewing { border-color: rgba(34, 183, 239, 0.27); }
.flow-list li.reviewing > b { color: #84daf8; background: rgba(34, 183, 239, 0.09); }

.branch-row { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.branch-row::before { content: ""; position: absolute; top: -10px; bottom: -10px; left: 50%; width: 1px; z-index: -1; background: linear-gradient(var(--emerald), var(--sky)); opacity: 0.3; }
.branch-row > div { display: grid; grid-template-columns: 32px 1fr; column-gap: 10px; align-items: center; padding: 12px; border: 1px solid #2b2b31; border-radius: 10px; background: #151519; }
.branch-row .flow-index { grid-row: 1 / span 2; }

/* Demo callout */
.demo-callout { padding-block: 52px; }
.demo-callout-inner { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 38px; padding: 40px 44px; border: 1px solid rgba(33, 209, 159, 0.28); border-radius: 20px; background: linear-gradient(118deg, rgba(33, 209, 159, 0.1), rgba(21, 21, 25, 0.88) 52%, rgba(34, 183, 239, 0.08)); }
.demo-callout-inner::after { content: ""; position: absolute; width: 280px; height: 280px; right: -130px; top: -150px; border-radius: 50%; background: rgba(34, 183, 239, 0.14); filter: blur(40px); pointer-events: none; }
.demo-callout h2 { position: relative; margin: 0 0 10px; font-size: clamp(27px, 3.5vw, 39px); line-height: 1.15; letter-spacing: -0.03em; }
.demo-callout p { position: relative; max-width: 720px; margin: 0; color: var(--text-dim); font-size: 15px; }
.demo-callout .btn { position: relative; z-index: 1; }

/* Pricing */
.pricing-wrap { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; gap: 18px; max-width: 1010px; margin: 0 auto; }
.price-card { position: relative; display: flex; width: 100%; overflow: hidden; flex-direction: column; padding: 42px 38px; border: 1px solid var(--border); border-radius: 19px; background: rgba(22, 22, 26, 0.75); text-align: center; }
.price-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: var(--grad); }
.price-card-annual { border-color: rgba(33, 209, 159, 0.42); background: linear-gradient(145deg, rgba(33, 209, 159, 0.08), rgba(22, 22, 26, 0.82) 52%); box-shadow: 0 24px 64px -46px rgba(33, 209, 159, 0.8); }
.price-badge { display: inline-flex; align-self: center; margin-bottom: 20px; padding: 5px 12px; border: 1px solid rgba(33, 209, 159, 0.27); border-radius: 99px; color: #83e4c9; background: rgba(33, 209, 159, 0.08); font-size: 11px; font-weight: 720; letter-spacing: 0.1em; text-transform: uppercase; }
.price-saving { position: absolute; top: 17px; right: 18px; padding: 5px 8px; border: 1px solid rgba(244, 185, 66, 0.28); border-radius: 99px; color: #eac775; background: rgba(244, 185, 66, 0.08); font-size: 9px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.price-figure { display: flex; justify-content: center; align-items: baseline; gap: 7px; margin-bottom: 3px; }
.price-amount { font: 820 58px/1 ui-monospace, "SFMono-Regular", Consolas, monospace; letter-spacing: -0.05em; }
.price-unit { color: var(--text-dim); font-size: 14px; }
.price-cycle { margin-bottom: 28px; color: var(--text-faint); font-size: 13px; }
.price-cycle strong { display: block; margin-top: 5px; color: #8de5cd; font-size: 12px; font-weight: 650; }
.price-list { display: grid; flex: 1; align-content: start; gap: 11px; margin: 0 0 30px; padding: 0; list-style: none; text-align: left; }
.price-list li { display: grid; grid-template-columns: 18px 1fr; gap: 9px; color: var(--text-dim); font-size: 14px; }
.price-list li span { color: var(--emerald); font-weight: 800; }
.price-card .btn { width: 100%; }
.price-fine { margin: 14px 0 0; color: var(--text-faint); font-size: 12px; }
.pricing-manage { margin: 22px auto 0; color: var(--text-faint); font-size: 13px; text-align: center; }
.pricing-manage a { color: #8be5cc; text-decoration: underline; text-underline-offset: 3px; }

/* Downloads */
.download-section { border-top: 1px solid rgba(63, 63, 70, 0.34); background: rgba(14, 14, 17, 0.65); }
.release-status { margin: 12px auto 0; color: var(--text-muted); font-size: 12px; text-align: center; }
.release-status-action { margin: 7px auto 0; font-size: 12px; text-align: center; }
.release-status-action a { color: #8be5cc; text-decoration: underline; text-underline-offset: 3px; }
.release-status-action a:hover { color: var(--emerald); }
.release-status-action a:focus-visible { border-radius: 3px; outline: 2px solid var(--sky); outline-offset: 3px; }
.download-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dl-card { display: flex; min-width: 0; min-height: 265px; flex-direction: column; padding: 26px; border: 1px solid var(--border); border-radius: var(--radius); background: rgba(22, 22, 26, 0.72); transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.2s ease; }
.dl-card:hover { transform: translateY(-3px); border-color: rgba(33, 209, 159, 0.46); box-shadow: 0 20px 46px -28px rgba(33, 209, 159, 0.42); }
.dl-card.detected-platform { border-color: rgba(33, 209, 159, 0.5); box-shadow: inset 0 1px 0 rgba(33, 209, 159, 0.08), 0 18px 48px -38px rgba(33, 209, 159, 0.65); }
.dl-card.detected-platform .dl-tag { color: var(--emerald); }
.dl-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 27px; }
.os-mark { width: 46px; height: 39px; padding: 9px 11px; border: 1px solid rgba(33, 209, 159, 0.26); border-radius: 10px; background: rgba(33, 209, 159, 0.07); object-fit: contain; }
.os-mark.mac { border-color: rgba(34, 183, 239, 0.27); background: rgba(34, 183, 239, 0.07); }
.os-mark.linux { border-color: rgba(244, 185, 66, 0.28); background: rgba(244, 185, 66, 0.07); }
.dl-tag { color: var(--text-faint); font-size: 9.5px; font-weight: 660; letter-spacing: 0.07em; text-transform: uppercase; }
.dl-card h3 { margin: 0 0 8px; font-size: 19px; letter-spacing: -0.02em; }
.dl-card > p { flex: 1; margin: 0 0 22px; color: var(--text-dim); font-size: 13.5px; line-height: 1.65; }
.dl-meta { display: flex; align-items: center; gap: 8px; color: var(--text-faint); font-size: 11px; }
.dl-meta i { width: 3px; height: 3px; border-radius: 50%; background: #4d4d56; }
.dl-meta b { margin-left: auto; color: var(--emerald); font-size: 17px; font-weight: 500; }

.other-downloads { max-width: 900px; margin: 22px auto 0; border: 1px solid var(--border); border-radius: 12px; background: rgba(20, 20, 24, 0.62); }
.other-downloads summary { display: flex; align-items: center; gap: 10px; padding: 14px 18px; color: #d0d0d5; font-size: 13px; font-weight: 650; cursor: pointer; list-style-position: inside; }
.other-downloads summary span { color: var(--text-faint); font-size: 11px; font-weight: 450; }
.other-downloads[open] summary { border-bottom: 1px solid var(--border-soft); }
.other-download-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.other-download-grid a { position: relative; display: flex; flex-direction: column; padding: 16px 38px 16px 18px; border-right: 1px solid var(--border-soft); }
.other-download-grid a:last-child { border-right: 0; }
.other-download-grid a:hover { background: rgba(255, 255, 255, 0.025); }
.other-download-grid strong { color: #d7d7dc; font-size: 12px; }
.other-download-grid span { color: var(--text-faint); font-size: 10.5px; }
.other-download-grid b { position: absolute; top: 50%; right: 17px; color: var(--emerald); transform: translateY(-50%); }
.dl-card.is-unavailable,
.other-download-grid a.is-unavailable,
.install-help a.is-unavailable { cursor: not-allowed; opacity: 0.52; pointer-events: none; }
.dl-card.is-unavailable:hover,
.other-download-grid a.is-unavailable:hover { border-color: var(--border); background: inherit; transform: none; }
.download-note { max-width: 760px; margin: 18px auto 0; color: #aaaab4; font-size: 12.5px; text-align: center; }
.download-note strong { color: #f4b942; }
.install-help { max-width: 760px; margin: 16px auto 0; border: 1px solid var(--border); border-radius: 12px; background: rgba(20, 20, 24, 0.62); }
.install-help summary { min-height: 44px; padding: 11px 16px; color: #d7d7dc; font-size: 12.5px; font-weight: 650; cursor: pointer; }
.install-help > div { display: grid; gap: 10px; padding: 15px 17px 17px; border-top: 1px solid var(--border-soft); }
.install-help p { margin: 0; color: var(--text-dim); font-size: 12.5px; }
.install-help code { color: #d7d7dc; }
.install-help a { width: fit-content; color: #8be5cc; font-size: 12.5px; text-decoration: underline; text-underline-offset: 3px; }
.release-links { display: flex; flex-wrap: wrap; gap: 8px 16px; }

/* Footer */
.footer { padding: 31px 0; border-top: 1px solid var(--border-soft); background: rgba(9, 9, 11, 0.82); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand { font-size: 15px; }
.footer-brand img { width: 25px; height: 25px; border-radius: 7px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 17px; }
.footer-links a, .footer-links button { display: inline-flex; min-height: 44px; align-items: center; appearance: none; padding: 8px 2px; border: 0; color: var(--text-dim); background: transparent; font-size: 12.5px; cursor: pointer; }
.footer-links a:hover, .footer-links button:hover { color: var(--text); }
.footer-copy { margin: 0; color: var(--text-faint); font-size: 12px; white-space: nowrap; }

/* Interactive demo */
.demo-dialog {
  width: min(1180px, calc(100vw - 34px));
  max-width: none;
  max-height: calc(100dvh - 34px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid #383840;
  border-radius: 19px;
  color: var(--text);
  background: #0c0c0f;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.82), 0 0 80px -50px rgba(33, 209, 159, 0.65);
}

.demo-dialog::backdrop { background: rgba(2, 2, 4, 0.82); backdrop-filter: blur(7px); }
.demo-shell { min-width: 0; }
.demo-header { position: sticky; top: 0; z-index: 5; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 20px; border-bottom: 1px solid #29292f; background: rgba(12, 12, 15, 0.95); backdrop-filter: blur(12px); }
.demo-kicker { margin: 0 0 2px; color: var(--emerald); font-size: 9px; font-weight: 730; letter-spacing: 0.13em; text-transform: uppercase; }
.demo-header h2 { margin: 0; font-size: 17px; letter-spacing: -0.015em; }
.demo-header p:last-child { margin: 1px 0 0; color: var(--text-faint); font-size: 10px; }
.demo-actions { display: flex; align-items: center; gap: 7px; }
.demo-control, .demo-close { appearance: none; border: 1px solid #33333a; border-radius: 8px; color: #b9b9c1; background: #18181d; cursor: pointer; }
.demo-control { padding: 7px 10px; font-size: 10px; }
.demo-close { display: grid; place-items: center; width: 32px; height: 32px; font-size: 21px; line-height: 1; }
.demo-control:hover, .demo-close:hover { border-color: #50505a; color: var(--text); }

.demo-stage { display: grid; grid-template-columns: 0.37fr 0.63fr; min-height: 625px; }
.demo-chat { display: flex; min-width: 0; flex-direction: column; padding: 18px; border-right: 1px solid #29292f; background: #0f0f12; }
.demo-pane-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; color: #d2d2d7; font-size: 11px; font-weight: 650; }
.demo-pane-head small { color: #666671; font-size: 9px; font-weight: 500; }
.demo-conversation { display: flex; flex-direction: column; gap: 11px; max-height: 470px; overflow: auto; scrollbar-width: thin; scrollbar-color: #303036 transparent; }
.demo-message { max-width: 92%; padding: 11px 12px; border: 1px solid #2d2d33; border-radius: 11px; color: #cdCDD3; background: #18181c; font-size: 11px; animation: demo-message-in 0.3s ease both; }
.demo-message.user { align-self: flex-end; border-bottom-right-radius: 4px; background: rgba(34, 183, 239, 0.075); }
.demo-message.conductor { border-bottom-left-radius: 4px; }
.demo-message.result { border-color: rgba(33, 209, 159, 0.26); background: rgba(33, 209, 159, 0.06); }
.demo-message span { display: block; margin-bottom: 4px; color: var(--emerald); font-size: 8px; font-weight: 750; letter-spacing: 0.09em; text-transform: uppercase; }
.demo-message.user span { color: #8bdcf8; }
.demo-message p { margin: 0; line-height: 1.55; }
.demo-composer { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 8px; margin-top: auto; padding: 11px; border: 1px solid #323239; border-radius: 11px; color: #686873; background: #151519; font-size: 9.5px; }
.demo-composer kbd { color: #595964; font: inherit; }
.demo-composer button { padding: 4px 7px; border: 1px solid rgba(33, 209, 159, 0.18); border-radius: 6px; color: #74d8bd; background: rgba(33, 209, 159, 0.07); font-size: 8px; }

.demo-work { min-width: 0; padding: 18px; }
.demo-overall { margin-bottom: 15px; }
.demo-overall > div:first-child { display: flex; justify-content: space-between; margin-bottom: 7px; color: #9f9faa; font-size: 10px; }
.demo-overall strong { color: var(--emerald); font: 700 10px/1 ui-monospace, monospace; }
.demo-progress { height: 5px; overflow: hidden; border-radius: 99px; background: #242429; }
.demo-progress span { display: block; width: 8%; height: 100%; border-radius: inherit; background: var(--grad); transition: width 0.48s ease; }
.demo-work-grid { display: grid; grid-template-columns: 0.43fr 0.57fr; gap: 13px; min-height: 535px; }
.demo-lanes, .demo-output { min-width: 0; padding: 14px; border: 1px solid #29292f; border-radius: 12px; background: #111115; }
.demo-lane { display: grid; grid-template-columns: 31px 1fr auto; align-items: center; gap: 9px; margin-bottom: 7px; padding: 9px; border: 1px solid #29292f; border-radius: 9px; background: #17171b; transition: border-color 0.2s ease, background 0.2s ease; }
.lane-avatar { width: 31px; height: 31px; }
.demo-lane div { display: flex; min-width: 0; flex-direction: column; }
.demo-lane strong { color: #dedee3; font-size: 10.5px; }
.demo-lane small { overflow: hidden; color: #696974; font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.demo-lane > b { padding: 3px 5px; border-radius: 99px; color: #70707a; background: #222228; font-size: 7.5px; font-weight: 650; }
.demo-lane[data-state="running"] { border-color: rgba(33, 209, 159, 0.27); background: rgba(33, 209, 159, 0.04); }
.demo-lane[data-state="running"] > b { color: #80e0c5; background: rgba(33, 209, 159, 0.09); }
.demo-lane[data-state="reviewing"] { border-color: rgba(34, 183, 239, 0.27); background: rgba(34, 183, 239, 0.04); }
.demo-lane[data-state="reviewing"] > b { color: #82d8f7; background: rgba(34, 183, 239, 0.09); }
.demo-lane[data-state="complete"] > b { color: #b5b5bd; }

.demo-terminal { min-height: 196px; margin-top: 14px; padding: 12px; overflow: hidden; border: 1px solid #26262c; border-radius: 9px; color: #858590; background: #0b0b0e; font: 9px/1.5 ui-monospace, "SFMono-Regular", Consolas, monospace; }
.demo-terminal::before { content: "Activity"; display: block; margin-bottom: 8px; color: #555560; font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; }
.demo-terminal p { margin: 0 0 5px; animation: demo-line-in 0.2s ease both; }
.demo-terminal i { color: #6bcdb2; font-style: normal; }

.demo-output { display: flex; flex-direction: column; }
.demo-tabs { display: flex; gap: 13px; margin-bottom: 13px; border-bottom: 1px solid #28282e; color: #656570; font-size: 9px; }
.demo-tabs span { padding-bottom: 8px; }
.demo-tabs span.active { margin-bottom: -1px; border-bottom: 1px solid var(--emerald); color: #c8c8ce; }
.mini-site { position: relative; min-height: 330px; overflow: hidden; border: 1px solid #313138; border-radius: 9px; background: linear-gradient(145deg, #0e1214, #101014 57%, #101923); }
.mini-site::before { content: ""; position: absolute; width: 210px; height: 210px; right: -70px; top: -90px; border-radius: 50%; background: rgba(34, 183, 239, 0.13); filter: blur(25px); }
.mini-site-nav { position: relative; display: flex; align-items: center; padding: 11px 13px; border-bottom: 1px solid rgba(255, 255, 255, 0.055); }
.mini-site-nav i { width: 15px; height: 15px; border-radius: 4px; background: linear-gradient(135deg, var(--emerald), var(--sky)); }
.mini-site-nav span { width: 42px; height: 5px; margin-left: 6px; border-radius: 3px; background: #595965; }
.mini-site-nav b { width: 45px; height: 12px; margin-left: auto; border: 1px solid rgba(33, 209, 159, 0.26); border-radius: 4px; background: rgba(33, 209, 159, 0.07); }
.mini-site-copy { position: relative; padding: 35px 24px 20px; }
.mini-site-copy small { color: var(--emerald); font-size: 6px; font-weight: 750; letter-spacing: 0.14em; }
.mini-site-copy strong { display: block; margin: 8px 0 12px; color: #f5f5f7; font-size: clamp(17px, 2.3vw, 28px); line-height: 1.08; letter-spacing: -0.04em; }
.mini-site-copy em { color: #4bd6ae; font-style: normal; }
.mini-site-copy p { width: 72%; height: 5px; margin: 0 0 5px; border-radius: 4px; background: #35353e; }
.mini-site-copy p:nth-of-type(2) { width: 52%; }
.mini-site-copy button { margin-top: 14px; padding: 7px 10px; border: 0; border-radius: 5px; color: #05261c; background: var(--emerald); font-size: 7px; font-weight: 750; }
.mini-site-cards { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 0 14px 16px; }
.mini-site-cards span { height: 46px; border: 1px solid #2d2d35; border-radius: 6px; background: rgba(255, 255, 255, 0.018); }
.preview-cursor { position: absolute; left: 46%; top: 57%; width: 8px; height: 12px; border: solid #fff; border-width: 1px 0 0 1px; transform: rotate(-22deg); filter: drop-shadow(0 1px 2px #000); animation: cursor-tour 4.6s ease-in-out infinite; }
.demo-checks { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 12px; }
.demo-checks span { padding: 4px 6px; border: 1px solid #2d2d33; border-radius: 6px; color: #7d7d87; background: #17171b; font-size: 7.5px; animation: demo-line-in 0.2s ease both; }
.demo-checks b { color: #74d7bc; font-weight: 650; }

/* Product-parity controls and workbench surfaces in the simulated tour. */
.inline-code { color: #bfa7ff; font: 0.92em ui-monospace, "SFMono-Regular", Consolas, monospace; }
.demo-simulation-badge { padding: 5px 7px; border: 1px solid rgba(244, 185, 66, 0.28); border-radius: 99px; color: #e6bf69; background: rgba(244, 185, 66, 0.07); font-size: 8px; font-weight: 760; letter-spacing: 0.09em; text-transform: uppercase; }
.demo-stage { grid-template-columns: minmax(315px, 0.39fr) minmax(0, 0.61fr); }
.demo-chat { gap: 10px; }
.demo-pane-head small { display: flex; align-items: center; gap: 6px; }
.demo-live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sky); box-shadow: 0 0 0 3px rgba(34, 183, 239, 0.09); }
.demo-conversation { flex: 1; min-height: 205px; max-height: 330px; padding-right: 3px; }
.demo-message b { color: #bba5ff; font-weight: 650; }
.demo-message.continuity { border-color: rgba(244, 185, 66, 0.26); border-bottom-left-radius: 4px; background: rgba(244, 185, 66, 0.055); }
.demo-message.continuity span { color: #e1bb65; }
.demo-message-live { border-color: rgba(139, 92, 246, 0.32); }
.demo-mention-strip { display: flex; flex-wrap: wrap; align-items: center; gap: 5px; margin-top: auto; color: #60606b; font-size: 8px; }
.demo-mention-strip > span { margin-right: 2px; text-transform: uppercase; letter-spacing: 0.08em; }
.demo-mention-strip button,
.demo-agent-card header button { appearance: none; padding: 3px 5px; border: 1px solid rgba(139, 92, 246, 0.23); border-radius: 5px; color: #bba4ff; background: rgba(139, 92, 246, 0.075); font: 8px ui-monospace, "SFMono-Regular", Consolas, monospace; cursor: pointer; }
.demo-mention-strip button:hover,
.demo-agent-card header button:hover { border-color: rgba(167, 139, 250, 0.52); background: rgba(139, 92, 246, 0.14); }
.demo-composer { display: block; margin-top: 0; padding: 0; overflow: hidden; font-size: 9px; }
.demo-composer textarea { display: block; width: 100%; min-height: 58px; resize: none; padding: 11px 12px 6px; border: 0; outline: 0; color: #dedee3; background: transparent; font: 10.5px/1.45 Inter, ui-sans-serif, system-ui, sans-serif; }
.demo-composer textarea::placeholder { color: #62626d; }
.demo-composer textarea:focus { box-shadow: inset 0 0 0 1px rgba(33, 209, 159, 0.34); }
.demo-composer-toolbar { display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; padding: 7px 9px 8px; border-top: 1px solid #29292f; }
.demo-selects { display: flex; min-width: 0; gap: 6px; }
.demo-selects label { display: flex; min-width: 0; flex-direction: column; gap: 3px; }
.demo-selects label > span { color: #5e5e69; font-size: 7px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.demo-selects select { max-width: 125px; height: 25px; padding: 0 19px 0 7px; border: 1px solid #303037; border-radius: 6px; outline: 0; color: #a9a9b2; background: #111115; font-size: 8px; }
.demo-selects select:focus { border-color: rgba(33, 209, 159, 0.45); }
.demo-send-actions { display: flex; align-items: center; justify-content: flex-end; gap: 5px; }
.demo-send-actions > span { max-width: 90px; color: #575762; font-size: 7px; line-height: 1.3; text-align: right; }
.demo-send-actions kbd { color: #85858e; font: inherit; }
.demo-composer .demo-queue,
.demo-composer .demo-steer { min-height: 27px; padding: 5px 7px; border-radius: 6px; font-size: 8px; font-weight: 650; cursor: pointer; }
.demo-composer .demo-queue { border-color: #35353c; color: #b3b3bc; background: #1d1d22; }
.demo-composer .demo-steer { border-color: rgba(33, 209, 159, 0.34); color: #061f17; background: #64d9b8; }
.demo-composer .demo-queue:hover { border-color: #52525b; color: #ececf0; }
.demo-composer .demo-steer:hover { background: #82e7ca; }
.demo-composer-feedback { min-height: 24px; margin: 0; padding: 5px 9px 6px; border-top: 1px solid #26262c; color: #666671; background: #111115; font-size: 7.5px; line-height: 1.4; }

.demo-work { display: flex; min-height: 0; flex-direction: column; }
.demo-overall { flex: none; }
.demo-overall > div:first-child > span { display: flex; min-width: 0; align-items: center; gap: 6px; }
.demo-overall > div:first-child b { padding: 3px 5px; border-radius: 5px; color: #a98fff; background: rgba(139, 92, 246, 0.09); font-size: 8px; }
.demo-overall > div:first-child i { width: 3px; height: 3px; border-radius: 50%; background: #4b4b54; }
.demo-overall > div:first-child em { overflow: hidden; font-style: normal; text-overflow: ellipsis; white-space: nowrap; }
.demo-workbench-tabs { display: grid; flex: none; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 2px; margin-bottom: 9px; padding: 3px; border: 1px solid #29292f; border-radius: 8px; background: #111115; }
.demo-workbench-tabs button { min-width: 0; min-height: 27px; appearance: none; padding: 4px 2px; border: 0; border-radius: 5px; color: #656570; background: transparent; font-size: 8px; cursor: pointer; }
.demo-workbench-tabs button:hover { color: #b7b7bf; background: #19191e; }
.demo-workbench-tabs button[aria-selected="true"] { color: #dedee3; background: #242429; box-shadow: inset 0 -1px rgba(33, 209, 159, 0.65); }
.demo-workbench-tabs button b { margin-left: 2px; padding: 1px 3px; border-radius: 4px; color: #bba4ff; background: rgba(139, 92, 246, 0.12); font-size: 7px; }
.demo-workbench-panel { flex: 1; min-height: 490px; overflow: auto; border: 1px solid #29292f; border-radius: 12px; background: #111115; scrollbar-width: thin; scrollbar-color: #303036 transparent; }
.demo-run-grid { display: grid; grid-template-columns: minmax(0, 0.54fr) minmax(0, 0.46fr); gap: 11px; min-height: 488px; padding: 13px; }
.demo-lanes { padding: 12px; }
.demo-lane { grid-template-columns: 31px minmax(0, 1fr) auto; }
.demo-lane div > i { height: 3px; margin-top: 6px; overflow: hidden; border-radius: 99px; background: #28282e; }
.demo-lane div > i span { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #8b5cf6, var(--sky)); transition: width 0.45s ease; }
.demo-lane[data-state="nudged"] { border-color: rgba(244, 185, 66, 0.32); background: rgba(244, 185, 66, 0.05); }
.demo-lane[data-state="nudged"] > b { color: #e4bd64; background: rgba(244, 185, 66, 0.1); }
.demo-continuity-card { display: flex; align-items: center; gap: 9px; margin-top: 11px; padding: 10px; border: 1px solid rgba(33, 209, 159, 0.19); border-radius: 9px; background: rgba(33, 209, 159, 0.045); }
.demo-continuity-card[data-state="nudged"] { border-color: rgba(244, 185, 66, 0.3); background: rgba(244, 185, 66, 0.055); }
.demo-continuity-card[data-state="off"] { border-color: #303037; background: #17171b; }
.continuity-pulse { position: relative; flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 0 4px rgba(33, 209, 159, 0.09); }
.demo-continuity-card[data-state="nudged"] .continuity-pulse { background: #e6bb5c; box-shadow: 0 0 0 4px rgba(244, 185, 66, 0.09); }
.demo-continuity-card[data-state="off"] .continuity-pulse { background: #656570; box-shadow: none; }
.demo-continuity-card div { display: flex; min-width: 0; flex-direction: column; }
.demo-continuity-card strong { color: #bdbdc4; font-size: 8px; }
.demo-continuity-card small { margin-top: 2px; overflow: hidden; color: #696974; font-size: 7.5px; text-overflow: ellipsis; white-space: nowrap; }
.demo-terminal { min-height: 0; margin: 0; padding: 12px; }
.demo-terminal::before { content: none; }
.demo-terminal-title { display: flex; justify-content: space-between; margin-bottom: 11px !important; padding-bottom: 8px; border-bottom: 1px solid #24242a; color: #b2b2ba; font: 650 9px/1 Inter, ui-sans-serif, system-ui, sans-serif; }
.demo-terminal-title span { color: #575762; font-size: 7px; font-weight: 500; text-transform: uppercase; }
.demo-terminal p:not(.demo-terminal-title) { display: grid; grid-template-columns: 30px 48px 1fr; gap: 4px; align-items: baseline; }
.demo-terminal time { color: #42424b; }

.demo-agent-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin: 13px; padding: 12px; border: 1px solid rgba(139, 92, 246, 0.21); border-radius: 10px; background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.11), transparent 48%), #151519; }
.demo-agent-header > div { display: flex; flex-direction: column; }
.demo-agent-header strong { color: #e3e3e7; font-size: 11px; }
.demo-agent-header span { margin-top: 3px; color: #71717b; font-size: 8px; }
.demo-agent-header p { margin: 0; color: #8c8c96; font-size: 8px; }
.demo-agent-header p b { color: #c7b7ff; font-size: 13px; }
.demo-agent-header p i { display: inline-block; width: 3px; height: 3px; margin: 0 4px; border-radius: 50%; background: #4a4a52; }
.demo-agent-header p em { color: #85dfc6; font-style: normal; }
.demo-team-map { display: flex; align-items: center; justify-content: center; margin: 0 13px 11px; }
.demo-team-map span { display: grid; width: 33px; height: 33px; place-items: center; border: 2px solid #292932; border-radius: 50%; color: #c6c6ce; background: #0d0d10; font: 700 8px ui-monospace, monospace; }
.demo-team-map i { width: 52px; height: 1px; background: linear-gradient(90deg, #34343c, rgba(34, 183, 239, 0.45), #34343c); }
.demo-agent-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; padding: 0 13px 13px; }
.demo-agent-card { min-width: 0; overflow: hidden; border: 1px solid #2b2b31; border-radius: 9px; background: #17171b; }
.demo-agent-card.active { border-color: rgba(34, 183, 239, 0.31); }
.demo-agent-card header { display: grid; grid-template-columns: 29px minmax(0, 1fr) auto; align-items: center; gap: 7px; padding: 9px; }
.demo-agent-card header > span { display: grid; width: 29px; height: 29px; place-items: center; border: 1px solid #303037; border-radius: 8px; color: #cbbcff; background: #101014; font-size: 10px; font-weight: 700; }
.demo-agent-card header div { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; gap: 3px; }
.demo-agent-card header strong { max-width: 100%; overflow: hidden; color: #dedee3; font-size: 9px; text-overflow: ellipsis; }
.demo-agent-card header > b { padding: 3px 4px; border-radius: 99px; color: #777782; background: #24242a; font-size: 6px; font-weight: 650; }
.demo-agent-card dl { display: grid; gap: 8px; margin: 0; padding: 9px; border-block: 1px solid #28282e; background: #121216; }
.demo-agent-card dl div { min-width: 0; }
.demo-agent-card dt { color: #565661; font-size: 6px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.demo-agent-card dd { margin: 3px 0 0; overflow: hidden; color: #a6a6af; font-size: 7.5px; line-height: 1.35; text-overflow: ellipsis; }
.demo-agent-card footer { display: grid; grid-template-columns: 1fr auto; gap: 5px; padding: 8px 9px; color: #64646e; font-size: 7px; }
.demo-agent-card footer > b { color: #a1a1aa; font-family: ui-monospace, monospace; }
.demo-agent-card footer > i { grid-column: 1 / -1; height: 4px; overflow: hidden; border-radius: 99px; background: #28282e; }
.demo-agent-card footer > i span { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #8b5cf6, var(--sky)); transition: width 0.45s ease; }
.demo-estimate-note { margin: 0 13px 13px; color: #595964; font-size: 7px; text-align: center; }

.demo-code-head { display: flex; align-items: center; gap: 8px; padding: 13px 15px; border-bottom: 1px solid #29292f; color: #9a9aa4; font-size: 9px; }
.demo-code-head b { margin-left: auto; color: #6dd7b8; }
.demo-code-head em { color: #f08191; font-style: normal; }
.demo-code { min-height: 350px; margin: 0; padding: 20px; color: #8f8f99; background: #0b0b0e; font: 9.5px/1.8 ui-monospace, "SFMono-Regular", Consolas, monospace; }
.demo-code span, .demo-code b { display: block; }
.demo-code b { color: #8adabe; background: rgba(33, 209, 159, 0.045); font-weight: 500; }
.demo-panel-note { margin: 12px; color: #5c5c66; font-size: 8px; text-align: center; }
.demo-shell-view { min-height: 488px; padding: 20px; color: #9696a0; background: #09090c; font: 10px/1.8 ui-monospace, "SFMono-Regular", Consolas, monospace; }
.demo-shell-view p { margin: 0 0 5px; }
.demo-shell-view p i { color: #79d9bd; font-style: normal; }
.demo-shell-view .shell-ok { color: #79cbb4; }
.demo-shell-view > span { display: block; margin-top: 24px; color: #51515b; font-size: 8px; }
.demo-todos, .demo-files { margin: 0; padding: 13px; list-style: none; }
.demo-todos { display: grid; gap: 8px; }
.demo-todos li { display: flex; align-items: center; gap: 10px; padding: 12px; border: 1px solid #2b2b31; border-radius: 9px; background: #17171b; }
.demo-todos li > span { display: grid; width: 22px; height: 22px; place-items: center; border: 1px solid #3a3a42; border-radius: 50%; color: #73737d; }
.demo-todos li.done > span { border-color: rgba(33, 209, 159, 0.3); color: #77d8bc; background: rgba(33, 209, 159, 0.06); }
.demo-todos li div { display: flex; flex-direction: column; }
.demo-todos strong { color: #b8b8c0; font-size: 9px; }
.demo-todos small { margin-top: 3px; color: #65656f; font-size: 7px; }
.demo-files { color: #a1a1aa; font: 9px/1.8 ui-monospace, "SFMono-Regular", Consolas, monospace; }
.demo-files li { display: flex; align-items: center; gap: 7px; min-height: 27px; padding: 2px 7px; border-radius: 5px; }
.demo-files li:hover { background: #19191e; }
.demo-files li > span { width: 16px; color: #656570; text-align: center; }
.demo-files li > b { margin-left: auto; color: #e5bb5d; }
.demo-files .indent { padding-left: 22px; }
.demo-files .indent-2 { padding-left: 42px; }

.demo-preview-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 11px; border-bottom: 1px solid #29292f; }
.demo-preview-toolbar > div { display: flex; gap: 3px; }
.demo-preview-toolbar button { min-height: 25px; appearance: none; padding: 4px 8px; border: 1px solid transparent; border-radius: 5px; color: #6d6d77; background: transparent; font-size: 8px; cursor: pointer; }
.demo-preview-toolbar button.active { border-color: #34343b; color: #c0c0c8; background: #232328; }
.demo-preview-toolbar > span { color: #5d5d67; font-size: 7.5px; }
.demo-preview-canvas { display: grid; min-height: 392px; place-items: center; padding: 16px; overflow: hidden; background-color: #0b0b0e; background-image: linear-gradient(#17171c 1px, transparent 1px), linear-gradient(90deg, #17171c 1px, transparent 1px); background-size: 18px 18px; }
.demo-device-frame { width: min(100%, 510px); transition: width 0.35s ease; }
.demo-device-frame.mobile { width: 225px; padding: 7px; border: 1px solid #3a3a42; border-radius: 20px; background: #070709; box-shadow: 0 15px 45px rgba(0, 0, 0, 0.45); }
.demo-device-frame.mobile::before { content: ""; display: block; width: 35px; height: 3px; margin: 0 auto 6px; border-radius: 99px; background: #303037; }
.demo-device-frame.mobile .mini-site { min-height: 355px; border-radius: 12px; }
.demo-device-frame.mobile .mini-site-copy { padding: 28px 16px 15px; }
.demo-device-frame.mobile .mini-site-copy strong { font-size: 20px; }
.demo-device-frame.mobile .mini-site-cards { grid-template-columns: 1fr; padding-inline: 11px; }
.demo-device-frame.mobile .mini-site-cards span { height: 32px; }
.demo-device-frame.mobile .preview-cursor { display: none; }

@keyframes demo-message-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes demo-line-in { from { opacity: 0; transform: translateX(-5px); } to { opacity: 1; transform: none; } }
@keyframes cursor-tour { 0%, 12% { transform: translate(-36px, 35px) rotate(-22deg); } 45% { transform: translate(35px, -25px) rotate(-22deg); } 72% { transform: translate(58px, 46px) rotate(-22deg); } 100% { transform: translate(-36px, 35px) rotate(-22deg); } }

/* Account */
.account-main { min-height: calc(100vh - var(--nav-h) - 94px); padding: 76px 0 100px; }
.account-head { margin-bottom: 42px; text-align: center; }
.account-head h1 { margin: 0 0 11px; font-size: clamp(32px, 4.6vw, 46px); line-height: 1.12; letter-spacing: -0.035em; }
.account-head p { max-width: 580px; margin: 0 auto; color: var(--text-dim); }
.account-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 18px; max-width: 980px; margin: 0 auto; }
.panel { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); }
.panel h2 { margin: 0 0 6px; font-size: 18px; }
.panel .panel-sub { margin: 0 0 23px; color: var(--text-faint); font-size: 13.5px; }
.signin-slot { min-height: 44px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.setup-note { display: flex; gap: 10px; padding: 14px 16px; border: 1px solid rgba(244, 185, 66, 0.34); border-radius: var(--radius-sm); color: #e8c06b; background: rgba(244, 185, 66, 0.07); font-size: 13px; }
.setup-note svg { flex: none; width: 17px; height: 17px; margin-top: 2px; }
.setup-note code { padding: 1px 5px; border-radius: 4px; background: rgba(0, 0, 0, 0.3); font-family: ui-monospace, monospace; font-size: 12px; }
.profile { display: none; }
.profile.visible { display: block; }
.profile-row { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.profile-row img { width: 52px; height: 52px; border: 2px solid rgba(33, 209, 159, 0.44); border-radius: 50%; }
.profile-name { font-weight: 670; }
.profile-email { color: var(--text-dim); font-size: 13px; }
.field-label { display: block; margin-bottom: 8px; color: var(--text-dim); font-size: 12px; font-weight: 650; }
.input { width: 100%; min-height: 44px; padding: 10px 13px; border: 1px solid var(--border); border-radius: var(--radius-sm); outline: 0; color: var(--text); background: rgba(9, 9, 11, 0.7); font: 13px ui-monospace, monospace; }
.input::placeholder { color: var(--text-faint); }
.input:focus { border-color: rgba(33, 209, 159, 0.58); box-shadow: 0 0 0 3px rgba(33, 209, 159, 0.12); }
.form-row { display: flex; gap: 9px; }
.form-row .input { flex: 1; }
.form-msg { min-height: 20px; margin: 9px 0 0; font-size: 12.5px; }
.form-msg.err { color: var(--red); }
.form-msg.ok { color: #79d9bd; }
.linked-state { display: none; align-items: center; gap: 9px; padding: 13px 15px; border: 1px solid rgba(33, 209, 159, 0.33); border-radius: var(--radius-sm); background: rgba(33, 209, 159, 0.07); font-size: 13px; }
.linked-state.visible { display: flex; }
.linked-state svg { flex: none; width: 17px; height: 17px; color: var(--emerald); }
.linked-state .key { color: var(--text-dim); font-family: ui-monospace, monospace; font-size: 12px; }
.linked-state .unlink { margin-left: auto; padding: 3px 6px; border: 0; border-radius: 6px; color: var(--text-faint); background: transparent; font-size: 12px; cursor: pointer; }
.linked-state .unlink:hover { color: var(--red); background: rgba(251, 113, 133, 0.07); }
.btn-signout { width: 100%; margin-top: 20px; }
.hint-list { display: grid; gap: 7px; margin: 21px 0 0; padding-left: 18px; color: var(--text-dim); font-size: 13px; }
.purchase-confirmation { display: flex; flex-wrap: wrap; gap: 7px 12px; max-width: 900px; margin: 0 auto 18px; padding: 16px 18px; border: 1px solid rgba(33, 209, 159, 0.38); border-radius: var(--radius); color: #b8eee0; background: rgba(33, 209, 159, 0.08); font-size: 13.5px; }
.purchase-confirmation[hidden] { display: none; }
.purchase-confirmation strong { color: var(--emerald); }
.activation-steps { display: grid; gap: 15px; margin: 0; padding: 0; list-style: none; }
.activation-steps li { display: flex; align-items: flex-start; gap: 12px; }
.activation-steps li > span { display: grid; flex: none; width: 25px; height: 25px; place-items: center; border: 1px solid rgba(33, 209, 159, 0.32); border-radius: 50%; color: var(--emerald); background: rgba(33, 209, 159, 0.07); font: 700 11px/1 ui-monospace, monospace; }
.activation-steps strong, .activation-steps small { display: block; }
.activation-steps strong { margin: 2px 0 3px; color: var(--text); font-size: 13.5px; }
.activation-steps small { color: var(--text-faint); font-size: 12.5px; line-height: 1.5; }
.activation-steps code { color: #a7e7d6; font: inherit; }
.account-action { width: 100%; margin-top: 24px; }
.support-list { margin-top: 0; }
.support-note { margin: 10px 0 0; color: var(--text-faint); font-size: 11.5px; text-align: center; }
.account-security-note { display: flex; gap: 10px; padding: 14px; border: 1px solid rgba(33, 209, 159, 0.22); border-radius: var(--radius-sm); color: #9dcfc2; background: rgba(33, 209, 159, 0.045); font-size: 12.5px; line-height: 1.55; }
.account-security-note svg { flex: none; width: 19px; height: 19px; margin-top: 1px; color: var(--emerald); }
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-top: 18px; padding: 4px; border: 1px solid var(--border-soft); border-radius: var(--radius-sm); background: rgba(9, 9, 11, 0.58); }
.auth-tab { min-height: 40px; border: 0; border-radius: 8px; color: var(--text-faint); background: transparent; font: 650 13px/1 var(--font-sans, system-ui, sans-serif); cursor: pointer; }
.auth-tab:hover { color: var(--text); }
.auth-tab.active { color: var(--text); background: rgba(255, 255, 255, 0.07); box-shadow: inset 0 0 0 1px var(--border); }
.auth-tab:disabled { color: var(--text-faint); cursor: not-allowed; opacity: 0.55; }
.auth-tab:disabled:hover { color: var(--text-faint); }
.email-auth-form { margin-top: 18px; }
.email-auth-form[hidden], .auth-tabs[hidden], #social-signin-options[hidden] { display: none; }
.email-auth-form .field-label { margin-top: 14px; }
.email-auth-form .field-label:first-of-type { margin-top: 0; }
.email-auth-submit { width: 100%; margin-top: 18px; }
.field-help { display: block; margin: 6px 0 0; color: var(--text-faint); font-size: 11.5px; line-height: 1.45; }
.auth-text-button { display: block; margin: 12px auto 0; padding: 5px; border: 0; color: #99dbc9; background: transparent; font: 600 12px/1.3 var(--font-sans, system-ui, sans-serif); cursor: pointer; }
.auth-text-button:hover { color: var(--emerald); text-decoration: underline; text-underline-offset: 3px; }
.auth-text-button:disabled { color: var(--text-faint); cursor: not-allowed; opacity: 0.55; }
.auth-text-button:disabled:hover { color: var(--text-faint); text-decoration: none; }
.auth-back { margin: 0 0 14px; padding-left: 0; }
.verification-form h3, #password-reset-request-form h3 { margin: 0 0 6px; font-size: 16px; }
.verification-form > p, #password-reset-request-form > p { margin: 0 0 16px; color: var(--text-faint); font-size: 12.5px; line-height: 1.5; }
.code-input { letter-spacing: 0.32em; text-align: center; font-size: 18px; }
.auth-divider { display: flex; align-items: center; gap: 10px; margin: 18px 0 0; color: var(--text-faint); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; }
.auth-divider::before, .auth-divider::after { height: 1px; flex: 1; background: var(--border-soft); content: ""; }
.auth-divider span { flex: none; }
.google-signin-wrap { min-height: 68px; display: grid; margin-top: 18px; place-items: center; padding: 12px; border: 1px solid var(--border-soft); border-radius: var(--radius-sm); background: rgba(9, 9, 11, 0.54); }
#google-signin-button { width: min(100%, 360px); min-height: 44px; display: grid; place-items: center; }
#google-signin-button.google-unavailable { color: var(--text-faint); font-size: 12px; }
.entitlement-card { padding: 15px 16px; border: 1px solid rgba(33, 209, 159, 0.25); border-radius: var(--radius-sm); background: rgba(33, 209, 159, 0.055); }
.entitlement-card > span { display: block; margin-bottom: 5px; color: var(--text-faint); font-size: 9px; font-weight: 750; letter-spacing: 0.09em; text-transform: uppercase; }
.entitlement-card strong { display: block; color: #b9efe0; font-size: 16px; }
.entitlement-card p { margin: 5px 0 0; color: var(--text-dim); font-size: 12px; line-height: 1.5; }
.account-plan-actions { display: grid; gap: 9px; }
.account-plan-button { min-height: 66px; display: flex; width: 100%; appearance: none; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 13px; border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text); background: rgba(9, 9, 11, 0.58); text-align: left; cursor: pointer; }
.account-plan-button:hover, .account-plan-button.intent-selected { border-color: rgba(33, 209, 159, 0.48); background: rgba(33, 209, 159, 0.06); }
.account-plan-button.annual { border-color: rgba(33, 209, 159, 0.3); }
.account-plan-button span, .account-plan-button strong, .account-plan-button small { display: block; }
.account-plan-button strong { margin-bottom: 4px; font-size: 13.5px; }
.account-plan-button small { color: var(--text-faint); font-size: 11.5px; }
.account-plan-button b { flex: none; padding: 4px 7px; border-radius: 99px; color: #8de5cd; background: rgba(33, 209, 159, 0.09); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.account-plan-button:disabled, [data-account-action]:disabled { cursor: not-allowed; opacity: 0.58; }
.desktop-access-panel { grid-column: 1 / -1; }
.desktop-access-panel .activation-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }

/* Legal policies */
.legal-main { padding: 74px 0 100px; }
.legal-wrap { max-width: 900px; }
.legal-head { margin-bottom: 28px; }
.legal-head h1 { margin: 0 0 9px; font-size: clamp(34px, 5vw, 52px); line-height: 1.08; letter-spacing: -0.035em; }
.legal-head > p:last-of-type { margin: 0; color: var(--text-dim); }
.legal-jump { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.legal-jump a { display: inline-flex; min-height: 44px; align-items: center; padding: 8px 13px; border: 1px solid var(--border); border-radius: 9px; color: #d2d2d8; background: var(--card); font-size: 12.5px; }
.legal-jump a:hover { border-color: #4b4b54; }
.legal-card { margin-top: 18px; padding: clamp(24px, 4vw, 38px); scroll-margin-top: calc(var(--nav-h) + 18px); border: 1px solid var(--border); border-radius: var(--radius); background: var(--card); }
.legal-card h2 { margin: 0 0 22px; font-size: 26px; }
.legal-card h3 { margin: 23px 0 5px; color: #e5e5e9; font-size: 15px; }
.legal-card p { margin: 0 0 12px; color: var(--text-dim); font-size: 14px; }
.legal-card a { color: #8be5cc; text-decoration: underline; text-underline-offset: 3px; }

/* 404 */
.nf-main { min-height: calc(100vh - var(--nav-h) - 90px); display: grid; place-items: center; padding: 70px 0; text-align: center; }
.nf-code { margin: 0 0 8px; font: 820 clamp(84px, 16vw, 150px)/1 ui-monospace, monospace; letter-spacing: -0.08em; }
.nf-title { margin: 0 0 10px; font-size: 26px; }
.nf-sub { max-width: 430px; margin: 0 auto 30px; color: var(--text-dim); }

/* Responsive */
@media (max-width: 1060px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 790px; text-align: center; margin: 0 auto; }
  .hero h1, .hero-sub { margin-inline: auto; }
  .hero-ctas, .platform-list { justify-content: center; }
  .product-window { width: min(760px, 100%); margin: 0 auto; }
  .orchestration-grid { grid-template-columns: 1fr; }
  .orchestration-copy { max-width: 760px; }
  .flow-panel { width: min(720px, 100%); margin: 0 auto; }
  .demo-stage { grid-template-columns: minmax(300px, 0.4fr) minmax(0, 0.6fr); }
  .demo-run-grid { grid-template-columns: 1fr; }
  .demo-terminal { min-height: 185px; }
  .demo-agent-grid { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  .nav-links .nav-secondary { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid p:nth-child(2) { border-right: 0; }
  .trust-grid p:nth-child(-n+2) { border-bottom: 1px solid rgba(63, 63, 70, 0.34); }
  .trust-grid p:nth-child(3) { padding-left: 0; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-card > p:not(.journey-level) { min-height: 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-wrap { grid-template-columns: 1fr; max-width: 620px; }
  .section-head.split-head { grid-template-columns: 1fr; gap: 0; text-align: center; }
  .split-head .section-sub { margin: 0 auto; }
  .download-grid { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
  .dl-card { min-height: 0; }
  .other-download-grid { grid-template-columns: 1fr; }
  .other-download-grid a { border-right: 0; border-bottom: 1px solid var(--border-soft); }
  .other-download-grid a:last-child { border-bottom: 0; }
  .footer-inner { flex-direction: column; }
  .account-grid { grid-template-columns: 1fr; }
  .desktop-access-panel { grid-column: auto; }
  .desktop-access-panel .activation-steps { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  :root { --nav-h: 62px; }
  .container { padding-inline: 18px; }
  .nav-inner { gap: 10px; }
  .brand { font-size: 16px; }
  .brand img { width: 27px; height: 27px; }
  .nav-links a, .nav-links button { padding: 7px 9px; font-size: 12.5px; }
  .hero { padding: 60px 0 65px; }
  .hero-grid { gap: 45px; }
  .hero h1 { font-size: clamp(39px, 12vw, 58px); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .workspace-preview { grid-template-columns: 1fr; }
  .preview-chat { min-height: 290px; border-right: 0; border-bottom: 1px solid #26262b; }
  .preview-activity { min-height: 300px; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 37px; }
  .features-grid { grid-template-columns: 1fr; }
  .demo-callout { padding-block: 32px; }
  .demo-callout-inner { grid-template-columns: 1fr; padding: 31px 26px; }
  .demo-callout .btn { width: 100%; }
  .flow-panel { padding: 15px; }
  .branch-row { grid-template-columns: 1fr; }
  .branch-row::before { display: none; }
  .demo-dialog { width: 100vw; max-height: 100dvh; min-height: 100dvh; border: 0; border-radius: 0; }
  .demo-header { position: sticky; align-items: flex-start; padding: 13px; }
  .demo-header p:last-child { display: none; }
  .demo-actions { flex-wrap: wrap; justify-content: flex-end; }
  .demo-stage { grid-template-columns: 1fr; min-height: 0; }
  .demo-chat { min-height: 575px; border-right: 0; border-bottom: 1px solid #29292f; }
  .demo-conversation { max-height: 330px; }
  .demo-work { padding: 13px; }
  .demo-lane { grid-template-columns: 31px 1fr auto; }
  .demo-workbench-panel { min-height: 520px; }
  .demo-run-grid { min-height: 518px; }
  .demo-agent-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mini-site { min-height: 350px; }
  .price-card { padding: 36px 24px; }
  .form-row { flex-direction: column; }
}

@media (max-width: 460px) {
  .nav-links .nav-demo { display: none; }
  .nav-links a.nav-cta { margin-left: 0; }
  .hero-eyebrow { font-size: 10.5px; }
  .platform-list { gap: 12px; font-size: 12px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid p { padding: 18px 0; border-right: 0; border-bottom: 1px solid rgba(63, 63, 70, 0.34); }
  .trust-grid p:last-child { border-bottom: 0; }
  .journey-card, .card { padding: 23px; }
  .other-downloads summary { display: block; }
  .other-downloads summary span { display: block; margin: 2px 0 0 20px; }
  .footer-links { gap: 12px; }
  .demo-header h2 { font-size: 14px; }
  .demo-simulation-badge { display: none; }
  .demo-control { padding: 6px 7px; font-size: 9px; }
  .demo-close { width: 28px; height: 28px; }
  .demo-composer-toolbar { align-items: stretch; flex-direction: column; }
  .demo-selects { display: grid; grid-template-columns: 1fr 1fr; }
  .demo-selects select { width: 100%; max-width: none; }
  .demo-send-actions { justify-content: space-between; }
  .demo-send-actions > span { max-width: none; text-align: left; }
  .demo-workbench-tabs { grid-template-columns: repeat(7, minmax(0, 1fr)); overflow: hidden; }
  .demo-agent-grid { grid-template-columns: 1fr; }
  .demo-agent-header { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
