: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;
  }
}

/* AI agents: light vector assets and responsive, semantic workflow. */
.line-icon { width: 26px; height: 26px; flex-shrink: 0; }
.service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.service-card { padding: 25px 22px; }
.service-card h3 { font-size: 19px; }
.service-card-featured { border-color: #5c9dff; background: linear-gradient(145deg, #18325b, #0d1c32); box-shadow: 0 0 0 1px #377dee30, 0 0 30px #377dee30; }
.service-card-featured .card-number, .service-card-featured > a { color: var(--blue); }
.agent-section { border-top: 1px solid var(--line); background: radial-gradient(ellipse at 25% 0%, #10274370, transparent 60%), #080f1d; }
.agent-section .section-intro { align-items: center; }
.agent-section .section-intro > p { max-width: 430px; }
.agent-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; margin: 45px 0 30px; }
.agent-benefits article, .agent-use-cases article { display: flex; align-items: flex-start; gap: 18px; }
.agent-icon { display: grid; place-items: center; flex-shrink: 0; width: 49px; height: 49px; border: 1px solid #2a527f; border-radius: 9px; color: #62a6ff; background: #0a192d; }
.agent-benefits h3 { font-size: 15px; letter-spacing: 0; margin: 7px 0 9px; }
.agent-benefits p { font-size: 12px; line-height: 1.7; }
.agent-workflow { padding: 25px 28px 30px; border: 1px solid #294562; border-radius: 15px; background: radial-gradient(circle, #377dee24 1px, transparent 1px) 0 0 / 14px 14px, linear-gradient(140deg, #0c1b2e, #081321); }
.workflow-heading { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 25px; }
.workflow-heading h3 { font-size: 10px; letter-spacing: .14em; }
.workflow-heading p { font-size: 10px; }
.workflow-grid { display: grid; grid-template-columns: 1fr 28px 1fr 28px 1.1fr 28px 1fr 1.8fr; gap: 4px; align-items: center; min-height: 230px; }
.agent-stage { align-self: center; }
.agent-node { min-height: 95px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 11px; border: 1px solid #294c72; border-radius: 12px; background: linear-gradient(135deg, #10243c, #0a182b); color: #65a9ff; padding: 14px 8px; }
.agent-node strong { color: var(--text); font-size: 12px; letter-spacing: 0; text-align: center; }
.agent-stage p { text-align: center; font-size: 10px; line-height: 1.7; margin-top: 12px; }
.agent-arrow { font-size: 29px; color: #63a5ff; text-align: center; margin-top: -45px; text-shadow: 0 0 10px #377dee; }
.agent-decision { padding: 0 12px 45px; }
.decision-shape { width: 94px; height: 94px; margin: auto; transform: rotate(45deg); border: 1px solid #569bfa; border-radius: 10px; background: #0b2544; box-shadow: 0 0 22px #377dee25; }
.decision-shape > span { display: flex; flex-direction: column; justify-content: center; height: 100%; text-align: center; transform: rotate(-45deg); font-size: 10px; line-height: 1.35; }
.decision-shape b { color: var(--blue); font-size: 25px; font-weight: 500; margin-bottom: 2px; }
.agent-branches { display: grid; gap: 20px; }
.agent-branch { display: grid; grid-template-columns: 35px 1fr; gap: 8px; align-items: start; }
.branch-label { font-size: 11px; color: #6fafff; padding-top: 14px; }
.branch-label > span { display: block; font-size: 23px; line-height: 1; }
.branch-node { display: flex; align-items: center; gap: 12px; padding: 12px 15px; border: 1px solid #365c89; border-radius: 10px; background: linear-gradient(135deg, #142b49, #0b1c32); color: #64a9ff; }
.branch-node strong { font-size: 11px; line-height: 1.5; color: var(--text); }
.agent-branch p { font-size: 10px; text-align: center; margin-top: 7px; line-height: 1.65; }
.agent-control { display: flex; align-items: center; gap: 23px; margin: 24px 0; padding: 24px; border: 1px solid #4c97ff; border-radius: 12px; background: linear-gradient(100deg, #142b4d, #091a2e); box-shadow: 0 0 22px #377dee15; }
.control-icon { display: flex; align-items: center; padding-right: 23px; border-right: 1px solid #4286de; color: #6aafff; }
.control-icon .line-icon { width: 43px; height: 43px; }
.agent-control h3 { font-size: 19px; line-height: 1.4; letter-spacing: -.02em; }
.agent-control p { font-size: 12px; margin-top: 4px; }
.agent-control .button { margin-left: auto; white-space: nowrap; flex-shrink: 0; }
.use-cases-label { margin: 28px 0 14px; }
.agent-use-cases { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.agent-use-cases article { padding: 19px 16px; gap: 13px; border: 1px solid #294562; border-radius: 11px; background: linear-gradient(145deg, #0f2137, #0b1727); }
.agent-use-cases .agent-icon { width: 39px; height: 39px; }
.agent-use-cases .line-icon { width: 21px; height: 21px; }
.agent-use-cases h3 { font-size: 12px; letter-spacing: 0; line-height: 1.4; margin: 5px 0 10px; }
.agent-use-cases p { font-size: 10px; line-height: 1.7; }
@media (max-width: 1100px) {
  .service-grid, .agent-use-cases { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .workflow-grid { grid-template-columns: 1fr 20px 1fr 20px 1fr; row-gap: 35px; }
  .workflow-grid > .agent-arrow:nth-of-type(3) { display: none; }
  .agent-decision { grid-column: 1 / 3; padding: 0; }
  .agent-branches { grid-column: 3 / 6; }
  .agent-control { flex-wrap: wrap; }
  .agent-control .button { margin-left: 66px; }
}
@media (max-width: 760px) {
  .service-grid { grid-template-columns: 1fr; }
  .service-card { padding: 25px; }
  .service-card h3 { font-size: 24px; }
  .agent-benefits { grid-template-columns: 1fr; gap: 23px; margin-top: 32px; }
  .agent-benefits h3 { margin-top: 3px; }
  .agent-workflow { padding: 22px 18px; }
  .workflow-heading { flex-direction: column; align-items: flex-start; gap: 7px; }
  .workflow-grid { grid-template-columns: 1fr; gap: 14px; }
  .agent-stage { width: 100%; max-width: 340px; margin: auto; }
  .agent-node { min-height: 82px; }
  .agent-arrow { margin: 0; transform: rotate(90deg); font-size: 28px; }
  .workflow-grid > .agent-arrow:nth-of-type(3) { display: block; }
  .agent-decision { grid-column: auto; padding: 20px 0; }
  .agent-branches { grid-column: auto; gap: 18px; margin-top: 15px; }
  .agent-branch { grid-template-columns: 38px 1fr; }
  .agent-control { gap: 15px; padding: 22px 18px; }
  .control-icon { border: 0; padding: 0; }
  .agent-control > div { flex: 1; min-width: 200px; }
  .agent-control h3 { font-size: 18px; }
  .agent-control .button { width: 100%; margin: 5px 0 0; white-space: normal; }
  .agent-use-cases { grid-template-columns: 1fr 1fr; gap: 12px; }
  .agent-use-cases article { flex-direction: column; padding: 18px; }
}
@media (max-width: 420px) { .agent-use-cases { grid-template-columns: 1fr; } .agent-use-cases article { flex-direction: row; } }

/* Visual rhythm and an illustrative assistant in the hero. */
.founder-teaser, .about-intro { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 65px; }
.founder-teaser > img { width: 100%; max-height: 440px; object-fit: cover; object-position: center 28%; border-radius: 20px; border: 1px solid #345477; }
.founder-teaser p:not(.eyebrow) { font-size: 17px; line-height: 1.8; margin: 24px 0; }
.about-page { padding-block: 70px; }
.founder-quote { margin: 28px 0; padding: 22px 24px; border-left: 3px solid #78acff; border-radius: 0 12px 12px 0; background: #132a48; }
.founder-teaser .founder-quote p { margin: 0; font-size: 20px; line-height: 1.6; color: #edf4ff; font-weight: 600; }
.founder-quote cite { display: block; margin-top: 12px; color: #93bded; font-size: 12px; font-style: normal; }
.about-intro { grid-template-columns: 1.2fr .8fr; }
.about-intro h1 { font-size: clamp(38px, 4.6vw, 64px); line-height: 1.12; }
.about-intro h1 span { color: #78acff; }
.about-intro > img { width: 100%; height: auto; border-radius: 22px; border: 1px solid #345477; }
.about-lead { font-size: 19px; line-height: 1.8; margin: 28px 0; }
.about-story { max-width: 820px; margin: 80px auto; }
.about-story h2 { margin-bottom: 26px; }
.about-story > p:not(.eyebrow), .about-closing > p { font-size: 17px; line-height: 1.9; margin: 20px 0; }
.about-skills { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 32px; }
.about-skills article { padding: 28px; background: #102039; border: 1px solid #345477; border-radius: 14px; }
.about-skills h3 { font-size: 21px; margin: 20px 0 12px; }
.about-skills p { font-size: 16px; line-height: 1.8; }
.about-closing { margin-top: 65px; padding: 40px; border-radius: 20px; background: #152e50; }
.about-closing .actions { margin-top: 28px; }
@media (max-width: 760px) { .founder-teaser, .about-intro { grid-template-columns: 1fr; gap: 30px; } .founder-teaser > img { max-height: 380px; } .about-intro > img { max-height: 440px; object-fit: cover; object-position: center 25%; } .about-page { padding-block: 42px; } .about-story { margin-block: 50px; } .about-skills { grid-template-columns: 1fr; } .about-closing { padding: 26px; } }
.project-section { background: radial-gradient(ellipse at 80% 0%, #25426f50, transparent 65%), #0d192b; border-block: 1px solid #294562; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.project-card { display: flex; flex-direction: column; border: 1px solid #365577; border-radius: 20px; overflow: hidden; background: #101f34; }
.project-image { position: relative; height: 300px; display: flex; align-items: center; justify-content: center; padding: 45px 20px 10px; background: radial-gradient(ellipse at center, #2a5787, #0d1c30 75%); }
.project-agentra .project-image { background: radial-gradient(ellipse at center, #483b72, #131c31 75%); }
.project-image img { width: 100%; height: 100%; object-fit: contain; }
.project-category { position: absolute; top: 20px; left: 24px; font-size: 10px; letter-spacing: .12em; color: #c6dcfa; }
.project-copy { padding: 30px; display: flex; flex-direction: column; flex: 1; }
.project-copy h3 { font-size: 28px; line-height: 1.3; margin: 12px 0 16px; }
.project-copy > p:not(.mini-label) { font-size: 16px; line-height: 1.8; }
.project-copy ul { list-style: none; padding: 0; margin: 22px 0 28px; display: flex; flex-wrap: wrap; gap: 8px; }
.project-copy li { font-size: 12px; padding: 7px 10px; border: 1px solid #3f5c7d; border-radius: 8px; color: #c8dcf6; }
.project-copy .button { align-self: flex-start; margin-top: auto; }
.project-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: auto; }
.project-actions .button { margin-top: 0; }
.project-actions .button-whatsapp { background: #128c45; border: 1px solid #39bd76; color: #fff; box-shadow: 0 5px 18px #128c4525; }
.project-actions .button-whatsapp:hover { background: #0d7539; border-color: #75dda4; box-shadow: 0 7px 22px #128c4540; }
.whatsapp-icon { width: 23px; height: 23px; flex-shrink: 0; fill: currentColor; }
.project-invitation { margin-top: 30px; font-size: 16px; text-align: center; line-height: 1.8; }
.project-invitation a { color: #8dbfff; font-weight: 700; margin-left: 10px; }
@media (max-width: 760px) { .project-grid { grid-template-columns: 1fr; gap: 24px; } .project-image { height: 240px; } .project-copy { padding: 24px; } .project-copy h3 { font-size: 25px; } .project-invitation a { display: block; margin: 8px 0 0; } }
.hero-preview { display: none; }
.trust-strip { background: #eaf1fc; color: #173052; border-block: 1px solid #cbdcf1; }
.trust-strip .trust-inner p, .trust-strip .client-logo, .trust-strip a { color: #173052; }
.trust-strip .trust-inner strong { color: #0d2545; }
.trust-strip .client-logo { font-size: 30px; }
.service-card { position: relative; overflow: hidden; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.service-card:before { content: ""; position: absolute; width: 140px; height: 140px; top: -75px; right: -65px; border: 1px solid #78b5ff24; border-radius: 50%; box-shadow: 0 0 0 22px #78b5ff08, 0 0 0 44px #78b5ff05; pointer-events: none; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 14px 35px #0003; }
.testimonial-section { background: radial-gradient(ellipse at 85% 15%, #20447470, transparent 65%), #0c1524; }
.testimonial { padding: 36px; border-top: 3px solid #69aaff; background: linear-gradient(145deg, #172c49, #0d1b2e); }
.testimonial blockquote { font-size: 16px; line-height: 1.85; color: #e3ecfa; }
.testimonial .quote-mark { font-size: 80px; color: #85b9ff; }
.testimonial figcaption { border-top: 1px solid #ffffff20; padding-top: 22px; flex-wrap: wrap; }
.testimonial figcaption strong { font-size: 20px; color: #fff; }
.testimonial figcaption div span { font-size: 12px; }
.testimonial .avatar { width: 48px; height: 48px; font-size: 17px; }
.testimonial .verified-label { font-size: 10px; }
.faq-section { background: #eaf1fc; color: #102b4d; border-radius: 24px; padding: 48px; margin-block: 65px; }
.faq-section h2 { color: #102b4d; }
.faq-section h2 span, .faq-section .eyebrow, .faq-list summary > span { color: #2464b0; }
.faq-list details { border-bottom: 1px solid #bdcfe5; }
.faq-list details p { color: #36516e; font-size: 15px; line-height: 1.8; }
.faq-list summary { font-size: 17px; }
.button { transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.reveal-item.is-revealed { animation: reveal-in .65s ease both; }
@keyframes reveal-in { from { opacity: .4; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@media (min-width: 1101px) {
  .hero-content { padding-right: 430px; }
  .hero h1 { font-size: clamp(48px, 4.5vw, 68px); }
  .hero-preview { display: block; position: absolute; top: 105px; right: max(40px, calc((100vw - 1200px) / 2)); width: 360px; padding: 26px; border: 1px solid #77b4fb80; border-radius: 22px; background: linear-gradient(150deg, #153459f5, #081626f5); box-shadow: 0 25px 65px #0005; transform: rotate(2deg); }
  .preview-heading { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
  .preview-heading p { font-size: 9px; letter-spacing: .08em; color: #99c8ff; }
  .preview-heading h2 { font-size: 20px; line-height: 1.3; margin-top: 6px; }
  .preview-message { padding: 16px; border-radius: 14px; margin-block: 14px; }
  .preview-message small { font-size: 11px; color: #b3d4ff; font-weight: 700; }
  .preview-message p { font-size: 14px; line-height: 1.65; color: #edf4ff; margin-top: 6px; }
  .preview-client { background: #283d57; margin-left: 22px; border-bottom-right-radius: 3px; }
  .preview-answer { background: #1b4e80; margin-right: 15px; border-bottom-left-radius: 3px; }
  .preview-task { display: flex; gap: 12px; align-items: center; padding: 16px; background: #143d40; border: 1px solid #75c5b450; border-radius: 12px; color: #9be2cf; }
  .preview-task strong, .preview-task span { display: block; }
  .preview-task strong { font-size: 14px; color: #e4fff7; }
  .preview-task span { font-size: 12px; margin-top: 4px; }
  .preview-caption { font-size: 10px; margin: 14px 0; }
  .hero-preview > a { font-size: 13px; font-weight: 700; color: #9dccff; }
}
@media (max-width: 760px) { .faq-section { padding: 28px 22px; gap: 28px; margin-block: 40px; border-radius: 18px; } .testimonial { padding: 26px; } .testimonial blockquote { font-size: 15px; } .trust-strip .client-logo { font-size: 25px; } }
@media (prefers-reduced-motion: reduce) { .reveal-item.is-revealed { animation: none; } .button:hover, .service-card:hover { transform: none; } }

/* Business-first explanation: readable examples and numbered steps. */
.hero-assistant { display: flex; align-items: flex-start; gap: 14px; max-width: 505px; margin: -8px 0 26px; padding: 18px; border: 1px solid #4f8cce; border-radius: 12px; background: linear-gradient(120deg, #14355cef, #0b1a2def); box-shadow: 0 8px 30px #0002; }
.hero-assistant-icon { display: grid; place-items: center; flex-shrink: 0; width: 40px; height: 40px; border-radius: 9px; background: #245892; color: #c4e1ff; }
.hero-assistant strong { display: block; font-size: 16px; line-height: 1.45; color: #f4f8ff; }
.hero-assistant > span > span { display: block; font-size: 14px; line-height: 1.65; color: #c4d3e8; margin-top: 6px; }
.hero-assistant > span > .hero-assistant-link { font-size: 13px; font-weight: 700; color: #91c4ff; margin-top: 10px; }
.hero-assistant:hover { border-color: #9acbff; background: #153557; }
@media (max-width: 760px) { .hero-assistant { padding: 16px; gap: 12px; } .hero-assistant strong { font-size: 15px; } .hero-assistant > span > span { font-size: 13px; } .hero-bottom > span { line-height: 1.8; } }
.agent-definition { max-width: 850px; margin-top: 24px; font-size: 16px; line-height: 1.8; }
.agent-benefits h3 { font-size: 18px; line-height: 1.4; }
.agent-benefits p, .agent-use-cases p { font-size: 14px; line-height: 1.75; }
.agent-example { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 48px; padding: 36px; margin: 40px 0; border: 1px solid #365c89; border-radius: 20px; background: radial-gradient(ellipse at top left, #18345b, transparent 70%), #0b1728; }
.example-story h3 { font-size: clamp(26px, 3vw, 36px); line-height: 1.3; letter-spacing: -.025em; margin: 18px 0; }
.example-story h3 span { color: #78b5ff; }
.example-story > p:not(.mini-label) { font-size: 16px; line-height: 1.8; margin-top: 16px; }
.example-result { display: flex; align-items: flex-start; gap: 12px; margin-top: 26px; color: #b7d6ff; font-size: 16px; line-height: 1.6; }
.example-chat { padding: 24px; border-radius: 16px; border: 1px solid #385677; background: #081221; box-shadow: 0 18px 45px #0003; }
.example-chat-header { display: flex; align-items: center; gap: 12px; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--line); }
.example-chat-header strong { font-size: 16px; }
.example-chat-header p { font-size: 12px; margin-top: 4px; }
.chat-message { width: 92%; padding: 14px 16px; margin: 12px 0; border-radius: 12px; }
.chat-message > span { display: block; font-size: 12px; font-weight: 700; margin-bottom: 5px; color: #b7d6ff; }
.chat-message p { font-size: 14px; line-height: 1.65; color: #edf3ff; }
.chat-client { margin-left: auto; background: #1b2b42; border-bottom-right-radius: 3px; }
.chat-assistant { background: #133965; border-bottom-left-radius: 3px; }
.example-caption { font-size: 12px; line-height: 1.7; margin-top: 18px; }
.agent-simple-workflow { margin: 40px 0; }
.agent-simple-workflow .workflow-heading h3 { font-size: 24px; letter-spacing: -.02em; }
.agent-simple-workflow .workflow-heading p { font-size: 14px; }
.simple-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.simple-steps li { padding: 24px; border-top: 2px solid #5e9eea; border-radius: 0 0 12px 12px; background: #102039; }
.step-number { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: #245892; color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 18px; }
.simple-steps h4 { font-size: 17px; line-height: 1.45; margin-bottom: 10px; }
.simple-steps p { font-size: 14px; line-height: 1.75; }
.agent-use-cases h3 { font-size: 16px; }
.agent-use-cases article { flex-direction: column; padding: 24px; }
.agent-control { margin-top: 36px; align-items: flex-start; padding: 32px; }
.agent-control h3 { font-size: 24px; }
.agent-control p { font-size: 16px; line-height: 1.75; max-width: 750px; margin-top: 12px; }
.agent-control .button { margin: 22px 0 0; white-space: normal; }
.agent-control .agent-cta-note { font-size: 12px; margin-top: 10px; }
@media (max-width: 1100px) { .agent-example { gap: 28px; padding: 28px; } .simple-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 760px) {
  .agent-example { grid-template-columns: 1fr; padding: 22px 18px; gap: 26px; }
  .example-chat { padding: 18px; }
  .agent-definition { font-size: 15px; }
  .agent-benefits h3 { font-size: 18px; }
  .agent-simple-workflow .workflow-heading { gap: 10px; }
  .simple-steps { grid-template-columns: 1fr; gap: 14px; }
  .simple-steps li { padding: 20px; display: grid; grid-template-columns: 36px 1fr; column-gap: 16px; border-top: 0; border-left: 2px solid #5e9eea; border-radius: 0 12px 12px 0; }
  .step-number { grid-row: 1 / 3; margin: 0; }
  .simple-steps h4 { margin-bottom: 6px; }
  .agent-use-cases { grid-template-columns: 1fr; }
  .agent-use-cases article { flex-direction: row; padding: 20px; }
  .agent-control { padding: 24px 20px; gap: 16px; }
  .agent-control > div { min-width: 0; flex-basis: 100%; }
  .agent-control h3 { font-size: 22px; }
}
