:root {
  --blue-600: #1d5bff;
  --blue-500: #2f80ff;
  --cyan-400: #22d3ee;
  --navy-900: #0b1530;
  --navy-800: #0f1c36;
  --ink: #1a2238;
  --slate-600: #3f4a63;
  --slate-500: #5b6680;
  --eyebrow: #3d5a99;
  --line: #e7edf7;
  --hero-bg: #f3f8ff;
  --panel-bg: #f5f8ff;
  --grad-primary: linear-gradient(90deg, #1454f5 0%, #2f86ff 100%);
  --grad-text: linear-gradient(90deg, #1463ff 0%, #1fa2ff 100%);
  --shadow-card: 0 14px 34px rgba(29, 70, 160, 0.1), 0 2px 6px rgba(29, 70, 160, 0.06);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-hand: "Caveat", "Segoe Script", cursive;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --header-h: 74px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--slate-600);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

:focus-visible {
  outline: 3px solid rgba(29, 91, 255, 0.45);
  outline-offset: 3px;
}

section[id] {
  scroll-margin-top: var(--header-h);
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  background: var(--navy-900);
  color: #fff;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2 * var(--gutter), 1188px);
  margin-inline: auto;
}

.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--eyebrow);
}

.eyebrow--line::after {
  content: "";
  width: 48px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-600);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  height: 50px;
  padding: 0 2.6rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn__icon {
  width: 18px;
  height: 18px;
  margin-right: -0.4rem;
  flex: none;
}

.btn--primary {
  color: #fff;
  background: var(--grad-primary);
  box-shadow: 0 10px 22px rgba(29, 91, 255, 0.32);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(29, 91, 255, 0.4);
}

.btn--outline {
  padding: 0 1.8rem;
  color: var(--navy-900);
  border-color: var(--navy-900);
  background: #fff;
}

.btn--outline:hover {
  color: #fff;
  background: var(--navy-900);
}

.btn--ghost {
  color: var(--navy-800);
  border-color: #1f3a78;
  background: transparent;
}

.btn--ghost:hover {
  color: #fff;
  background: #1f3a78;
}

.btn--sm {
  height: 42px;
  padding: 0 1.25rem 0 1.4rem;
  font-size: 0.9rem;
}

.btn--xs {
  gap: 0.45rem;
  height: 32px;
  padding: 0 1rem 0 1.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.btn--xs .btn__icon {
  width: 13px;
  height: 13px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid #eef2f8;
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 6px 24px rgba(15, 28, 54, 0.08);
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  height: var(--header-h);
}

.logo {
  justify-self: start;
  display: inline-flex;
  align-items: baseline;
  font-size: 2.72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--navy-900);
}

.logo__wire {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo__i {
  display: inline-grid;
  color: #1a72ff;
}

.logo__i > * {
  grid-area: 1 / 1;
}

.logo__spark {
  justify-self: center;
  align-self: start;
  width: 0.3em;
  height: 0.18em;
  margin-top: 0.12em;
  color: #1e88ff;
  transform: translateX(-0.06em);
}

.nav__list {
  display: flex;
  align-items: center;
}

.nav__link {
  display: block;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav__link:hover {
  color: var(--blue-600);
}

.nav__link.is-active {
  color: var(--blue-600);
  background: #e8f0ff;
}

.header__cta {
  justify-self: end;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: #eef3ff;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-900);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.25rem 0 2.5rem;
  background: linear-gradient(180deg, #f5f9ff 0%, #edf4ff 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background:
    linear-gradient(115deg, transparent 48%, rgba(255, 255, 255, 0.65) 55%, transparent 62%),
    linear-gradient(115deg, transparent 64%, rgba(255, 255, 255, 0.5) 71%, transparent 78%);
}

.hero::after {
  top: 8%;
  right: -12%;
  width: 60%;
  height: 85%;
  background: radial-gradient(closest-side, rgba(96, 165, 250, 0.18), transparent);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(0, 1fr);
  align-items: center;
  gap: 2.5rem;
}

.hero__title {
  margin-top: 1.1rem;
  font-size: clamp(2.2rem, 3.6vw + 1.5rem, 4.25rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--navy-900);
}

.hero__title .line {
  display: block;
}

.hero__text {
  max-width: 37rem;
  margin-top: 0.7rem;
  font-size: 1.15rem;
  line-height: 1.47;
  color: var(--slate-600);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 2.6rem;
}

.hero__features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e5eeff;
  color: var(--blue-600);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.diagram {
  position: relative;
  container-type: inline-size;
  align-self: start;
  justify-self: end;
  width: calc(100% + 3rem);
  max-width: 580px;
  margin: -2.2rem -3rem 0 0;
  aspect-ratio: 580 / 490;
}

.diagram__wires {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 6px 8px rgba(29, 91, 255, 0.18));
}

.wires-flow path {
  stroke-dasharray: 10 150;
  stroke-opacity: 0.8;
  animation: wire-flow 3.2s linear infinite;
}

.wires-flow path:nth-child(2) {
  animation-delay: -0.8s;
}

.wires-flow path:nth-child(3) {
  animation-delay: -1.6s;
}

.wires-flow path:nth-child(4) {
  animation-delay: -2.4s;
}

.wires-flow path:nth-child(5) {
  animation-delay: -1.2s;
}

@keyframes wire-flow {
  to {
    stroke-dashoffset: -160;
  }
}

.diagram__dots {
  position: absolute;
  top: 0;
  left: 85.3%;
  width: 12.9%;
  height: 20.4%;
  background-image: radial-gradient(circle, #c5d5f3 1.6px, transparent 1.9px);
  background-size: 2.07cqw 2.07cqw;
}

.flow-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.8cqw 2cqw;
  border-radius: 2.8cqw;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.flow-card strong {
  font-size: 2.15cqw;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy-900);
}

.flow-card > span:not(.logo) {
  margin-top: 0.8cqw;
  font-size: 1.9cqw;
  line-height: 1.3;
  color: var(--slate-500);
}

.flow-card__icon {
  width: 7cqw;
  height: 7cqw;
  margin-bottom: auto;
  color: var(--blue-600);
}

.flow-card__icon--doc {
  width: 8cqw;
  height: 9cqw;
  color: #a7b6e6;
}

.flow-card--manual {
  top: 4.49%;
  left: 3.79%;
  width: 21.7%;
  height: 23.45cqw;
}

.flow-card--auto {
  top: 9.59%;
  left: 67.24%;
  width: 20.7%;
  height: 26.03cqw;
}

.flow-card--center {
  top: 31.22%;
  left: 29.31%;
  width: 31.2%;
  height: 25.34cqw;
  align-items: center;
  justify-content: center;
  border-radius: 3.4cqw;
  box-shadow: 0 20px 44px rgba(29, 70, 160, 0.14), 0 3px 8px rgba(29, 70, 160, 0.06);
}

.flow-card--tools {
  top: 53.27%;
  left: 2.59%;
  width: 19.66%;
  height: 24.83cqw;
}

.flow-card--unified {
  top: 57.35%;
  left: 64.48%;
  width: 26.03%;
  height: 22.24cqw;
}

.logo--card {
  font-size: 5.4cqw;
}

.diagram__note {
  position: absolute;
  top: 78%;
  left: 29.8%;
  display: flex;
  flex-direction: column;
  font-family: var(--font-hand);
  font-size: 4.6cqw;
  font-weight: 600;
  line-height: 0.95;
  color: #2447a8;
  transform: rotate(-22deg);
  transform-origin: left top;
}

.diagram__note span:nth-child(2) {
  padding-left: 1.4cqw;
}

.diagram__note span:nth-child(3) {
  padding-left: 5.2cqw;
}

.automation {
  padding-top: 0.65rem;
}

.automation__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 312px;
  gap: 1.25rem;
  width: min(100% - 2rem, 1244px);
  margin-inline: auto;
  padding: 1.4rem 1.55rem 1.25rem 1.75rem;
  border: 1px solid #edf2fb;
  border-radius: 24px;
  background: var(--panel-bg);
}

.automation__main {
  padding-top: 0.35rem;
}

.tools {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.tool {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  padding: 0 0.5rem;
}

.tool + .tool::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  width: 1px;
  height: 62%;
  background: #e1e8f5;
}

.tool__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  transition: transform 0.2s ease;
}

.tool__link:hover {
  transform: translateY(-3px);
}

.tool__link:hover .tool__status {
  color: var(--blue-600);
}

.tool__icon {
  display: grid;
  place-items: center;
  width: 104px;
  height: 100px;
  border-radius: 16px;
  font-size: 3.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  box-shadow: 0 10px 20px rgba(15, 28, 54, 0.14);
}

.tool__icon--id {
  color: #ff3366;
  background: #49021f;
}

.tool__icon--ai {
  color: #ff9a00;
  background: #330000;
}

.tool__icon--ps {
  color: #31a8ff;
  background: #001e36;
}

.tool__icon--word {
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 8px 14px rgba(24, 90, 189, 0.25));
}

.tool__status {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy-900);
}

.soon-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.7rem 1.25rem 1.25rem 2.75rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #ecf2ff 0%, #e5eeff 100%);
}

.soon-card__plane {
  position: absolute;
  top: 1rem;
  right: 1.4rem;
  width: 56px;
  height: 56px;
  color: #9ec2ff;
}

.soon-card__title {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.27;
  letter-spacing: -0.02em;
  color: #132a63;
}

.soon-card__text {
  max-width: 16rem;
  margin-top: 0.7rem;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--slate-600);
}

.soon-card .btn {
  margin-top: 1.1rem;
}

.signup {
  position: relative;
  display: flex;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1.1rem;
}

.signup input {
  flex: 1;
  min-width: 0;
  height: 40px;
  padding: 0 0.85rem;
  border: 1.5px solid #d5e0f5;
  border-radius: 999px;
  font: inherit;
  font-size: 0.86rem;
  color: var(--ink);
  background: #fff;
}

.signup input:focus {
  border-color: var(--blue-500);
  outline: none;
}

.signup input.is-invalid {
  border-color: #dc2626;
}

.soon-card .signup .btn,
.signup .btn {
  height: 40px;
  margin-top: 0;
  padding: 0 1rem;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.signup .btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.signup .signup__trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.signup__fine {
  margin-top: 0.55rem;
  font-size: 0.74rem;
  color: var(--slate-500);
}

.signup__msg {
  width: 100%;
  margin-top: 0.7rem;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #b91c1c;
  background: #fdecec;
}

.signup__msg--ok {
  color: #15803d;
  background: #e7f7ee;
}

.notify-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  margin-bottom: 3rem;
  padding: 1.6rem 1.8rem;
  border: 1px solid #e3ebfa;
  border-radius: 18px;
  background: linear-gradient(135deg, #ecf2ff 0%, #e5eeff 100%);
}

.notify-box__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #132a63;
}

.notify-box__text {
  margin-top: 0.3rem;
  font-size: 0.9rem;
  color: var(--slate-600);
}

.notify-box__form {
  width: min(100%, 400px);
}

.notify-box__form .signup {
  margin-top: 0;
}

.nf {
  padding: 4rem 0 5rem;
  text-align: center;
  background: linear-gradient(180deg, #f5f9ff 0%, #edf4ff 100%);
}

.nf__art {
  width: min(100%, 460px);
  margin: 0 auto;
}

.nf .eyebrow {
  margin-top: 1.75rem;
}

.nf__title {
  margin-top: 0.9rem;
  font-size: clamp(2rem, 2.8vw + 1.2rem, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy-900);
}

.nf__text {
  max-width: 34rem;
  margin: 1rem auto 0;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--slate-600);
}

.nf__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.site-footer .footer__bottom:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.page-updated {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: var(--slate-500);
}

.legal {
  max-width: 46rem;
  padding-bottom: 4rem;
  font-size: 1.02rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
  color: var(--slate-600);
}

.legal h2 {
  margin: 2.2rem 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}

.legal h2:first-child,
.legal h3:first-child {
  margin-top: 0;
}

.legal h3 {
  margin: 1.5rem 0 0.4rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-900);
}

.legal p {
  margin: 0.7rem 0;
}

.legal ul,
.legal ol {
  margin: 0.7rem 0;
  padding-left: 1.4rem;
}

.legal ul {
  list-style: disc;
}

.legal ol {
  list-style: decimal;
}

.legal li {
  margin: 0.35rem 0;
}

.legal strong {
  color: var(--ink);
}

.legal a {
  color: var(--blue-600);
  text-decoration: underline;
}

.comments {
  max-width: 52rem;
  padding-bottom: 3.5rem;
}

.comments__head {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.comments__title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}

.comments__count {
  font-size: 0.9rem;
  color: var(--slate-500);
}

.comment-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.comment-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 0.9rem;
}

.comment-item__avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 700;
  color: var(--blue-600);
  background: #eaf1ff;
}

.comment-item__avatar--team {
  color: #fff;
  background: var(--grad-primary);
}

.comment-item__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--slate-500);
}

.comment-item__head b {
  font-size: 0.95rem;
  color: var(--navy-900);
}

.team-badge {
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue-600);
  background: #eaf1ff;
}

.comment-item__body {
  margin-top: 0.35rem;
  line-height: 1.6;
  white-space: pre-line;
  overflow-wrap: anywhere;
  color: var(--ink);
}

.comment-item--reply {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 14px;
  background: #f5f8ff;
}

.comments-empty {
  padding: 1.5rem;
  border: 1px dashed #cfdcf5;
  border-radius: 14px;
  text-align: center;
  color: var(--slate-500);
  background: #fafcff;
}

.comment-form {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.6rem;
  border: 1px solid #eaf0fa;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.comment-form .field > span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-900);
}

.comment-form__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-900);
}

.comment-form__count {
  justify-self: end;
  margin-top: -0.6rem;
  font-size: 0.75rem;
  color: var(--slate-500);
}

.comment-form__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.comment-form__note {
  max-width: 28rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--slate-500);
}

.comment-form .btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

@media (max-width: 640px) {
  .comment-item--reply {
    margin-left: -3.4rem;
  }

  .comment-form {
    padding: 1.2rem;
  }
}

.benefits {
  width: min(100% - 2rem, 1244px);
  margin: 0.75rem auto 0;
  border-radius: 18px;
  background: linear-gradient(90deg, #0e1a33 0%, #13223f 100%);
}

.benefits__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  min-height: 128px;
  padding: 1.75rem 1.75rem;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  padding-block: 0.3rem;
}

.benefit + .benefit {
  padding-left: 2.8rem;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.benefit__icon {
  display: grid;
  flex: none;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.benefit__icon svg {
  width: 24px;
  height: 24px;
}

.benefit__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.84rem;
  white-space: nowrap;
  color: #c5d0e6;
}

.benefit__text strong {
  font-size: 0.97rem;
  font-weight: 600;
  color: #fff;
}

.how {
  padding: 2.4rem 0 4.5rem;
  text-align: center;
}

.how__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how .eyebrow {
  padding-left: 0.42em;
}

.section-title {
  margin-top: 1rem;
  font-size: clamp(2rem, 1.6vw + 1.4rem, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--navy-900);
}

.section-lead {
  max-width: 44rem;
  margin-top: 0.9rem;
  font-size: 1.1rem;
  color: var(--slate-600);
}

@media (max-width: 1100px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
  }

  .diagram {
    justify-self: center;
    width: 100%;
    margin: 0;
  }

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

  .soon-card__text {
    max-width: 26rem;
  }

  .benefits__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.5rem;
  }

  .benefit:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 900px) {
  .header__inner {
    display: flex;
    justify-content: space-between;
  }

  .header__cta {
    margin-left: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav__list {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.75rem var(--gutter) 1.25rem;
    border-bottom: 1px solid #eef2f8;
    background: #fff;
    box-shadow: 0 18px 30px rgba(15, 28, 54, 0.08);
  }

  .site-header.is-open .nav__list {
    display: flex;
  }

  .nav__link {
    padding: 0.8rem 1rem;
  }
}

@media (max-width: 640px) {
  .header__cta {
    display: none;
  }

  .logo {
    font-size: 1.9rem;
  }

  .logo--card {
    font-size: 5.4cqw;
  }

  .eyebrow {
    letter-spacing: 0.3em;
  }

  .hero {
    padding: 3rem 0 2.5rem;
  }

  .hero__text {
    font-size: 1.05rem;
  }

  .hero__actions .btn {
    flex: 1 1 auto;
  }

  .diagram {
    width: calc(100% + 2 * var(--gutter));
    margin: 0 calc(-1 * var(--gutter));
  }

  .flow-card {
    padding: 2cqw 1.6cqw;
    border-radius: 2.4cqw;
  }

  .flow-card strong {
    font-size: 2.6cqw;
  }

  .flow-card > span:not(.logo) {
    display: none;
  }

  .flow-card__icon {
    width: 6.4cqw;
    height: 6.4cqw;
  }

  .flow-card--tools {
    width: 22%;
  }

  .automation__panel {
    padding: 1.25rem;
  }

  .tools {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.75rem;
  }

  .tool:nth-child(3)::before {
    display: none;
  }

  .soon-card {
    padding-left: 1.6rem;
  }

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

  .benefit + .benefit {
    padding-left: 0;
    border-left: 0;
  }

  .benefit {
    padding-inline: 0;
  }

  .benefit__text {
    white-space: normal;
  }
}

.page-hero {
  padding: 3.5rem 0 2.25rem;
  background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
}

.page-hero .eyebrow {
  letter-spacing: 0.3em;
}

.page-title {
  margin-top: 1rem;
  font-size: clamp(2.1rem, 2.6vw + 1.3rem, 3.15rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--navy-900);
}

.page-lead {
  max-width: 46rem;
  margin-top: 1.1rem;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--slate-600);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  padding-bottom: 3rem;
}

.card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(29, 70, 160, 0.16);
}

.card__shot {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  padding: 1.6rem;
  background: linear-gradient(135deg, var(--c1), var(--c2));
}

.card__body {
  padding: 1.25rem 1.4rem 1.6rem;
}

.card__title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}

.card__text {
  margin-top: 0.5rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--slate-500);
}

.shot {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
  max-width: 232px;
  aspect-ratio: 4 / 3;
  padding: 0.65rem;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 22px rgba(15, 28, 54, 0.14);
}

.shot__bar {
  height: 6px;
  border-radius: 3px;
  background: #dde5f4;
}

.shot__bar--accent {
  width: 45%;
  background: var(--blue-500);
}

.shot__bar--short {
  width: 65%;
}

.shot__row {
  display: flex;
  flex: 1;
  gap: 0.4rem;
}

.shot__col {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.4rem;
}

.shot__block {
  flex: 1;
  border-radius: 6px;
  background: #eef3fc;
}

.shot__block--img {
  background: linear-gradient(135deg, #bcd4ff, #9fe7f4);
}

.shot__block--warn {
  background: linear-gradient(135deg, #ffd9c7, #ffc0cf);
}

.shot__block--narrow {
  flex: 0 0 26%;
}

.card--link {
  position: relative;
  color: inherit;
}

.card--link .card__body {
  padding-right: 3.6rem;
}

.card--link::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  bottom: 1.4rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eaf1ff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d5bff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 5.5 15.5 12 9 18.5'/%3E%3C/svg%3E") center / 15px no-repeat;
  transition: background-color 0.2s ease;
}

.card--link:hover::after {
  background-color: var(--blue-600);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 5.5 15.5 12 9 18.5'/%3E%3C/svg%3E");
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--slate-500);
}

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

.breadcrumb span {
  color: #a3aec4;
}

.detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
}

.video {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  background: linear-gradient(135deg, #0f1c36 0%, #1b3566 100%);
}

button.video {
  width: 100%;
  padding: 0;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.video__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video--playing {
  background: #000;
}

.video__play {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #ff0033;
  box-shadow: 0 12px 26px rgba(255, 0, 51, 0.35);
  transition: transform 0.2s ease;
}

.video:hover .video__play {
  transform: scale(1.06);
}

.video__label {
  position: absolute;
  z-index: 1;
  bottom: 1.1rem;
  left: 1.3rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  font-size: 0.9rem;
  font-weight: 600;
  color: #dbe5fb;
}

.prose > :first-child > h2:first-child {
  margin-top: 0;
}

.prose h2 {
  margin-top: 2.2rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}

.prose p {
  margin-top: 0.75rem;
  line-height: 1.6;
}

.ticks {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.ticks li {
  position: relative;
  padding-left: 1.9rem;
  line-height: 1.5;
}

.ticks li::before {
  content: "";
  position: absolute;
  top: 0.3rem;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #eaf1ff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d5bff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 11px no-repeat;
}

.steps {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.2rem;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding-left: 2.9rem;
  line-height: 1.55;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -1px;
  left: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eaf1ff;
  color: var(--blue-600);
  font-size: 0.85rem;
  font-weight: 700;
}

.aside {
  position: sticky;
  top: calc(var(--header-h) + 1.25rem);
  display: grid;
  gap: 1.25rem;
  align-content: start;
}

.dl-card {
  padding: 1.5rem;
  border: 1px solid #eef2fa;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.dl-card__file {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.file-badge {
  display: grid;
  flex: none;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: #eaf1ff;
  color: var(--blue-600);
  font-size: 0.72rem;
  font-weight: 800;
}

.dl-card__name {
  font-size: 0.98rem;
  font-weight: 700;
  word-break: break-word;
  color: var(--navy-900);
}

.dl-meta {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid #eef2fa;
  font-size: 0.88rem;
  color: var(--slate-500);
}

.dl-meta div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.dl-meta b {
  font-weight: 600;
  color: var(--navy-900);
}

.dl-card .btn {
  width: 100%;
  margin-top: 1.3rem;
  padding: 0 1.25rem;
}

.dl-card .btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.dl-card__note {
  margin-top: 0.75rem;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  font-size: 0.85rem;
  line-height: 1.45;
  color: #b91c1c;
  background: #fdecec;
}

.dl-card__note--info {
  color: #1e40af;
  background: #eaf1ff;
}

.loading-note {
  grid-column: 1 / -1;
  padding: 2.5rem 0;
  text-align: center;
  color: var(--slate-500);
}

.aside__title {
  margin-bottom: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--eyebrow);
}

.more-list {
  display: grid;
  gap: 0.25rem;
}

.more-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-900);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.more-list a:hover {
  color: var(--blue-600);
  background: #f1f5ff;
}

.more-list svg {
  width: 15px;
  height: 15px;
  color: var(--blue-500);
}

.strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 4rem;
  padding: 1.6rem 2rem;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(90deg, #0e1a33 0%, #13223f 100%);
}

.strip__title {
  font-size: 1.15rem;
  font-weight: 700;
}

.strip__text {
  margin-top: 0.3rem;
  font-size: 0.92rem;
  color: #c5d0e6;
}

.strip .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
}

.strip .btn--outline:hover {
  color: var(--navy-900);
  background: #fff;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .strip {
    padding: 1.4rem;
  }
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}

.step {
  position: relative;
  padding: 1.9rem 1.5rem 1.6rem;
  border: 1px solid #eaf0fa;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 3.2rem;
  right: -0.95rem;
  width: 12px;
  height: 12px;
  border-top: 2px solid #c7d8f7;
  border-right: 2px solid #c7d8f7;
  transform: rotate(45deg);
}

.step__no {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: #fff;
  background: var(--grad-primary);
  font-size: 1.05rem;
  font-weight: 800;
}

.step__title {
  margin-top: 1.1rem;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy-900);
}

.step__text {
  margin-top: 0.5rem;
  font-size: 0.93rem;
  line-height: 1.5;
  color: var(--slate-500);
}

.faq {
  padding: 3.5rem 0 1rem;
}

.faq__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.faq__list {
  display: grid;
  gap: 0.75rem;
  max-width: 52rem;
  margin: 2.25rem auto 0;
}

.faq__item {
  border: 1px solid #eaf0fa;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(29, 70, 160, 0.05);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy-900);
  list-style: none;
  cursor: pointer;
}

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

.faq__item summary::after {
  content: "";
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #eaf1ff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d5bff' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.faq__item[open] summary::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d5bff' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
}

.faq__item p {
  padding: 0 3.4rem 1.2rem 1.3rem;
  line-height: 1.6;
  color: var(--slate-600);
}

.contact {
  padding: 3.5rem 0 4rem;
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: start;
  gap: 3rem;
}

.contact__title {
  margin-top: 1rem;
  font-size: clamp(1.9rem, 1.6vw + 1.3rem, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--navy-900);
}

.contact__text {
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--slate-600);
}

.contact__lines {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.contact__line {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.98rem;
  color: var(--ink);
}

.contact__line span {
  display: grid;
  flex: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--blue-600);
  background: #e8f0ff;
}

.contact__line svg {
  width: 20px;
  height: 20px;
}

.form {
  display: grid;
  gap: 1rem;
  padding: 1.9rem;
  border: 1px solid #eaf0fa;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-card);
}

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

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-900);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid #e2e9f6;
  border-radius: 11px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fbfcff;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-500);
  outline: none;
}

.form__note {
  font-size: 0.82rem;
  color: var(--slate-500);
}

.form__trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__status {
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #b91c1c;
  background: #fdecec;
}

.form__status--ok {
  color: #15803d;
  background: #e7f7ee;
}

.form .btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.site-footer {
  padding: 3rem 0 1.75rem;
  color: #c5d0e6;
  background: linear-gradient(90deg, #0e1a33 0%, #13223f 100%);
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}

.site-footer .logo {
  font-size: 2rem;
  color: #fff;
}

.footer__blurb {
  max-width: 22rem;
  margin-top: 1rem;
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer__title {
  margin-bottom: 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8fa3c7;
}

.footer__list {
  display: grid;
  gap: 0.6rem;
  font-size: 0.93rem;
}

.footer__list a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

@media (max-width: 900px) {
  .steps-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step:nth-child(2)::after {
    display: none;
  }

  .contact__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

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

@media (max-width: 640px) {
  .steps-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .step::after {
    display: none;
  }

  .form {
    padding: 1.3rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .wires-flow {
    display: none;
  }

  .btn,
  .card,
  .card--link::after,
  .video__play,
  .nav__link,
  .nav-toggle span,
  .site-header,
  .tool__link {
    transition: none;
  }
}
