:root {
  --bg: #080f1d;
  --panel: #101a2b;
  --panel-light: #142139;
  --text: #f3f6fc;
  --muted: #a5b2c8;
  --blue: #78acff;
  --accent: #377dee;
  --line: #233149;
  --green: #81dcbb;
  --radius: 16px;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
a:hover {
  color: var(--blue);
}
img,
svg {
  max-width: 100%;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.13;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(42px, 4.6vw, 70px);
  font-weight: 730;
}
h2 {
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 650;
}
h3 {
  font-size: 23px;
  font-weight: 650;
}
h1 span,
h2 span {
  color: var(--blue);
}
p {
  color: var(--muted);
}
[hidden] {
  display: none !important;
}
.container {
  width: min(1200px, calc(100% - 80px));
  margin-inline: auto;
}
.section {
  padding-block: 100px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--blue);
  margin-bottom: 22px;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px #70a5fc12;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: white;
  color: #101a2b;
  padding: 12px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #080f1df5;
  border-bottom: 1px solid #ffffff0d;
}
.header-inner {
  height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wordmark {
  font-size: 29px;
  font-weight: 850;
  letter-spacing: -1.4px;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.wordmark span {
  color: var(--blue);
}
.wordmark i {
  width: 5px;
  height: 5px;
  background: var(--accent);
  display: block;
  align-self: flex-end;
  margin: 0 0 2px 4px;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 13px;
  font-weight: 550;
  color: #bdc8db;
}
.site-header .nav-cta {
  padding: 10px 21px;
  border: 1px solid #4b6288;
  border-radius: 7px;
  color: var(--text);
  margin-left: 8px;
}
.nav-cta span {
  margin-left: 16px;
}
.menu-toggle {
  display: none;
}
.hero {
  min-height: 680px;
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-picture {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      #080f1df5 0%,
      #080f1deb 28%,
      #080f1d90 62%,
      #080f1d22 100%
    ),
    linear-gradient(0deg, #080f1d 0%, transparent 44%, #0b1c3133 100%);
}
.hero-content {
  padding-block: 78px 62px;
}
.hero h1 {
  max-width: 780px;
  line-height: 1.06;
  letter-spacing: -0.045em;
}
.hero h1 span {
  color: #78acff;
}
.hero-description {
  max-width: 505px;
  font-size: 17px;
  line-height: 1.8;
  margin: 24px 0 30px;
  color: #bdc8dc;
}
.actions {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  gap: 25px;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 12px 23px;
  font-size: 13px;
  font-weight: 650;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 5px 24px #286cdd20;
}
.button-primary:hover {
  background: #286bd7;
  color: white;
}
.button-ghost {
  border-color: #5f7491;
  background: #080f1d65;
  color: #f0f4ff;
}
.button-ghost:hover {
  background: #192d4a;
}
.hero-note {
  font-size: 11px;
  color: #b4bfd1;
  margin-top: 24px;
}
.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 22px;
  border-top: 1px solid #ffffff20;
  margin-top: auto;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #b3c1d7;
}
.hero-bottom a {
  letter-spacing: 0.04em;
}
.hero-bottom a span {
  margin-left: 16px;
}
.trust-strip {
  background: #0d1626;
  border-block: 1px solid #ffffff0b;
}
.trust-inner {
  min-height: 110px;
  display: flex;
  align-items: center;
  gap: 70px;
}
.trust-inner p {
  font-size: 12px;
  line-height: 1.55;
}
.trust-inner strong {
  font-weight: 500;
  color: #d0d8e6;
}
.client-logo {
  font-size: 32px;
  font-weight: 850;
  font-style: italic;
  color: #b9c7dc;
  letter-spacing: -1px;
}
.client-logo.nexel {
  font-weight: 600;
  font-style: normal;
  letter-spacing: -1.6px;
  font-size: 29px;
}
.client-logo small {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
}
.trust-inner > a {
  margin-left: auto;
  font-size: 11px;
  color: #c0cce0;
}
.trust-inner > a span {
  margin-left: 15px;
}
.section-intro {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-end;
  margin-bottom: 42px;
}
.section-intro > p {
  font-size: 13px;
  max-width: 370px;
  padding-bottom: 4px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: linear-gradient(145deg, #142136, #0e1829);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.service-card:hover {
  border-color: #4f70a5;
  transform: translateY(-4px);
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}
.service-icon {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  font-size: 30px;
  color: var(--blue);
  background: #6ea5ff0d;
  border: 1px solid #76aaff26;
  border-radius: 11px;
  line-height: 1;
}
.card-number {
  color: #8da0bd;
  font-size: 11px;
  font-family: monospace;
}
.service-card h3 {
  font-size: 21px;
  margin-bottom: 17px;
}
.service-card p {
  font-size: 13px;
  line-height: 1.85;
  flex: 1;
}
.service-tags {
  border-top: 1px solid var(--line);
  margin-top: 27px;
  padding-top: 19px;
  font-size: 10px;
  color: #a6b8d2;
  line-height: 1.8;
  min-height: 58px;
}
.service-card > a {
  display: flex;
  justify-content: space-between;
  margin-top: 17px;
  font-size: 12px;
  font-weight: 600;
}
.service-card > a span {
  color: var(--blue);
}
.solutions-section {
  background: #0b1423;
  border-block: 1px solid #ffffff09;
}
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.solution-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
}
.dashboard-preview,
.automation-preview {
  background: radial-gradient(ellipse at 60% 40%, #1b3056, #0b1425);
  padding: 25px 32px;
  border-bottom: 1px solid var(--line);
  height: 310px;
}
.preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: #b7c5da;
  margin-bottom: 25px;
}
.preview-top > span:first-child {
  display: flex;
  align-items: center;
  gap: 13px;
}
.tiny-mark {
  font-size: 15px;
  letter-spacing: -2px;
  font-weight: 800;
  color: white;
}
.tiny-mark > span {
  color: var(--blue);
}
.demo-label {
  font-size: 8px;
  letter-spacing: 1.5px;
  border: 1px solid #536681;
  border-radius: 4px;
  padding: 2px 7px;
  color: #c1ccdc;
}
.preview-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 23px;
}
.preview-metrics > div {
  background: #ffffff04;
  border: 1px solid #8baff51a;
  border-radius: 7px;
  padding: 12px 15px;
}
.preview-metrics small {
  display: block;
  color: #b2c0d9;
  font-size: 10px;
}
.preview-metrics strong {
  display: block;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.5;
}
.preview-metrics em {
  font-style: normal;
  color: var(--green);
  font-size: 9px;
  margin-left: 8px;
}
.chart-header {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #b4c1d8;
}
.chart-legend {
  color: var(--blue);
}
.line-chart {
  width: 100%;
  height: 92px;
  margin-top: 12px;
  display: block;
  overflow: visible;
}
.chart-grid {
  stroke: #3b506d;
  stroke-width: 1;
  stroke-dasharray: 4 5;
  fill: none;
}
.chart-line {
  stroke: #6eacff;
  stroke-width: 2.5;
  fill: none;
}
.chart-area {
  fill: #548df322;
}
.chart-days {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: #92a7c5;
}
.solution-copy {
  padding: 28px 32px 32px;
}
.mini-label {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--blue);
  font-weight: 650;
}
.solution-copy h3 {
  margin: 12px 0 13px;
  font-size: 24px;
}
.solution-copy p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 23px;
  max-width: 450px;
}
.solution-copy > a {
  font-size: 12px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}
.flow-step {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #101e34;
  border: 1px solid #2b405f;
  border-radius: 8px;
  padding: 11px 17px;
  max-width: 360px;
  margin-inline: auto;
}
.flow-step.featured {
  border-color: #477abd;
  background: #193051;
}
.flow-icon {
  font-size: 10px;
  color: var(--blue);
  border: 1px solid #3b5275;
  padding: 5px 7px;
  border-radius: 5px;
}
.flow-step strong {
  display: block;
  font-size: 11px;
  line-height: 1.4;
}
.flow-step small {
  display: block;
  font-size: 9px;
  color: #acbbd0;
}
.flow-check {
  color: var(--green);
  margin-left: auto;
  font-size: 12px;
}
.flow-connector {
  font-size: 12px;
  color: #759ad2;
  text-align: center;
  height: 22px;
  line-height: 22px;
}
.about-section {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-copy > p:not(.eyebrow) {
  font-size: 14px;
  margin: 24px 0;
  max-width: 510px;
}
.check-list {
  list-style: none;
  margin: 25px 0 0;
  padding: 0;
}
.check-list li {
  font-size: 12px;
  color: #bdc9de;
  margin: 14px 0;
  display: flex;
  gap: 12px;
}
.check-list li:before {
  content: "✓";
  color: var(--blue);
  font-weight: bold;
}
.impact-panel {
  border: 1px solid #304463;
  border-radius: 18px;
  background:
    radial-gradient(ellipse at top right, #24457888, transparent 75%), #101b2d;
  padding: 35px;
}
.impact-stat {
  padding: 24px 0 30px;
}
.impact-stat strong {
  font-size: 82px;
  letter-spacing: -5px;
  line-height: 1.2;
  font-weight: 550;
}
.impact-stat strong span {
  font-size: 18px;
  letter-spacing: 0;
  color: var(--blue);
  margin-left: 12px;
}
.impact-stat p {
  font-size: 12px;
}
.impact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #415371;
  padding-block: 20px;
}
.impact-row > div + div {
  border-left: 1px solid #415371;
  padding-left: 25px;
}
.impact-row strong {
  font-size: 31px;
  font-weight: 550;
}
.impact-row p {
  font-size: 10px;
}
.impact-panel > small {
  font-size: 9px;
  color: #a8b8d2;
}
.testimonial-section {
  background: #0c1524;
  border-block: 1px solid #ffffff09;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 25px;
}
.testimonial {
  border: 1px solid var(--line);
  background: #111c2e;
  padding: 30px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}
.quote-mark {
  font-size: 58px;
  line-height: 1;
  color: var(--blue);
  font-family: Georgia, serif;
}
.testimonial blockquote {
  font-size: 13px;
  line-height: 1.9;
  color: #cad4e4;
  margin: 0 0 30px;
  flex: 1;
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background: #294572;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: bold;
}
.testimonial figcaption strong,
.testimonial figcaption div span {
  display: block;
  font-size: 11px;
}
.testimonial figcaption div span {
  font-size: 10px;
  color: var(--muted);
}
.verified-label {
  margin-left: auto;
  font-size: 8px;
  color: #a5b6d0;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 19px 0;
}
.faq-list details:first-child {
  padding-top: 4px;
}
.faq-list summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  font-weight: 600;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  color: var(--blue);
  font-size: 20px;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details p {
  font-size: 13px;
  margin-top: 15px;
}
.contact-section {
  background:
    radial-gradient(ellipse at 10% 40%, #16346766, transparent 65%), #0f1a2d;
  border-top: 1px solid #2b3b55;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  align-items: start;
}
.contact-grid > div {
  padding-top: 32px;
}
.contact-grid h2 {
  font-size: clamp(36px, 3.6vw, 49px);
}
.contact-grid > div > p:not(.eyebrow) {
  margin-top: 24px;
  font-size: 15px;
}
.contact-grid > div > .button {
  margin: 30px 0 22px;
}
.contact-mail {
  display: block;
  font-size: 15px;
  color: #cfdef8;
  width: fit-content;
}
.contact-mail span {
  margin-left: 20px;
}
.contact-grid > div > p.contact-note {
  font-size: 11px;
  color: #a5b7d4;
  margin-top: 20px;
}
.contact-form {
  background: #0e1728;
  border: 1px solid #2b405e;
  border-radius: var(--radius);
  padding: 30px;
}
.contact-form h3 {
  font-size: 23px;
}
.contact-form > p {
  font-size: 12px;
  margin: 9px 0 23px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px 15px;
}
.field label {
  font-size: 11px;
  display: block;
  color: #d1ddef;
  margin-bottom: 7px;
}
.field label span {
  color: var(--blue);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: #131f33;
  border: 1px solid #354762;
  color: #f2f6ff;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 12px;
  min-height: 44px;
}
.field textarea {
  resize: vertical;
  min-height: 108px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #9eacc4;
}
.full-width {
  grid-column: 1/-1;
}
.consent-field {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin-block: 20px;
}
.consent-field input {
  accent-color: var(--accent);
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin: 2px 0;
}
.consent-field label {
  font-size: 10px;
  line-height: 1.7;
  color: #b4c1d7;
}
.consent-field a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.submit-button {
  width: 100%;
  justify-content: space-between;
}
.contact-form > small {
  display: block;
  font-size: 9px;
  line-height: 1.6;
  color: #9daec8;
  margin-top: 12px;
}
.form-error {
  border: 1px solid #eea899;
  background: #562831;
  color: #ffe3dc;
  padding: 15px;
  font-size: 12px;
  margin-bottom: 20px;
}
.form-error p {
  color: inherit;
  margin-top: 6px;
}
.form-error a {
  text-decoration: underline;
}
.form-error ul {
  padding-left: 20px;
}
.site-footer {
  padding: 58px 0 0;
  background: #070d17;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 35px;
}
.footer-top p {
  font-size: 12px;
  margin-top: 20px;
}
.footer-top h2 {
  font-size: 11px;
  letter-spacing: 0;
  margin-bottom: 18px;
  color: #e0e8f6;
}
.footer-top > div > a:not(.wordmark) {
  display: block;
  font-size: 11px;
  color: #a7b7ce;
  margin-bottom: 9px;
  overflow-wrap: anywhere;
}
.footer-top > div > a:hover {
  color: var(--blue);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #1a273a;
  padding: 22px 0;
  margin-top: 45px;
  font-size: 9px;
  color: #a0aec2;
}
.demo-page {
  padding-top: 55px;
}
.back-link {
  font-size: 12px;
  color: var(--blue);
  display: inline-block;
  margin-bottom: 30px;
}
.demo-page h1,
.legal-page h1 {
  font-size: clamp(38px, 4vw, 60px);
}
.lead {
  margin: 22px 0;
  font-size: 17px;
}
.demo-notice {
  background: #14223a;
  border: 1px solid #355581;
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 12px;
  margin: 30px 0;
}
.demo-tabs {
  display: flex;
  gap: 10px;
  margin-block: 30px;
}
.demo-tabs button {
  background: var(--panel);
  color: #bfcee6;
  border: 1px solid #41587b;
  border-radius: 7px;
  padding: 11px 20px;
  font-size: 13px;
}
.demo-tabs button[aria-pressed="true"] {
  background: #3375df;
  color: white;
  border-color: #6a9ef2;
}
.demo-panel {
  background: var(--panel);
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 24px;
}
.demo-panel h2 {
  font-size: 26px;
  margin-bottom: 25px;
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}
.kpi-grid > div {
  background: #172743;
  border: 1px solid #2b4263;
  padding: 20px;
  border-radius: 9px;
}
.kpi-grid span,
.kpi-grid small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.kpi-grid strong {
  display: block;
  font-size: 36px;
  letter-spacing: -1px;
  margin: 8px 0;
  font-weight: 600;
}
.table-wrap {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
  white-space: nowrap;
}
caption {
  text-align: left;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 15px;
}
th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
}
thead th {
  background: #17253e;
  color: #b9c9df;
  font-size: 11px;
  font-weight: 600;
}
tbody th {
  font-weight: 500;
}
.demo-cta {
  padding: 55px 0 0;
  text-align: center;
}
.demo-cta h2 {
  font-size: 32px;
}
.demo-cta p {
  margin: 15px 0 25px;
}
.legal-page {
  max-width: 830px;
  padding-block: 70px 90px;
}
.legal-page > p {
  margin-block: 25px;
  font-size: 15px;
}
.legal-page h2 {
  font-size: 23px;
  margin-top: 40px;
}
.legal-page p a {
  text-decoration: underline;
  color: var(--blue);
}
.success-page {
  padding-block: 90px;
  min-height: 65vh;
}
.success-page > p:not(.eyebrow) {
  max-width: 590px;
  margin: 25px 0 35px;
}
.success-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  background: #244b46;
  color: var(--green);
  font-size: 29px;
  border-radius: 50%;
  margin-bottom: 30px;
}
@media (min-width: 1600px) {
  .hero {
    min-height: 760px;
  }
  .hero-content {
    padding-top: 100px;
  }
  .hero h1 {
    font-size: 76px;
  }
}
@media (max-width: 1050px) {
  .container {
    width: calc(100% - 48px);
  }
  .hero h1 {
    font-size: 57px;
  }
  .hero-description {
    max-width: 460px;
  }
  .service-card {
    padding: 23px;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .trust-inner {
    gap: 40px;
  }
  .about-section {
    gap: 50px;
  }
  .contact-grid {
    gap: 35px;
  }
  .section-intro > p {
    max-width: 290px;
    font-size: 12px;
  }
  .section {
    padding-block: 75px;
  }
  .preview-metrics strong {
    font-size: 24px;
  }
  .dashboard-preview,
  .automation-preview {
    padding-inline: 24px;
  }
}
@media (max-width: 760px) {
  .container {
    width: calc(100% - 36px);
  }
  .header-inner {
    height: auto;
    min-height: 70px;
    flex-wrap: wrap;
    gap: 12px;
    padding-block: 14px;
  }
  .wordmark {
    font-size: 26px;
  }
  .site-header nav {
    gap: 18px;
    width: 100%;
    justify-content: space-between;
    font-size: 12px;
    padding: 10px 0;
  }
  .site-header .nav-cta {
    padding: 6px 11px;
    margin-left: 0;
  }
  .has-js .site-header nav {
    display: none;
  }
  .has-js .site-header nav.is-open {
    display: flex;
    flex-wrap: wrap;
  }
  .has-js .menu-toggle {
    display: flex;
    gap: 12px;
    align-items: center;
    background: transparent;
    color: var(--text);
    border: 1px solid #3a506f;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
  }
  .hero {
    min-height: 665px;
  }
  .hero-content {
    padding: 60px 0 42px;
  }
  .hero h1 {
    font-size: clamp(40px, 7vw, 58px);
    max-width: 650px;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #080f1df2, #080f1d8f),
      linear-gradient(0deg, #080f1d, transparent 80%);
  }
  .hero-picture img {
    object-position: 65% center;
  }
  .hero-description {
    max-width: 490px;
    font-size: 15px;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .hero-bottom {
    font-size: 8px;
    padding-block: 18px;
    gap: 20px;
  }
  .hero-bottom > a {
    display: none;
  }
  .trust-inner {
    gap: 28px;
    min-height: 110px;
    flex-wrap: wrap;
    padding-block: 22px;
  }
  .trust-inner p {
    font-size: 10px;
  }
  .trust-inner > a {
    display: none;
  }
  .client-logo {
    font-size: 28px;
  }
  .client-logo.nexel {
    font-size: 25px;
  }
  .section {
    padding-block: 60px;
  }
  .section-intro {
    display: block;
    margin-bottom: 30px;
  }
  .section-intro > p {
    margin-top: 22px;
    max-width: none;
    font-size: 13px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .service-card {
    padding: 25px;
  }
  .card-top {
    margin-bottom: 22px;
  }
  .service-card h3 {
    font-size: 24px;
  }
  .service-tags {
    min-height: 0;
    margin-top: 22px;
  }
  .service-card p {
    font-size: 14px;
  }
  .service-card > a {
    margin-top: 22px;
  }
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .dashboard-preview,
  .automation-preview {
    padding-inline: 25px;
  }
  .solution-copy {
    padding: 25px;
  }
  .about-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .impact-stat strong {
    font-size: 70px;
  }
  .impact-panel {
    padding: 25px;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .testimonial {
    padding: 25px;
  }
  .verified-label {
    display: none;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-grid > div {
    padding-top: 0;
  }
  .contact-form {
    padding: 23px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 35px 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 9px;
  }
  .demo-tabs {
    flex-direction: column;
  }
  .demo-panel {
    padding: 20px;
  }
  .kpi-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .kpi-grid > div {
    padding: 18px;
  }
  .kpi-grid strong {
    font-size: 31px;
  }
  .legal-page {
    padding-block: 55px;
  }
  .success-page {
    padding-block: 60px;
  }
  .demo-cta h2 {
    font-size: 27px;
  }
}
@media (max-width: 420px) {
  .hero h1 {
    font-size: 40px;
  }
  .desktop-break {
    display: none;
  }
  .hero .actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 310px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-note {
    font-size: 10px;
  }
  .trust-inner {
    gap: 24px;
  }
  .trust-inner p {
    max-width: 135px;
  }
  .client-logo {
    font-size: 25px;
  }
  .client-logo.nexel {
    font-size: 22px;
  }
  .client-logo small {
    font-size: 9px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 20px;
  }
  .section-intro h2 {
    font-size: 30px;
  }
  .solution-copy h3 {
    font-size: 23px;
  }
  .preview-metrics em {
    display: block;
    margin: 0;
    line-height: 1.2;
  }
  .preview-metrics > div {
    padding: 9px 12px;
  }
  .preview-metrics {
    margin-bottom: 12px;
  }
  .flow-step {
    padding-inline: 10px;
    gap: 10px;
  }
  .site-header nav.is-open {
    gap: 12px;
  }
  .nav-cta span {
    margin-left: 6px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
