@font-face {
  font-family: Manrope;
  src: url("assets/Manrope-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("assets/Manrope-Bold.ttf") format("truetype");
  font-weight: 600 800;
  font-display: swap;
}
:root {
  --bg: oklch(98.6% 0.002 255);
  --surface: oklch(100% 0 0);
  --panel: oklch(96% 0.012 255);
  --line: oklch(87% 0.014 255);
  --line-strong: oklch(64% 0.027 255);
  --text: oklch(27% 0.029 255);
  --muted: oklch(47% 0.026 255);
  --accent: oklch(48% 0.125 258);
  --accent-hover: oklch(41% 0.12 258);
  --accent-soft: oklch(44% 0.075 255);
  --accent-wash: oklch(95% 0.023 255);
  --on-accent: oklch(100% 0 0);
  --success: oklch(39% 0.075 160);
  --error: oklch(42% 0.13 20);
  --shadow: oklch(25% 0.035 255 / 0.08);
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font:
    16px/1.6 Manrope,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.dialog-open {
  overflow: hidden;
}
[hidden] {
  display: none !important;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  text-wrap: balance;
  font-weight: 700;
  line-height: 1.15;
}
h1,
h2 {
  letter-spacing: -0.035em;
}
h2 {
  font-size: clamp(32px, 4vw, 54px);
}
h3 {
  font-size: 25px;
  letter-spacing: -0.035em;
}
p {
  color: var(--muted);
  text-wrap: pretty;
}
:is(button, a, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
::selection {
  background: var(--accent);
  color: var(--bg);
}
.container {
  width: min(1240px, calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding-block: 110px;
}
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--accent-soft);
  margin-bottom: 22px;
}
.muted {
  color: var(--muted);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  transition:
    background 0.18s,
    border-color 0.18s,
    transform 0.18s;
  text-align: center;
}
.button:hover {
  transform: translateY(-2px);
}
.button-accent {
  color: var(--on-accent);
  background: var(--accent);
}
.button-accent:hover {
  background: var(--accent-hover);
}
.button-outline {
  background: transparent;
  border-color: var(--line-strong);
}
.button-outline:hover {
  background: var(--panel);
  border-color: var(--line-strong);
}
.quiet-link {
  font-size: 14px;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 3px;
}
.quiet-link:hover,
.text-link:hover {
  color: var(--accent-soft);
}
.skip-link {
  position: absolute;
  top: -70px;
  left: 20px;
  z-index: 100;
  background: var(--accent);
  color: var(--on-accent);
  padding: 12px;
}
.skip-link:focus {
  top: 15px;
}
.header {
  position: absolute;
  z-index: 20;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1280px, calc(100% - 64px));
  min-height: 72px;
  padding: 10px 14px 10px 28px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--surface);
  box-shadow: 0 6px 24px var(--shadow);
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.8px;
  font-size: 26px;
  white-space: nowrap;
  line-height: 1;
}
.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}
.brand-word {
  font-size: inherit;
}
.brand-word > span {
  font-weight: 400;
  color: var(--accent-soft);
}
.desktop-nav {
  display: flex;
  gap: 29px;
  margin: auto;
  font-size: 13px;
  color: var(--text);
}
.desktop-nav a:hover {
  color: var(--accent-soft);
}
.nav-cta {
  background: var(--accent);
  color: var(--on-accent);
  border-radius: 30px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--accent-hover);
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.menu-toggle span {
  width: 21px;
  height: 1px;
  background: var(--text);
}
#mobile-menu {
  position: absolute;
  top: 82px;
  left: 0;
  right: 0;
  padding: 18px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 12px 40px var(--shadow);
}
#mobile-menu a {
  display: block;
  padding: 14px 0;
}
.hero {
  padding-top: 170px;
  padding-bottom: 65px;
}
.hero-kicker {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 36px;
}
.hero-kicker .eyebrow {
  margin: 0;
}
.hero-kicker > span {
  font-size: 12px;
  color: var(--muted);
}
.hero h1 {
  font-size: clamp(45px, 6.4vw, 88px);
  line-height: 1.08;
}
.hero h1 > span {
  color: var(--accent);
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  margin-top: 38px;
  align-items: center;
}
.hero-description {
  font-size: 17px;
  max-width: 700px;
  line-height: 1.75;
}
.hero-description strong {
  display: block;
  font-weight: 400;
  color: var(--text);
  margin-top: 12px;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.hero-index {
  display: flex;
  gap: 55px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--text);
}
.hero-index b {
  color: var(--muted);
  font-weight: 400;
  margin-right: 10px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 45px;
}
.heading-note {
  max-width: 340px;
  font-size: 15px;
  line-height: 1.7;
}
.product-section {
  padding-top: 45px;
  padding-bottom: 30px;
}
.product-section h2 {
  font-size: clamp(32px, 3.5vw, 46px);
}
.product-tabs {
  display: flex;
  gap: 8px;
  padding-block: 0 20px;
  flex-wrap: wrap;
}
.product-tabs button,
.pricing-switch button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 12px 20px;
  font-size: 13px;
  color: var(--muted);
  min-height: 45px;
}
.product-tabs button[aria-selected="true"] {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}
.product-tabs button:hover:not([aria-selected="true"]) {
  background: var(--panel);
}
.screen-frame {
  padding: 10px 10px 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 20px 60px var(--shadow);
}
.screenshot-button {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--panel);
  cursor: zoom-in;
}
.screenshot-button img {
  width: 100%;
  height: auto;
  aspect-ratio: 1440/1000;
  object-fit: contain;
}
.screen-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 13px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0;
}
.screen-details {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 80px;
  padding-top: 25px;
}
.screen-details > p:first-child {
  color: var(--text);
  font-size: 15px;
}
.demo-disclosure {
  font-size: 12px;
  line-height: 1.7;
}
.director-section {
  padding-top: 100px;
}
.answer-list {
  border-top: 1px solid var(--line);
}
.answer-list article {
  display: grid;
  grid-template-columns: 50px 1fr 1.1fr;
  gap: 25px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.row-number {
  color: var(--accent-soft);
  font-size: 12px;
  padding-top: 6px;
}
.answer-list h3 {
  font-size: 25px;
  line-height: 1.35;
}
.answer-list h4 {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.answer-list p {
  font-size: 14px;
}
.section-footnote {
  font-size: 12px;
  margin-top: 25px;
  max-width: 850px;
}
.workflow-section {
  background: var(--panel);
  border-block: 1px solid var(--line);
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  list-style: none;
  margin: 0;
  border-top: 1px solid var(--line);
}
.workflow-grid li {
  padding: 30px 30px 34px 0;
  min-width: 0;
  border-bottom: 1px solid var(--line);
}
.workflow-grid li:nth-child(3n + 2) {
  padding-left: 30px;
  border-inline: 1px solid var(--line);
}
.workflow-grid li:nth-child(3n) {
  padding-left: 30px;
  padding-right: 0;
}
.workflow-grid li > span {
  font-size: 12px;
  color: var(--muted);
}
.workflow-grid h3 {
  margin: 30px 0 17px;
  font-size: 25px;
}
.workflow-grid p {
  font-size: 14px;
  line-height: 1.8;
}
.workflow-bottom {
  display: flex;
  justify-content: space-between;
  gap: 65px;
  margin-top: 35px;
}
.workflow-bottom strong {
  font-size: 17px;
  max-width: 380px;
  font-weight: 400;
  color: var(--text);
}
.workflow-bottom p {
  max-width: 520px;
  font-size: 13px;
}
.ai-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px 80px;
}
.ai-intro h2 span {
  color: var(--accent);
}
.ai-intro .ai-lead {
  color: var(--text);
  font-size: 19px;
  line-height: 1.6;
  margin-top: 32px;
}
.ai-intro > p:not(.eyebrow):not(.ai-lead) {
  font-size: 15px;
  margin-top: 20px;
}
.ai-intro .button {
  margin-top: 32px;
}
.ai-principle {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 42px;
}
.ai-principle > span {
  font-size: 11px;
  letter-spacing: 0;
  color: var(--accent-soft);
  display: block;
  margin-bottom: 12px;
}
.ai-principle > strong {
  font-weight: 400;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}
.agent-list {
  border-top: 1px solid var(--line);
}
.agent-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}
.agent-index {
  font-size: 11px;
  color: var(--accent-soft);
  padding-top: 4px;
  white-space: nowrap;
}
.agent-list h3 {
  font-size: 23px;
}
.agent-list p {
  font-size: 14px;
  margin-top: 12px;
}
.agent-output {
  font-size: 11px;
  display: block;
  color: var(--muted);
  margin-top: 15px;
}
.ai-boundary {
  grid-column: 1/-1;
  border: 1px solid var(--line);
  background: var(--panel);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  padding: 24px 28px;
  margin-top: 15px;
}
.ai-boundary strong {
  font-size: 14px;
  font-weight: 400;
  color: var(--accent);
}
.ai-boundary p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}
.integration-section {
  border-block: 1px solid var(--line);
  padding-block: 60px;
}
.integration-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.integration-inner h2 {
  font-size: 36px;
}
.integration-inner .eyebrow {
  margin-bottom: 15px;
}
.integration-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.integration-tags span {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
  font-size: 14px;
  margin-right: 12px;
  color: var(--text);
}
.integration-inner p:not(.eyebrow) {
  font-size: 13px;
}
.pricing-switch {
  display: flex;
  border: 1px solid var(--line);
  padding: 4px;
  border-radius: 30px;
  flex-shrink: 0;
}
.pricing-switch button {
  border: 0;
}
.pricing-switch button[aria-selected="true"] {
  background: var(--accent);
  color: var(--on-accent);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.price-card {
  min-width: 0;
  padding: 32px 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}
.price-card.featured {
  background: var(--accent-wash);
  border-color: var(--line-strong);
}
.price-card .eyebrow {
  color: var(--muted);
  font-size: 10px;
  margin-bottom: 18px;
}
.price-card h3 {
  font-size: 25px;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}
.price-card > p:not(.eyebrow) {
  font-size: 12px;
  min-height: 40px;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex-wrap: wrap;
  margin: 20px 0 12px;
}
.price strong {
  font-size: 38px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -1.5px;
}
.price span {
  font-size: 11px;
  color: var(--muted);
}
.implementation-price {
  font-size: 12px;
  color: var(--text);
  margin-bottom: 25px;
}
.price-card .button {
  width: 100%;
  padding-inline: 12px;
}
.check-list {
  padding: 0;
  list-style: none;
  margin: 24px 0 0;
}
.check-list li {
  border-top: 1px solid var(--line);
  padding: 12px 0;
  font-size: 12px;
  color: var(--muted);
}
.enterprise-card {
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--accent-wash);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
}
.enterprise-card h3 {
  font-size: 29px;
  margin-bottom: 22px;
}
.enterprise-card p {
  font-size: 14px;
}
.enterprise-price > span,
.enterprise-price > small {
  display: block;
  font-size: 12px;
  color: var(--muted);
}
.enterprise-price > strong {
  display: block;
  font-size: 35px;
  letter-spacing: -1px;
  font-weight: 400;
  margin: 10px 0 15px;
}
.enterprise-price .button {
  margin: 25px 0 15px;
}
.pricing-disclaimer {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 45px;
  margin-top: 28px;
  font-size: 12px;
}
.pricing-disclaimer strong {
  font-weight: 400;
  color: var(--text);
}
.pricing-disclaimer p {
  line-height: 1.8;
}
.launch-section {
  padding-top: 0;
}
.launch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.launch-grid article {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.launch-grid article > span {
  font-size: 12px;
  color: var(--accent-soft);
}
.launch-grid h3 {
  margin: 25px 0 15px;
  font-size: 22px;
}
.launch-grid p {
  font-size: 13px;
}
.faq-section {
  border-top: 1px solid var(--line);
  padding-top: 70px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  padding: 23px 0;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.5;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin: 5px 5px 0 0;
  transition: transform 0.2s;
}
.faq-list details[open] summary::after {
  transform: rotate(225deg);
  margin-top: 10px;
}
.faq-list details p {
  padding-bottom: 24px;
  font-size: 13px;
}
.contact-section {
  border-top: 1px solid var(--line);
  background: var(--panel);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.contact-copy h2 {
  font-size: clamp(35px, 3.7vw, 48px);
}
.contact-copy h2 span {
  color: var(--accent-soft);
}
.contact-copy > p:not(.eyebrow) {
  margin-top: 26px;
  max-width: 380px;
  font-size: 15px;
}
.text-link {
  display: inline-block;
  border-bottom: 1px solid var(--line);
  margin-top: 35px;
  padding-bottom: 7px;
  font-size: 15px;
}
.developer-mark {
  font-size: 11px;
  margin-top: 70px;
  color: var(--muted);
}
.developer-mark a {
  display: block;
  color: var(--text);
  font-size: 13px;
  margin-top: 8px;
}
.lead-form h3 {
  font-size: 25px;
  margin-bottom: 20px;
}
.form-preview-notice {
  font-size: 11px;
  line-height: 1.7;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--accent-wash);
  padding: 14px 16px;
  margin-bottom: 25px;
  color: var(--accent-soft);
}
.lead-form > label,
.form-grid > label {
  display: block;
  font-size: 12px;
  color: var(--text);
  margin-bottom: 17px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
input:not([type="checkbox"]):not([type="hidden"]),
select,
textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--text);
  padding: 12px 14px;
  margin-top: 8px;
  font-size: 13px;
  min-height: 46px;
}
textarea {
  resize: vertical;
  min-height: 90px;
}
input::placeholder,
textarea::placeholder {
  color: var(--muted);
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
}
.lead-form .consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 10px;
  line-height: 1.7;
  color: var(--muted);
  margin: 6px 0 22px;
}
.consent input {
  appearance: auto;
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}
.consent a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-submit {
  width: 100%;
}
.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.form-status {
  font-size: 12px;
  margin-top: 15px;
  color: var(--success);
}
.form-status.error {
  color: var(--error);
}
.selected-offer {
  margin: 0 0 20px;
  padding: 10px 14px;
  background: var(--accent-wash);
  color: var(--accent);
  font-size: 12px;
  border-radius: 5px;
}
.footer {
  padding-block: 55px 35px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}
.footer-top p {
  font-size: 14px;
}
.footer-top > a:last-child {
  font-size: 12px;
  color: var(--muted);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  font-size: 10px;
  line-height: 1.9;
}
.footer-bottom > div {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 4px;
  color: var(--muted);
}
.footer-bottom a:hover {
  color: var(--text);
}
dialog {
  padding: 20px;
  margin: auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--text);
  width: min(1500px, 96vw);
  max-width: 96vw;
  max-height: 94vh;
  overflow: auto;
}
dialog::backdrop {
  background: oklch(22% 0.03 255 / 0.76);
  backdrop-filter: blur(4px);
}
.dialog-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.dialog-top h2 {
  font-size: 17px;
  letter-spacing: 0;
}
.dialog-top .button {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 12px;
}
.dialog-image-wrap {
  overflow: auto;
  background: var(--panel);
  border-radius: 5px;
}
.dialog-image-wrap img {
  width: 100%;
  height: auto;
  max-width: none;
}
dialog > p {
  font-size: 11px;
  margin-top: 12px;
}
.legal-main {
  padding-top: 155px;
  padding-bottom: 80px;
}
.legal-content {
  max-width: 850px;
  margin: auto;
}
.legal-content h1 {
  font-size: 44px;
  overflow-wrap: anywhere;
}
.legal-content h2 {
  font-size: 25px;
  letter-spacing: -0.02em;
  margin: 35px 0 15px;
}
.legal-content p {
  margin-bottom: 18px;
  font-size: 15px;
}
.legal-content a:not(.button) {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content .legal-date {
  margin-top: 20px;
  color: var(--muted);
}
.legal-content .button {
  margin-top: 20px;
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .header {
    gap: 18px;
    padding-left: 24px;
  }
  .desktop-nav {
    gap: 20px;
  }
  .hero-bottom {
    gap: 35px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-actions .button {
    padding-inline: 20px;
  }
  .section {
    padding-block: 85px;
  }
  .ai-section,
  .contact-grid,
  .integration-inner {
    gap: 45px;
  }
  .price-card {
    padding: 26px 20px;
  }
  .price-card h3 {
    font-size: 21px;
  }
  .price strong {
    font-size: 32px;
  }
  .launch-section {
    padding-top: 0;
  }
}
@media (max-width: 900px) {
  .header {
    min-height: 65px;
    top: 18px;
    width: calc(100% - 40px);
    gap: 12px;
    padding: 8px 12px 8px 23px;
  }
  .brand {
    font-size: 25px;
  }
  .desktop-nav {
    display: none;
  }
  .nav-cta {
    margin-left: auto;
    padding: 13px 18px;
    font-size: 12px;
  }
  .menu-toggle {
    display: flex;
  }
  .hero {
    padding-top: 132px;
    padding-bottom: 38px;
  }
  .hero h1 {
    font-size: clamp(40px, 7.5vw, 67px);
  }
  .hero-kicker > span {
    display: none;
  }
  .hero-kicker {
    margin-bottom: 28px;
  }
  .hero-bottom {
    display: block;
    margin-top: 26px;
  }
  .hero-actions {
    flex-direction: row;
    justify-content: flex-start;
    gap: 25px;
    margin-top: 25px;
  }
  .hero-description {
    max-width: 670px;
  }
  .hero-index {
    margin-top: 34px;
    gap: 25px;
  }
  .section-heading {
    gap: 25px;
    margin-bottom: 30px;
  }
  .heading-note {
    max-width: 260px;
    font-size: 13px;
  }
  .screen-details {
    gap: 30px;
  }
  .screen-details > p:first-child {
    font-size: 13px;
  }
  .answer-list article {
    grid-template-columns: 26px 1fr 1.1fr;
    gap: 15px;
  }
  .answer-list h3 {
    font-size: 21px;
  }
  .answer-list h4 {
    font-size: 14px;
  }
  .answer-list p {
    font-size: 13px;
  }
  .workflow-grid h3 {
    font-size: 21px;
  }
  .workflow-grid li {
    padding-right: 22px;
  }
  .workflow-grid li:nth-child(3n + 2),
  .workflow-grid li:nth-child(3n) {
    padding-left: 22px;
  }
  .workflow-grid p {
    font-size: 13px;
  }
  .ai-section {
    grid-template-columns: 1fr;
  }
  .ai-intro {
    max-width: 630px;
  }
  .ai-principle {
    margin-top: 30px;
  }
  .ai-boundary {
    gap: 25px;
    margin-top: 0;
  }
  .agent-list article {
    padding-block: 26px;
  }
  .integration-inner {
    gap: 45px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .price-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 45px;
    padding: 30px;
  }
  .price-card h3 {
    font-size: 27px;
  }
  .price-card .eyebrow,
  .price-card h3,
  .price-card > p,
  .price-card .price,
  .price-card .implementation-price,
  .price-card > .button {
    grid-column: 1;
  }
  .price-card .check-list {
    grid-column: 2;
    grid-row: 1/7;
    margin: 0;
  }
  .price-card > p:not(.eyebrow) {
    min-height: 0;
  }
  .price {
    margin-top: 15px;
  }
  .price-card .eyebrow {
    margin-bottom: 15px;
  }
  .launch-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .contact-copy h2 {
    font-size: 42px;
  }
  .developer-mark {
    margin-top: 25px;
  }
  .contact-copy > p:not(.eyebrow) {
    max-width: 550px;
  }
  .dialog-image-wrap img {
    min-width: 1100px;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 20px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 65px;
  }
  .header {
    top: 14px;
    min-height: 60px;
    width: calc(100% - 24px);
    padding-left: 20px;
  }
  .header .brand {
    font-size: 24px;
  }
  .header .nav-cta {
    display: none;
  }
  .header .menu-toggle {
    margin-left: auto;
  }
  .hero {
    padding-top: 115px;
    padding-bottom: 28px;
  }
  .hero h1 {
    font-size: clamp(32px, 8vw, 47px);
    letter-spacing: -0.035em;
    line-height: 1.13;
  }
  .hero-kicker {
    margin-bottom: 25px;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.75;
  }
  .hero-actions {
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
  }
  .hero-actions .button {
    min-height: 49px;
    font-size: 12px;
    padding-inline: 18px;
  }
  .quiet-link {
    font-size: 12px;
  }
  .hero-index {
    gap: 8px;
    justify-content: space-between;
    padding-top: 18px;
    margin-top: 30px;
    font-size: 9px;
    line-height: 1.6;
  }
  .hero-index b {
    display: block;
    margin: 0 0 4px;
    font-size: 10px;
  }
  .product-section {
    padding-top: 30px;
    padding-bottom: 0;
  }
  .section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .section-heading h2,
  .product-section h2 {
    font-size: 31px;
    line-height: 1.18;
  }
  .heading-note {
    max-width: none;
    margin-top: 20px;
    font-size: 13px;
  }
  .product-tabs {
    flex-wrap: nowrap;
    overflow: auto;
    gap: 7px;
    padding-bottom: 14px;
    margin-right: -20px;
    padding-right: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--line-strong) transparent;
  }
  .product-tabs button {
    font-size: 11px;
    white-space: nowrap;
    padding: 10px 15px;
    min-height: 40px;
  }
  .screen-frame {
    padding: 5px 5px 0;
    border-radius: 10px;
  }
  .screenshot-button {
    border-radius: 6px;
  }
  .screen-footer {
    font-size: 9px;
    gap: 15px;
    padding: 11px 5px;
    line-height: 1.5;
  }
  .screen-footer > span:last-child {
    max-width: 110px;
    text-align: right;
  }
  .screen-details {
    display: block;
    padding-top: 18px;
  }
  .screen-details .demo-disclosure {
    margin-top: 12px;
    font-size: 10px;
  }
  .answer-list article {
    grid-template-columns: 25px 1fr;
    gap: 10px;
    padding: 25px 0;
  }
  .answer-list article > div {
    grid-column: 2;
  }
  .answer-list h3 {
    font-size: 23px;
  }
  .answer-list h4 {
    margin: 8px 0;
    font-size: 14px;
  }
  .answer-list p {
    font-size: 13px;
  }
  .section-footnote {
    font-size: 10px;
  }
  .workflow-grid {
    grid-template-columns: 1fr;
  }
  .workflow-grid li,
  .workflow-grid li:nth-child(3n + 2),
  .workflow-grid li:nth-child(3n) {
    border-inline: 0;
    padding: 24px 0;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 10px 20px;
  }
  .workflow-grid li > span {
    grid-column: 1/-1;
    font-size: 10px;
  }
  .workflow-grid h3 {
    font-size: 20px;
    line-height: 1.3;
    margin: 9px 0 0;
  }
  .workflow-grid p {
    font-size: 12px;
    line-height: 1.7;
    margin-top: 9px;
  }
  .workflow-bottom {
    display: block;
    margin-top: 25px;
  }
  .workflow-bottom strong {
    font-size: 17px;
  }
  .workflow-bottom p {
    font-size: 12px;
    margin-top: 15px;
  }
  .ai-section {
    gap: 35px;
  }
  .ai-intro h2 {
    font-size: 34px;
  }
  .ai-intro .ai-lead {
    font-size: 17px;
    margin-top: 23px;
  }
  .ai-intro > p:not(.eyebrow):not(.ai-lead) {
    font-size: 13px;
  }
  .ai-intro .button {
    padding-inline: 17px;
    font-size: 12px;
    max-width: 100%;
  }
  .ai-principle > strong {
    font-size: 14px;
  }
  .agent-list article {
    grid-template-columns: 44px 1fr;
    gap: 13px;
  }
  .agent-index {
    font-size: 10px;
  }
  .agent-list h3 {
    font-size: 22px;
  }
  .agent-list p {
    font-size: 13px;
  }
  .agent-output {
    font-size: 10px;
  }
  .ai-boundary {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 10px;
  }
  .ai-boundary p {
    font-size: 11px;
  }
  .integration-section {
    padding-block: 45px;
  }
  .integration-inner {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .integration-inner h2 {
    font-size: 32px;
  }
  .integration-tags {
    gap: 8px;
  }
  .integration-tags span {
    font-size: 12px;
  }
  .pricing-switch {
    margin-top: 25px;
    width: fit-content;
  }
  .pricing-switch button {
    font-size: 12px;
    padding: 10px 18px;
  }
  .price-card {
    display: block;
    padding: 26px;
  }
  .price-card h3 {
    font-size: 26px;
  }
  .price-card .check-list {
    margin-top: 22px;
  }
  .price strong {
    font-size: 37px;
  }
  .price {
    margin-top: 25px;
  }
  .price-card > p:not(.eyebrow) {
    font-size: 13px;
  }
  .enterprise-card {
    grid-template-columns: 1fr;
    padding: 26px;
    gap: 28px;
  }
  .enterprise-card h3 {
    font-size: 24px;
  }
  .enterprise-card p {
    font-size: 13px;
  }
  .enterprise-price > strong {
    font-size: 29px;
  }
  .pricing-disclaimer {
    grid-template-columns: 1fr;
    gap: 9px;
    font-size: 10px;
  }
  .launch-section {
    padding-top: 0;
  }
  .launch-grid {
    gap: 28px 20px;
  }
  .launch-grid h3 {
    font-size: 20px;
    margin-top: 20px;
  }
  .launch-grid p {
    font-size: 12px;
  }
  .faq-section {
    padding-top: 50px;
  }
  .faq-list summary {
    font-size: 14px;
  }
  .faq-list details p {
    font-size: 12px;
  }
  .contact-copy h2 {
    font-size: 32px;
  }
  .contact-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .lead-form h3 {
    font-size: 23px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-preview-notice {
    font-size: 10px;
  }
  .lead-form > label,
  .form-grid > label {
    font-size: 11px;
  }
  .footer {
    padding-block: 35px 25px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 25px;
  }
  .footer-top p {
    font-size: 11px;
  }
  .footer-top .brand {
    font-size: 25px;
  }
  .footer-top > a:last-child {
    font-size: 11px;
  }
  .footer-bottom {
    display: block;
    font-size: 9px;
  }
  .footer-bottom > div {
    align-items: flex-start;
    margin-top: 20px;
    gap: 7px;
  }
  dialog {
    padding: 12px;
    max-height: 95vh;
  }
  .dialog-top {
    align-items: flex-start;
    gap: 15px;
  }
  .dialog-top h2 {
    font-size: 13px;
    line-height: 1.4;
  }
  .dialog-top .button {
    font-size: 11px;
    padding: 8px 10px;
    flex-shrink: 0;
  }
  .dialog-image-wrap {
    max-height: 68vh;
  }
  .dialog-image-wrap img {
    min-width: 1100px;
  }
  .legal-main {
    padding-top: 120px;
  }
  .legal-content h1 {
    font-size: 32px;
  }
  .legal-content h2 {
    font-size: 23px;
  }
  .legal-content p {
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
