@charset "UTF-8";
:root {
  color-scheme: dark;
  --bg: #131313;
  --surface: #1e1e1e;
  --line: #3b3b3b;
  --accent: #f06459;
  --text: #f6f6f6;
  --muted: #b9b9b9;
  --ink: #1c1c1c;
  --paper: #f1f1f1;
  --soft: #e2e2e2;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(3rem, 5.3vw, 5.5rem);
  font-weight: 650;
}
h2 {
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  font-weight: 600;
}
h3 {
  font-size: 1.3rem;
  letter-spacing: -0.025em;
}
p {
  margin-top: 1rem;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
a,
button,
summary {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  height: auto;
}
small {
  font-size: 0.8125rem;
  line-height: 1.5;
}
em {
  font-style: normal;
  color: var(--accent);
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
.light :focus-visible {
  outline-color: #99372f;
}
::selection {
  background: var(--accent);
  color: var(--ink);
}
.container {
  width: min(1280px, calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding: 104px 0;
  scroll-margin-top: 20px;
}
.light {
  background: var(--paper);
  color: var(--ink);
  color-scheme: light;
}
.light .muted,
.light .section-note {
  color: #515151;
}
.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}
.section-heading > p:last-child {
  font-size: 1.125rem;
  max-width: 670px;
  color: var(--muted);
}
.light .section-heading > p:last-child {
  color: #515151;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.5;
  color: var(--accent);
  margin: 0 0 20px;
}
.light .eyebrow {
  color: #99372f;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
}
.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.muted {
  color: var(--muted);
}
.badge {
  display: inline-block;
  border: 1px solid #986057;
  background: #f0645914;
  border-radius: 100px;
  padding: 5px 10px;
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.015em;
  color: #ffd2ca;
}
.light .badge {
  color: #8c2922;
  border-color: #bb8179;
  background: #f6e3df;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  padding: 14px 20px;
  border-radius: 4px;
  min-height: 48px;
  line-height: 1.4;
}
.button:hover {
  background: #ff897c;
}
.button.dark {
  background: var(--ink);
  color: var(--text);
}
.button.dark:hover {
  background: #3a3a3a;
}
.button:disabled {
  opacity: 0.5;
  cursor: default;
}
.button.small {
  padding: 10px 16px;
  min-height: 44px;
}
.text-link {
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-height: 44px;
  overflow-wrap: anywhere;
}
.text-link:hover {
  text-decoration: underline;
}
.actions {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin: 26px 0 15px;
}
.skip-link {
  position: fixed;
  top: 10px;
  transform: translateY(-200%);
  left: 16px;
  background: var(--accent);
  color: var(--ink);
  padding: 12px;
  z-index: 100;
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #131313f5;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  max-width: 1440px;
  margin: auto;
  padding: 18px 48px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}
.brand {
  max-width: 100%;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  letter-spacing: -0.06em;
  flex-shrink: 0;
}
.brand span {
  color: var(--accent);
}
.brand small {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  font-weight: 500;
  margin-top: 7px;
  color: var(--muted);
}
#site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.875rem;
}
#site-nav > a:not(.button) {
  text-decoration: none;
  padding-block: 10px;
}
#site-nav > a:hover {
  color: var(--accent);
}
#site-nav > a.button:hover {
  color: var(--ink);
}
.staging-login small {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 3px;
}
.menu-toggle {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 4px;
  min-height: 44px;
  padding: 6px 13px;
}
.hero {
  padding: 76px 0 30px;
  background: var(--bg);
}
.hero-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 52px;
  align-items: center;
  margin-bottom: 56px;
}
.hero-intro > p {
  color: #c7c7c7;
  font-size: 1.0625rem;
}
.hero-intro > small {
  color: var(--muted);
}
.hero-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 23px;
  font-size: 0.75rem;
  color: var(--muted);
}
.hero-caption > span:first-child {
  letter-spacing: 0.09em;
}
.product {
  overflow: hidden;
  border: 1px solid #575757;
  border-radius: 9px;
  background: #1b1b1b;
  color: #f0f0f0;
  box-shadow: 0 20px 60px #0002;
  min-width: 0;
}
.product figcaption {
  padding: 12px 20px;
  background: #2a2a2a;
  color: #d3d3d3;
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid #474747;
  flex-wrap: wrap;
}
.product figcaption > span:last-child {
  color: #cacaca;
}
.app-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  border-bottom: 1px solid #3f3f3f;
  padding: 15px 22px;
  font-size: 0.875rem;
  color: #c9c9c9;
  flex-wrap: wrap;
}
.app-nav > strong {
  font-size: 1.1rem;
  letter-spacing: -0.05em;
  margin-right: 15px;
  color: #fff;
}
.app-nav strong span {
  color: var(--accent);
}
.chosen {
  color: var(--accent) !important;
  font-weight: 700;
}
.workspace {
  display: grid;
  grid-template-columns: 260px 1fr;
}
.mock-inbox {
  padding: 24px 20px;
  background: #151515;
  border-right: 1px solid #3b3b3b;
}
.micro {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #bbbbbb;
  line-height: 1.5;
  margin-bottom: 9px;
}
.mock-inbox > b {
  font-size: 0.875rem;
}
.case {
  margin-top: 14px;
  padding: 15px 12px;
  border: 1px solid #3f3f3f;
  border-radius: 5px;
}
.case.selected {
  border-color: #d27267;
  background: #96969610;
}
.case strong,
.case small {
  display: block;
  margin-top: 8px;
}
.case strong {
  font-size: 0.875rem;
}
.case small {
  color: #bfbfbf;
}
.state {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1.4;
  border-radius: 4px;
  background: #efb9ad;
  color: #401a14;
  padding: 4px 7px;
  font-weight: 700;
}
.state.neutral {
  background: #3a3a3a;
  color: #e2e2e2;
}
.mock-vehicle {
  padding: 24px;
  min-width: 0;
}
.vehicle-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.vehicle-title small {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: #bbbbbb;
}
.vehicle-title h3 {
  font-size: 1.5rem;
  margin-top: 7px;
}
.app-tabs {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid #414141;
  margin-bottom: 25px;
  font-size: 0.875rem;
}
.app-tabs span {
  padding: 0 0 11px;
}
.app-tabs .chosen {
  border-bottom: 2px solid var(--accent);
}
.work-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 26px;
}
.file {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #414141;
  min-width: 0;
}
.file b {
  font-size: 0.8125rem;
  display: block;
  overflow-wrap: anywhere;
}
.file small {
  font-size: 0.75rem;
  display: block;
  color: #bfbfbf;
  margin-top: 3px;
}
.file-icon {
  width: 30px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid #6c6c6c;
  background: #2c2c2c;
  color: #f3b3a8;
  border-radius: 3px;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
}
.review-note {
  border-left: 2px solid var(--accent);
  padding-left: 12px;
  margin-top: 22px;
  font-size: 0.8125rem;
}
.review-note p {
  margin-top: 6px;
}
.review-note small {
  display: block;
  margin-top: 12px;
  color: #bdbdbd;
  font-size: 0.75rem;
}
.bubble {
  background: #2f2f2f;
  padding: 14px;
  border-radius: 5px;
  margin-top: 12px;
  font-size: 0.8125rem;
}
.bubble p {
  margin-top: 5px;
}
.bubble b {
  font-size: 0.75rem;
}
.bubble small {
  font-size: 0.75rem;
  color: #c3c3c3;
}
.bubble.reply {
  border: 1px solid #595959;
  background: #2d2d2d;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #c5c5c5;
  border-left: 1px solid #c5c5c5;
}
.pillar {
  padding: 27px 24px 30px;
  border-right: 1px solid #c5c5c5;
  border-bottom: 1px solid #c5c5c5;
}
.index {
  display: block;
  font-size: 0.75rem;
  color: #9a3a30;
  margin-bottom: 30px;
}
.pillar h3 {
  font-size: 1.125rem;
}
.pillar p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #515151;
}
.section-note {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 26px;
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.workflow-grid li {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.step-number {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--accent);
  display: block;
  margin-bottom: 18px;
}
.workflow-grid h3 {
  font-size: 1.125rem;
}
.workflow-grid p {
  font-size: 0.9375rem;
  color: var(--muted);
}
.benefit-band {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding: 35px 0 0;
  border-top: 1px solid var(--line);
  margin-top: 54px;
  align-items: start;
}
.benefit-band h3 {
  font-size: 1.7rem;
}
.benefit-band p {
  margin: 0;
  color: var(--muted);
  max-width: 670px;
  font-size: 1.125rem;
}
.feature-list {
  padding: 0;
  list-style: none;
  margin: 0;
}
.feature-list li {
  padding: 18px 0;
  border-top: 1px solid #c5c5c5;
}
.feature-list b,
.feature-list span {
  display: block;
}
.feature-list span {
  color: #515151;
  margin-top: 5px;
  font-size: 0.9375rem;
}
.phone-product {
  max-width: 390px;
  justify-self: center;
  transform: rotate(2deg);
  border-radius: 22px;
}
.phone-product figcaption {
  font-size: 0.75rem;
}
.shop-banner {
  background: #dfaba3;
  color: #291b1a;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.shop-banner .micro {
  color: #4e2924;
  margin: 0;
}
.shop-banner > strong {
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}
.shop-banner > span:last-child {
  font-size: 0.8125rem;
}
.portal-body {
  padding: 26px;
}
.portal-body > small {
  color: #bbbbbb;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.portal-body h3 {
  font-size: 1.6rem;
  margin-top: 5px;
}
.portal-status {
  color: #d1d1d1;
  font-size: 0.8125rem;
  margin-top: 10px;
}
.upload-example {
  padding: 22px 16px;
  border: 1px dashed #8b8b8b;
  border-radius: 6px;
  margin: 24px 0;
  display: grid;
  gap: 8px;
}
.upload-example span {
  font-size: 0.875rem;
}
.upload-example small {
  font-size: 0.75rem;
  color: #bfbfbf;
}
.workspace-layout {
  grid-template-columns: 1.35fr 1fr;
  gap: 48px;
}
.inbox-demo {
  padding: 24px;
}
.inbox-demo h3 {
  margin-bottom: 24px;
}
.inbox-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8px 15px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid #424242;
}
.inbox-row strong,
.inbox-row small {
  display: block;
  font-size: 0.8125rem;
}
.inbox-row div > small {
  color: #bbbbbb;
  margin-top: 4px;
}
.inbox-row > .state {
  justify-self: start;
}
.inbox-row > small {
  color: #b8b8b8;
  font-size: 0.75rem;
  grid-column: 1/-1;
}
.context-path {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8125rem;
  margin: 25px 0;
  color: #d5d5d5;
}
.context-path span + span:before {
  content: "→";
  margin-right: 12px;
  color: var(--accent);
}
.explorer-bar {
  font-size: 0.8125rem;
  padding: 15px 20px;
  background: #313131;
  border-bottom: 1px solid #4b4b4b;
}
.explorer-bar span {
  display: block;
  font-size: 0.75rem;
  color: #c2c2c2;
  margin-top: 12px;
  padding: 7px;
  border: 1px solid #565656;
  overflow-wrap: anywhere;
}
.explorer {
  display: grid;
  grid-template-columns: 115px 1fr;
  font-size: 0.8125rem;
}
.explorer > aside {
  padding: 22px 15px;
  border-right: 1px solid #414141;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #151515;
}
.explorer > div {
  padding: 20px;
  min-width: 0;
}
.folder-row {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 5px 10px;
  margin-bottom: 20px;
}
.folder-row small {
  grid-column: 2;
  color: #b9b9b9;
  font-size: 0.75rem;
}
.folder-icon {
  color: #e9b2a3;
  font-size: 1.4rem;
  line-height: 1;
}
.mock-footnote {
  font-size: 0.75rem;
  color: #c4c4c4;
}
.connector-steps {
  display: flex;
  gap: 20px;
  padding: 0;
  list-style: none;
  counter-reset: connector;
  margin-top: 25px;
  font-size: 0.8125rem;
}
.connector-steps li {
  flex: 1;
  counter-increment: connector;
}
.connector-steps li:before {
  content: "0" counter(connector);
  display: block;
  color: #99372f;
  font-weight: 700;
  font-size: 0.75rem;
  margin-bottom: 6px;
}
.evidence-demo {
  padding: 30px;
}
.chart-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #bcbcbc;
  gap: 20px;
}
.chart {
  width: 100%;
  height: 160px;
  margin: 20px 0;
  display: block;
}
.chart .grid {
  stroke: #414141;
  stroke-width: 1;
  fill: none;
}
.chart .window {
  fill: #f0645918;
  stroke: #ef8577;
  stroke-width: 1;
  stroke-dasharray: 4;
}
.chart .trace {
  stroke: var(--accent);
  stroke-width: 2.5;
  fill: none;
}
.evidence-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.evidence-cards b,
.evidence-cards span {
  display: block;
}
.evidence-cards p {
  font-size: 0.875rem;
  color: #bdbdbd;
  margin-top: 8px;
}
.ai-note {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 25px;
  padding-top: 18px;
  border-top: 1px solid #424242;
  font-size: 0.8125rem;
}
.ai-note b {
  color: var(--accent);
}
.review-copy {
  margin-top: 38px;
}
.review-copy p {
  color: var(--muted);
  font-size: 0.9375rem;
}
.community-figure {
  margin: 28px 0 40px;
}
.community-demo {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.community-demo > div {
  padding: 32px;
}
.community-demo h3 {
  font-size: 1.6rem;
}
.thread {
  margin-top: 25px;
  padding: 22px;
  background: #2a2a2a;
  border: 1px solid #484848;
  border-radius: 6px;
}
.thread small {
  display: block;
  color: #bdbdbd;
  font-size: 0.75rem;
  margin-top: 6px;
}
.thread p {
  font-size: 0.9375rem;
  margin-bottom: 18px;
}
.privacy-strip {
  font-size: 0.8125rem;
  color: #cfcfcf;
  margin-top: 22px;
}
.knowledge {
  border-left: 1px solid #414141;
  background: #222222;
}
.knowledge-row {
  padding: 16px 0;
  border-bottom: 1px solid #4b4b4b;
  font-size: 0.875rem;
}
.knowledge-row span {
  display: block;
  color: #bdbdbd;
  font-size: 0.75rem;
  margin-top: 4px;
}
.knowledge > p {
  font-size: 0.8125rem;
  color: #c8c8c8;
}
.business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.business-grid article {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.business-grid p {
  color: var(--muted);
  font-size: 0.9375rem;
}
.status-section {
  background: #212121;
  border-top: 1px solid #444444;
  border-bottom: 1px solid #444444;
}
.status-grid article {
  border-top: 1px solid #4e4e4e;
  padding-top: 25px;
}
.status-grid h3 {
  margin-top: 20px;
}
.status-grid p {
  color: #c9c9c9;
  font-size: 0.9375rem;
}
.status-grid p:last-child {
  font-size: 0.8125rem;
  color: #b4b4b4;
}
.pricing-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.pricing-layout .section-heading {
  margin: 0;
}
.pricing-layout > .section-heading p {
  max-width: 500px;
}
.pricing-layout .button {
  margin-top: 25px;
}
.beta-layout {
  align-items: start;
}
.beta-layout > div > .muted {
  font-size: 0.9375rem;
  max-width: 510px;
}
.beta-layout form {
  padding: 30px;
  border: 1px solid #484848;
  background: #212121;
  border-radius: 8px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
label {
  display: grid;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 20px;
}
input,
textarea,
select {
  width: 100%;
  min-width: 0;
  background: #151515;
  color: var(--text);
  border: 1px solid #626262;
  border-radius: 4px;
  padding: 12px;
  font-size: 1rem;
  font-weight: 400;
}
input::placeholder,
textarea::placeholder {
  color: #afafaf;
  opacity: 1;
}
textarea {
  resize: vertical;
}
.form-help {
  font-size: 0.8125rem;
  color: #bfbfbf;
}
#inquiry-feedback {
  font-size: 0.875rem;
  color: #dadada;
}
#inquiry-feedback:empty {
  margin: 0;
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
}
.faq-list details {
  border-top: 1px solid #bfbfbf;
  padding: 20px 0;
}
.faq-list details:last-child {
  border-bottom: 1px solid #bfbfbf;
}
.faq-list summary {
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  list-style: none;
  padding-right: 32px;
  position: relative;
  min-height: 26px;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:after {
  content: "+";
  position: absolute;
  right: 2px;
  top: -3px;
  font-size: 1.4rem;
  font-weight: 400;
}
.faq-list details[open] summary:after {
  content: "−";
}
.faq-list details p {
  color: #4b4b4b;
  font-size: 0.9375rem;
}
.final-cta {
  text-align: center;
  padding: 90px 0;
  background: #2e2e2e;
}
.final-cta h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}
.final-cta .eyebrow {
  color: #ffa99e;
}
.final-cta .button {
  margin-top: 32px;
}
.final-cta p:last-child {
  font-size: 0.8125rem;
  color: #c2c2c2;
}
footer {
  padding: 45px 0 24px;
  background: #0e0e0e;
  color: #bebebe;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.footer-brand {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-brand img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.footer-brand strong {
  font-size: 1.3rem;
  color: #efefef;
}
.footer-brand p {
  font-size: 0.8125rem;
  margin-top: 8px;
}
.footer-main nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 35px;
  font-size: 0.8125rem;
}
.footer-main nav a {
  min-height: 30px;
  text-decoration: none;
}
.footer-main nav a:hover {
  text-decoration: underline;
}
.footer-bottom {
  border-top: 1px solid #353535;
  margin-top: 35px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.75rem;
}
@media (min-width: 1101px) {
  .menu-toggle {
    display: none;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .header-inner {
    padding-inline: 32px;
  }
  #site-nav {
    gap: 18px;
  }
  .hero-top {
    grid-template-columns: 1.25fr 1fr;
    gap: 30px;
  }
  .workspace {
    grid-template-columns: 210px 1fr;
  }
  .work-detail {
    gap: 16px;
  }
  .mock-vehicle {
    padding: 20px;
  }
  .split {
    gap: 35px;
  }
  .pillar {
    padding: 23px 18px;
  }
  .workspace-layout {
    grid-template-columns: 1.2fr 1fr;
  }
}
@media (max-width: 1100px) {
  .header-inner {
    flex-wrap: wrap;
  }
  .menu-toggle:not([hidden]) {
    display: block;
  }
  #site-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 24px;
  }
  #site-nav[data-collapsed="true"] {
    display: none;
  }
  .hero-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-intro {
    max-width: 640px;
  }
  .hero {
    padding-top: 55px;
  }
  .hero-top {
    margin-bottom: 40px;
  }
  .workspace {
    grid-template-columns: 1fr;
  }
  .mock-inbox {
    display: none;
  }
  .pillar-grid,
  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .split,
  .workspace-layout,
  .pricing-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .portal-layout {
    grid-template-columns: 1fr 340px;
    gap: 30px;
  }
  .section {
    padding: 76px 0;
  }
  .phone-product {
    transform: none;
  }
  .three-up {
    gap: 22px;
  }
  .hero-caption {
    flex-wrap: wrap;
  }
  .faq-layout .section-heading {
    margin: 0;
  }
  .footer-main {
    flex-wrap: wrap;
  }
  .evidence-cards {
    gap: 20px;
  }
}
@media (max-width: 620px) {
  .container {
    width: calc(100% - 36px);
  }
  .header-inner {
    padding: 16px 18px;
    gap: 18px;
  }
  .brand {
    font-size: 1.6rem;
  }
  h1 {
    font-size: clamp(2.65rem, 10vw, 3.5rem);
  }
  h2 {
    font-size: 2.35rem;
  }
  .hero {
    padding-top: 42px;
  }
  .hero-top {
    gap: 24px;
  }
  .hero .eyebrow {
    font-size: 0.75rem;
  }
  .hero-intro > p {
    font-size: 1rem;
  }
  .actions {
    gap: 12px 22px;
  }
  .section {
    padding: 62px 0;
  }
  .section-heading {
    margin-bottom: 28px;
  }
  .section-heading > p:last-child {
    font-size: 1rem;
  }
  .product figcaption {
    padding: 10px 14px;
    gap: 4px;
    font-size: 0.75rem;
  }
  .app-nav {
    gap: 18px;
    padding: 14px;
    font-size: 0.8125rem;
  }
  .app-nav > strong {
    margin: 0;
  }
  .mock-vehicle {
    padding: 20px 14px;
  }
  .work-detail {
    grid-template-columns: 1fr;
  }
  .conversation {
    border-top: 1px solid #474747;
    padding-top: 18px;
  }
  .hero-caption {
    font-size: 0.75rem;
  }
  .pillar {
    padding: 22px 14px;
  }
  .pillar h3 {
    font-size: 1rem;
  }
  .pillar p {
    font-size: 0.875rem;
  }
  .index {
    margin-bottom: 20px;
  }
  .workflow-grid {
    gap: 28px 22px;
  }
  .workflow-grid h3 {
    font-size: 1rem;
  }
  .workflow-grid p {
    font-size: 0.875rem;
  }
  .benefit-band {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 36px;
  }
  .benefit-band p {
    font-size: 1rem;
  }
  .portal-layout {
    grid-template-columns: 1fr;
  }
  .phone-product {
    width: 100%;
    max-width: 360px;
  }
  .three-up,
  .community-demo {
    grid-template-columns: 1fr;
  }
  .evidence-demo {
    padding: 20px 16px;
  }
  .evidence-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .evidence-cards > div {
    border-top: 1px solid #444444;
    padding-top: 14px;
  }
  .ai-note {
    flex-direction: column;
    gap: 6px;
  }
  .chart-label {
    font-size: 0.75rem;
  }
  .community-demo > div {
    padding: 25px 20px;
  }
  .knowledge {
    border-left: 0;
    border-top: 1px solid #444444;
  }
  .business-grid {
    gap: 25px 20px;
  }
  .business-grid h3 {
    font-size: 1.125rem;
  }
  .beta-layout form {
    padding: 22px 16px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .beta-layout form .button {
    width: 100%;
    padding-inline: 10px;
    gap: 12px;
  }
  .explorer {
    grid-template-columns: 95px 1fr;
  }
  .explorer > aside {
    padding: 18px 10px;
    font-size: 0.75rem;
  }
  .explorer > div {
    padding: 16px 12px;
  }
  .connector-steps {
    gap: 14px;
    font-size: 0.75rem;
  }
  .footer-main nav {
    gap: 14px 25px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
  .final-cta {
    padding: 65px 0;
  }
  .chart {
    height: 120px;
  }
  .footer-brand img {
    width: 64px;
    height: 64px;
  }
  .footer-brand {
    gap: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
.mock-heading {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin-top: 7px;
}
.container * {
  min-width: 0;
}
h1,
h2,
h3,
p,
li,
span,
strong,
b,
a {
  overflow-wrap: anywhere;
}
@media (max-width: 620px) {
  .pillar-grid,
  .workflow-grid,
  .business-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 9rem), 1fr));
  }
  .inbox-row {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 8rem), 1fr));
  }
  .footer-main nav {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 9rem), 1fr));
    width: 100%;
  }
}
.hero-audiences {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: -20px 0 32px;
}
.hero-audiences a {
  border: 1px solid #646464;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
}
.hero-audiences a:hover {
  border-color: var(--accent);
  background: #242424;
}
.audience-anchor {
  scroll-margin-top: 125px;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.audience-card {
  border: 1px solid #c7c7c7;
  border-top: 4px solid #a73128;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.audience-tuners {
  border-top-color: #303030;
}
.audience-garage {
  border-top-color: #87613a;
  background: #f7f3ee;
}
.audience-card h3 {
  font-size: 1.75rem;
}
.audience-card .eyebrow {
  font-size: 0.75rem;
  margin-bottom: 25px;
}
.audience-promise {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
}
.audience-card > p:not(.eyebrow):not(.audience-promise) {
  color: #494949;
  font-size: 0.9375rem;
}
.audience-card ul {
  padding-left: 19px;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.audience-card li + li {
  margin-top: 8px;
}
.audience-card .audience-status {
  margin-top: auto;
  font-size: 0.8125rem !important;
  border-top: 1px solid #c7c7c7;
  padding-top: 16px;
}
.audience-card .text-link {
  font-size: 0.875rem;
  margin-top: 15px;
  justify-content: space-between;
  line-height: 1.4;
}
.audience-outcomes {
  margin-top: 30px;
}
.audience-outcomes p {
  color: var(--muted);
  font-size: 0.9375rem;
}
.personal-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 25px;
  border-bottom: 1px solid #444;
  flex-wrap: wrap;
}
.personal-top strong {
  font-size: 1.125rem;
}
.personal-top strong span {
  color: var(--accent);
}
.personal-top > span {
  font-size: 0.8125rem;
  color: #ccc;
}
.personal-body {
  padding: 30px;
}
.personal-body h3 {
  font-size: 1.75rem;
}
.personal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid #4c4c4c;
  font-size: 0.875rem;
}
.personal-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 45px;
  padding-top: 22px;
}
.personal-detail > div > p:not(.micro) {
  font-size: 0.9375rem;
  color: #d3d3d3;
}
.personal-history > div {
  border-left: 2px solid #cbb299;
  padding: 5px 0 18px 18px;
}
.personal-history small {
  display: block;
  color: #c5c5c5;
  margin-top: 5px;
}
.personal-history .privacy-note {
  font-size: 0.8125rem !important;
  border-top: 1px solid #4c4c4c;
  padding-top: 16px;
}
.garage-section {
  background: #201e1b;
  border-top: 1px solid #635442;
  border-bottom: 1px solid #635442;
}
.garage-section .eyebrow,
.garage-section .step-number {
  color: #e4bf97;
}
.garage-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 30px;
}
.garage-intro .section-heading {
  margin-bottom: 0;
}
.garage-product {
  border-color: #86715a;
}
.garage-product .personal-top strong span {
  color: #e4bf97;
}
.garage-product .personal-top {
  background: #342b24;
}
.garage-workflow {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin: 40px 0;
}
.garage-workflow li {
  border-top: 1px solid #635442;
  padding-top: 15px;
}
.garage-workflow p {
  color: #cfc6ba;
  font-size: 0.9375rem;
}
.garage-boundary {
  border-top: 1px solid #635442;
  padding-top: 30px;
  max-width: 850px;
}
.garage-boundary .button {
  margin-top: 25px;
}
.garage-boundary p {
  color: #d2c9bf;
}
.audience-comparison {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.875rem;
  line-height: 1.55;
  table-layout: fixed;
}
.audience-comparison caption {
  text-align: left;
  margin-bottom: 22px;
  color: #484848;
  font-size: 0.9375rem;
}
.audience-comparison th,
.audience-comparison td {
  text-align: left;
  border-bottom: 1px solid #c4c4c4;
  padding: 18px 20px;
  vertical-align: top;
}
.audience-comparison thead th {
  background: #252525;
  color: #fff;
}
.audience-comparison tbody th {
  font-weight: 700;
}
.audience-comparison tbody tr:nth-child(even) {
  background: #e4e4e4;
}
.ecosystem-flow {
  display: grid;
  grid-template-columns: 1fr 0.6fr 1fr 0.6fr 1fr;
  align-items: center;
  gap: 20px;
}
.ecosystem-flow article {
  border-top: 2px solid #a54d45;
  padding-top: 22px;
  align-self: stretch;
}
.ecosystem-flow p {
  color: var(--muted);
  font-size: 0.9375rem;
}
.flow-gate {
  font-size: 0.8125rem;
  color: #e8a59b;
  text-align: center;
}
.growth-path {
  border-top: 1px solid #484848;
  margin-top: 35px;
  padding-top: 30px;
  max-width: 850px;
}
.growth-path p {
  color: var(--muted);
}
.connector-audiences {
  margin-top: 40px;
  border-top: 1px solid #c3c3c3;
  padding-top: 28px;
}
.connector-audiences p {
  font-size: 0.9375rem;
}
.connector-rule {
  background: #e0e0e0;
  padding: 20px;
  margin-top: 25px;
  font-size: 0.9375rem;
}
@media (max-width: 1100px) {
  #site-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 22px;
  }
  .audience-grid {
    gap: 14px;
  }
  .audience-card {
    padding: 24px 18px;
  }
  .audience-card h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 760px) {
  .audience-grid,
  .garage-intro,
  .personal-detail,
  .ecosystem-flow {
    grid-template-columns: minmax(0, 1fr);
  }
  .audience-card {
    padding: 26px;
  }
  .audience-card .eyebrow {
    margin-bottom: 15px;
  }
  .audience-card .audience-status {
    margin-top: 15px;
  }
  .garage-workflow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .garage-intro {
    gap: 25px;
  }
  .personal-body {
    padding: 24px 18px;
  }
  .personal-detail {
    gap: 30px;
  }
  .flow-gate {
    text-align: left;
  }
  .audience-comparison thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }
  .audience-comparison,
  .audience-comparison tbody,
  .audience-comparison tr {
    display: block;
    width: 100%;
  }
  .audience-comparison tr {
    border: 1px solid #c4c4c4;
    margin-bottom: 18px;
  }
  .audience-comparison tbody th {
    display: block;
    padding: 15px;
    background: #ddd;
  }
  .audience-comparison td {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    gap: 15px;
    padding: 14px;
    border-bottom: 1px solid #c9c9c9;
  }
  .audience-comparison td:before {
    content: attr(data-audience);
    font-weight: 700;
  }
  .audience-comparison td:last-child {
    border-bottom: 0;
  }
  .audience-comparison caption {
    display: block;
    width: 100%;
  }
  .audience-comparison tbody tr:nth-child(even) {
    background: transparent;
  }
}
@media (max-width: 620px) {
  .hero-audiences {
    margin-top: -8px;
    gap: 8px;
  }
  .hero-audiences a {
    padding: 10px 12px;
  }
  .garage-workflow {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 9rem), 1fr));
    gap: 25px;
  }
  .personal-top {
    padding: 18px;
  }
  .personal-tabs {
    gap: 16px;
  }
  .garage-intro h2 {
    font-size: 2.15rem;
  }
  #site-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
  }
  #site-nav > a:nth-child(-n + 3) {
    grid-column: 1/-1;
    border-bottom: 1px solid #444;
    padding: 12px 0;
  }
  .hero-top {
    margin-bottom: 30px;
  }
}
