:root {
  --ink: #102033;
  --muted: #5b697c;
  --soft: #f4f8fd;
  --panel: #ffffff;
  --line: rgba(25, 56, 92, .14);
  --blue: #1769ff;
  --cyan: #11b7c7;
  --green: #21a36a;
  --violet: #6d5bd7;
  --amber: #eea431;
  --shadow: 0 22px 70px rgba(25, 56, 92, .14);
  --radius: 8px;
  --font: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.56;
  letter-spacing: 0;
  background:
    radial-gradient(circle at 8% 5%, rgba(17, 183, 199, .16), transparent 30rem),
    radial-gradient(circle at 92% 0%, rgba(109, 91, 215, .13), transparent 30rem),
    linear-gradient(180deg, #f7fbff 0%, #eef5fc 42%, #ffffff 100%);
}

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 251, 255, .86);
  backdrop-filter: blur(18px);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}

.brand {
  display: grid;
  gap: 1px;
  font-weight: 850;
}

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

.nav {
  display: flex;
  gap: 18px;
  color: #334963;
  font-size: 14px;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(23, 105, 255, .22);
  border-radius: 6px;
  background: #fff;
  color: #0f459f;
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(23, 105, 255, .1);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 105, 255, .42);
  box-shadow: 0 18px 42px rgba(23, 105, 255, .16);
}

.btn--primary {
  background: linear-gradient(135deg, var(--blue), #0ba5d6);
  color: #fff;
}

.section {
  padding: 74px 0;
}

.hero {
  position: relative;
  padding: 70px 0 48px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 32, 51, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 32, 51, .045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(17, 183, 199, .3);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  color: #0d6b83;
  font-size: 13px;
  font-weight: 850;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(33, 163, 106, .14);
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.2vw, 64px);
}

.lead {
  max-width: 680px;
  margin-bottom: 26px;
  color: #394c64;
  font-size: 20px;
}

.hero__copy {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.hero__copy .lead {
  margin-bottom: 0;
  font-size: 18px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.fact,
.card,
.price,
.support,
.step,
.metric,
.case,
.risk,
.compare__row,
details,
.legal-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 42px rgba(31, 59, 93, .08);
}

.fact {
  padding: 14px;
}

.fact strong,
.metric strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
}

.fact span,
.metric span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.hero-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: clamp(620px, 50vw, 660px);
  border: 1px solid rgba(23, 105, 255, .18);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(232, 243, 255, .86)),
    radial-gradient(circle at 72% 15%, rgba(23, 105, 255, .16), transparent 18rem);
  box-shadow: var(--shadow);
}

.hero-visual__grid {
  position: absolute;
  inset: clamp(14px, 1.7vw, 22px);
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: space-between;
  gap: clamp(12px, 1.3vw, 18px);
  min-width: 0;
}

.dash,
.mini {
  border: 1px solid rgba(32, 73, 119, .13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .75);
  box-shadow: 0 14px 34px rgba(32, 73, 119, .09);
}

.dash-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 12px);
  min-width: 0;
}

.dash {
  min-width: 0;
  min-height: 106px;
  padding: clamp(12px, 1.2vw, 14px);
}

.dash b {
  display: block;
  font-size: clamp(22px, 2.2vw, 25px);
}

.dash small,
.node span,
.mini span {
  display: block;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-content: start;
  gap: clamp(10px, 1vw, 14px);
  min-width: 0;
  padding: 0;
}

.flow::before {
  display: none;
}

.node {
  position: relative;
  min-width: 0;
  min-height: 128px;
  padding: clamp(13px, 1.2vw, 16px);
  border: 1px solid rgba(32, 73, 119, .13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
}

.node:nth-child(2),
.node:nth-child(3) {
  transform: none;
}

.node b {
  display: block;
  margin-bottom: 6px;
  overflow-wrap: anywhere;
}

.mini {
  min-width: 0;
  min-height: 116px;
  padding: clamp(12px, 1.1vw, 14px);
}

.mini b {
  display: block;
  margin-bottom: 4px;
  overflow-wrap: anywhere;
}

.hero-visual figure.mini {
  min-height: 0;
  margin: 0;
  padding: 0 4px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-visual figcaption {
  color: #5b697c;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.bar {
  height: 8px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(260px, .25fr);
  gap: 26px;
  align-items: end;
  margin-bottom: 30px;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 46px);
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
}

.side-note {
  justify-self: end;
  max-width: 270px;
  color: #24517e;
  font-size: 14px;
  font-weight: 850;
}

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

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

.card {
  min-height: 260px;
  padding: 24px;
}

.card h3,
.price h3,
.support h3,
.step h3,
.case h3,
.risk h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.card p,
.price p,
.support p,
.step p,
.case p,
.risk p,
details p {
  color: var(--muted);
}

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: var(--radius);
  background: #eaf2ff;
  color: var(--blue);
  font-weight: 900;
}

.check-list li {
  position: relative;
  margin-top: 10px;
  padding-left: 18px;
  color: #31445b;
  font-weight: 650;
}

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

.value {
  background: linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(239, 246, 255, .92));
  border-block: 1px solid var(--line);
}

.pricing {
  padding-top: 70px;
  background:
    linear-gradient(135deg, rgba(16, 32, 51, .97), rgba(19, 58, 99, .96)),
    radial-gradient(circle at top right, rgba(17, 183, 199, .22), transparent 27rem);
  color: #fff;
}

.pricing .section-head p,
.pricing .side-note {
  color: rgba(255, 255, 255, .76);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.price,
.support {
  padding: 24px;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: none;
}

.price {
  display: flex;
  min-height: 610px;
  flex-direction: column;
}

.support {
  min-height: 290px;
}

.price--main {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(17, 183, 199, .56);
}

.label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(17, 183, 199, .16);
  color: #bff8ff;
  font-size: 13px;
  font-weight: 850;
}

.price-value {
  margin: 10px 0 14px;
  font-size: 32px;
  font-weight: 900;
}

.price p,
.price li,
.support p,
.support li {
  color: rgba(255, 255, 255, .78);
}

.price .btn,
.support .btn {
  margin-top: 18px;
}

.price .btn {
  margin-top: auto;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.muted-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.process {
  background: linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(239, 246, 255, .9));
  border-block: 1px solid var(--line);
}

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

.step {
  min-height: 245px;
  padding: 22px;
}

.step-num {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: var(--radius);
  background: #102033;
  color: #fff;
  font-weight: 900;
}

.proof-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 18px;
}

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

.metric,
.case,
.risk {
  padding: 22px;
}

.case-list {
  display: grid;
  gap: 14px;
}

.compare {
  display: grid;
  gap: 10px;
}

.compare__row {
  display: grid;
  grid-template-columns: .3fr 1fr 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
}

.compare__row strong {
  color: #0e3f99;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

details {
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin-top: 14px;
}

.final-cta {
  padding: 58px 0 86px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(23, 105, 255, .2);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.footer {
  padding: 34px 0 96px;
  border-top: 1px solid var(--line);
  background: #0f1f32;
  color: rgba(255, 255, 255, .82);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
}

.footer a {
  color: #d8edff;
  font-weight: 750;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-notice {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(16, 32, 51, .96);
  color: #fff;
  box-shadow: 0 20px 60px rgba(16, 32, 51, .28);
}

.cookie-notice.is-hidden {
  display: none;
}

.cookie-notice p {
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
}

.cookie-notice a {
  color: #bff8ff;
  font-weight: 800;
}

.cookie-notice button {
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  background: #fff;
  color: #102033;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.legal-page {
  padding: 62px 0 86px;
}

.legal-box {
  padding: 28px;
}

.legal-box h1 {
  font-size: clamp(34px, 5vw, 54px);
}

.legal-box h2 {
  margin-top: 28px;
  font-size: 28px;
}

.legal-box p {
  margin-top: 12px;
  color: var(--muted);
}

@media (prefers-reduced-motion: no-preference) {
  .dash,
  .node,
  .mini {
    animation: float-card 6s ease-in-out infinite;
  }

  .node:nth-child(2),
  .mini:nth-child(2) {
    animation-delay: .8s;
  }

  .node:nth-child(3),
  .mini:nth-child(3) {
    animation-delay: 1.4s;
  }

  @keyframes float-card {
    0%, 100% {
      translate: 0 0;
    }
    50% {
      translate: 0 -7px;
    }
  }
}

@media (max-width: 1120px) and (min-width: 981px) {
  .hero-visual {
    min-height: 680px;
  }

  .hero-visual__grid {
    grid-template-rows: auto auto auto;
  }

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

  .flow::before {
    display: none;
  }

  .node:nth-child(2),
  .node:nth-child(3) {
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero__grid,
  .section-head,
  .proof-layout,
  .cta-panel,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 480px;
  }

  .grid-3,
  .timeline,
  .price-grid,
  .support-grid {
    grid-template-columns: 1fr 1fr;
  }

  .side-note {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: 44px;
  }

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 18px;
  }

  .grid-3,
  .grid-2,
  .timeline,
  .price-grid,
  .support-grid,
  .metrics,
  .faq-list,
  .compare__row,
  .dash-row {
    grid-template-columns: 1fr;
  }

  .hero__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .fact {
    padding: 10px;
  }

  .fact strong {
    font-size: 22px;
  }

  .fact span {
    font-size: 12px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-visual__grid {
    position: relative;
    inset: auto;
    padding: 16px;
  }

  .flow {
    grid-template-columns: 1fr;
  }

  .flow::before {
    display: none;
  }

  .node:nth-child(2),
  .node:nth-child(3) {
    transform: none;
  }

  .cookie-notice {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .hero__facts {
    grid-template-columns: 1fr;
  }
}

:root {
  --navy: #07172b;
  --navy-2: #0b2544;
  --ink: #0d1d31;
  --muted: #607086;
  --soft: #f3f8ff;
  --panel: #ffffff;
  --line: rgba(28, 63, 105, .13);
  --blue: #216dff;
  --cyan: #12bfd0;
  --teal: #17a98f;
  --green: #21a36a;
  --violet: #5f62e6;
  --amber: #f2b84b;
  --shadow: 0 24px 70px rgba(7, 23, 43, .14);
  --shadow-strong: 0 34px 90px rgba(7, 23, 43, .24);
  --radius: 10px;
  --space: clamp(18px, 2vw, 28px);
}

html,
body {
  overflow-x: hidden;
}

body {
  background:
    linear-gradient(rgba(33, 109, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 109, 255, .035) 1px, transparent 1px),
    radial-gradient(circle at 18% 6%, rgba(18, 191, 208, .18), transparent 28rem),
    radial-gradient(circle at 84% 8%, rgba(242, 184, 75, .13), transparent 24rem),
    linear-gradient(180deg, #f7fbff 0%, #edf5ff 36%, #ffffff 100%);
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
}

.topbar {
  background: rgba(250, 253, 255, .82);
  box-shadow: 0 10px 34px rgba(7, 23, 43, .06);
}

.brand {
  color: var(--navy);
  letter-spacing: 0;
}

.brand small,
.nav {
  color: #536a84;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.btn {
  min-width: max-content;
  border-radius: 8px;
  box-shadow: 0 15px 34px rgba(33, 109, 255, .12);
}

.btn--primary {
  background: linear-gradient(135deg, #216dff 0%, #08a8d7 54%, #17a98f 100%);
  box-shadow: 0 20px 46px rgba(33, 109, 255, .24);
}

.hero {
  min-height: calc(100vh - 72px);
  padding: clamp(44px, 6vw, 76px) 0 clamp(34px, 5vw, 62px);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 12% -10% auto auto;
  width: min(48vw, 620px);
  height: min(48vw, 620px);
  border: 1px solid rgba(33, 109, 255, .11);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 191, 208, .18), transparent 62%);
  filter: blur(2px);
  pointer-events: none;
  z-index: -1;
}

.hero__grid {
  grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
}

.hero__grid > div:first-child {
  min-width: 0;
}

.eyebrow {
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 10px 30px rgba(17, 183, 199, .09);
}

h1 {
  max-width: 720px;
  color: #09192d;
}

.actions {
  margin-top: 6px;
}

.hero__facts {
  margin-top: 20px;
}

.fact {
  min-width: 0;
  min-height: 118px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(245, 250, 255, .9));
  border-color: rgba(33, 109, 255, .15);
}

.fact strong {
  color: var(--navy);
}

.hero__copy {
  max-width: 700px;
  margin-top: 22px;
  padding-left: 18px;
  border-left: 3px solid rgba(18, 191, 208, .28);
}

.hero__copy .lead {
  color: #52637a;
  font-size: 17px;
}

.hero-visual {
  min-height: clamp(570px, 51vw, 650px);
  border-color: rgba(33, 109, 255, .22);
  border-radius: 14px;
  background:
    linear-gradient(rgba(33, 109, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 109, 255, .055) 1px, transparent 1px),
    radial-gradient(circle at 84% 14%, rgba(18, 191, 208, .23), transparent 18rem),
    radial-gradient(circle at 20% 90%, rgba(242, 184, 75, .16), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(230, 241, 255, .9));
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
  box-shadow: var(--shadow-strong);
  contain: layout paint;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-visual::before {
  inset: 22px auto auto 24px;
  width: 118px;
  height: 8px;
  background: linear-gradient(90deg, #21a36a, #12bfd0, #216dff);
  box-shadow: 0 0 34px rgba(18, 191, 208, .34);
}

.hero-visual::after {
  right: 24px;
  bottom: 22px;
  width: 11px;
  height: 11px;
  background: var(--amber);
  box-shadow: 0 0 0 8px rgba(242, 184, 75, .16);
}

.automation-map {
  position: absolute;
  inset: 34px 22px;
  width: calc(100% - 44px);
  height: calc(100% - 68px);
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}

.route {
  fill: none;
  stroke: url(#routeLine);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 10 14;
  opacity: .56;
}

.hero-visual__grid {
  z-index: 1;
  inset: clamp(20px, 2vw, 28px);
}

.dash-row {
  gap: clamp(10px, 1.2vw, 14px);
}

.dash,
.node,
.mini {
  position: relative;
  overflow: hidden;
  border-color: rgba(23, 70, 126, .16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(248, 252, 255, .82));
  backdrop-filter: blur(10px);
}

.dash::before,
.node::before,
.mini::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--amber));
  opacity: .78;
}

.dash {
  min-height: 110px;
}

.dash b {
  color: var(--navy);
}

.flow {
  gap: clamp(12px, 1.2vw, 16px);
}

.node {
  min-height: 132px;
  box-shadow: 0 18px 48px rgba(15, 44, 80, .12);
}

.node b {
  color: #102033;
}

.mini {
  min-height: 124px;
}

.bar {
  position: relative;
  overflow: hidden;
}

.bar::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -30%;
  width: 30%;
  background: rgba(255, 255, 255, .58);
  transform: skewX(-18deg);
}

.section {
  position: relative;
}

.section-head {
  padding-bottom: 4px;
}

.section-head > div:first-child {
  min-width: 0;
}

.side-note {
  padding: 12px 14px;
  border: 1px solid rgba(33, 109, 255, .14);
  border-radius: 10px;
  background: rgba(255, 255, 255, .7);
}

.pricing .side-note {
  background: rgba(255, 255, 255, .08);
}

.grid-3,
.grid-2,
.price-grid,
.support-grid,
.timeline,
.metrics,
.faq-list {
  align-items: stretch;
}

.card,
.metric,
.case,
.risk,
details {
  position: relative;
  overflow: hidden;
  border-color: rgba(28, 63, 105, .12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 251, 255, .88));
}

.card::after,
.metric::after,
.case::after,
.risk::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: .42;
}

.value .grid-3 .card:first-child,
#services .grid-3 .card:first-child,
.grid-3 .card:nth-child(8n+1) {
  background:
    radial-gradient(circle at 82% 18%, rgba(18, 191, 208, .14), transparent 13rem),
    linear-gradient(180deg, #ffffff, #f4f9ff);
}

#services .grid-3 .card:first-child {
  grid-column: span 2;
}

#services .grid-3 .card:nth-child(6) {
  background:
    radial-gradient(circle at 82% 18%, rgba(242, 184, 75, .18), transparent 12rem),
    linear-gradient(180deg, #ffffff, #f7fbff);
}

.pricing {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px),
    radial-gradient(circle at 14% 10%, rgba(18, 191, 208, .24), transparent 25rem),
    radial-gradient(circle at 88% 6%, rgba(242, 184, 75, .18), transparent 23rem),
    linear-gradient(135deg, #07172b 0%, #0d2f57 58%, #09233e 100%);
  background-size: 38px 38px, 38px 38px, auto, auto, auto;
}

.pricing::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18, 191, 208, .72), transparent);
}

.price-grid {
  position: relative;
  gap: 18px;
}

.price,
.support {
  border-color: rgba(255, 255, 255, .18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .065));
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 58px rgba(0, 0, 0, .16);
}

.price {
  min-height: 0;
  padding: 22px;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.price:nth-child(1),
.price:nth-child(2) {
  border-top: 4px solid rgba(18, 191, 208, .78);
}

.price:nth-child(3),
.price:nth-child(4) {
  border-top: 4px solid rgba(33, 109, 255, .82);
}

.price:nth-child(5),
.price:nth-child(6) {
  border-top: 4px solid rgba(242, 184, 75, .82);
}

.price:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, .34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .08));
}

.price--main {
  box-shadow: 0 26px 72px rgba(18, 191, 208, .18);
}

.price-value {
  color: #ffffff;
  font-size: clamp(28px, 3vw, 36px);
}

.label {
  width: fit-content;
  max-width: 100%;
  color: #dffcff;
  white-space: normal;
}

.support {
  min-height: 0;
}

.support-grid {
  gap: 18px;
}

.support .label {
  color: #fff2c7;
  background: rgba(242, 184, 75, .16);
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 38px;
  right: 9%;
  left: 9%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--amber));
  opacity: .32;
}

.step {
  position: relative;
  min-height: 230px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .97), rgba(245, 250, 255, .92));
}

.step-num {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 12px 30px rgba(33, 109, 255, .22);
}

.proof-layout {
  align-items: stretch;
}

.metric {
  min-height: 138px;
}

.metric strong {
  color: var(--navy);
}

.compare {
  border: 1px solid rgba(28, 63, 105, .12);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.compare__row {
  border: 0;
  border-bottom: 1px solid rgba(28, 63, 105, .1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.compare__row:last-child {
  border-bottom: 0;
}

.compare__row span:last-child {
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(18, 191, 208, .08);
}

details {
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

details[open] {
  border-color: rgba(33, 109, 255, .24);
  box-shadow: 0 18px 45px rgba(33, 109, 255, .1);
}

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  margin-left: 12px;
  color: var(--blue);
  font-weight: 900;
}

details[open] summary::after {
  content: "−";
}

.cta-panel {
  background:
    radial-gradient(circle at 92% 10%, rgba(18, 191, 208, .18), transparent 18rem),
    linear-gradient(135deg, #ffffff, #f3f8ff);
}

.footer {
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(135deg, #07172b, #0b2544);
  background-size: 34px 34px, 34px 34px, auto;
}

.footer strong {
  color: #fff;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 98px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: linear-gradient(135deg, #216dff, #12bfd0);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 20px 48px rgba(33, 109, 255, .28);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  .route {
    animation: route-flow 9s linear infinite;
  }

  .route--two {
    animation-duration: 11s;
    animation-delay: -2s;
  }

  .route--three {
    animation-duration: 8s;
    animation-delay: -4s;
  }

  .bar::after {
    animation: bar-sheen 4.8s ease-in-out infinite;
  }

  @keyframes route-flow {
    to {
      stroke-dashoffset: -96;
    }
  }

  @keyframes bar-sheen {
    0%, 45% {
      transform: translateX(0) skewX(-18deg);
    }
    70%, 100% {
      transform: translateX(430%) skewX(-18deg);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .hero__grid {
    grid-template-columns: minmax(0, .92fr) minmax(400px, 1.08fr);
    gap: 28px;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 0;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  #services .grid-3 .card:first-child {
    grid-column: auto;
  }

  .timeline::before {
    display: none;
  }

  .floating-cta {
    right: 16px;
    bottom: 108px;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(100% - 24px, 1180px);
  }

  .topbar__inner {
    min-height: 64px;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(34px, 11vw, 42px);
  }

  h2 {
    font-size: clamp(27px, 8vw, 36px);
  }

  .actions,
  .topbar__inner {
    gap: 10px;
  }

  .btn {
    min-height: 42px;
    padding: 0 14px;
  }

  .hero__facts {
    grid-template-columns: 1fr;
  }

  .fact {
    min-height: 0;
  }

  .hero__copy {
    padding-left: 14px;
  }

  .hero-visual {
    min-height: 0;
  }

  .automation-map {
    display: none;
  }

  .dash,
  .node,
  .mini {
    min-height: 0;
  }

  .price,
  .support,
  .card,
  .step,
  .metric,
  .case,
  .risk {
    padding: 20px;
  }

  .compare {
    border-radius: 10px;
  }

  .compare__row {
    align-items: start;
  }

  .cookie-notice {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 14px;
  }

  .floating-cta {
    right: 12px;
    bottom: 132px;
    min-height: 42px;
    padding: 0 14px;
  }
}

@media (max-width: 430px) {
  .topbar .btn {
    display: none;
  }

  .price-value {
    font-size: 27px;
  }

  .cookie-notice p {
    font-size: 13px;
  }
}
