@font-face {
  font-family: Roboto;
  src: url("/fonts/roboto-latin-var.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("/fonts/space-grotesk-latin-var.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
}
:root {
  color-scheme: light;
  --bg: #fff;
  --surface: #f3f6f0;
  --raised: #fff;
  --ink: #142719;
  --muted: #526052;
  --line: #7a8878;
  --soft-line: #d4ddcf;
  --brand: #0a2e0b;
  --accent: #296b22;
  --button: #0a2e0b;
  --on-button: #fff;
  --focus: #2063b4;
  --leaf: #72c050;
  --amber-bg: #fff2cf;
  --amber-ink: #714600;
  --shadow: 0 24px 64px #122e1212;
  --font: Roboto, system-ui, sans-serif;
  --display: "Space Grotesk", Roboto, system-ui, sans-serif;
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #101810;
  --surface: #182319;
  --raised: #1b291c;
  --ink: #edf4e8;
  --muted: #b7c6b1;
  --line: #82947b;
  --soft-line: #354a31;
  --brand: #d9efcd;
  --accent: #a0d880;
  --button: #a0d880;
  --on-button: #10240c;
  --focus: #95c8ff;
  --amber-bg: #3c3018;
  --amber-ink: #ffdc8c;
  --shadow: 0 24px 64px #0004;
}
@media (prefers-color-scheme: dark) {
  :root[data-theme="system"] {
    color-scheme: dark;
    --bg: #101810;
    --surface: #182319;
    --raised: #1b291c;
    --ink: #edf4e8;
    --muted: #b7c6b1;
    --line: #82947b;
    --soft-line: #354a31;
    --brand: #d9efcd;
    --accent: #a0d880;
    --button: #a0d880;
    --on-button: #10240c;
    --focus: #95c8ff;
    --amber-bg: #3c3018;
    --amber-ink: #ffdc8c;
    --shadow: 0 24px 64px #0004;
  }
}
:root[data-theme="contrast"] {
  color-scheme: dark;
  --bg: #000;
  --surface: #000;
  --raised: #000;
  --ink: #fff;
  --muted: #fff;
  --line: #fff;
  --soft-line: #fff;
  --brand: #fff;
  --accent: #ffff60;
  --button: #ffff60;
  --on-button: #000;
  --focus: #00ffff;
  --amber-bg: #000;
  --amber-ink: #fff;
  --shadow: none;
}
@media (prefers-contrast: more) {
  :root[data-theme="system"] {
    color-scheme: dark;
    --bg: #000;
    --surface: #000;
    --raised: #000;
    --ink: #fff;
    --muted: #fff;
    --line: #fff;
    --soft-line: #fff;
    --brand: #fff;
    --accent: #ffff60;
    --button: #ffff60;
    --on-button: #000;
    --focus: #00ffff;
    --amber-bg: #000;
    --amber-ink: #fff;
    --shadow: none;
  }
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 1rem/1.65 var(--font);
}
[hidden] {
  display: none !important;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
a {
  color: var(--accent);
  text-underline-offset: 0.23em;
}
a:hover {
  text-decoration-thickness: 2px;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(3rem, 5.4vw, 5.1rem);
}
h2 {
  font-size: clamp(2.1rem, 3.8vw, 3.5rem);
}
h3 {
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}
p {
  max-width: 70ch;
}
ul {
  padding-left: 1.2rem;
}
section {
  scroll-margin-top: 20px;
}
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 5px;
}
input:focus-visible,
select:focus-visible {
  outline-offset: 3px;
}
::selection {
  background: var(--button);
  color: var(--on-button);
}
.wrap {
  width: min(1280px, calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding-block: 100px;
}
.eyebrow {
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  color: var(--accent);
  margin-bottom: 22px;
}
.overline {
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}
.quiet,
.field-help {
  color: var(--muted);
  font-size: 0.84rem;
}
.field-help {
  margin-top: 7px;
  line-height: 1.5;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid var(--button);
  border-radius: 5px;
  background: var(--button);
  color: var(--on-button);
  font-weight: 650;
  text-decoration: none;
  line-height: 1.4;
}
.button:hover {
  filter: brightness(1.1);
  text-decoration: underline;
}
.button.small {
  font-size: 0.85rem;
  min-height: 44px;
  padding: 10px 15px;
  gap: 16px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 44px;
  font-weight: 650;
}
.actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.skip {
  position: fixed;
  left: 20px;
  top: -100px;
  padding: 14px 24px;
  z-index: 100;
  background: var(--button);
  color: var(--on-button);
}
.skip:focus {
  top: 10px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg);
  border-bottom: 1px solid var(--soft-line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 88px;
}
.brand {
  display: flex;
  align-items: center;
  min-height: 44px;
  flex-shrink: 0;
}
.brand img {
  width: 196px;
  height: auto;
}
.brand img,
.console img {
  filter: none;
}
html[data-theme="dark"] .brand img,
html[data-theme="contrast"] .brand img,
html[data-theme="dark"] .console img,
html[data-theme="contrast"] .console img {
  filter: brightness(0) invert(1);
}
@media (prefers-color-scheme: dark) {
  html[data-theme="system"] .brand img,
  html[data-theme="system"] .console img {
    filter: brightness(0) invert(1);
  }
}
@media (prefers-contrast: more) {
  html[data-theme="system"] .brand img,
  html[data-theme="system"] .console img {
    filter: brightness(0) invert(1);
  }
}
#site-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}
#site-nav > a:not(.button) {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink);
  font-size: 0.87rem;
  font-weight: 550;
  text-decoration: none;
}
#site-nav > a:hover {
  text-decoration: underline;
}
.login {
  margin-left: 12px;
  gap: 8px;
}
.menu-toggle {
  display: none;
  min-width: 80px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: var(--bg);
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1.07fr;
  align-items: center;
  gap: 55px;
  padding-block: 90px 74px;
}
.hero h1 {
  color: var(--brand);
}
.hero h1 span {
  color: var(--accent);
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 7px;
}
.lead {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-top: 27px;
  max-width: 33ch;
}
.hero-detail {
  color: var(--muted);
  margin-block: 16px 28px;
  max-width: 52ch;
}
.trial-note {
  margin-top: 18px;
}
.trial-note span {
  margin-inline: 10px;
}
.console-figure {
  min-width: 0;
  padding-top: 22px;
}
.console {
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--raised);
  font-size: 0.72rem;
}
.console-top {
  display: flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid var(--soft-line);
  padding: 15px 18px;
  font-weight: 650;
}
.console-divider {
  color: var(--muted);
  padding-inline: 8px;
}
.console-avatar {
  margin-left: auto;
  border: 1px solid var(--soft-line);
  border-radius: 50%;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  font-size: 0.6rem;
}
.console-layout {
  display: grid;
  grid-template-columns: 47px 1fr;
}
.console-rail {
  border-right: 1px solid var(--soft-line);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  padding-block: 20px;
  font-size: 1.05rem;
  color: var(--muted);
}
.console-rail span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
}
.rail-active {
  background: var(--surface);
  border-radius: 4px;
  color: var(--accent);
}
.console-main {
  padding: 24px 20px 17px;
  min-width: 0;
}
.console-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.console-heading strong {
  display: block;
  font: 600 1.45rem/1.4 var(--display);
  margin-top: 5px;
}
.console-heading .overline {
  font-size: 0.56rem;
  color: var(--muted);
}
.sample-tag {
  font-size: 0.6rem;
  padding: 4px 8px;
  border: 1px solid var(--soft-line);
  border-radius: 4px;
  color: var(--muted);
  white-space: nowrap;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-block: 23px;
}
.metrics > div {
  padding: 12px 10px;
  background: var(--surface);
  border: 1px solid var(--soft-line);
  border-radius: 4px;
}
.metrics span,
.metrics small {
  display: block;
  font-size: 0.62rem;
  color: var(--muted);
}
.metrics strong {
  display: block;
  font: 600 1.8rem/1.4 var(--display);
  font-variant-numeric: tabular-nums;
}
.list-title {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--soft-line);
  padding-bottom: 10px;
  gap: 10px;
}
.list-title span {
  color: var(--muted);
}
.device-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block: 15px;
  border-bottom: 1px solid var(--soft-line);
}
.device-icon {
  font-size: 1rem;
  color: var(--muted);
}
.device-row strong {
  display: block;
  font-weight: 650;
  font-size: 0.69rem;
}
.device-row small {
  display: block;
  font-size: 0.6rem;
  color: var(--muted);
}
.tag {
  font-size: 0.55rem;
  color: var(--accent);
  border: 1px solid var(--soft-line);
  border-radius: 3px;
  padding: 3px 5px;
  margin-left: auto;
  white-space: nowrap;
}
.tag.amber {
  color: var(--amber-ink);
  background: var(--amber-bg);
  border-color: currentColor;
}
.context-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  color: var(--accent);
  font-size: 0.66rem;
}
.context-strip > span:first-child {
  font-size: 1.3rem;
}
figcaption {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 12px;
  text-align: right;
}
.scope-band {
  background: var(--surface);
  border-block: 1px solid var(--soft-line);
}
.scope-band > .wrap {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-block: 27px;
}
.scope-band p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
}
.scope-band strong {
  color: var(--ink);
  font-weight: 650;
}
.scope-band ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex: 1;
  gap: 24px;
  font: 500 1rem var(--display);
  margin: 0;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}
.section-heading > p {
  max-width: 41ch;
  color: var(--muted);
  padding-bottom: 4px;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--soft-line);
}
.capability {
  padding: 34px 28px 34px 0;
  border-bottom: 1px solid var(--soft-line);
}
.capability:nth-child(3n + 2),
.capability:nth-child(3n) {
  padding-left: 28px;
  border-left: 1px solid var(--soft-line);
}
.feature-number {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
}
.capability h3 {
  margin-block: 24px 16px;
}
.capability p {
  font-size: 0.94rem;
  color: var(--muted);
}
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.feature-tags li {
  font-size: 0.66rem;
  border: 1px solid var(--soft-line);
  border-radius: 3px;
  padding: 3px 8px;
}
.capability p.quiet {
  font-size: 0.74rem;
  margin-top: 14px;
}
.workflow-section {
  background: var(--brand);
  color: var(--bg);
}
.workflow-section .eyebrow {
  color: var(--bg);
}
.workflow-section .section-heading > p {
  color: var(--bg);
}
.workflow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.workflow li {
  border-top: 1px solid currentColor;
  padding-top: 25px;
}
.step-number {
  font: 400 1.7rem var(--display);
  opacity: 0.8;
}
.workflow h3 {
  margin-block: 19px 14px;
}
.workflow p {
  font-size: 0.94rem;
  max-width: 35ch;
}
.audiences {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 42px;
}
.audiences article {
  padding: 38px;
  border: 1px solid var(--soft-line);
  border-radius: 6px;
}
.audiences .msp-card {
  background: var(--surface);
}
.audiences .overline {
  color: var(--accent);
}
.audiences h3 {
  font-size: 1.85rem;
  max-width: 21ch;
  margin-block: 22px 17px;
}
.audiences p {
  color: var(--muted);
}
.check-list {
  list-style: none;
  padding: 0;
  margin-block: 25px;
}
.check-list li {
  position: relative;
  padding-left: 25px;
  margin-top: 12px;
  font-size: 0.92rem;
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.pricing-section {
  background: var(--surface);
  border-block: 1px solid var(--soft-line);
}
.plan-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--soft-line);
  padding-block: 23px;
  margin-bottom: 32px;
  gap: 25px;
}
.plan-strip strong {
  display: block;
  font-family: var(--display);
}
.plan-strip p > span {
  display: block;
  margin-top: 5px;
}
.calculator {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
}
#estimate-form {
  padding: 36px;
  min-width: 0;
}
fieldset {
  margin: 0 0 28px;
  padding: 0;
  border: 0;
}
legend {
  font-weight: 650;
  margin-bottom: 12px;
}
.mode-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.mode-options label {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  padding: 10px 12px;
  min-height: 48px;
  border-radius: 4px;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
}
.mode-options label:has(:checked) {
  background: var(--surface);
  border: 2px solid var(--accent);
  padding: 9px 11px;
}
input[type="radio"],
input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.input-grid label {
  display: block;
  font-size: 0.9rem;
  font-weight: 650;
  margin-bottom: 8px;
}
input[type="number"],
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--bg);
}
input[type="number"] {
  font-size: 1.25rem;
  font-variant-numeric: tabular-nums;
}
input[aria-invalid="true"] {
  outline: 2px solid var(--amber-ink);
}
summary {
  min-height: 48px;
  cursor: pointer;
  padding: 12px 0;
  font-weight: 600;
}
summary:hover {
  color: var(--accent);
}
details[open] > summary {
  margin-bottom: 12px;
}
.estimate-options {
  margin-top: 24px;
  border-top: 1px solid var(--soft-line);
}
.estimate-options summary {
  font-size: 0.9rem;
}
.estimate-options .input-grid {
  grid-template-columns: 1fr;
}
.estimate-result {
  background: var(--surface);
  padding: 36px;
  border-left: 1px solid var(--line);
}
.estimate-result > .overline {
  color: var(--muted);
}
.total {
  margin-top: 16px;
  line-height: 1.2;
}
.total output {
  font: 600 clamp(2.2rem, 4vw, 3.8rem) / 1.2 var(--display);
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
}
.total > span {
  font-size: 0.92rem;
  color: var(--muted);
}
.estimate-summary {
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 13px;
}
.breakdown {
  margin: 25px 0 14px;
  font-size: 0.86rem;
}
.breakdown > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid var(--soft-line);
  padding-block: 10px;
}
.breakdown dd {
  margin: 0;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.estimate-result .button {
  margin-top: 24px;
  width: 100%;
}
.estimate-disclaimer {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 110ch;
  margin-top: 24px;
}
.rate-details {
  font-size: 0.87rem;
  margin-top: 17px;
}
.rate-details p + p {
  margin-top: 12px;
}
.form-error {
  margin-top: 20px;
  font-weight: 600;
  color: var(--amber-ink);
}
.security {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.security > div > p:last-child {
  margin-top: 24px;
  color: var(--muted);
}
.security-list article {
  padding: 22px 0;
  border-bottom: 1px solid var(--soft-line);
}
.security-list article:first-child {
  padding-top: 0;
}
.security-list h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.security-list p {
  color: var(--muted);
  font-size: 0.95rem;
}
.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  border-top: 1px solid var(--soft-line);
  padding-top: 75px;
}
.faq h2 {
  font-size: 2.5rem;
}
.faq details {
  border-bottom: 1px solid var(--soft-line);
  padding-block: 7px;
}
.faq summary {
  font-size: 1rem;
}
.faq details p {
  padding: 0 0 20px;
  font-size: 0.94rem;
  color: var(--muted);
}
.inline-button {
  background: none;
  border: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--accent);
  padding: 7px 0;
  min-height: 44px;
}
.final-cta {
  background: var(--surface);
  border-block: 1px solid var(--soft-line);
}
.final-cta > .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding-block: 65px;
}
.final-cta h2 {
  font-size: clamp(2rem, 3.4vw, 3.1rem);
}
.final-cta p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}
.final-cta > .wrap > div:last-child {
  flex-shrink: 0;
}
.final-cta > .wrap > div:last-child p {
  font-size: 0.78rem;
  text-align: center;
  margin-top: 15px;
}
.site-footer {
  padding-block: 43px 100px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 35px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--soft-line);
}
.footer-top p {
  color: var(--muted);
  font-size: 0.85rem;
}
.footer-top > .text-link {
  margin-left: auto;
  font-size: 0.85rem;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  color: var(--muted);
  font-size: 0.76rem;
}
.footer-bottom nav {
  display: flex;
  gap: 22px;
}
.footer-bottom nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.appearance-menu {
  position: relative;
  flex-shrink: 0;
  margin-left: auto;
}
.appearance-menu summary {
  display: grid;
  place-items: center;
  width: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 1.5rem;
  list-style: none;
  cursor: pointer;
}
.appearance-menu summary::-webkit-details-marker {
  display: none;
}
.appearance-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 210px;
  padding: 6px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 8px 24px #0002;
}
.appearance-panel button {
  display: block;
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 0;
  border-radius: 3px;
  text-align: left;
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
}
.appearance-panel button:hover,
.appearance-panel button[aria-pressed="true"] {
  background: var(--surface);
}
.appearance-panel button[aria-pressed="true"]::after {
  content: "✓";
  float: right;
}
.site-footer > details {
  margin-top: 15px;
  font-size: 0.8rem;
}
.preferences {
  max-width: 78ch;
}
.preferences label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-top: 15px;
}
.chat-launcher {
  position: fixed;
  z-index: 25;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--button);
  color: var(--on-button);
  min-height: 48px;
  padding: 10px 18px;
  border: 1px solid var(--on-button);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 650;
  box-shadow: var(--shadow);
}
.chat-launcher > span {
  font-size: 1.5rem;
  line-height: 1;
}
.chat-status {
  position: fixed;
  z-index: 24;
  bottom: 80px;
  right: 24px;
  max-width: min(320px, calc(100% - 48px));
  padding: 16px;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 0.9rem;
}
/* Core owns chat behavior. These overrides make its embedded UI match the site. */
html .opc-root {
  --opc-bg: var(--bg);
  --opc-sur: var(--surface);
  --opc-bd: var(--line);
  --opc-tx: var(--ink);
  --opc-dim: var(--muted);
  --opc-ac: var(--button);
  --opc-ah: var(--button);
  --opc-on: var(--on-button);
  --opc-th: var(--surface);
  font-family: var(--font);
}
html .opc-root :is(button, input, textarea) {
  min-height: 44px;
}
html .opc-root :is(.opc-x, .opc-send) {
  min-width: 44px;
}
html .opc-root :focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
html .opc-root .opc-me {
  color: var(--on-button);
}
html .opc-panel {
  max-height: calc(100dvh - 32px);
  bottom: 16px;
}
html .opc-root .opc-note {
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
}
html .opc-root .opc-pill {
  color: var(--ink);
}
html .opc-root .opc-off {
  display: none !important;
}
html .opc-root .opc-hp {
  min-height: 0;
}
html .opc-root .opc-pres {
  color: var(--accent);
}
.js .no-js {
  display: none;
}
html:not(.js) #estimate-form > :not(.no-js) {
  display: none;
}
@media (min-width: 1600px) {
  .hero {
    gap: 80px;
  }
}
@media (max-width: 1150px) {
  .wrap {
    width: calc(100% - 56px);
  }
  #site-nav {
    gap: 16px;
  }
  .brand img {
    width: 166px;
  }
  .login {
    margin-left: 0;
  }
  .hero {
    gap: 30px;
  }
  .hero .actions {
    gap: 16px;
  }
  .console-main {
    padding: 18px 14px;
  }
  .section-heading {
    gap: 35px;
  }
  .section-heading > p {
    max-width: 35ch;
  }
  .scope-band > .wrap {
    gap: 30px;
  }
  .scope-band ul {
    font-size: 0.88rem;
    gap: 16px;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
  .capability {
    padding-right: 22px;
  }
  .capability:nth-child(3n + 2),
  .capability:nth-child(3n) {
    padding-left: 22px;
  }
}
@media (max-width: 1100px) {
  .header-inner {
    min-height: 76px;
    flex-wrap: wrap;
    gap: 0;
  }
  .menu-toggle:not([hidden]) {
    display: block;
  }
  #site-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 24px;
    padding-bottom: 20px;
  }
  .js #site-nav {
    display: none;
  }
  .js #site-nav.open {
    display: flex;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 60px;
    gap: 22px;
  }
  .hero-copy {
    max-width: 680px;
  }
  .hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
  }
  .hero-detail {
    max-width: 58ch;
  }
  .console-figure {
    max-width: 650px;
    width: 100%;
    justify-self: center;
  }
  .console-main {
    padding: 24px;
  }
  .console {
    font-size: 0.82rem;
  }
  .console-heading strong {
    font-size: 1.6rem;
  }
  .metrics strong {
    font-size: 2.1rem;
  }
  .metrics span,
  .metrics small,
  .device-row strong,
  .device-row small,
  .tag,
  .sample-tag {
    font-size: 0.75rem;
  }
  .console-rail {
    gap: 25px;
  }
  .device-row {
    padding-block: 17px;
  }
  .context-strip {
    font-size: 0.78rem;
  }
  .scope-band > .wrap {
    align-items: flex-start;
    gap: 25px;
  }
  .scope-band ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .section {
    padding-block: 72px;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
  .section-heading > p {
    max-width: 62ch;
  }
  .capability-grid {
    grid-template-columns: 1fr 1fr;
  }
  .capability:nth-child(n) {
    padding: 30px 22px 30px 0;
    border-left: 0;
  }
  .capability:nth-child(even) {
    padding-left: 22px;
    border-left: 1px solid var(--soft-line);
  }
  .workflow {
    gap: 30px;
  }
  .audiences article {
    padding: 27px;
  }
  .calculator {
    grid-template-columns: 1fr 1fr;
  }
  #estimate-form,
  .estimate-result {
    padding: 25px;
  }
  .input-grid {
    grid-template-columns: 1fr;
  }
  .mode-options label {
    flex-basis: 100%;
  }
  .security,
  .faq {
    gap: 45px;
  }
  .final-cta > .wrap {
    gap: 35px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 15px 25px;
  }
  .footer-top p {
    flex: 1;
  }
  .footer-top > .text-link {
    margin-left: 0;
  }
}
@media (max-width: 640px) {
  html {
    scroll-padding-top: 90px;
  }
  .wrap {
    width: calc(100% - 36px);
  }
  .header-inner {
    min-height: 70px;
  }
  .brand img {
    width: 160px;
  }
  .hero {
    padding-block: 44px;
  }
  .hero .eyebrow {
    font-size: 0.63rem;
    letter-spacing: 0.09em;
  }
  h1 {
    letter-spacing: -0.055em;
  }
  .hero h1 {
    font-size: clamp(2.65rem, 11vw, 4.2rem);
  }
  .lead {
    font-size: 1.13rem;
  }
  .hero-detail {
    font-size: 0.95rem;
  }
  .hero .actions {
    gap: 10px 20px;
  }
  .hero .button {
    font-size: 0.9rem;
  }
  .trial-note {
    font-size: 0.75rem;
  }
  .console-figure {
    padding-top: 8px;
  }
  .console-layout {
    grid-template-columns: 31px 1fr;
  }
  .console-top {
    padding: 12px;
    gap: 9px;
    font-size: 0.63rem;
  }
  .console-rail {
    font-size: 0.8rem;
  }
  .console-rail span {
    width: 23px;
    height: 25px;
  }
  .console-main {
    padding: 15px 10px;
  }
  .console-heading strong {
    font-size: 1.18rem;
  }
  .sample-tag {
    font-size: 0.5rem;
    padding: 3px;
  }
  .metrics {
    gap: 5px;
    margin-block: 16px;
  }
  .metrics > div {
    padding: 10px 7px;
  }
  .metrics strong {
    font-size: 1.5rem;
  }
  .metrics span,
  .metrics small {
    font-size: 0.56rem;
  }
  .list-title {
    font-size: 0.62rem;
  }
  .device-row {
    gap: 6px;
    padding-block: 12px;
  }
  .device-row strong {
    font-size: 0.59rem;
  }
  .device-row small {
    font-size: 0.51rem;
  }
  .device-icon {
    display: none;
  }
  .tag {
    font-size: 0.47rem;
    padding: 3px;
  }
  .context-strip {
    font-size: 0.57rem;
    gap: 7px;
  }
  .console-heading .overline {
    font-size: 0.5rem;
  }
  figcaption {
    font-size: 0.65rem;
  }
  .scope-band > .wrap {
    display: block;
    padding-block: 24px;
  }
  .scope-band p br {
    display: none;
  }
  .scope-band p strong {
    margin-left: 4px;
  }
  .scope-band ul {
    margin-top: 18px;
    gap: 15px;
    font-size: 0.86rem;
  }
  .section {
    padding-block: 57px;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .eyebrow {
    margin-bottom: 18px;
  }
  .capability-grid {
    grid-template-columns: 1fr;
  }
  .capability:nth-child(n) {
    padding: 28px 0;
    border-left: 0;
  }
  .capability h3 {
    margin-block: 17px 12px;
  }
  .workflow {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .workflow h3 {
    margin-top: 13px;
  }
  .workflow p {
    max-width: none;
  }
  .audiences {
    grid-template-columns: 1fr;
    margin-top: 30px;
    gap: 18px;
  }
  .audiences h3 {
    font-size: 1.65rem;
  }
  .plan-strip {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .plan-strip p {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    font-size: 0.85rem;
    align-items: baseline;
  }
  .plan-strip p > span {
    margin: 0;
    text-align: right;
  }
  .plan-strip .quiet {
    font-size: 0.75rem;
  }
  .calculator {
    grid-template-columns: 1fr;
  }
  .estimate-result {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .total output {
    font-size: 3rem;
  }
  .mode-options label {
    flex-basis: auto;
  }
  .security,
  .faq {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq h2 {
    font-size: 2.1rem;
  }
  .final-cta > .wrap {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 48px;
    gap: 28px;
  }
  .final-cta > .wrap > div:last-child p {
    text-align: left;
  }
  .footer-top {
    display: block;
  }
  .footer-top p {
    margin-block: 16px;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom nav {
    margin-block: 14px;
  }
  .site-footer {
    padding-bottom: 100px;
  }
  .chat-launcher {
    bottom: 16px;
    right: 16px;
  }
  html .opc-panel {
    max-height: calc(100dvh - 16px);
  }
  html .opc-root .opc-pill {
    bottom: 76px;
  }
}
.feature-matrix {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 0.94rem;
}
.feature-matrix caption {
  text-align: left;
  color: var(--muted);
  margin-bottom: 20px;
}
.feature-matrix :is(th, td) {
  text-align: left;
  padding: 18px 14px;
  border-bottom: 1px solid var(--soft-line);
  overflow-wrap: anywhere;
}
.feature-matrix tr > :first-child {
  width: 48%;
}
.feature-matrix thead {
  background: var(--surface);
}
.feature-matrix tbody th {
  font-weight: 500;
}
.feature-matrix tr > :last-child {
  background: var(--surface);
}
.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  border-top: 1px solid var(--soft-line);
}
.contact-copy p {
  margin-top: 24px;
  max-width: 38ch;
}
.contact-wide {
  grid-column: 1 / -1;
}
#contact-form :is(input:not([type="checkbox"]), textarea) {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 12px;
  background: var(--bg);
  color: var(--ink);
}
#contact-form textarea {
  resize: vertical;
}
#contact-form > .field-help {
  margin-block: 22px;
}
#contact-status {
  margin-top: 18px;
}
.contact-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.updates-opt-in {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.updates-opt-in input {
  flex: 0 0 20px;
  margin-top: 3px;
}
@media (max-width: 1100px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .appearance-menu {
    order: 1;
    margin-left: auto;
    margin-right: 8px;
  }
  .menu-toggle {
    order: 2;
    min-width: 68px;
  }
  #site-nav {
    order: 3;
  }
}
@media (max-width: 600px) {
  .feature-matrix {
    font-size: 0.8rem;
  }
  .feature-matrix :is(th, td) {
    padding: 14px 7px;
  }
  .feature-matrix tr > :first-child {
    width: 44%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
@media (forced-colors: active) {
  .button,
  .chat-launcher {
    border: 2px solid ButtonText;
  }
  .brand img,
  .console img {
    filter: none !important;
    background: white;
  }
  .workflow-section {
    background: Canvas;
    color: CanvasText;
  }
  .workflow-section .eyebrow,
  .workflow-section .section-heading > p {
    color: CanvasText;
  }
  .mode-options label:has(:checked) {
    outline: 2px solid Highlight;
  }
  .status-dot {
    background: CanvasText;
  }
  .tag {
    border: 1px solid CanvasText;
  }
}
