:root {
  --ink: #0b111b;
  --muted: #5f6672;
  --soft: #f5f6f8;
  --line: #e3e6ea;
  --blue: #1769e0;
  --blue-soft: #eaf2ff;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(15, 23, 42, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(1120px, calc(100% - 40px));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 40px rgba(15, 23, 42, .08);
  backdrop-filter: blur(20px);
}

.brand,
.nav,
.hero-actions,
.final-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 750;
  letter-spacing: 0;
}

.brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(0 0 0 0);
}

.brand img {
  width: 32px;
  height: 32px;
}

.nav {
  gap: 28px;
  color: #2f3642;
  font-size: 14px;
}

.nav a:hover {
  color: var(--blue);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.header-cta svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .94) 28%, rgba(255, 255, 255, .54) 50%, rgba(255, 255, 255, .08) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .78) 38%, rgba(255, 255, 255, .04) 66%, rgba(255, 255, 255, .98) 100%),
    url("./assets/hero.jpg") center bottom / cover no-repeat;
  filter: grayscale(100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 40px));
  padding-top: 66px;
  text-align: center;
}

.hero-logo {
  width: 132px;
  height: 132px;
  margin: 0 auto 28px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin: 0 auto 18px;
  font-size: 58px;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 span,
.section-heading h2 span {
  display: block;
  color: #9ca3af;
}

h1 .headline-main {
  color: var(--ink);
}

.hero-copy {
  max-width: 560px;
  margin: 0 auto 30px;
  color: #202734;
  font-size: 17px;
  font-weight: 520;
  text-shadow: 0 1px 18px rgba(255, 255, 255, .85);
}

.hero-actions,
.final-actions {
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
}

.button.primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 42px rgba(11, 17, 27, .18);
}

.button span[aria-hidden="true"] {
  margin-left: 8px;
}

.mini-button {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
  box-shadow: none;
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .82);
  color: var(--ink);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1120px, calc(100% - 40px));
  margin: -48px auto 0;
  position: relative;
  z-index: 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-bar div {
  min-height: 96px;
  padding: 18px;
  background: rgba(255, 255, 255, .94);
}

.trust-bar strong,
.trust-bar span {
  display: block;
}

.trust-bar strong {
  margin-bottom: 4px;
  font-size: 22px;
}

.trust-bar span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.compact {
  max-width: 680px;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.price-card p,
.steps p,
.authority-copy p:not(.eyebrow),
.authority-list span,
.faq-grid p,
.final-cta p {
  color: var(--muted);
}

.service-grid,
.price-grid,
.steps,
.authority-list,
.faq-grid {
  display: grid;
  gap: 18px;
}

.authority {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 32px;
  align-items: start;
  padding-bottom: 34px;
}

.authority-copy {
  max-width: 540px;
}

.authority-list {
  grid-template-columns: 1fr;
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card,
.price-card,
.steps article,
.authority-list article,
.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.authority-list article,
.faq-grid article {
  padding: 22px;
}

.authority-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.service-card {
  min-height: 252px;
  padding: 26px;
}

.solutions {
  padding-top: 34px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.solution-card {
  min-height: 360px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 52px rgba(15, 23, 42, .04);
}

.solution-card .icon {
  margin: 0 0 20px;
  background: transparent;
  color: #1d5d9f;
}

.solution-card h3 {
  font-size: 19px;
}

.solution-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.card-points {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 18px;
  color: #3a4350;
  font-size: 14px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: auto;
}

.demo-credentials {
  display: grid;
  gap: 4px;
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid #d8dde5;
  border-radius: 8px;
  background: #f7f8fa;
  color: #18202c;
  font-size: 14px;
}

.demo-credentials span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.demo-credentials strong {
  font-weight: 780;
}

.demo-credentials small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.coming-note {
  margin-top: auto;
  padding: 12px 14px;
  border: 1px dashed #c7ced8;
  border-radius: 8px;
  background: #f7f8fa;
  color: #3a4350;
  font-weight: 720;
}

.security-strip {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 22px 0 0;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f2f4f7;
}

.security-strip p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.strip-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--white);
  color: var(--blue);
  font-weight: 850;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics-row article {
  padding: 24px 14px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.metrics-row article:last-child {
  border-right: 0;
}

.metrics-row span {
  display: block;
  margin-bottom: 4px;
  font-size: 26px;
  font-weight: 850;
}

.metrics-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.proof-note {
  max-width: 880px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
}

.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
}

.icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: 0;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
}

.card-actions .text-link {
  margin-top: 0;
}

.text-link.subtle {
  color: #445064;
}

.text-link:hover {
  color: var(--ink);
}

.workspace-preview {
  padding-top: 20px;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.compact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.app-card {
  min-height: 142px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.app-card strong {
  display: block;
  margin-bottom: 9px;
  font-size: 17px;
}

.app-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.use-case-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.use-case-list article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.use-case-list article:first-child {
  border-top: 0;
  padding-top: 0;
}

.use-case-list span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.use-case-list p {
  margin: 0;
  color: var(--muted);
}

.page-hero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 168px 0 72px;
  border-bottom: 1px solid var(--line);
}

.page-hero-content {
  max-width: 800px;
}

.page-hero h1 {
  max-width: 920px;
  margin: 0 0 20px;
  font-size: clamp(42px, 6vw, 78px);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, .8fr);
  gap: 44px;
  align-items: center;
}

.product-hero-copy {
  max-width: none;
}

.product-demo {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.demo-window {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.demo-topbar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.demo-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #cbd5e1;
}

.demo-topbar strong {
  margin-left: 8px;
  font-size: 13px;
}

.demo-body {
  display: grid;
  grid-template-columns: 132px 1fr;
  min-height: 340px;
}

.demo-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px 14px;
  border-right: 1px solid var(--line);
  background: #f8fafc;
}

.demo-sidebar img {
  margin-bottom: 8px;
}

.demo-sidebar span {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.demo-sidebar .active {
  background: var(--ink);
  color: var(--white);
}

.demo-main {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 22px;
}

.demo-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.demo-heading small,
.demo-card span,
.demo-methods span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.demo-heading strong {
  display: block;
  margin-top: 3px;
  font-size: 20px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.status-pill.pending {
  background: #fff7ed;
  color: #9a3412;
}

.demo-card,
.demo-methods div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.demo-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.demo-methods strong,
.demo-card strong {
  display: block;
  margin-top: 4px;
  font-size: 15px;
}

.demo-timeline {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.demo-timeline span {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 13px;
}

.demo-timeline span::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid #cbd5e1;
  border-radius: 999px;
  background: var(--white);
}

.demo-timeline .done {
  color: var(--ink);
}

.demo-timeline .done::before {
  border-color: var(--blue);
  background: var(--blue);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-grid article,
.method-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.process-grid article {
  min-height: 230px;
  padding: 24px;
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 900;
}

.process-grid h3,
.method-card h3 {
  margin-bottom: 10px;
}

.process-grid p,
.method-card p,
.split-feature p {
  color: var(--muted);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(420px, 1fr);
  gap: 44px;
  align-items: start;
}

.split-feature h2 {
  font-size: clamp(34px, 4vw, 56px);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.method-card {
  min-height: 280px;
  padding: 28px;
}

.method-card svg {
  width: 42px;
  height: 42px;
  margin-bottom: 46px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-hero {
  padding: 138px 0 44px;
}

.support-hero h1 {
  max-width: 860px;
  font-size: clamp(40px, 5vw, 64px);
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 44px;
  align-items: start;
}

.content-stack {
  display: grid;
  gap: 24px;
}

.content-panel,
.side-panel,
.legal-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.content-panel,
.legal-panel {
  padding: 34px;
}

.content-panel h2,
.legal-panel h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.content-panel p,
.content-panel li,
.legal-panel p,
.legal-panel li {
  color: var(--muted);
}

.content-panel ul,
.legal-panel ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.video-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b111b;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.side-panel {
  position: sticky;
  top: 96px;
  padding: 24px;
  background: var(--soft);
}

.side-panel h2 {
  font-size: 26px;
}

.side-panel .button {
  width: 100%;
  margin-top: 10px;
}

.mini-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0;
  list-style: none;
}

.mini-list li {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.table-like {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.table-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 16px;
  background: var(--white);
}

.table-row strong:last-child {
  text-align: right;
}

.footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.footer-links a {
  color: var(--ink);
  font-weight: 750;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-copy {
  max-width: 480px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #2d3540;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

.split-media {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  filter: grayscale(22%);
}

.control-center {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 40px;
  align-items: center;
  padding: 38px 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  box-shadow: 0 20px 60px rgba(15, 23, 42, .06);
}

.control-copy h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.control-copy p:not(.eyebrow) {
  color: var(--muted);
}

.control-copy .button {
  width: fit-content;
  margin-top: 22px;
}

.control-preview {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #f2f4f7;
}

.control-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(12%);
}

.remote-tools {
  padding-top: 0;
  padding-bottom: 18px;
}

.remote-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.remote-panel h2 {
  max-width: 620px;
  margin-bottom: 10px;
  font-size: clamp(30px, 3vw, 46px);
}

.remote-panel p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .72);
}

.remote-panel .eyebrow {
  color: #8fb8ff;
}

.tool-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  min-width: 220px;
}

.support-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.support-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 52px rgba(15, 23, 42, .04);
}

.support-card h3 {
  font-size: clamp(28px, 3vw, 40px);
}

.support-card > p:not(.eyebrow) {
  color: var(--muted);
}

.support-steps {
  display: grid;
  gap: 12px;
  margin: 22px 0 24px;
  padding-left: 22px;
  color: #2d3540;
}

.support-steps li::marker {
  color: var(--blue);
  font-weight: 850;
}

.inline-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
}

.inline-actions .text-link {
  align-items: center;
  margin-top: 6px;
}

.remote-panel .button.primary {
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
}

.remote-panel .button.secondary {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}

.pricing {
  padding-top: 96px;
}

.price-grid {
  grid-template-columns: repeat(4, 1fr);
}

.price-card {
  min-height: 248px;
  padding: 26px;
}

.price-card.featured {
  border-color: rgba(23, 105, 224, .38);
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.price {
  margin: 16px 0 14px;
  color: var(--ink) !important;
  font-size: 44px;
  line-height: 1;
  font-weight: 850;
}

.price span {
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
}

.process {
  padding-top: 24px;
}

.steps {
  grid-template-columns: repeat(3, 1fr);
}

.steps article {
  padding: 26px;
}

.steps span {
  display: block;
  margin-bottom: 34px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
}

.faq {
  padding-top: 24px;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-grid h3 {
  font-size: 19px;
}

.faq-grid p {
  margin-bottom: 0;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 40px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.final-cta h2 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(30px, 3.5vw, 48px);
}

.contact-row {
  display: grid;
  gap: 14px;
}

.contact-row > span {
  color: #3a4350;
  font-size: 15px;
  font-weight: 800;
}

.contact-note {
  max-width: 660px;
  margin: 0;
  color: #3a4350;
  font-size: 15px;
  line-height: 1.6;
}

.contact-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.channel {
  display: grid;
  grid-template-columns: 32px auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
  min-width: 190px;
  padding: 12px 14px;
  border: 1px solid rgba(11, 17, 27, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(15, 23, 42, .04);
}

.channel:hover {
  border-color: rgba(23, 105, 224, .32);
  background: var(--white);
}

.channel img,
.mail-icon {
  grid-row: 1 / 3;
  width: 32px;
  height: 32px;
}

.channel img {
  object-fit: contain;
}

.mail-icon {
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 18px;
  font-weight: 850;
}

.channel strong,
.channel small {
  line-height: 1.2;
}

.channel strong {
  font-size: 14px;
}

.channel small {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 580px;
  }

  .trust-bar,
  .service-grid,
  .solution-grid,
  .support-split,
  .app-grid,
  .price-grid,
  .steps,
  .authority,
  .faq-grid,
  .control-center,
  .split,
  .page-layout,
  .product-hero,
  .split-feature,
  .process-grid,
  .method-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-hero {
    grid-template-columns: 1fr;
  }

  .split-copy {
    max-width: none;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .remote-panel {
    grid-template-columns: 1fr;
  }

  .tool-actions {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 10px;
  }

  .brand span {
    display: none;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-top: 76px;
  }

  .hero-logo {
    width: 104px;
    height: 104px;
    margin-bottom: 22px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .trust-bar,
  .service-grid,
  .solution-grid,
  .support-split,
  .app-grid,
  .compact-grid,
  .price-grid,
  .steps,
  .authority,
  .faq-grid,
  .control-center,
  .split,
  .page-layout,
  .product-hero,
  .split-feature,
  .process-grid,
  .method-grid,
  .demo-body,
  .demo-methods {
    grid-template-columns: 1fr;
  }

  .product-hero {
    gap: 26px;
  }

  .demo-sidebar {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .demo-main {
    padding: 18px;
  }

  .demo-heading {
    flex-direction: column;
  }

  .process-grid article,
  .method-card {
    min-height: auto;
    padding: 22px;
  }

  .method-card svg {
    margin-bottom: 28px;
  }

  .page-hero {
    width: calc(100% - 24px);
    padding: 128px 0 48px;
  }

  .content-panel,
  .legal-panel,
  .side-panel {
    padding: 22px;
  }

  .side-panel {
    position: static;
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  .use-case-list article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .table-row strong:last-child {
    text-align: left;
  }

  .trust-bar {
    width: calc(100% - 24px);
    margin-top: -28px;
  }

  .section,
  .control-center {
    width: calc(100% - 24px);
    padding: 68px 0;
  }

  .control-center {
    padding: 24px;
  }

  .service-card,
  .solution-card,
  .support-card,
  .price-card,
  .steps article {
    min-height: auto;
    padding: 22px;
  }

  .inline-actions {
    grid-template-columns: 1fr;
  }

  .metrics-row {
    grid-template-columns: 1fr 1fr;
  }

  .metrics-row article:nth-child(2) {
    border-right: 0;
  }

  .metrics-row article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .final-cta {
    width: calc(100% - 24px);
    padding: 28px 20px;
  }

  .button {
    width: 100%;
  }
}
