:root {
  --bg: #071019;
  --bg-2: #09141e;
  --surface: #0c1822;
  --surface-2: #101e2a;
  --surface-3: #132432;
  --text: #edf4f8;
  --muted: #8ca0b2;
  --muted-2: #657b8f;
  --line: rgba(136, 171, 198, .14);
  --line-strong: rgba(95, 177, 236, .30);
  --blue: #4aa7ff;
  --blue-soft: #84caff;
  --green: #67d9a7;
  --red: #ff7489;
  --max: 1420px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -.01em;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(850px 520px at 74% 0%, rgba(45, 151, 224, .08), transparent 58%),
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.45) 42%, transparent 72%);
  z-index: -2;
}
.noise {
  position: fixed; inset: 0; pointer-events: none; opacity: .035; z-index: 99;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }
.shell { width: min(calc(100% - 64px), var(--max)); margin-inline: auto; }

.site-header {
  width: min(calc(100% - 64px), var(--max));
  height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(7, 16, 25, .77);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled { border-color: var(--line); background: rgba(7, 16, 25, .92); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 650; font-size: 18px; letter-spacing: -.02em; }
.brand-mark { width: 27px; height: 27px; border: 1px solid rgba(85, 180, 246, .46); border-radius: 50%; position: relative; box-shadow: inset 0 0 18px rgba(74,167,255,.12); }
.brand-mark::before { content: ""; position: absolute; inset: 6px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 14px rgba(74,167,255,.55); }
.nav { display: flex; gap: 30px; color: #b7c4ce; font-size: 13px; }
.nav a, .text-link, footer nav a { transition: color .2s ease; }
.nav a:hover, .text-link:hover, footer nav a:hover { color: #fff; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 18px; font-size: 13px; }
.menu-button { display: none; width: 36px; height: 36px; padding: 10px; background: transparent; border: 1px solid var(--line); border-radius: 8px; }
.menu-button span { display: block; height: 1px; background: #d7e3ec; margin: 4px 0; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 46px; padding: 0 19px; border-radius: 8px;
  font-size: 13px; font-weight: 600; border: 1px solid var(--line-strong);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--blue); color: #06111a; border-color: var(--blue); box-shadow: 0 9px 30px rgba(74,167,255,.14); }
.button-primary:hover { background: #65b6ff; }
.button-secondary { background: rgba(12, 27, 39, .75); color: var(--text); }
.button-secondary:hover { background: rgba(19, 42, 58, .92); border-color: rgba(95, 177, 236, .50); }
.button-small { min-height: 38px; padding-inline: 14px; }

.eyebrow { margin: 0 0 18px; color: #79c4f8; font: 600 10px/1 "Geist Mono", monospace; letter-spacing: .16em; }
.hero {
  min-height: 760px;
  display: grid; grid-template-columns: minmax(440px, .72fr) minmax(0, 1.28fr); gap: 56px; align-items: center;
  padding: 82px 0 100px;
}
.hero-copy h1 { margin: 0; max-width: 700px; font-size: clamp(58px, 5.4vw, 88px); line-height: .96; letter-spacing: -.06em; font-weight: 650; }
.hero-copy h1 span { color: var(--blue); }
.lede { max-width: 660px; margin: 28px 0 0; color: #a8b8c5; font-size: 18px; line-height: 1.58; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.proof-row { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 31px; color: #8197a8; font-size: 12px; }
.proof-row span::before { content: "✓"; margin-right: 8px; color: var(--green); }

.hero-product {
  position: relative;
  width: min(860px, 62vw);
  justify-self: end;
  transform-style: preserve-3d;
}
.hero-product::before {
  content: "";
  position: absolute;
  inset: 8% -3% -10% 12%;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(74,167,255,.15), transparent 68%);
  filter: blur(24px);
}
.product-window {
  border: 1px solid rgba(83, 159, 211, .28); border-radius: 12px; overflow: hidden;
  background: #09131b; box-shadow: 0 40px 120px rgba(0,0,0,.42), 0 0 0 1px rgba(255,255,255,.015) inset;
}
.window-bar { height: 50px; display: flex; align-items: center; gap: 13px; padding: 0 14px; color: #6f8598; font: 500 10px "Geist Mono", monospace; border-bottom: 1px solid var(--line); }
.window-dots { display: flex; gap: 5px; }.window-dots i { width: 6px; height: 6px; border-radius: 50%; background: #40566a; }
.live { margin-left: auto; display: flex; align-items: center; gap: 7px; }.live b { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px rgba(103,217,167,.6); }
.product-switch { display: flex; align-items: center; gap: 4px; padding: 4px; border: 1px solid rgba(95,177,236,.22); border-radius: 8px; background: rgba(3,10,16,.72); box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.product-switch button { min-width: 78px; min-height: 30px; padding: 0 13px; border: 1px solid transparent; border-radius: 5px; color: #92a9ba; background: transparent; cursor: pointer; font: 650 9px "Geist Mono",monospace; text-transform: uppercase; letter-spacing: .08em; transition: color .2s ease,background .2s ease,border-color .2s ease,box-shadow .2s ease; }
.product-switch button:hover { color: #dcecf5; background: rgba(255,255,255,.04); }
.product-switch button.active { color: #06111a; border-color: #69b8ff; background: var(--blue); box-shadow: 0 5px 18px rgba(74,167,255,.24); }
.product-switch button:focus-visible,.agent-switch button:focus-visible { outline: 2px solid var(--blue-soft); outline-offset: 2px; }
.product-view { width: 100%; aspect-ratio: 1.87; }.product-view[hidden] { display: none; }.product-window img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.marketing-product-preview { height: 100%; display: grid; grid-template-columns: 24% 1fr; background: #080f16; color: #dce8ef; }
.marketing-preview-nav { padding: 5.5% 8%; display: flex; flex-direction: column; gap: 8%; border-right: 1px solid rgba(255,255,255,.06); background: linear-gradient(180deg,#0c1822,#09131b); font: 500 clamp(7px,.65vw,10px) "Geist Mono",monospace; text-transform: uppercase; letter-spacing: .08em; }.marketing-preview-nav div { display: flex; align-items: center; gap: 8px; color: #e7f1f6; }.marketing-preview-nav div i { width: 10px; height: 10px; border-radius: 3px; background: var(--blue); box-shadow: 0 0 12px rgba(74,167,255,.45); }.marketing-preview-nav span { padding: 8px; color: #657b8f; border-radius: 5px; }.marketing-preview-nav span.active { color: #8bd0ff; background: rgba(74,167,255,.09); }.marketing-preview-nav small { margin-top: auto; color: var(--green); font-size: inherit; }
.marketing-preview-main { padding: 4.5%; overflow: hidden; }.marketing-preview-main > header { display: flex; justify-content: space-between; align-items: start; }.marketing-preview-main header small,.marketing-preview-campaign small { color: #68bdf7; font: 600 clamp(6px,.55vw,9px) "Geist Mono",monospace; letter-spacing: .12em; }.marketing-preview-main h3 { margin: 4px 0 0; font-size: clamp(16px,2vw,30px); letter-spacing: -.04em; }.marketing-preview-main > header > b { padding: 6px 8px; border: 1px solid rgba(103,217,167,.24); border-radius: 5px; color: var(--green); font: 600 clamp(6px,.55vw,9px) "Geist Mono",monospace; }
.marketing-preview-metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 7px; margin: 4% 0; }.marketing-preview-metrics span { padding: 8%; border: 1px solid rgba(255,255,255,.055); border-radius: 6px; background: rgba(255,255,255,.02); }.marketing-preview-metrics small,.marketing-preview-metrics b { display: block; }.marketing-preview-metrics small { color: #6f8598; font: clamp(6px,.5vw,8px) "Geist Mono",monospace; text-transform: uppercase; }.marketing-preview-metrics b { margin-top: 5px; font-size: clamp(12px,1.2vw,18px); }
.marketing-preview-campaign { padding: 3.5%; border: 1px solid rgba(74,167,255,.13); border-radius: 8px; background: #0d1923; }.campaign-preview-top { display: flex; justify-content: space-between; gap: 10px; }.campaign-preview-top h4 { margin: 4px 0 0; font-size: clamp(9px,1vw,15px); }.campaign-preview-top strong { color: #f3cf78; font: 600 clamp(6px,.5vw,8px) "Geist Mono",monospace; }.campaign-preview-progress { height: 3px; margin: 3% 0 2%; overflow: hidden; border-radius: 4px; background: #172632; }.campaign-preview-progress span { display: block; height: 100%; background: var(--blue); }.marketing-preview-campaign > p { margin: 0; color: #708697; font-size: clamp(6px,.58vw,9px); }.campaign-preview-flow { display: grid; grid-template-columns: repeat(5,1fr); gap: 4px; margin-top: 3%; }.campaign-preview-flow span { padding: 5px 2px; border: 1px solid rgba(255,255,255,.05); border-radius: 4px; color: #596f80; text-align: center; font: clamp(5px,.45vw,7px) "Geist Mono",monospace; }.campaign-preview-flow span.done { color: var(--green); }.campaign-preview-flow span.active { color: #8bd0ff; border-color: rgba(74,167,255,.28); }.marketing-preview-campaign footer { display: flex; justify-content: space-between; align-items: center; margin-top: 3%; color: #708697; font-size: clamp(6px,.55vw,9px); }.marketing-preview-campaign button { padding: 6px 8px; border: 1px solid rgba(74,167,255,.32); border-radius: 4px; color: #8bd0ff; background: rgba(74,167,255,.07); font: 600 clamp(5px,.48vw,8px) "Geist Mono",monospace; }

.workflow { padding: 90px 0 110px; border-top: 1px solid var(--line); }
.section-intro { max-width: 800px; margin-bottom: 44px; }
.section-intro h2, .deploy h2, .pricing h2, .final h2, .media-copy h2 { margin: 0; font-size: clamp(42px, 4vw, 62px); line-height: 1.02; letter-spacing: -.05em; font-weight: 620; }
.section-intro > p:last-child, .deploy-copy > p, .pricing-heading > p:last-child, .final-copy > p, .media-copy > p:last-child { color: var(--muted); font-size: 16px; line-height: 1.55; }
.agent-switch { width: fit-content; display: flex; gap: 6px; margin: -18px 0 30px; padding: 6px; border: 1px solid rgba(95,177,236,.3); border-radius: 10px; background: #0a1620; box-shadow: 0 14px 38px rgba(0,0,0,.2), inset 0 0 0 1px rgba(255,255,255,.015); }
.agent-switch button { min-height: 46px; padding: 0 20px; border: 1px solid transparent; border-radius: 7px; color: #9aafbd; background: transparent; cursor: pointer; font: 650 11px "Geist Mono",monospace; letter-spacing: .025em; transition: color .2s ease,background .2s ease,border-color .2s ease,box-shadow .2s ease; }
.agent-switch button:hover { color: var(--text); background: rgba(255,255,255,.035); }
.agent-switch button span { display: inline-grid; width: 22px; height: 22px; margin-right: 9px; place-items: center; border: 1px solid rgba(136,171,198,.2); border-radius: 5px; color: #7790a2; font-size: 9px; }
.agent-switch button.active { color: #06111a; border-color: #69b8ff; background: var(--blue); box-shadow: 0 8px 22px rgba(74,167,255,.2); }
.agent-switch button.active span { color: #06111a; border-color: rgba(6,17,26,.25); background: rgba(255,255,255,.18); }
.workflow-rail { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }.workflow-rail[hidden] { display: none; }
.flow-step { min-width: 0; padding: 26px 23px 24px; border-right: 1px solid var(--line); position: relative; overflow: hidden; }
.flow-step:last-child { border-right: 0; }
.flow-step::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--blue); transition: width .45s ease; }
.flow-step.active::after { width: 100%; }
.step-top { display: flex; align-items: center; gap: 10px; }.step-top span { color: #6dbbf2; font: 600 10px "Geist Mono", monospace; }.step-top b { font-size: 18px; }
.flow-step > p { min-height: 64px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.step-preview { min-height: 154px; margin-top: 16px; background: rgba(7, 16, 25, .62); border: 1px solid var(--line); border-radius: 9px; padding: 13px; }
.table-preview { display: grid; gap: 9px; }.table-preview span { padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.055); }.table-preview b,.table-preview em { display: block; font-size: 10px; }.table-preview em { margin-top: 3px; color: var(--muted-2); font-style: normal; }
.person-preview { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-content: center; }.avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: #15364b; color: #91d4ff; font-size: 11px; }.person-preview b,.person-preview small,.person-preview em { display: block; }.person-preview b { font-size: 12px; }.person-preview small { color: var(--muted); font-size: 10px; margin-top: 3px; }.person-preview em { margin-top: 10px; color: var(--green); font-style: normal; font-size: 9px; }
.message-preview small { color: #6dbbf2; font: 600 9px "Geist Mono", monospace; }.message-preview p,.reply-preview p { color: #bcc9d2; font-size: 11px; line-height: 1.5; }
.approval-preview { display: grid; gap: 8px; align-content: center; }.approval-preview span { padding: 9px 10px; border-radius: 6px; background: #101d28; border: 1px solid var(--line); font-size: 11px; }.approval-preview .approved { color: var(--green); border-color: rgba(103,217,167,.32); background: rgba(103,217,167,.07); }.approval-preview .reject { color: #d0a0aa; }
.reply-preview b { font-size: 11px; }.reply-preview b small { margin-left: 5px; color: var(--muted-2); font-weight: 400; }
.direction-preview,.publish-preview { display: grid; align-content: center; gap: 8px; }.direction-preview > small,.create-preview > small,.publish-preview > small { color: #6dbbf2; font: 600 9px "Geist Mono",monospace; }.direction-preview > b,.publish-preview > b { font-size: 12px; }.direction-preview em,.publish-preview em { color: var(--green); font: normal 9px "Geist Mono",monospace; }.create-preview { display: grid; gap: 8px; align-content: center; }.create-preview > span { display: flex; justify-content: space-between; padding-bottom: 7px; border-bottom: 1px solid var(--line); }.create-preview b,.create-preview em { font-size: 9px; }.create-preview em { color: var(--green); font-style: normal; }.assets-preview { display: grid; gap: 7px; }.assets-preview > span { display: grid; grid-template-columns: 28px 1fr; grid-template-rows: auto auto; column-gap: 9px; padding: 6px; border: 1px solid var(--line); border-radius: 5px; }.assets-preview i { grid-row: 1 / 3; width: 28px; height: 28px; border-radius: 4px; background: linear-gradient(135deg,#194665,#102637); }.assets-preview b,.assets-preview small { font-size: 8px; }.assets-preview small { color: var(--muted); }.publish-preview p { margin: 0; color: var(--muted); font-size: 9px; }

.control-band { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 640px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.control-media { position: relative; overflow: hidden; min-height: 640px; border-right: 1px solid var(--line); }
.control-media img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; filter: saturate(.76) brightness(.75) contrast(1.06); transform: scale(1.02); }
.media-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,16,25,.18), rgba(7,16,25,.4) 53%, rgba(7,16,25,.95)); }
.media-copy { position: absolute; z-index: 2; left: max(32px, calc((100vw - var(--max))/2 + 32px)); bottom: 56px; max-width: 430px; }
.media-copy h2 { font-size: clamp(46px, 4.5vw, 68px); }.media-copy > p:last-child { max-width: 360px; }
.control-copy { padding: 58px max(40px, calc((100vw - var(--max))/2 + 32px)) 58px 56px; display: grid; align-content: center; }
.control-item { display: grid; grid-template-columns: 44px 1fr; gap: 20px; padding: 30px 0; border-bottom: 1px solid var(--line); }.control-item:last-child { border-bottom: 0; }
.control-item > span { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 8px; color: #72bdf2; font: 600 10px "Geist Mono", monospace; }
.control-item h3 { margin: 0 0 7px; font-size: 20px; }.control-item p { margin: 0; max-width: 520px; color: var(--muted); line-height: 1.55; font-size: 14px; }

.deploy { display: grid; grid-template-columns: .88fr 1.12fr; gap: 80px; align-items: center; padding: 105px 0; }
.deploy-copy > p { max-width: 610px; }.deploy-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.terminal { border: 1px solid var(--line-strong); border-radius: 11px; overflow: hidden; background: #07121b; box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.terminal-head { min-height: 52px; display: flex; align-items: center; border-bottom: 1px solid var(--line); padding: 0 12px; }
.terminal-tabs { display: flex; gap: 5px; }.terminal-tabs button,.copy-button { border: 0; background: transparent; color: var(--muted); padding: 14px 12px; cursor: pointer; font-size: 12px; }.terminal-tabs button.active { color: #8dcefb; box-shadow: inset 0 -2px var(--blue); }.copy-button { margin-left: auto; }
.terminal pre { margin: 0; padding: 27px 29px 32px; min-height: 245px; overflow: auto; color: #b6c6d3; font: 500 13px/1.78 "Geist Mono", monospace; }

.pricing { padding: 92px 0 110px; border-top: 1px solid var(--line); }
.pricing-heading { max-width: 770px; margin-bottom: 40px; }.pricing-heading > p:last-child { max-width: 670px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.price-card { position: relative; min-height: 390px; padding: 26px 22px 20px; display: flex; flex-direction: column; background: #0a1620; border: 1px solid var(--line); border-radius: 10px; }
.price-card.featured { border-color: rgba(74,167,255,.65); box-shadow: 0 0 0 1px rgba(74,167,255,.14) inset, 0 20px 70px rgba(74,167,255,.08); }
.popular { position: absolute; top: -10px; right: 16px; padding: 5px 8px; border-radius: 5px; background: var(--blue); color: #06111a; font: 700 8px "Geist Mono", monospace; text-transform: uppercase; }
.price-type { display: inline-flex; width: fit-content; margin-bottom: 17px; padding: 5px 7px; border: 1px solid rgba(95,177,236,.22); border-radius: 4px; color: #79c4f8; background: rgba(74,167,255,.05); font: 650 8px "Geist Mono", monospace; letter-spacing: .12em; text-transform: uppercase; }
.price-card-head { min-height: 142px; }
.price-card p { margin: 0 0 13px; font-weight: 600; }.price-card h3 { margin: 0; font-size: 30px; letter-spacing: -.05em; white-space: nowrap; }.price-card h3.price-range { font-size: clamp(24px, 2vw, 30px); }.price-card h3 span { color: var(--muted); font-size: 11px; letter-spacing: 0; font-weight: 500; }.price-card small { display: block; margin-top: 8px; min-height: 36px; color: var(--muted); line-height: 1.45; }
.price-card ul { list-style: none; padding: 0; margin: 28px 0; color: #a7b7c3; font-size: 12px; line-height: 1.9; }.price-card li::before { content: "✓"; color: var(--green); margin-right: 8px; }
.price-card a { margin-top: auto; min-height: 41px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 6px; font-size: 12px; font-weight: 600; }.featured > a { background: var(--blue); border-color: var(--blue); color: #06111a; }

.managed-service { margin-top: 16px; padding: 28px; display: grid; grid-template-columns: 1.15fr .9fr .75fr; gap: 34px; align-items: center; border: 1px solid rgba(103,217,167,.24); border-radius: 10px; background: linear-gradient(110deg, rgba(103,217,167,.07), rgba(10,22,32,.98) 48%); }
.managed-service .price-type { color: var(--green); border-color: rgba(103,217,167,.25); background: rgba(103,217,167,.05); }
.managed-service-name { margin: 0 0 8px; color: var(--text); font-size: 17px; font-weight: 650; }
.managed-service h3 { margin: 0; font-size: 34px; letter-spacing: -.045em; }.managed-service h3 span { color: var(--muted); font-size: 12px; letter-spacing: 0; font-weight: 500; }
.managed-service-copy > p:last-child { max-width: 560px; margin: 14px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.managed-service ul { margin: 0; padding: 0; list-style: none; color: #b5c4ce; font-size: 12px; line-height: 2; }.managed-service li::before { content: "✓"; margin-right: 8px; color: var(--green); }
.managed-service-action { display: grid; gap: 16px; }.managed-service-action small { color: var(--muted); font-size: 11px; line-height: 1.5; }.managed-service-action a { min-height: 43px; display: grid; place-items: center; padding: 0 14px; border: 1px solid rgba(103,217,167,.34); border-radius: 6px; color: var(--green); font-size: 12px; font-weight: 650; transition: background .2s ease, color .2s ease; }.managed-service-action a:hover { color: #071019; background: var(--green); }

.intake-page { min-height: 100vh; }
.intake-header { position: relative; grid-template-columns: 1fr auto; }
.intake-back { justify-self: end; color: var(--muted); font: 600 11px "Geist Mono",monospace; letter-spacing: .04em; transition: color .2s ease; }.intake-back:hover { color: var(--text); }
.intake-shell { display: grid; grid-template-columns: .76fr 1.24fr; gap: clamp(50px,7vw,110px); align-items: start; padding-top: 72px; padding-bottom: 110px; }
.intake-intro { position: sticky; top: 116px; padding-top: 18px; }.intake-intro h1 { margin: 0; font-size: clamp(48px,5.2vw,76px); line-height: .98; letter-spacing: -.06em; font-weight: 640; }.intake-intro h1 span { color: var(--blue); }.intake-intro > p:nth-of-type(2) { max-width: 570px; margin: 26px 0 0; color: #9bafbd; font-size: 16px; line-height: 1.62; }
.intake-process { display: grid; gap: 0; margin-top: 42px; border-top: 1px solid var(--line); }.intake-process article { display: grid; grid-template-columns: 36px 1fr; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--line); }.intake-process article > span { padding-top: 2px; color: #6dbbf2; font: 600 9px "Geist Mono",monospace; }.intake-process b { font-size: 13px; }.intake-process p { margin: 6px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.intake-note { margin-top: 24px; padding: 15px 16px; border: 1px solid rgba(103,217,167,.18); border-radius: 8px; background: rgba(103,217,167,.045); }.intake-note span { color: var(--green); font: 650 8px "Geist Mono",monospace; letter-spacing: .12em; }.intake-note p { margin: 7px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.intake-form-panel { padding: clamp(25px,3.5vw,46px); border: 1px solid rgba(95,177,236,.2); border-radius: 14px; background: linear-gradient(180deg,rgba(15,30,42,.97),rgba(8,19,28,.98)); box-shadow: 0 35px 100px rgba(0,0,0,.28); }
.intake-form-head { display: flex; justify-content: space-between; gap: 24px; align-items: start; padding-bottom: 28px; border-bottom: 1px solid var(--line); }.intake-form-head .eyebrow { margin-bottom: 10px; }.intake-form-head h2 { margin: 0; font-size: clamp(27px,3vw,38px); letter-spacing: -.045em; }.intake-form-head > span { flex: 0 0 auto; padding: 7px 9px; border: 1px solid var(--line); border-radius: 5px; color: var(--muted); font: 600 9px "Geist Mono",monospace; }
.intake-form-panel form { margin-top: 28px; }
.service-choice { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; margin: 0; padding: 0 0 30px; border: 0; }.service-choice legend { grid-column: 1/-1; width: 100%; margin-bottom: 11px; color: #b9c8d2; font-size: 13px; font-weight: 600; }.service-choice label { position: relative; cursor: pointer; }.service-choice input { position: absolute; opacity: 0; pointer-events: none; }.service-choice label > span { min-height: 70px; display: flex; flex-direction: column; justify-content: center; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.018); transition: border-color .2s ease,background .2s ease,transform .2s ease; }.service-choice label:hover > span { transform: translateY(-1px); border-color: var(--line-strong); }.service-choice input:checked + span { border-color: rgba(74,167,255,.62); background: rgba(74,167,255,.09); box-shadow: inset 0 0 0 1px rgba(74,167,255,.1); }.service-choice input:focus-visible + span { outline: 2px solid var(--blue-soft); outline-offset: 2px; }.service-choice b { font-size: 12px; }.service-choice small { margin-top: 5px; color: var(--muted); font: 9px "Geist Mono",monospace; }
.form-section-label { display: flex; align-items: center; gap: 9px; margin: 5px 0 15px; color: #b9c8d2; font-size: 13px; font-weight: 600; }.form-section-label:not(:first-of-type) { margin-top: 32px; }.form-section-label span { color: #69baf2; font: 600 9px "Geist Mono",monospace; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 15px; }.form-grid label,.form-wide { display: grid; gap: 7px; }.form-grid label > span,.form-wide > span { color: #879cac; font-size: 10px; font-weight: 600; letter-spacing: .04em; }.form-grid label em,.form-wide em { color: var(--muted-2); font-style: normal; font-weight: 400; }
.intake-form-panel input,.intake-form-panel select,.intake-form-panel textarea { width: 100%; border: 1px solid rgba(136,171,198,.17); border-radius: 7px; outline: 0; background: rgba(5,13,20,.62); color: var(--text); font: 13px "Geist",sans-serif; transition: border-color .2s ease,box-shadow .2s ease,background .2s ease; }.intake-form-panel input,.intake-form-panel select { min-height: 45px; padding: 0 12px; }.intake-form-panel textarea { resize: vertical; min-height: 88px; padding: 12px; line-height: 1.5; }.intake-form-panel input:focus,.intake-form-panel select:focus,.intake-form-panel textarea:focus { border-color: rgba(74,167,255,.65); background: rgba(7,18,27,.9); box-shadow: 0 0 0 3px rgba(74,167,255,.08); }.intake-form-panel select { color-scheme: dark; }.intake-form-panel ::placeholder { color: #4f6576; }
.form-wide { margin-top: 15px; }.consent-row { display: grid; grid-template-columns: 18px 1fr; gap: 11px; align-items: start; margin-top: 24px; color: var(--muted); font-size: 11px; line-height: 1.5; }.consent-row input { width: 16px; min-height: 16px; margin: 1px 0 0; accent-color: var(--blue); }.form-trap { position: absolute!important; left: -10000px!important; width: 1px!important; height: 1px!important; overflow: hidden!important; }
.form-submit-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }.form-submit-row p { max-width: 270px; margin: 0; color: var(--muted); font-size: 10px; line-height: 1.45; }.form-submit-row .button { flex: 0 0 auto; }.form-submit-row .button:disabled { cursor: wait; opacity: .62; transform: none; }.form-submit-row .form-error { color: var(--red); }
.form-success { min-height: 510px; display: grid; align-content: center; justify-items: start; }.form-success[hidden] { display: none; }.form-success > span { color: var(--green); font: 650 9px "Geist Mono",monospace; letter-spacing: .14em; }.form-success h2 { max-width: 560px; margin: 15px 0 0; font-size: clamp(38px,4.5vw,58px); line-height: 1; letter-spacing: -.055em; }.form-success p { max-width: 520px; margin: 20px 0 28px; color: var(--muted); line-height: 1.6; }

.final { padding: 78px 0 86px; display: flex; align-items: end; justify-content: space-between; gap: 50px; border-top: 1px solid var(--line); }
.final-copy { max-width: 880px; }.final-copy > p:last-child { max-width: 720px; }.final-actions { display: flex; gap: 12px; flex-shrink: 0; }
footer { min-height: 110px; display: grid; grid-template-columns: auto 1fr auto auto; gap: 26px; align-items: center; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
footer .brand { color: var(--text); font-size: 15px; }.brand-mark { flex: 0 0 auto; } footer nav { display: flex; gap: 22px; } footer small { color: #6f8394; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } .button { transition: none; } }

@media (max-width: 1180px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 68px; gap: 52px; }
  .hero-copy { max-width: 900px; }
  .hero-product { width: 100%; max-width: 1100px; justify-self: start; }
  .workflow-rail { grid-template-columns: repeat(5, minmax(230px,1fr)); overflow-x: auto; }
}
@media (max-width: 900px) {
  .shell, .site-header { width: min(calc(100% - 36px), var(--max)); }
  .site-header { grid-template-columns: 1fr auto; }
  .nav,.header-actions { display: none; }.menu-button { display: block; }
  .site-header.menu-open { height: auto; padding-block: 18px; align-items: start; }.site-header.menu-open .nav { grid-column: 1/-1; display: grid; gap: 0; padding-top: 14px; }.site-header.menu-open .nav a { padding: 13px 0; border-top: 1px solid var(--line); }
  .hero { padding: 56px 0 78px; }.hero-copy h1 { font-size: clamp(48px, 12vw, 72px); }.lede { font-size: 16px; }
  .control-band { grid-template-columns: 1fr; }.control-media { min-height: 520px; border-right: 0; border-bottom: 1px solid var(--line); }.media-copy { left: 28px; bottom: 34px; }.control-copy { padding: 38px 28px; }
  .deploy { grid-template-columns: 1fr; gap: 42px; padding-block: 78px; }.pricing { padding-block: 74px; }.final { align-items: start; flex-direction: column; }
  .pricing-grid { grid-template-columns: 1fr; }.price-card { min-height: 330px; }
  .managed-service { grid-template-columns: 1fr 1fr; }.managed-service-action { grid-column: 1 / -1; grid-template-columns: 1fr auto; align-items: center; }.managed-service-action a { min-width: 220px; }
  footer { grid-template-columns: 1fr auto; padding-block: 28px; } footer > p, footer nav { grid-column: 1/-1; }
  .intake-shell { grid-template-columns: 1fr; padding-top: 46px; }.intake-intro { position: static; max-width: 760px; }.intake-process { grid-template-columns: repeat(3,1fr); }.intake-process article { grid-template-columns: 28px 1fr; padding-right: 18px; border-bottom: 0; border-right: 1px solid var(--line); }.intake-process article:last-child { border-right: 0; }
}
@media (max-width: 620px) {
  .shell,.site-header { width: min(calc(100% - 28px), var(--max)); }
  .site-header { height: 68px; }.brand { font-size: 16px; }.brand-mark { width: 24px; height: 24px; }
  .hero-copy h1 { font-size: clamp(44px, 13vw, 60px); }.hero-actions,.final-actions { display: grid; grid-template-columns: 1fr; width: 100%; }.button { width: 100%; }
  .window-bar { height: 48px; gap: 8px; padding-inline: 9px; }.window-dots { display: none; }.product-switch { gap: 3px; padding: 3px; }.product-switch button { min-width: 68px; min-height: 29px; padding-inline: 9px; }.live { font-size: 0; }
  .proof-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .workflow { padding-block: 72px; }.section-intro h2,.deploy h2,.pricing h2,.final h2 { font-size: 40px; }.agent-switch { width: 100%; }.agent-switch button { flex: 1; min-width: 0; min-height: 44px; padding-inline: 10px; }.agent-switch button span { display: none; }.workflow-rail { margin-right: -14px; }
  .control-media { min-height: 450px; }.media-copy h2 { font-size: 46px; }
  .managed-service { grid-template-columns: 1fr; padding: 23px 20px; }.managed-service-action { grid-column: auto; grid-template-columns: 1fr; }.managed-service-action a { min-width: 0; }
  .terminal pre { font-size: 11px; padding-inline: 18px; }.terminal-head { overflow-x: auto; }.terminal-tabs button { padding-inline: 9px; }
  footer { grid-template-columns: 1fr; gap: 14px; } footer nav { grid-column: auto; display: flex; flex-wrap: wrap; }
  .intake-header { display: flex; }.intake-back { margin-left: auto; }.intake-shell { padding-top: 28px; padding-bottom: 70px; gap: 38px; }.intake-intro h1 { font-size: 45px; }.intake-process { grid-template-columns: 1fr; }.intake-process article { border-right: 0; border-bottom: 1px solid var(--line); }.intake-form-panel { margin-inline: -4px; border-radius: 10px; }.service-choice,.form-grid { grid-template-columns: 1fr; }.form-submit-row { align-items: stretch; flex-direction: column; }.form-submit-row p { max-width: none; }.form-submit-row .button { width: 100%; }
}
