:root {
  --black: #070707;
  --text: #111111;
  --muted: #767676;
  --soft: #f5f4f7;
  --soft-2: #faf9fb;
  --line: #e7e3eb;
  --purple: #cf527a;
  --purple-2: #e07a99;
  --mint: #eafff4;
  --mint-line: #bdf5d6;
  --green: #21a767;
  --pink: #ffd8fb;
  --shadow: 0 18px 50px rgba(31, 20, 50, .12);
  --container: 1320px;
  --gutter: max(29px, calc((100vw - var(--container)) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 66px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 var(--gutter);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(0,0,0,.04);
  backdrop-filter: blur(14px);
  transition: box-shadow .2s ease;
}

.site-nav.is-scrolled {
  box-shadow: 0 8px 22px rgba(31, 20, 50, .09);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 138px;
  min-width: 138px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: #2e2e2e;
  font-size: 14px;
  font-weight: 400;
}

.nav-links a,
.nav-actions a:not(.btn),
.agent-cards a {
  transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active,
.nav-actions a:not(.btn):hover,
.nav-actions a:not(.btn):focus-visible {
  color: #cf527a;
}

.nav-links a.is-active {
  font-weight: 400;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 400;
}

.mobile-nav-actions,
.nav-toggle {
  display: none;
}

.nav-actions a:not(.btn) {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-actions a:not(.btn)::before {
  content: "↗";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f7edf2;
  color: #cf527a;
  font-size: 11px;
  line-height: 1;
}

.btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 25px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.btn::after {
  content: "→";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  transition: transform .2s ease;
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(2px);
}

.btn[href^="mailto:"]::after {
  content: "✉";
  font-size: 12px;
  transform: none;
}

.btn[href^="mailto:"]:hover::after,
.btn[href^="mailto:"]:focus-visible::after {
  transform: translateY(-1px);
}

.site-nav .btn {
  min-height: 44px;
  padding: 0 22px;
}

.btn-purple {
  background: linear-gradient(90deg,#cf527a,#d47583);
  color: #fff;
  box-shadow: 0 8px 18px rgba(207, 82, 122, .24);
}

.btn-purple::after {
  background: rgba(255,255,255,.18);
}

.btn-purple:hover,
.btn-purple:focus-visible {
  background: linear-gradient(90deg,#c63f63,#cc475a);
  box-shadow: 0 10px 22px rgba(198, 63, 99, .28);
  transform: translateY(-1px);
}

.btn-white {
  border: 1px solid #dad7df;
  background: #fff;
  color: #202020;
}

.btn-white::after {
  background: #f6eef2;
  color: #cf527a;
}

.btn-white:hover,
.btn-white:focus-visible {
  border-color: #cf527a;
  color: #cf527a;
  box-shadow: 0 8px 18px rgba(207, 82, 122, .12);
  transform: translateY(-1px);
}

.report-bar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 24px;
  background: var(--mint);
  border: 1px solid var(--mint-line);
  color: #202020;
  font-size: 15px;
}

.report-bar strong {
  color: var(--green);
}

.report-bar b {
  margin-left: 12px;
  font-size: 22px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 620px);
  align-items: center;
  gap: 60px;
  min-height: 820px;
  padding: 58px var(--gutter) 80px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 60px;
  width: 56vw;
  height: 680px;
  background: radial-gradient(circle, rgba(255, 198, 252, .82), rgba(255, 233, 253, .54) 42%, transparent 72%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

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

h1,
h2,
h3 {
  font-weight: 400;
}

h2 {
  letter-spacing: -.045em;
}

h1 {
  margin-bottom: 35px;
  color: #050505;
  font-size: clamp(40px, 4.15vw, 68px);
  line-height: 1.08;
  letter-spacing: -.055em;
}

h1 span,
.trust h2 span,
.architecture h2 span,
.zigzag h2 span,
.section-title h2 span,
.training-intro h2 span,
.content-band h2 span,
.resource-head h2 span,
.steps h2 span,
.foundation h2 span,
.stories h2 span,
.demo h2 span {
  background: linear-gradient(90deg,#cf527a,#d47583);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  max-width: 735px;
  margin-bottom: 38px;
  color: #aaa7ad;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 38px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badges span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 8px;
  background: #f4f4f6;
  color: #252525;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.03);
}

.hero-art {
  position: relative;
  z-index: 2;
  min-height: 640px;
}

.pink-glow {
  position: absolute;
  inset: 14px -10px -20px 40px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 22% 20%, rgba(255,255,255,.9), transparent 18%),
    linear-gradient(135deg, #fff, #ffd7fb 52%, #fbe6ff);
}

.hero-case {
  position: absolute;
  right: 0;
  top: 30px;
  width: min(520px, 100%);
  height: 560px;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 65px rgba(111, 35, 61, .22);
  color: #fff;
}

.hero-case img {
  width: auto;
  height: calc(100% + 3px);
  display: block;
  transform: translate(0, -3px);
}

.case-label {
  position: absolute;
  right: -18px;
  top: 58px;
  z-index: 2;
  padding: 13px 26px;
  border-radius: 999px;
  background: #171313;
  color: #d8d3de;
  font-size: 17px;
}

.case-logo {
  position: absolute;
  left: 48px;
  top: 58px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .08em;
}

.case-screen {
  position: absolute;
  left: 44px;
  right: 44px;
  top: 142px;
  height: 265px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(10px);
}

.case-sidebar {
  display: grid;
  gap: 10px;
}

.case-sidebar i,
.metric-line,
.crm-cols span,
.chart {
  display: block;
  border-radius: 8px;
  background: rgba(255,255,255,.72);
}

.case-sidebar i {
  height: 30px;
}

.case-content {
  display: grid;
  grid-template-rows: 34px 1fr 62px;
  gap: 14px;
}

.crm-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.crm-cols span {
  opacity: .85;
}

.chart {
  background: linear-gradient(90deg, rgba(255,255,255,.85), rgba(207,82,122,.55));
}

.hero-case p {
  position: absolute;
  left: 48px;
  right: 40px;
  bottom: 48px;
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}

.enrich-card {
  position: absolute;
  left: 0;
  top: 246px;
  width: 236px;
  min-height: 305px;
  padding: 18px;
  border-radius: 10px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(0,0,0,.1);
  box-shadow: 0 18px 50px rgba(70, 44, 92, .2);
  backdrop-filter: blur(10px);
}

.enrich-card span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #ddffea;
  color: #41a866;
  font-weight: 400;
  font-size: 12px;
}

.enrich-card strong,
.enrich-card small {
  display: block;
  text-align: center;
}

.enrich-card strong {
  font-size: 21px;
}

.enrich-card small {
  color: #4a4550;
  font-weight: 700;
}

.mini-product {
  width: 98px;
  height: 98px;
  margin: 18px auto;
  border-radius: 22px;
  background:
    linear-gradient(90deg, transparent 42%, rgba(0,0,0,.12) 42% 48%, transparent 48%),
    radial-gradient(circle at 50% 28%, #cf527a 0 24px, transparent 25px),
    linear-gradient(135deg, #ffe8f0, #fff);
}

.enrich-card p {
  margin: 0;
  color: #aaa5ad;
  font-size: 15px;
  line-height: 1.28;
  text-align: center;
}

.trust {
  padding: 86px var(--gutter) 112px;
  text-align: center;
}

.trust h2 {
  max-width: 980px;
  margin: 0 auto 24px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  letter-spacing: -.04em;
}

.trust p {
  max-width: 760px;
  margin: 0 auto 56px;
  color: #5f5a63;
  font-size: 18px;
  line-height: 1.6;
}

.ratings {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 70px;
  color: #343036;
  font-size: 16px;
}

.ratings span:first-child {
  color: #00a76f;
  font-weight: 850;
}

.logo-grid {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 52px 60px;
  align-items: center;
}

.logo-grid b {
  color: #222;
  opacity: .78;
  font-size: 21px;
  font-weight: 950;
  letter-spacing: -.04em;
  filter: grayscale(1);
}

.architecture {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  align-items: center;
  gap: 86px;
  padding: 104px var(--gutter) 126px;
}

.architecture-art {
  position: relative;
  height: 460px;
  border-radius: 18px;
  background: #f2a1bb;
  overflow: hidden;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border: 0;
  background:
    linear-gradient(135deg, rgba(255, 213, 225, .62), rgba(242, 161, 187, .32) 46%, rgba(255, 191, 215, .52)),
    url("assets/placeholder.png") 0 0 / cover no-repeat;
  cursor: pointer;
}

.video-placeholder::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 14px;
  background: linear-gradient(180deg, transparent 52%, rgba(121, 39, 69, .2));
  opacity: .9;
  transition: transform .22s ease, opacity .22s ease, border-color .22s ease;
}

.video-caption {
  position: absolute;
  left: 28px;
  bottom: 24px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: var(--purple);
  font-size: 13px;
  font-weight: 520;
  letter-spacing: .02em;
  z-index: 1;
}

.video-play {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: linear-gradient(90deg,#cf527a,#d47583);
  color: #fff;
  box-shadow: 0 20px 56px rgba(207, 82, 122, .34);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.video-play svg {
  width: 34px;
  height: 34px;
  margin-left: 3px;
  fill: currentColor;
}

.video-placeholder:hover::before,
.video-placeholder:focus-visible::before {
  transform: scale(.985);
  opacity: 1;
  border-color: rgba(255,255,255,.84);
}

.video-placeholder:hover .video-play,
.video-placeholder:focus-visible .video-play {
  transform: scale(1.08);
  background: linear-gradient(90deg,#c63f63,#cc475a);
  box-shadow: 0 26px 72px rgba(207, 82, 122, .46);
}

.video-placeholder:focus-visible {
  outline: 3px solid rgba(207, 82, 122, .35);
  outline-offset: 4px;
}

.bubble {
  position: absolute;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(56, 37, 97, .16);
  color: var(--purple);
  font-weight: 920;
}

.bubble,
.node,
.work-map .map-node,
.visual-card {
  animation: soft-float 10s ease-in-out infinite;
}

.bubble:nth-child(2),
.node:nth-child(2),
.work-map .map-node:nth-child(2),
.visual-card:nth-child(2) {
  animation-delay: -2s;
}

.bubble:nth-child(3),
.node:nth-child(3),
.work-map .map-node:nth-child(3),
.visual-card:nth-child(3) {
  animation-delay: -4s;
}

.bubble:nth-child(4),
.node:nth-child(4),
.work-map .map-node:nth-child(4),
.visual-card:nth-child(4) {
  animation-delay: -6s;
}

@keyframes soft-float {
  0%, 100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -6px;
  }
}

.bubble.big {
  left: 42%;
  top: 36%;
  width: 128px;
  height: 128px;
  font-size: 22px;
}

.b1 { left: 9%; top: 10%; }
.b2 { left: 28%; top: 56%; }
.b3 { right: 11%; top: 20%; }
.b4 { right: 23%; bottom: 12%; }
.b5 { left: 4%; bottom: 16%; }
.b6 { right: 6%; bottom: 36%; }

.tag {
  position: absolute;
  padding: 7px 12px;
  border-radius: 8px;
  background: rgba(51, 42, 83, .72);
  color: #fff;
  font-size: 12px;
  font-weight: 400;
}

.tag-left { left: 19%; top: 22%; }
.tag-right { right: 24%; top: 34%; }
.tag-bottom { left: 18%; bottom: 24%; }

.pill {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid #f3c6d6;
  border-radius: 999px;
  background: #fff7fa;
  color: var(--purple);
  font-size: 12px;
  font-weight: 400;
}

.architecture h2,
.zigzag h2,
.section-title h2,
.steps h2,
.foundation h2,
.stories h2,
.demo h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 3.35vw, 52px);
  line-height: 1.08;
  letter-spacing: -.055em;
}

.architecture p:not(.pill),
.zigzag p:not(.pill),
.section-title p:not(.pill),
.demo p:not(.pill),
.stories-head p:not(.pill) {
  color: #7f7a84;
  font-size: 18px;
  line-height: 1.55;
}

.section-title {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 29px 62px;
  text-align: center;
}

.agent-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 var(--gutter) 36px;
}

.agent-cards article {
  overflow: hidden;
  border-radius: 14px;
  background: #f5f4f8;
}

.agent-visual {
  height: 330px;
  padding: 32px;
  background: linear-gradient(180deg, #fffafb, #ffe8f0);
}

.searchbar {
  height: 58px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 22px rgba(39, 31, 69, .09);
  color: #77717d;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.product-row i {
  height: 138px;
  border-radius: 12px;
  background: #fff;
  box-shadow: inset 0 0 0 2px #f1bfd0;
}

.deal-card {
  height: 74px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: inset 0 0 0 2px #f1bfd0;
}

.deal-card.small {
  margin-left: 70px;
}

.table-visual table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  color: #4d4854;
  font-size: 15px;
}

.table-visual th,
.table-visual td {
  padding: 14px 12px;
  border-bottom: 1px solid #ece8f3;
  text-align: left;
}

.agent-cards h3,
.agent-cards p,
.agent-cards a {
  margin-left: 30px;
  margin-right: 30px;
}

.agent-cards h3 {
  margin-top: 30px;
  margin-bottom: 14px;
  font-size: 23px;
  letter-spacing: -.035em;
  font-weight: 400;
}

.agent-cards p {
  min-height: 76px;
  color: #a09ba4;
  font-size: 16px;
  line-height: 1.38;
}

.agent-cards a {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--purple);
  font-weight: 400;
  font-size: 16px;
}

.agent-cards a:hover,
.agent-cards a:focus-visible {
  color: #c63f63;
  transform: translateX(2px);
}

.modules-cta {
  display: flex;
  justify-content: center;
  padding: 0 var(--gutter) 96px;
}

.steps {
  padding: 4px var(--gutter) 122px;
  text-align: center;
}

.steps h2 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.steps-panel {
  min-height: 520px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 40px;
  align-items: center;
  margin-top: 56px;
  padding: 68px;
  border-radius: 16px;
  background: #f6f5f8;
}

.step-copy {
  position: relative;
  text-align: left;
  border-left: 0;
}

.step-copy::before {
  content: "";
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 14px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, #cf527a, #f1bfd0, #cf527a);
  background-size: 100% 220%;
  animation: workflow-line 5.5s ease-in-out infinite;
}

@keyframes workflow-line {
  0%, 100% {
    background-position: 0 0;
  }

  50% {
    background-position: 0 100%;
  }
}

.step-copy article {
  position: relative;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  padding: 18px 0;
  color: var(--purple);
  font-size: 20px;
  font-weight: 400;
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid #cf527a;
  border-radius: 50%;
  background: #fff;
  color: #cf527a;
  font-size: 14px;
  line-height: 1;
}

.step-body p {
  max-width: 520px;
  margin: 8px 0 0;
  color: #6d6772;
  font-size: 16px;
  line-height: 1.42;
}

.map {
  position: relative;
  height: 370px;
}

.map::before,
.map::after {
  content: "";
  position: absolute;
  inset: 56px 70px;
  border: 3px dashed #dedbe4;
  border-radius: 50%;
}

.map::after {
  inset: 98px 120px;
  border-color: #f19a9a;
}

.node,
.warn {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(38, 33, 46, .12);
  font-style: normal;
  font-weight: 900;
  color: var(--purple);
  font-size: 14px;
}

.warn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ef3939;
  color: #fff;
}

.n1 { left: 12%; top: 25%; }
.n2 { left: 30%; top: 12%; }
.n3 { right: 26%; top: 22%; }
.n4 { right: 9%; top: 44%; }
.n5 { left: 22%; bottom: 18%; }
.n6 { right: 34%; bottom: 10%; }
.n7 { right: 15%; bottom: 24%; }
.w1 { left: 44%; top: 44%; }
.w2 { right: 30%; top: 54%; }
.w3 { left: 26%; bottom: 32%; }

.foundation {
  padding: 58px var(--gutter) 118px;
  text-align: center;
}

.foundation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 54px;
  margin-top: 72px;
}

.foundation-grid span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(0,0,0,.12);
}

.foundation-grid svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #151515;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.foundation-grid h3 {
  margin-bottom: 12px;
  font-size: 19px;
  letter-spacing: -.03em;
  font-weight: 400;
}

.foundation-grid p {
  color: #67626b;
  font-size: 17px;
  line-height: 1.42;
}

.stories {
  padding: 40px var(--gutter) 120px;
}

.stories-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 70px;
}

.stories-head h2 {
  font-size: clamp(32px, 2.8vw, 44px);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}

.story {
  grid-column: span 4;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border-radius: 14px;
  overflow: hidden;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.story.size-4 { grid-column: span 4; }
.story.size-5 { grid-column: span 5; }
.story.size-6 { grid-column: span 6; }
.story.size-7 { grid-column: span 7; }
.story.size-8 { grid-column: span 8; }

.story.production {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.62)),
    linear-gradient(135deg, rgba(241,123,63,.46), rgba(44,33,61,.34)),
    url("assets/vyroba-oken.jpg");
  background-position: 50% 50%;
  background-size: cover;
}

.story.wide {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.58)),
    linear-gradient(135deg, #9dc34b, #3f342d);
}

.story.it {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.58)),
    linear-gradient(135deg, rgba(157,195,75,.46), rgba(63,52,45,.32)),
    url("assets/it.jpg");
  background-position: 50% 50%;
  background-size: cover;
}

.story.city {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.6)),
    linear-gradient(135deg, rgba(122,36,63,.46), rgba(11,106,146,.34)),
    url("assets/mesto.jpg");
  background-position: 50% 50%;
  background-size: cover;
}

.story.wholesale {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.6)),
    linear-gradient(135deg, rgba(15,107,95,.5), rgba(61,49,82,.34)),
    url("assets/velkoobchod.jpg");
  background-position: 50% 50%;
  background-size: cover;
}

.story.consulting {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.58)),
    linear-gradient(135deg, rgba(49,95,159,.48), rgba(122,54,89,.36)),
    url("assets/consulting.jpg");
  background-position: 50% 50%;
  background-size: cover;
}

.story.realestate {
  min-height: 300px;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.56)),
    linear-gradient(135deg, rgba(109,95,69,.5), rgba(52,77,102,.38) 48%, rgba(111,49,80,.34)),
    url("assets/reality.jpg");
  background-position: 50% 50%;
  background-size: cover;
}

.stories-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.story h3 {
  max-width: 520px;
  margin-bottom: 24px;
  font-size: 23px;
  line-height: 1.2;
  font-weight: 400;
  text-shadow: 0 2px 18px rgba(0,0,0,.34);
}

.story a {
  display: inline-flex;
  align-items: center;
  color: inherit;
  font-size: 17px;
  text-decoration: none;
  text-shadow: 0 2px 14px rgba(0,0,0,.28);
  transition: opacity .2s ease;
}

.story a span {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
  transition: text-underline-offset .2s ease;
}

.story a::after {
  content: "→";
  margin-left: 8px;
  font-size: 18px;
  line-height: 1;
}

.story a:hover {
  opacity: .82;
}

.story a:hover span {
  text-underline-offset: 10px;
}

.demo {
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 72px var(--gutter) 84px;
  text-align: center;
}

.demo h2 {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.demo p {
  max-width: 760px;
  margin: 0 auto 32px;
}

.demo .pill {
  align-self: center;
  max-width: 100%;
  margin-bottom: 20px;
  color: var(--purple);
  font-size: 12px;
  line-height: normal;
}

.page-hero {
  padding: 104px var(--gutter) 74px;
  text-align: center;
}

.page-hero .pill {
  margin-bottom: 22px;
}

.page-hero h1 {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(40px, 4.1vw, 68px);
}

.page-hero h1 span {
  background: linear-gradient(90deg,#cf527a,#d47583);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero p:not(.pill) {
  max-width: 760px;
  margin: 0 auto;
  color: #8a858f;
  font-size: 18px;
  line-height: 1.56;
}

.page-hero .hero-actions {
  justify-content: center;
  margin-top: 34px;
  margin-bottom: 0;
}

.legal-hero {
  padding-bottom: 52px;
}

.legal-content {
  width: 100%;
  padding: 0 var(--gutter) 118px;
}

.legal-content > section {
  padding: 34px 0;
  border-top: 1px solid #ece8f3;
}

.legal-content h2 {
  margin-bottom: 16px;
  font-size: clamp(25px, 2.35vw, 36px);
  line-height: 1.14;
  letter-spacing: -.045em;
}

.legal-content h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.25;
}

.legal-content p {
  margin-bottom: 14px;
  color: #625d67;
  font-size: 16px;
  line-height: 1.62;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  color: #4f4a53;
  line-height: 1.65;
}

.legal-content ul + p {
  margin-top: 20px;
}

.legal-content blockquote,
.legal-notice {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--purple);
  border-radius: 0 12px 12px 0;
  background: #fff7fa;
  color: #4f4a53;
}

.legal-content blockquote {
  font-size: 17px;
  line-height: 1.55;
}

.legal-notice:first-child {
  margin-top: 0;
}

.legal-notice p {
  margin: 0;
}

.legal-table-wrap {
  margin: 24px 0;
  overflow-x: auto;
  border: 1px solid #e9dfe5;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(45, 29, 42, .06);
}

.legal-table-wrap table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
  color: #4f4a53;
  font-size: 15px;
  line-height: 1.5;
}

.legal-table-wrap th:nth-child(1),
.legal-table-wrap td:nth-child(1) {
  width: 36%;
}

.legal-table-wrap th:nth-child(2),
.legal-table-wrap td:nth-child(2) {
  width: 38%;
}

.legal-table-wrap th:nth-child(3),
.legal-table-wrap td:nth-child(3) {
  width: 26%;
}

.legal-table-wrap th,
.legal-table-wrap td {
  padding: 20px 22px;
  border-bottom: 1px solid #ece8f3;
  text-align: left;
  vertical-align: top;
}

.legal-table-wrap th {
  padding-top: 16px;
  padding-bottom: 16px;
  background: #fff4f7;
  color: #3d2530;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.legal-table-wrap tbody tr:nth-child(even) {
  background: #fdfcfd;
}

.legal-table-wrap tbody tr:hover {
  background: #fff8fa;
}

.legal-table-wrap tr:last-child td {
  border-bottom: 0;
}

.legal-content a {
  color: #cf527a;
  text-decoration: underline;
  text-decoration-color: rgba(207, 82, 122, .35);
  text-underline-offset: 3px;
}

.legal-content a:hover,
.legal-content a:focus-visible {
  color: #c63f63;
}

.legal-meta {
  margin: 0 0 4px;
  color: #8a858f;
  font-size: 14px;
}

.legal-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.legal-details > div {
  padding: 20px 22px;
  border: 1px solid #ece8f3;
  border-radius: 12px;
  background: #f7f6fa;
}

.legal-detail-icon {
  display: block;
  width: 22px;
  height: 22px;
  margin-bottom: 15px;
  color: #cf527a;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cookie-preferences {
  min-height: 44px;
  margin-top: 8px;
  padding: 0 18px;
  border: 1px solid #eadfe7;
  border-radius: 8px;
  background: #fff;
  color: #cf527a;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.cookie-preferences:hover,
.cookie-preferences:focus-visible {
  border-color: transparent;
  background: linear-gradient(90deg,#cf527a,#d47583);
  color: #fff;
}

#cc-main {
  --cc-font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --cc-modal-border-radius: 16px;
  --cc-btn-border-radius: 8px;
  --cc-modal-margin: 22px;
  --cc-z-index: 100;
  --cc-bg: #fff;
  --cc-primary-color: #171717;
  --cc-secondary-color: #6b6570;
  --cc-btn-primary-bg: #cf527a;
  --cc-btn-primary-border-color: #cf527a;
  --cc-btn-primary-hover-bg: #c63f63;
  --cc-btn-primary-hover-border-color: #c63f63;
  --cc-btn-primary-color: #fff;
  --cc-btn-secondary-bg: #fff;
  --cc-btn-secondary-border-color: #eadfe7;
  --cc-btn-secondary-hover-bg: #fff3f7;
  --cc-btn-secondary-hover-border-color: #cf527a;
  --cc-btn-secondary-color: #cf527a;
  --cc-toggle-on-bg: #cf527a;
  --cc-toggle-off-bg: #d8d3db;
  --cc-separator-border-color: #ece8f3;
  --cc-footer-bg: #f7f6fa;
  --cc-footer-color: #77717d;
  --cc-footer-border-color: #ece8f3;
}

#cc-main .cm,
#cc-main .pm {
  box-shadow: 0 18px 50px rgba(31, 20, 50, .16);
}

#cc-main .cm__title,
#cc-main .pm__title {
  font-weight: 400;
  letter-spacing: -.025em;
}

.page-architecture {
  padding-top: 42px;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 var(--gutter) 118px;
}

.page-grid article {
  min-height: 220px;
  padding: 30px;
  border-radius: 14px;
  background: #f5f4f8;
}

.page-grid h3 {
  margin-bottom: 14px;
  font-size: 23px;
  letter-spacing: -.035em;
}

.page-grid p {
  margin-bottom: 0;
  color: #77717d;
  font-size: 16px;
  line-height: 1.45;
}

.contact-topic-icon,
.about-topic-icon,
.platform-topic-icon {
  display: block;
  width: 22px;
  height: 22px;
  color: #cf527a;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-topics h3,
.about-topics h3,
.page-grid .platform-topic-icon + h3 {
  margin-top: 15px;
}

.zigzag {
  display: grid;
  gap: 92px;
  padding: 8px var(--gutter) 112px;
}

.zigzag-row {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  gap: 72px;
  align-items: center;
}

.zigzag-row.reverse .platform-visual {
  order: 2;
}

.zigzag-copy .pill {
  margin-bottom: 22px;
}

.zigzag-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(32px, 3vw, 48px);
}

.zigzag-copy p {
  margin-bottom: 22px;
}

.zigzag-copy ul,
.resource-list,
.contact-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.zigzag-copy li,
.resource-list li,
.contact-list li {
  position: relative;
  padding-left: 22px;
  color: #5d5662;
  font-size: 15px;
  line-height: 1.45;
}

.zigzag-copy li::before,
.resource-list li::before,
.contact-list li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg,#cf527a,#d47583);
}

.platform-visual {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  border: 1px solid #ece8f3;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.9), transparent 22%),
    linear-gradient(135deg, #fff7fa, #f5f4f8);
}

.visual-card {
  position: absolute;
  display: grid;
  gap: 7px;
  min-width: 142px;
  padding: 18px;
  border: 1px solid rgba(207,82,122,.16);
  border-radius: 12px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 36px rgba(31,20,50,.08);
  color: #3e3942;
  font-size: 14px;
}

.visual-card strong {
  font-size: 20px;
  font-weight: 400;
}

.visual-card span {
  color: #8a858f;
  font-size: 13px;
}

.contact-flow .visual-card.main {
  left: 50%;
  top: 50%;
  min-width: 190px;
  transform: translate(-50%, -50%);
}

.contact-flow .visual-card:nth-child(2) { left: 42px; top: 52px; }
.contact-flow .visual-card:nth-child(3) { right: 42px; top: 96px; }
.contact-flow .visual-card:nth-child(4) { left: 86px; bottom: 58px; }

.contact-flow::before,
.work-map::before {
  content: "";
  position: absolute;
  inset: 70px;
  border: 2px dashed #ead6df;
  border-radius: 50%;
}

.pipeline-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 28px;
}

.pipeline-column {
  min-height: 100%;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.7);
  box-shadow: inset 0 0 0 1px rgba(207,82,122,.1);
}

.pipeline-column span {
  display: block;
  margin-bottom: 18px;
  color: #6a626d;
  font-size: 14px;
}

.pipeline-column i {
  display: block;
  height: 62px;
  margin-bottom: 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff, #ffe6ef);
  box-shadow: 0 8px 22px rgba(207,82,122,.1);
}

.work-map .map-node {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  min-width: 96px;
  min-height: 54px;
  padding: 0 14px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(31,20,50,.09);
  color: var(--purple);
  font-size: 14px;
}

.work-map .map-node.center {
  left: 50%;
  top: 50%;
  min-width: 128px;
  min-height: 76px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg,#cf527a,#d47583);
  color: #fff;
}

.work-map .map-node:nth-child(2) { left: 12%; top: 18%; }
.work-map .map-node:nth-child(3) { right: 12%; top: 20%; }
.work-map .map-node:nth-child(4) { left: 10%; bottom: 18%; }
.work-map .map-node:nth-child(5) { right: 12%; bottom: 18%; }
.work-map .map-node:nth-child(6) { left: 50%; top: 10%; transform: translateX(-50%); }

.control-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 34px;
}

.control-panel div {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  box-shadow: inset 0 0 0 1px rgba(207,82,122,.12);
}

.control-panel strong {
  font-size: 22px;
  font-weight: 400;
}

.control-panel span {
  color: #77717d;
  font-size: 15px;
}

.platform-steps {
  padding-top: 0;
}

.content-band {
  padding: 0 var(--gutter) 108px;
}

.content-band-inner {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(420px, 1fr);
  gap: 64px;
  align-items: start;
  padding: 48px;
  border-radius: 18px;
  background: #f7f6fa;
}

.content-band h2,
.resource-section h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 2.8vw, 46px);
  line-height: 1.1;
}

.content-band p:not(.pill),
.resource-section p:not(.pill) {
  color: #77717d;
  font-size: 17px;
  line-height: 1.5;
}

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

.mini-metrics div,
.resource-card {
  padding: 24px;
  border: 1px solid #ece8f3;
  border-radius: 14px;
  background: #fff;
}

.mini-metrics strong {
  display: block;
  margin-bottom: 8px;
  color: var(--purple);
  font-size: 32px;
  font-weight: 400;
}

.mini-metrics span {
  color: #5d5662;
  font-size: 14px;
  line-height: 1.35;
}

.resource-section {
  padding: 0 var(--gutter) 112px;
}

.resource-head {
  max-width: 860px;
  margin-bottom: 40px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.resource-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

.career-topic-icon {
  display: block;
  width: 22px;
  height: 22px;
  margin-bottom: 15px;
  color: #cf527a;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.career-topic-icon + h3 {
  margin-top: 0;
}

.resource-card p {
  margin-bottom: 20px;
  font-size: 15px;
}

.training-hero .hero-actions {
  justify-content: center;
}

.training-intro {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .65fr);
  gap: 72px;
  align-items: end;
  padding: 20px var(--gutter) 64px;
}

.training-intro h2 {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.1;
  letter-spacing: -.055em;
}

.training-intro > p {
  margin: 0;
  color: #77717d;
  font-size: 18px;
  line-height: 1.48;
}

.training-grid {
  padding-top: 0;
}

.training-grid span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 600;
}

.training-detail {
  padding-top: 22px;
}

.training-cta {
  padding-top: 52px;
}

.modules-layout {
  padding: 0 var(--gutter) 118px;
}

.module-content {
  min-width: 0;
}

.module-feature {
  margin-bottom: 28px;
  padding: 34px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 82% 16%, rgba(207,82,122,.16), transparent 26%),
    #f5f4f8;
}

.module-feature .pill {
  margin-bottom: 18px;
}

.module-feature h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.08;
  letter-spacing: -.05em;
}

.module-feature p:not(.pill) {
  max-width: 860px;
  margin-bottom: 0;
  color: #77717d;
  font-size: 17px;
  line-height: 1.48;
}

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

.module-grid-list article {
  display: flex;
  flex-direction: column;
  min-height: 188px;
  padding: 22px;
  border: 1px solid #ece8f3;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(31, 20, 50, .05);
}

.module-grid-list h3 {
  margin: 15px 0 9px;
  font-size: 20px;
  letter-spacing: -.035em;
}

.module-grid-list p {
  flex: 1;
  margin-bottom: 0;
  color: #8a858f;
  font-size: 14px;
  line-height: 1.42;
}

.module-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 18px;
  padding: 9px 12px;
  border: 1px solid #eadfe7;
  border-radius: 8px;
  background: #fff;
  color: #cf527a;
  font-size: 13px;
  font-weight: 400;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.module-more::after {
  content: "→";
  font-size: 14px;
  line-height: 1;
}

.module-more:hover,
.module-more:focus-visible {
  border-color: transparent;
  background: linear-gradient(90deg,#cf527a,#d47583);
  color: #fff;
  transform: translateX(2px);
}

.module-custom-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.module-custom-options article {
  min-height: 288px;
  padding: 34px;
  border: 1px solid #ece8f3;
  border-radius: 16px;
  background: #f7f6fa;
}

.module-custom-options article.accent {
  border-color: transparent;
  background:
    linear-gradient(135deg, #fff8fa, #fff) padding-box,
    linear-gradient(90deg, #cf527a, #d47583) border-box;
}

.module-custom-icon {
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 18px;
  color: #cf527a;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.module-custom-options h2 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.13;
  letter-spacing: -.04em;
}

.module-custom-options p {
  margin-bottom: 0;
  color: #77717d;
  font-size: 16px;
  line-height: 1.52;
}

.module-custom-options .btn {
  min-height: 46px;
  margin-top: 24px;
}

.module-icon {
  flex: 0 0 auto;
  display: block;
  width: 22px;
  height: 22px;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.module-detail-hero {
  padding-bottom: 54px;
}

.module-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 0 var(--gutter) 118px;
}

.detail-panel {
  min-height: 320px;
  padding: 34px;
  border: 1px solid #ece8f3;
  border-radius: 16px;
  background: #f7f6fa;
}

.detail-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.12;
}

.detail-panel p {
  margin-bottom: 22px;
  color: #77717d;
  font-size: 16px;
  line-height: 1.52;
}

.detail-panel ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-panel li {
  position: relative;
  padding-left: 22px;
  color: #5d5662;
  font-size: 15px;
  line-height: 1.45;
}

.detail-panel li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg,#cf527a,#d47583);
}

.detail-panel.accent {
  background: linear-gradient(135deg, rgba(207,82,122,.1), rgba(212,117,131,.08) 52%, #fff);
}

.module-detail-scenario {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.module-detail-scenario .detail-panel {
  padding: 38px;
}

.module-detail-scenario .detail-panel:first-child {
  position: relative;
  z-index: 2;
}

.module-detail-scenario .detail-panel:first-child::after {
  content: "→";
  position: absolute;
  z-index: 3;
  top: 50%;
  right: -48px;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid #f3c6d6;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(207, 82, 122, .16);
  color: #cf527a;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.module-detail-scenario .detail-panel.accent {
  border-color: transparent;
  background:
    linear-gradient(135deg, #fff8fa, #fff) padding-box,
    linear-gradient(90deg, #cf527a, #d47583) border-box;
}

.module-detail-scenario .detail-panel.accent h2 span {
  background: linear-gradient(90deg, #cf527a, #d47583);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.module-back {
  justify-content: center;
  margin-top: 28px;
  color: #8a858f;
  font-size: 14px;
}

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

svg.module-icon use[href="#crm-icon-data-box"] {
  fill: currentColor;
  stroke: none;
}

.module-icon::before,
.module-icon::after {
  content: none;
}

.has-reveal .page-hero,
.has-reveal .architecture,
.has-reveal .trust,
.has-reveal .section-title,
.has-reveal .agent-cards > article,
.has-reveal .steps,
.has-reveal .foundation,
.has-reveal .stories,
.has-reveal .demo,
.has-reveal .page-grid > article,
.has-reveal .zigzag-row,
.has-reveal .resource-card,
.has-reveal .content-band-inner,
.has-reveal .module-grid-list > article,
.has-reveal .detail-panel,
.has-reveal .contact-form-panel,
.has-reveal .contact-info,
.has-reveal .calculator-copy,
.has-reveal .calculator-panel,
.has-reveal .pricing-table-wrap,
.has-reveal .pricing-note,
.has-reveal .story-summary > div,
.has-reveal .story-main,
.has-reveal .story-side,
.has-reveal .story-flow-grid > article,
.has-reveal .scenario-hero-copy,
.has-reveal .scenario-hero-panel,
.has-reveal .scenario-stack,
.has-reveal .scenario-split > article,
.has-reveal .scenario-timeline > article,
.has-reveal .scenario-copy > section,
.has-reveal .scenario-modules,
.has-reveal .scenario-outcome {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .52s ease, transform .52s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.has-reveal .page-hero.is-visible,
.has-reveal .architecture.is-visible,
.has-reveal .trust.is-visible,
.has-reveal .section-title.is-visible,
.has-reveal .agent-cards > article.is-visible,
.has-reveal .steps.is-visible,
.has-reveal .foundation.is-visible,
.has-reveal .stories.is-visible,
.has-reveal .demo.is-visible,
.has-reveal .page-grid > article.is-visible,
.has-reveal .zigzag-row.is-visible,
.has-reveal .resource-card.is-visible,
.has-reveal .content-band-inner.is-visible,
.has-reveal .module-grid-list > article.is-visible,
.has-reveal .detail-panel.is-visible,
.has-reveal .contact-form-panel.is-visible,
.has-reveal .contact-info.is-visible,
.has-reveal .calculator-copy.is-visible,
.has-reveal .calculator-panel.is-visible,
.has-reveal .pricing-table-wrap.is-visible,
.has-reveal .pricing-note.is-visible,
.has-reveal .story-summary > div.is-visible,
.has-reveal .story-main.is-visible,
.has-reveal .story-side.is-visible,
.has-reveal .story-flow-grid > article.is-visible,
.has-reveal .scenario-hero-copy.is-visible,
.has-reveal .scenario-hero-panel.is-visible,
.has-reveal .scenario-stack.is-visible,
.has-reveal .scenario-split > article.is-visible,
.has-reveal .scenario-timeline > article.is-visible,
.has-reveal .scenario-copy > section.is-visible,
.has-reveal .scenario-modules.is-visible,
.has-reveal .scenario-outcome.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-cards {
  padding-top: 20px;
}

.page-steps {
  padding-top: 20px;
}

.page-foundation {
  padding-top: 20px;
}

.page-stories {
  padding-top: 20px;
}

.story-hero {
  padding-bottom: 48px;
}

.story-detail {
  overflow: hidden;
}

.story-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 var(--gutter) 46px;
}

.story-summary div {
  min-height: 132px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 24px;
  border: 1px solid #ece8f3;
  border-radius: 14px;
  background: #f7f6fa;
}

.story-summary span {
  color: #8a858f;
  font-size: 13px;
}

.story-summary strong {
  color: #171717;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 400;
}

.story-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .38fr);
  gap: 44px;
  padding: 0 var(--gutter) 64px;
}

.story-main {
  padding: 42px;
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #ece8f3;
}

.story-main h2,
.story-flow h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 2.7vw, 44px);
  line-height: 1.12;
}

.story-main p {
  color: #5d5662;
  font-size: 17px;
  line-height: 1.62;
}

.story-main p + h2 {
  margin-top: 42px;
}

.story-callout {
  margin: 34px 0;
  padding: 28px;
  border-left: 4px solid #cf527a;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(207,82,122,.1), rgba(212,117,131,.06), #fff);
}

.story-callout strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 400;
}

.story-callout p {
  margin: 0;
}

.story-side {
  position: sticky;
  top: 92px;
  align-self: start;
  padding: 30px;
  border: 1px solid rgba(207,82,122,.14);
  border-radius: 16px;
  background: #f7f6fa;
}

.story-side h3 {
  margin-bottom: 20px;
  font-size: 24px;
}

.story-flow {
  padding: 0 var(--gutter) 118px;
}

.story-flow > h2 {
  max-width: 760px;
}

.story-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.story-flow-grid article {
  min-height: 230px;
  padding: 26px;
  border-radius: 14px;
  background: #f5f4f8;
}

.story-flow-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: #cf527a;
  font-size: 14px;
}

.story-flow-grid h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.story-flow-grid p {
  color: #77717d;
  font-size: 15px;
  line-height: 1.48;
}

.scenario-page {
  overflow: hidden;
}

.scenario-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .42fr);
  gap: 56px;
  align-items: end;
  padding: 104px var(--gutter) 72px;
}

.scenario-hero.has-image {
  align-items: center;
}

.scenario-hero-copy .pill {
  margin-bottom: 22px;
}

.scenario-hero h1 {
  max-width: 980px;
  margin-bottom: 28px;
}

.scenario-hero-copy > p:not(.pill) {
  max-width: 820px;
  margin: 0;
  color: #77717d;
  font-size: 19px;
  line-height: 1.56;
}

.scenario-hero-panel {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(207,82,122,.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 24% 12%, rgba(255,255,255,.9), transparent 24%),
    linear-gradient(135deg, rgba(207,82,122,.1), rgba(212,117,131,.08) 52%, #fff);
}

.scenario-hero-panel div {
  display: grid;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(207,82,122,.14);
}

.scenario-hero-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.scenario-hero-panel span,
.scenario-label {
  color: #8a858f;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.scenario-hero-panel strong {
  color: #171717;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 400;
}

.scenario-hero-image {
  grid-column: 1 / -1;
  width: 100%;
  margin: 10px auto 0;
  overflow: hidden;
  border-radius: 18px;
  background: #f7f6fa;
  box-shadow: 0 24px 65px rgba(31,20,50,.12);
}

.scenario-hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.scenario-stack {
  display: grid;
  grid-template-columns: minmax(0, .76fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 0 var(--gutter) 92px;
}

.scenario-stack h2,
.scenario-split h2,
.scenario-process h2,
.scenario-copy h2,
.scenario-modules h2,
.scenario-outcome h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 2.8vw, 46px);
  line-height: 1.1;
}

.scenario-stack p:not(.pill),
.scenario-split p:not(.pill),
.scenario-section-head p:not(.pill),
.scenario-copy p:not(.pill),
.scenario-outcome p:not(.pill) {
  color: #68626d;
  font-size: 17px;
  line-height: 1.58;
}

.app-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 30px;
  border-radius: 18px;
  background: #f7f6fa;
}

.app-cloud span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(207,82,122,.16);
  border-radius: 999px;
  background: #fff;
  color: #554e59;
  font-size: 14px;
}

.scenario-split {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  padding: 0 var(--gutter) 32px;
}

.scenario-split article:first-child::after {
  content: "→";
  position: absolute;
  z-index: 3;
  top: 50%;
  right: -48px;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid #f3c6d6;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(207, 82, 122, .16);
  color: #cf527a;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.scenario-split article {
  position: relative;
  z-index: 1;
  padding: 38px;
  border: 1px solid #ece8f3;
  border-radius: 18px;
  background: #f7f6fa;
}

.scenario-split article:first-child {
  z-index: 2;
}

.scenario-split article.accent {
  border-color: transparent;
  background:
    linear-gradient(135deg, #fff8fa, #fff) padding-box,
    linear-gradient(90deg, #cf527a, #d47583) border-box;
}

.scenario-label {
  display: inline-flex;
  margin-bottom: 20px;
  color: #6f6975;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .035em;
}

.scenario-split article.accent .scenario-label {
  color: #a83e63;
}

.scenario-split article.accent h2 span {
  background: linear-gradient(90deg, #cf527a, #d47583);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.scenario-split-cta {
  display: flex;
  justify-content: center;
  padding: 0 var(--gutter) 92px;
}

.scenario-process {
  padding: 84px var(--gutter) 104px;
  background: #faf9fb;
}

.scenario-section-head {
  max-width: 880px;
  margin-bottom: 44px;
}

.scenario-section-head .pill,
.scenario-outcome .pill {
  margin-bottom: 20px;
}

.scenario-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid #ece8f3;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.scenario-timeline article {
  min-height: 250px;
  padding: 26px;
  border-right: 1px solid #ece8f3;
}

.scenario-timeline article:last-child {
  border-right: 0;
}

.scenario-timeline span {
  display: inline-flex;
  margin-bottom: 34px;
  color: #cf527a;
  font-size: 13px;
}

.scenario-timeline h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.scenario-timeline p {
  color: #77717d;
  font-size: 15px;
  line-height: 1.45;
}

.scenario-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .36fr);
  gap: 54px;
  padding: 102px var(--gutter) 92px;
}

.scenario-copy {
  display: grid;
  gap: 58px;
  max-width: 860px;
}

.scenario-copy section {
  padding-bottom: 46px;
  border-bottom: 1px solid #ece8f3;
}

.scenario-copy section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.scenario-copy p {
  margin-bottom: 18px;
}

.scenario-copy p:last-child {
  margin-bottom: 0;
}

.scenario-modules {
  align-self: start;
  padding: 30px;
  border-radius: 18px;
  background: #f7f6fa;
}

.scenario-modules h2 {
  font-size: clamp(26px, 2.1vw, 34px);
}

.scenario-outcome {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
  padding: 0 var(--gutter) 54px;
}

.scenario-outcome-grid {
  display: grid;
  gap: 18px;
}

.scenario-outcome-grid article {
  padding: 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(207,82,122,.09), rgba(255,255,255,.9));
}

.scenario-outcome-grid h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.scenario-outcome-grid p {
  margin: 0;
  font-size: 15px;
}

.scenario-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 18px var(--gutter) 116px;
}

.demo-page {
  min-height: 520px;
  display: grid;
  place-items: center;
}

.not-found {
  min-height: calc(100vh - 66px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 104px var(--gutter) 118px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(207,82,122,.12), transparent 34%),
    #fff;
}

.not-found .pill {
  margin-bottom: 22px;
}

.not-found h1 {
  max-width: 820px;
}

.not-found p:not(.pill) {
  max-width: 700px;
  margin: 0 auto 34px;
  color: #8a858f;
  font-size: 18px;
  line-height: 1.46;
}

.not-found p a {
  color: #cf527a;
}

.not-found p a:hover,
.not-found p a:focus-visible {
  color: #c63f63;
}

.not-found .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

.contact-hero {
  padding-bottom: 58px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .42fr);
  gap: 28px;
  padding: 0 var(--gutter) 118px;
}

.contact-form-panel,
.contact-info {
  border: 1px solid #ece8f3;
  border-radius: 16px;
  background: #f7f6fa;
}

.contact-form-panel {
  padding: 34px;
}

.contact-form-panel h2,
.contact-info h2 {
  margin-bottom: 24px;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.12;
}

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

.form-notice {
  margin: 0 0 20px;
  padding: 14px 16px;
  border: 1px solid;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.45;
}

.form-notice-success {
  border-color: #bde8ce;
  background: #effbf4;
  color: #17633a;
}

.form-notice-error {
  border-color: #f2c8d5;
  background: #fff5f8;
  color: #9f3152;
}

.tips-signup {
  max-width: 720px;
  margin: 34px auto 0;
  padding: 28px 30px 24px;
  border: 1px solid #ece8f3;
  border-radius: 16px;
  background: #f7f6fa;
}

.tips-signup .form-notice {
  text-align: left;
}

.tips-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.tips-form input {
  min-width: 0;
  min-height: 58px;
  flex: 1;
  padding: 0 16px;
  border: 1px solid #e3dee8;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.tips-form input:focus {
  border-color: #cf527a;
  box-shadow: 0 0 0 4px rgba(207, 82, 122, .12);
}

.tips-form button {
  border: 0;
  cursor: pointer;
}

.tips-form .turnstile-field {
  flex-basis: 100%;
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

.tips-form .cf-turnstile {
  margin: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field-message {
  grid-column: 1 / -1;
}

.turnstile-field {
  grid-column: 1 / -1;
}

.form-field label {
  color: #5d5662;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e3dee8;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input {
  min-height: 52px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 14px 16px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #cf527a;
  box-shadow: 0 0 0 4px rgba(207, 82, 122, .12);
}

.contact-form button {
  width: fit-content;
  margin-top: 12px;
  border: 0;
  cursor: pointer;
}

.contact-info {
  align-self: start;
  display: grid;
  gap: 22px;
  padding: 34px;
  background: linear-gradient(135deg, rgba(207,82,122,.1), rgba(212,117,131,.08) 52%, #fff);
}

.contact-info div {
  display: grid;
  gap: 6px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(207, 82, 122, .14);
}

.contact-info div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-info span {
  color: #8a858f;
  font-size: 13px;
}

.contact-info a,
.contact-info p {
  margin: 0;
  color: #171717;
  font-size: 18px;
  line-height: 1.35;
}

.contact-info .contact-primary a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #171717;
  font-size: 22px;
  letter-spacing: -.025em;
}

.contact-info .contact-primary a svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: #cf527a;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-info .contact-billing {
  gap: 4px;
}

.contact-info .contact-billing p {
  color: #8a858f;
  font-size: 14px;
  line-height: 1.5;
}

.contact-info a:hover,
.contact-info a:focus-visible {
  color: #cf527a;
}

.pricing-hero {
  padding-bottom: 58px;
}

.price-calculator {
  display: grid;
  grid-template-columns: minmax(0, .48fr) minmax(0, .72fr);
  gap: 28px;
  align-items: stretch;
  padding: 0 var(--gutter) 34px;
}

.calculator-copy,
.calculator-panel {
  border: 1px solid #ece8f3;
  border-radius: 16px;
  background: #f7f6fa;
}

.calculator-copy {
  padding: 34px;
}

.calculator-copy .pill {
  margin-bottom: 22px;
}

.calculator-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 2.7vw, 46px);
  line-height: 1.1;
}

.calculator-copy p:not(.pill) {
  margin-bottom: 0;
  color: #77717d;
  font-size: 17px;
  line-height: 1.48;
}

.calculator-panel {
  padding: 34px;
  background: linear-gradient(135deg, rgba(207,82,122,.1), rgba(212,117,131,.08) 52%, #fff);
}

.slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.slider-head label {
  color: #5d5662;
  font-size: 15px;
}

.slider-head strong {
  color: #111;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: 1;
}

.price-slider {
  --slider-progress: 18%;
  width: 100%;
  height: 38px;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.price-slider::-webkit-slider-runnable-track {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #cf527a 0%, #d47583 var(--slider-progress), #ece8f3 var(--slider-progress), #ece8f3 100%);
}

.price-slider::-moz-range-track {
  height: 10px;
  border-radius: 999px;
  background: #ece8f3;
}

.price-slider::-moz-range-progress {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg,#cf527a,#d47583);
}

.price-slider::-webkit-slider-thumb {
  width: 34px;
  height: 34px;
  margin-top: -12px;
  appearance: none;
  border: 7px solid #fff;
  border-radius: 50%;
  background: #cf527a;
  box-shadow: 0 10px 24px rgba(207, 82, 122, .32);
}

.price-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 7px solid #fff;
  border-radius: 50%;
  background: #cf527a;
  box-shadow: 0 10px 24px rgba(207, 82, 122, .32);
}

.slider-scale {
  --slider-thumb-size: 34px;
  --slider-thumb-half: calc(var(--slider-thumb-size) / 2);
  position: relative;
  height: 20px;
  margin-top: 8px;
  color: #9b96a0;
  font-size: 13px;
}

.slider-scale span {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  white-space: nowrap;
}

.slider-scale span:nth-child(1) { left: var(--slider-thumb-half); }
.slider-scale span:nth-child(2) { left: calc(var(--slider-thumb-half) + (100% - var(--slider-thumb-size)) * .1667); }
.slider-scale span:nth-child(3) { left: calc(var(--slider-thumb-half) + (100% - var(--slider-thumb-size)) * .4444); }
.slider-scale span:nth-child(4) { left: calc(var(--slider-thumb-half) + (100% - var(--slider-thumb-size)) * .9074); }
.slider-scale span:nth-child(5) { left: calc(100% - var(--slider-thumb-half)); }

.price-result {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.price-result div {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(207, 82, 122, .14);
  border-radius: 12px;
  background: rgba(255,255,255,.76);
}

.price-result span {
  color: #8a858f;
  font-size: 13px;
  line-height: 1.35;
}

.price-result strong {
  color: #111;
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.12;
}

.price-result strong#price-per-user {
  white-space: nowrap;
}

.price-result .price-period {
  color: currentColor;
  font-size: .62em;
  font-weight: 400;
}

.price-result.is-custom div {
  background: #fff;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .42fr);
  gap: 28px;
  padding: 0 var(--gutter) 118px;
}

.pricing-table-wrap,
.pricing-note {
  border: 1px solid #ece8f3;
  border-radius: 16px;
  background: #f7f6fa;
}

.pricing-table-wrap {
  align-self: start;
  overflow: hidden;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  color: #2f2a34;
  font-size: 16px;
}

.pricing-table th,
.pricing-table td {
  padding: 22px 24px;
  border-bottom: 1px solid #e8e4ee;
  text-align: left;
  vertical-align: top;
}

.pricing-table th {
  background: #f7f6fa;
  color: #151515;
  font-size: 14px;
  font-weight: 400;
}

.pricing-table td {
  background: #fff;
}

.pricing-table tr:last-child td {
  border-bottom: 0;
}

.pricing-table strong {
  color: #111;
  font-weight: 600;
}

.pricing-note {
  align-self: start;
  padding: 34px;
  background: linear-gradient(135deg, rgba(207,82,122,.1), rgba(212,117,131,.08) 52%, #fff);
}

.pricing-note .pill {
  margin-bottom: 22px;
}

.pricing-note h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 2.2vw, 38px);
  line-height: 1.12;
}

.pricing-note p:not(.pill) {
  margin-bottom: 26px;
  color: #77717d;
  font-size: 16px;
  line-height: 1.5;
}

.trust-services {
  padding: 84px var(--gutter) 118px;
}

.security-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
  padding: 82px var(--gutter) 52px;
}

.security-intro .pill {
  margin-bottom: 20px;
}

.security-intro h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(30px, 2.8vw, 46px);
  line-height: 1.1;
}

.security-intro > div:last-child {
  display: grid;
  gap: 18px;
  padding: 28px 32px;
  border: 1px solid rgba(207, 82, 122, .17);
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(207, 82, 122, .09), rgba(255, 255, 255, .82) 54%, #fff);
}

.security-intro > div:last-child p {
  margin: 0;
  color: #625d67;
  font-size: 17px;
  line-height: 1.5;
}

.security-principles {
  padding: 0 var(--gutter) 104px;
}

.security-approach {
  background: #faf9fb;
}

.security-principles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid #ece8f3;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.security-principles-grid article {
  min-height: 330px;
  padding: 30px;
}

.security-principles-grid article + article {
  border-left: 1px solid #ece8f3;
}

.security-principles-grid article:nth-child(n + 3) {
  border-top: 1px solid #ece8f3;
}

.security-principles-grid article:nth-child(3) {
  border-left: 0;
}

.security-principle-number {
  display: inline-flex;
  margin-bottom: 30px;
  color: #cf527a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
}

.security-principles-grid h3 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(24px, 2.05vw, 32px);
  line-height: 1.14;
}

.security-principles-grid p {
  margin-bottom: 18px;
  color: #77717d;
  font-size: 16px;
  line-height: 1.5;
}

.security-principles-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.security-principles-grid li {
  position: relative;
  padding-left: 18px;
  color: #625d67;
  font-size: 14px;
  line-height: 1.45;
}

.security-principles-grid li::before {
  content: "";
  position: absolute;
  top: .52em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cf527a;
}

.trust-services-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 30px;
}

.trust-services-head .pill {
  margin-bottom: 20px;
}

.trust-services-head h2 {
  max-width: 660px;
  margin-bottom: 0;
  font-size: clamp(30px, 2.8vw, 46px);
  line-height: 1.1;
}

.trust-services-head > p {
  margin: 0;
  color: #77717d;
  font-size: 17px;
  line-height: 1.5;
}

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

.trust-service-grid article {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid #ece8f3;
  border-radius: 14px;
  background: #faf9fb;
}

.trust-service-grid svg {
  width: 32px;
  height: 32px;
  margin-bottom: auto;
  fill: #827c87;
}

.trust-service-logo {
  display: block;
  width: auto;
  height: 24px;
  margin-bottom: auto;
  object-fit: contain;
  object-position: left center;
}

.trust-service-logo-zabbix {
  width: 92px;
}

.trust-service-grid h3 {
  margin-bottom: 7px;
  color: #242129;
  font-size: 18px;
  font-weight: 500;
}

.trust-service-grid p {
  margin: 0;
  color: #8a858f;
  font-size: 13px;
  line-height: 1.35;
}

.site-footer {
  padding: 56px var(--gutter) 34px;
  border-top: 1px solid #ece8f3;
  background: #fff;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding-bottom: 44px;
}

.footer-top p {
  max-width: 520px;
  margin: 0;
  color: #8a858f;
  font-size: 15px;
  line-height: 1.45;
  text-align: right;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px;
  padding: 38px 0 44px;
  border-top: 1px solid #f0edf3;
}

.footer-grid div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-grid h3 {
  margin-bottom: 6px;
  color: #151515;
  font-size: 15px;
  letter-spacing: 0;
}

.footer-grid a {
  color: #9b96a0;
  font-size: 14px;
  transition: color .2s ease;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #cf527a;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid #f0edf3;
  color: #aaa5ad;
  font-size: 13px;
}

.footer-cookie-preferences {
  padding: 0;
  border: 0;
  background: transparent;
  color: #9b96a0;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(155, 150, 160, .45);
  text-underline-offset: 3px;
  transition: color .2s ease;
}

.footer-cookie-preferences:hover,
.footer-cookie-preferences:focus-visible {
  color: #cf527a;
}

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

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    min-height: calc(100dvh - 66px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px var(--gutter) 28px;
    border: 0;
    border-top: 1px solid #ece8f3;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    overflow-y: auto;
  }

  .site-nav.is-menu-open .nav-links {
    display: flex;
  }

  .nav-links > a {
    padding: 17px 14px;
    border-radius: 8px;
    font-size: clamp(20px, 5vw, 26px);
    text-align: center;
  }

  .nav-links > a:hover,
  .nav-links > a:focus-visible,
  .nav-links > a.is-active {
    background: #fff3f7;
  }

  .mobile-nav-actions {
    display: grid;
    gap: 12px;
    margin-top: auto;
    padding: 22px 0 0;
    border-top: 1px solid #ece8f3;
  }

  .mobile-nav-actions .btn {
    width: 100%;
  }

  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
    border: 1px solid #eadfe7;
    border-radius: 8px;
    background: #fff;
    color: #cf527a;
    cursor: pointer;
  }

  .nav-toggle > span:not(.visually-hidden) {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .2s ease;
  }

  .site-nav.is-menu-open .nav-toggle > span:nth-of-type(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .site-nav.is-menu-open .nav-toggle > span:nth-of-type(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    border-color: #cf527a;
    background: #fff3f7;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  .hero,
  .architecture,
  .zigzag-row,
  .steps-panel,
  .content-band-inner,
  .scenario-hero,
  .scenario-stack,
  .scenario-split,
  .scenario-detail-grid,
  .scenario-outcome {
    grid-template-columns: 1fr;
  }

  .scenario-split article:first-child::after {
    display: none;
  }

  .zigzag-row.reverse .platform-visual {
    order: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    min-height: 570px;
  }

  .hero-case {
    right: 6%;
  }

  .agent-cards,
  .foundation-grid,
  .resource-grid,
  .trust-service-grid,
  .story-summary,
  .story-flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .security-intro,
  .trust-services-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .security-principles-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    overflow: visible;
    background: transparent;
    border: 0;
  }

  .security-principles-grid article,
  .security-principles-grid article + article {
    min-height: 0;
    padding: 0;
    border: 0;
    border-top: 1px solid #e7e3eb;
  }

  .security-principles-grid article:nth-child(n + 3) {
    border-top: 1px solid #e7e3eb;
  }

  .security-principles-grid article:first-child {
    border-top: 0;
  }

  .story-body {
    grid-template-columns: 1fr;
  }

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

  .scenario-timeline article {
    border-right: 1px solid #ece8f3;
  }

  .scenario-timeline article:nth-child(3n) {
    border-right: 0;
  }

  .scenario-timeline article:nth-child(n + 4) {
    border-top: 1px solid #ece8f3;
  }

  .story-side {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-nav {
    height: auto;
    padding: 12px 16px;
  }

  .nav-actions > a:first-child {
    display: none;
  }

  .tips-signup {
    padding: 24px 18px 20px;
  }

  .tips-form {
    flex-direction: column;
  }

  .tips-form button {
    width: 100%;
  }

  .report-bar {
    font-size: 14px;
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 42px 18px 58px;
  }

  .hero-copy p {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .badges span {
    min-height: 32px;
  }

  .hero-art {
    min-height: 500px;
  }

  .hero-case {
    width: 92%;
    height: 470px;
    right: 0;
  }

  .enrich-card {
    top: 210px;
    width: 205px;
  }

  .trust,
  .architecture,
  .zigzag,
  .section-title,
  .agent-cards,
  .steps,
  .foundation,
  .stories,
  .demo,
  .training-intro,
  .content-band,
  .resource-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .security-intro,
  .security-principles,
  .trust-services {
    padding-left: 18px;
    padding-right: 18px;
  }

  .logo-grid,
  .agent-cards,
  .foundation-grid,
  .story-grid,
  .resource-grid,
  .trust-service-grid,
  .mini-metrics,
  .story-summary,
  .story-flow-grid {
    grid-template-columns: 1fr;
  }

  .legal-details {
    grid-template-columns: 1fr;
  }

  .architecture-art {
    height: 360px;
  }

  .zigzag {
    gap: 58px;
    padding-bottom: 78px;
  }

  .zigzag-row {
    gap: 32px;
  }

  .platform-visual {
    min-height: 340px;
  }

  .pipeline-flow {
    grid-template-columns: repeat(2, 1fr);
    padding: 18px;
  }

  .visual-card {
    min-width: 118px;
    padding: 14px;
  }

  .contact-flow .visual-card:nth-child(2) { left: 18px; top: 36px; }
  .contact-flow .visual-card:nth-child(3) { right: 18px; top: 70px; }
  .contact-flow .visual-card:nth-child(4) { left: 28px; bottom: 36px; }

  .content-band-inner {
    padding: 28px;
  }

  .story-body,
  .story-summary,
  .story-flow,
  .scenario-hero,
  .scenario-stack,
  .scenario-split,
  .scenario-process,
  .scenario-detail-grid,
  .scenario-outcome,
  .scenario-nav {
    padding-left: 18px;
    padding-right: 18px;
  }

  .scenario-hero {
    padding-top: 62px;
  }

  .scenario-hero-panel,
  .scenario-split article,
  .scenario-modules {
    padding: 24px;
  }

  .scenario-timeline {
    grid-template-columns: 1fr;
  }

  .scenario-timeline article,
  .scenario-timeline article:nth-child(3n) {
    min-height: 0;
    border-right: 0;
    border-top: 1px solid #ece8f3;
  }

  .scenario-timeline article:first-child {
    border-top: 0;
  }

  .scenario-timeline span {
    margin-bottom: 18px;
  }

  .scenario-nav {
    flex-direction: column;
  }

  .story-main {
    padding: 28px;
  }

  .steps-panel {
    padding: 28px;
  }

  .map {
    height: 280px;
  }

  .stories-head {
    flex-direction: column;
  }

  .story,
  .story.size-4,
  .story.size-5,
  .story.size-6,
  .story.size-7,
  .story.size-8,
  .story.wide,
  .story.city {
    grid-column: auto;
  }

  .page-grid,
  .module-detail,
  .module-grid-list,
  .module-custom-options,
  .contact-layout,
  .price-calculator,
  .pricing-layout,
  .content-band-inner,
  .training-intro,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .module-detail,
  .contact-layout,
  .price-calculator,
  .pricing-layout {
    padding-left: 18px;
    padding-right: 18px;
  }

  .module-detail-scenario {
    grid-template-columns: 1fr;
  }

  .module-detail-scenario .detail-panel:first-child::after {
    display: none;
  }

  .price-result {
    grid-template-columns: 1fr;
  }

  .pricing-table-wrap {
    overflow-x: auto;
  }

  .pricing-table {
    min-width: 680px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-field,
  .form-field-message,
  .contact-form button {
    grid-column: 1 / -1;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top p {
    text-align: left;
  }
}

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

  .bubble,
  .node,
  .work-map .map-node,
  .visual-card,
  .step-copy::before {
    animation: none !important;
  }

  .has-reveal .page-hero,
  .has-reveal .architecture,
  .has-reveal .trust,
  .has-reveal .section-title,
  .has-reveal .agent-cards > article,
  .has-reveal .steps,
  .has-reveal .foundation,
  .has-reveal .stories,
  .has-reveal .demo,
  .has-reveal .page-grid > article,
  .has-reveal .zigzag-row,
  .has-reveal .resource-card,
  .has-reveal .content-band-inner,
  .has-reveal .module-grid-list > article,
  .has-reveal .detail-panel,
  .has-reveal .contact-form-panel,
  .has-reveal .contact-info,
  .has-reveal .calculator-copy,
  .has-reveal .calculator-panel,
  .has-reveal .pricing-table-wrap,
  .has-reveal .pricing-note,
  .has-reveal .story-summary > div,
  .has-reveal .story-main,
  .has-reveal .story-side,
  .has-reveal .story-flow-grid > article,
  .has-reveal .scenario-hero-copy,
  .has-reveal .scenario-hero-panel,
  .has-reveal .scenario-stack,
  .has-reveal .scenario-split > article,
  .has-reveal .scenario-timeline > article,
  .has-reveal .scenario-copy > section,
  .has-reveal .scenario-modules,
  .has-reveal .scenario-outcome {
    opacity: 1;
    transform: none;
  }
}
