:root {
  --paper: #f3f0e8;
  --paper-bright: #fbfaf6;
  --ink: #171713;
  --ink-soft: #292923;
  --muted: #6f6e64;
  --line: #cbc8bd;
  --orange: #ff5b35;
  --orange-dark: #d83e1d;
  --blue: #315cff;
  --blue-soft: #d9e0ff;
  --lime: #c8ff4d;
  --green: #173d32;
  --white: #fff;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --shell: 1320px;
  --pad: clamp(20px, 3vw, 48px);
  --section: clamp(90px, 11vw, 160px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--orange);
  color: var(--ink);
}

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

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

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

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section-pad {
  padding-block: var(--section);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 16px;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--mono);
  font-size: 12px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  position: relative;
  z-index: 20;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid #393933;
}

.announcement__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.announcement__inner > span:nth-child(3) {
  color: #aaa99f;
}

.announcement__price {
  margin-left: auto;
  color: var(--lime);
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 34px;
  left: 0;
  width: 100%;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.site-header.is-fixed {
  position: fixed;
  top: 0;
  background: rgba(243, 240, 232, 0.94);
  box-shadow: 0 8px 30px rgba(23, 23, 19, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header__inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand__mark {
  width: 38px;
  height: 38px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  overflow: hidden;
  background: var(--ink);
}

.brand__mark i {
  display: block;
  width: 4px;
  height: 21px;
  background: var(--orange);
  transform: skew(-22deg);
}

.brand__name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.brand__name em {
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
  color: #4d4c44;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--orange);
  transition: right 0.3s var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 15px 21px;
  border: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 4px 4px 0 var(--ink);
}

.button--small {
  min-height: 42px;
  padding: 10px 15px;
  gap: 15px;
  font-size: 11px;
}

.button--ink {
  background: var(--ink);
  color: var(--white);
}

.button--ink:hover,
.button--ink:focus-visible {
  box-shadow: 4px 4px 0 var(--orange);
}

.button--primary {
  background: var(--orange);
}

.button__arrow {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
}

.menu-toggle {
  width: 43px;
  height: 43px;
  display: none;
  position: relative;
  background: var(--ink);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  width: 18px;
  height: 1px;
  left: 13px;
  top: 18px;
  background: var(--white);
  transition: transform 0.2s ease, top 0.2s ease;
}

.menu-toggle span:last-child {
  top: 24px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 116px 0 0;
  padding: 20px var(--pad) 50px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-header.is-fixed .mobile-nav {
  inset-block-start: 82px;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.mobile-nav a span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0;
}

.hero {
  position: relative;
  padding-top: clamp(164px, 16vw, 218px);
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(23, 23, 19, 0.035) 50%, transparent calc(50% + 0.5px)),
    var(--paper);
}

.hero::before {
  content: "";
  width: 520px;
  height: 520px;
  position: absolute;
  left: -340px;
  top: 125px;
  border: 1px solid rgba(23, 23, 19, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(23, 23, 19, 0.025), 0 0 0 120px rgba(23, 23, 19, 0.018);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.86fr);
  align-items: center;
  gap: clamp(45px, 6vw, 92px);
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding-bottom: 32px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 91, 53, 0.15);
}

.hero__title {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(52px, 6.2vw, 84px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.93;
}

.hero__title span {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.hero__title span::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.02em;
  right: -0.05em;
  bottom: 0.02em;
  height: 0.19em;
  background: var(--orange);
  transform: rotate(-1deg);
}

.hero__lede {
  max-width: 610px;
  margin-bottom: 34px;
  color: #515148;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-block: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.text-link span {
  transition: transform 0.25s var(--ease);
}

.text-link:hover span {
  transform: translateY(4px);
}

.hero__pricing {
  max-width: 620px;
  display: grid;
  grid-template-columns: 145px 145px minmax(0, 1fr);
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.hero__pricing > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero__pricing > div:nth-child(2) {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.hero__pricing span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__pricing strong {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.hero__pricing strong small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0;
}

.hero__pricing p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.hero-system {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 610px;
  margin-left: auto;
  color: #f6f5ee;
  background: var(--ink);
  box-shadow: 18px 18px 0 var(--orange), 18px 18px 0 1px var(--ink);
}

.hero-system::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 52%;
  height: 72%;
  top: -28px;
  right: -28px;
  border: 1px solid var(--ink);
  background: repeating-linear-gradient(-45deg, transparent 0 8px, rgba(23, 23, 19, 0.12) 8px 9px);
}

.hero-system__topbar {
  height: 42px;
  display: grid;
  grid-template-columns: 78px 1fr auto;
  align-items: center;
  padding-inline: 14px;
  border-bottom: 1px solid #3d3d37;
  color: #7f7e75;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 6px;
  height: 6px;
  display: block;
  border: 1px solid #6f6e66;
  border-radius: 50%;
}

.window-dots i:first-child {
  border-color: var(--orange);
  background: var(--orange);
}

.live-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--lime);
}

.live-pill i {
  width: 5px;
  height: 5px;
  background: var(--lime);
  border-radius: 50%;
  animation: status-pulse 1.8s infinite;
}

.hero-system__body {
  padding: 23px;
}

.model-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 17px;
}

.model-label {
  color: #77766d;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.model-switch {
  display: inline-flex;
  border: 1px solid #3c3c36;
}

.model-switch button {
  padding: 7px 9px;
  color: #7e7d75;
  background: transparent;
  border-right: 1px solid #3c3c36;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.model-switch button:last-child {
  border-right: 0;
}

.model-switch button.is-active {
  color: var(--ink);
  background: var(--lime);
}

.route-stage {
  height: 300px;
  position: relative;
  overflow: hidden;
  border: 1px solid #34342f;
  background: #1c1c18;
}

.route-stage.is-changing .source-node,
.route-stage.is-changing .engine-node,
.route-stage.is-changing .output-node {
  animation: node-change 0.45s var(--ease);
}

.route-stage__grid {
  position: absolute;
  inset: 0;
  opacity: 0.43;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 24px 24px;
}

.source-node,
.engine-node,
.output-node {
  position: absolute;
  z-index: 2;
}

.source-node {
  width: 112px;
  top: 40px;
  padding: 10px 12px;
  border: 1px solid #4c4b44;
  background: #24241f;
}

.source-node--one {
  left: 18px;
}

.source-node--two {
  right: 18px;
}

.source-node span,
.engine-node small {
  display: block;
  margin-bottom: 3px;
  color: #77766e;
  font-family: var(--mono);
  font-size: 6px;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.source-node strong {
  display: block;
  overflow: hidden;
  color: #efeee8;
  font-size: 11px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.route-lines {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
}

.route-lines path {
  fill: none;
  stroke: #626159;
  stroke-width: 1;
  stroke-dasharray: 4 5;
  animation: dash-flow 7s linear infinite;
}

.route-lines circle {
  fill: var(--orange);
  animation: status-pulse 2s infinite;
}

.engine-node {
  width: 148px;
  min-height: 67px;
  left: 50%;
  top: 130px;
  padding: 11px 14px 9px;
  border: 1px solid var(--orange);
  background: var(--ink);
  transform: translateX(-50%);
  box-shadow: 5px 5px 0 rgba(255, 91, 53, 0.16);
}

.engine-node__pulse {
  width: 7px;
  height: 7px;
  position: absolute;
  right: 10px;
  top: 10px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 91, 53, 0.5);
  animation: ring-pulse 2s infinite;
}

.engine-node strong,
.engine-node em {
  display: block;
}

.engine-node strong {
  margin-bottom: 2px;
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
}

.engine-node em {
  color: #818078;
  font-family: var(--mono);
  font-size: 6px;
  font-style: normal;
}

.output-node {
  width: calc(100% - 72px);
  left: 36px;
  bottom: 19px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  align-items: center;
  padding: 10px 11px;
  border: 1px solid #4a4a43;
  background: #292923;
}

.output-node__status {
  grid-row: 1 / 3;
  padding: 5px 6px;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--mono);
  font-size: 6px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.output-node strong {
  overflow: hidden;
  color: #f0efe8;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.output-node > span:last-child {
  color: #75746c;
  font-family: var(--mono);
  font-size: 5px;
  letter-spacing: 0.03em;
}

.system-log {
  display: grid;
  grid-template-columns: 25px 1fr auto;
  row-gap: 5px;
  margin-top: 15px;
  color: #5f5e57;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.04em;
}

.system-log code {
  font: inherit;
}

.system-log b {
  color: #9b9a91;
  font-weight: 400;
}

.system-log .is-running {
  color: var(--orange);
}

.hero-system__note {
  min-height: 45px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-inline: 23px;
  color: #696860;
  background: #10100e;
  border-top: 1px solid #33332e;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-system__note strong {
  color: var(--lime);
  font-weight: 500;
}

.note-line {
  height: 1px;
  flex: 1;
  background: #35352f;
}

.pattern-strip {
  min-height: 110px;
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  margin-top: clamp(80px, 10vw, 145px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pattern-strip__label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pattern-strip__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.pattern-strip__items span {
  font-size: clamp(15px, 1.45vw, 20px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.pattern-strip__items i {
  color: var(--orange);
  font-family: var(--mono);
  font-style: normal;
}

.section-kicker span {
  display: grid;
  width: 27px;
  height: 20px;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line);
  font-size: 8px;
}

.section-title {
  margin-bottom: 0;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 1.02;
}

.section-title span {
  color: var(--muted);
}

.manifesto {
  background: var(--paper-bright);
}

.manifesto__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: end;
  gap: clamp(55px, 8vw, 130px);
  padding-bottom: clamp(70px, 8vw, 110px);
}

.manifesto__copy {
  padding-bottom: 5px;
}

.manifesto__copy p {
  color: #55544c;
  font-size: 14px;
  line-height: 1.75;
}

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

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.principle {
  min-height: 345px;
  position: relative;
  padding: 34px clamp(24px, 3vw, 42px) 37px;
  border-right: 1px solid var(--line);
}

.principle:last-child {
  border-right: 0;
}

.principle__index {
  position: absolute;
  right: 22px;
  top: 20px;
  color: #aaa89e;
  font-family: var(--mono);
  font-size: 9px;
}

.principle__icon {
  width: 74px;
  height: 74px;
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: 55px;
}

.principle__icon--target {
  border: 1px solid var(--ink);
  border-radius: 50%;
  box-shadow: inset 0 0 0 10px var(--paper-bright), inset 0 0 0 11px var(--ink), inset 0 0 0 22px var(--paper-bright), inset 0 0 0 23px var(--ink);
}

.principle__icon--target i {
  width: 9px;
  height: 9px;
  display: block;
  background: var(--orange);
  border-radius: 50%;
}

.principle__icon--layout {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  grid-template-rows: 0.55fr 1fr;
  gap: 5px;
  place-items: stretch;
}

.principle__icon--layout i {
  display: block;
  border: 1px solid var(--ink);
}

.principle__icon--layout i:first-child {
  grid-column: 1 / 3;
  background: var(--orange);
}

.principle__icon--layout i:nth-child(2) {
  background: var(--blue-soft);
}

.principle__icon--signal {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.principle__icon--signal i {
  width: 12px;
  display: block;
  border: 1px solid var(--ink);
  background: var(--paper-bright);
}

.principle__icon--signal i:nth-child(1) { height: 24%; }
.principle__icon--signal i:nth-child(2) { height: 50%; background: var(--orange); }
.principle__icon--signal i:nth-child(3) { height: 74%; }
.principle__icon--signal i:nth-child(4) { height: 100%; background: var(--lime); }

.principle h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.principle p {
  max-width: 310px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.work {
  background: var(--paper);
}

.work__heading {
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: end;
  gap: 80px;
  margin-bottom: clamp(60px, 8vw, 105px);
}

.work__intro {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 23px;
}

.project {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--ink);
  background: var(--paper-bright);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.project:hover,
.project:focus-visible {
  z-index: 2;
  transform: translate(-5px, -5px);
  box-shadow: 8px 8px 0 var(--ink);
}

.project--merchantoria {
  grid-column: span 7;
}

.project--podvertise {
  grid-column: span 5;
}

.project--brandvertisor {
  grid-column: span 12;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(350px, 0.8fr);
  align-items: stretch;
}

.project__meta {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 17px;
  border-bottom: 1px solid var(--ink);
  color: #6d6b63;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project--brandvertisor .project__meta {
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 12px;
  border-right: 1px solid var(--ink);
  border-bottom: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.project__visual {
  height: 395px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
}

.project__visual--map {
  display: grid;
  place-items: center;
  padding: 36px;
  background: #bddcc7;
}

.mini-browser {
  width: 91%;
  height: 83%;
  border: 1px solid var(--ink);
  background: #f8f4e9;
  box-shadow: 11px 11px 0 rgba(23, 61, 50, 0.82);
  transform: rotate(-2deg);
  transition: transform 0.45s var(--ease);
}

.project:hover .mini-browser {
  transform: rotate(0deg) scale(1.02);
}

.mini-browser__bar {
  height: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding-inline: 10px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 6px;
}

.mini-browser__bar i {
  width: 5px;
  height: 5px;
  display: block;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.mini-browser__bar span {
  margin-left: auto;
  color: #737167;
}

.map-ui {
  height: calc(100% - 30px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  padding: 25px;
}

.map-ui__copy small {
  display: block;
  margin-bottom: 10px;
  color: #687068;
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.08em;
}

.map-ui__copy strong {
  font-size: clamp(14px, 1.5vw, 22px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1.1;
}

.map-ui__shape {
  height: 130px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 4px;
  transform: skew(-8deg);
}

.state {
  display: block;
  border: 1px solid var(--ink);
  background: #e7eadc;
}

.s1 { clip-path: polygon(10% 0, 100% 0, 86% 100%, 0 87%); }
.s2 { clip-path: polygon(0 0, 100% 8%, 100% 90%, 7% 100%); background: var(--orange); }
.s3 { clip-path: polygon(4% 10%, 89% 0, 100% 100%, 0 90%); }
.s4 { clip-path: polygon(0 0, 100% 11%, 80% 100%, 0 85%); }
.s5 { clip-path: polygon(0 0, 90% 7%, 100% 100%, 9% 87%); }
.s6 { clip-path: polygon(5% 13%, 95% 0, 100% 91%, 0 100%); }
.s7 { clip-path: polygon(0 0, 100% 9%, 87% 100%, 7% 91%); background: #d6e8ff; }
.s8 { clip-path: polygon(0 11%, 100% 0, 88% 91%, 10% 100%); }

.map-pin {
  width: 9px;
  height: 9px;
  position: absolute;
  background: var(--ink);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--ink);
  transform: skew(8deg);
  animation: pin-hop 2.7s infinite var(--ease);
}

.p1 { left: 32%; top: 20%; }
.p2 { right: 22%; top: 46%; animation-delay: 0.7s; }
.p3 { left: 45%; bottom: 9%; animation-delay: 1.2s; }

.project__visual--audio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  color: var(--white);
  background: #3154f1;
}

.project__visual--audio::before,
.project__visual--audio::after {
  content: "";
  width: 260px;
  height: 260px;
  position: absolute;
  top: -125px;
  right: -120px;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(255,255,255,0.06), 0 0 0 70px rgba(255,255,255,0.04);
}

.project__visual--audio::after {
  top: auto;
  right: auto;
  left: -170px;
  bottom: -125px;
}

.audio-orbit {
  height: 64px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}

.audio-orbit i {
  width: 4px;
  height: 24%;
  display: block;
  background: var(--lime);
  animation: audio-wave 1.2s ease-in-out infinite alternate;
}

.audio-orbit i:nth-child(2), .audio-orbit i:nth-child(8) { height: 48%; animation-delay: -0.7s; }
.audio-orbit i:nth-child(3), .audio-orbit i:nth-child(7) { height: 76%; animation-delay: -0.3s; }
.audio-orbit i:nth-child(4), .audio-orbit i:nth-child(6) { height: 52%; animation-delay: -0.9s; }
.audio-orbit i:nth-child(5) { height: 100%; animation-delay: -0.5s; background: var(--orange); }

.audio-search {
  width: min(100%, 370px);
  position: relative;
  z-index: 1;
  padding: 17px;
  border: 1px solid rgba(255,255,255,0.7);
  background: rgba(16, 31, 106, 0.28);
}

.audio-search small {
  display: block;
  margin-bottom: 9px;
  color: #b9c6ff;
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.08em;
}

.audio-search strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(14px, 1.7vw, 20px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.audio-search strong span {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
}

.audio-search strong span::after {
  content: "↗";
  display: grid;
  height: 100%;
  place-items: center;
  font-size: 9px;
}

.audio-tags {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 6px;
  margin-top: 13px;
}

.audio-tags span {
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,0.25);
  font-family: var(--mono);
  font-size: 6px;
  text-transform: uppercase;
}

.project__visual--catalog {
  height: auto;
  min-height: 300px;
  padding: 37px;
  border-right: 1px solid var(--ink);
  border-bottom: 0;
  background: #ff7958;
}

.catalog-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 33px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.catalog-head i {
  font-style: normal;
  opacity: 0.55;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.catalog-grid span {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 600;
}

.catalog-grid i {
  color: rgba(23,23,19,0.5);
  font-family: var(--mono);
  font-size: 6px;
  font-style: normal;
}

.catalog-grid span:nth-child(2) {
  color: var(--white);
  background: var(--ink);
}

.catalog-cursor {
  position: absolute;
  right: 22%;
  bottom: 52px;
}

.catalog-cursor::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 13px solid var(--paper-bright);
  border-right: 8px solid transparent;
  filter: drop-shadow(1px 1px 0 var(--ink));
  transform: rotate(-25deg);
}

.catalog-cursor span {
  position: absolute;
  left: 9px;
  top: 10px;
  padding: 4px 7px;
  color: var(--white);
  background: var(--blue);
  font-family: var(--mono);
  font-size: 6px;
}

.project__footer {
  min-height: 155px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 25px;
}

.project--brandvertisor .project__footer {
  min-height: 100%;
  align-items: center;
  padding: 38px;
}

.project__footer h3 {
  margin-bottom: 9px;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.project__footer p {
  max-width: 440px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.round-link {
  width: 41px;
  height: 41px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 12px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s var(--ease);
}

.project:hover .round-link {
  color: var(--white);
  background: var(--ink);
  transform: rotate(45deg);
}

.process {
  position: relative;
  overflow: hidden;
  color: #f5f3eb;
  background: var(--ink);
}

.process::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -330px;
  top: 80px;
  border: 1px solid #383832;
  border-radius: 50%;
  box-shadow: 0 0 0 60px #1d1d19, 0 0 0 61px #33332e, 0 0 0 120px #1b1b18, 0 0 0 121px #2d2d28;
}

.section-kicker--light {
  color: #828178;
}

.section-kicker--light span {
  color: var(--paper);
  border-color: #484842;
}

.section-title--light {
  color: var(--paper);
}

.process__head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: end;
  gap: 70px;
  margin-bottom: clamp(85px, 10vw, 140px);
}

.process__summary p {
  color: #9b9a91;
  font-size: 13px;
  line-height: 1.7;
}

.process__summary span {
  display: block;
  padding-top: 14px;
  border-top: 1px solid #3b3b35;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.process-track__line {
  position: absolute;
  left: 0;
  right: 0;
  top: 25px;
  height: 1px;
  overflow: hidden;
  background: #42423c;
}

.process-track__line span {
  width: 22%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  animation: line-scan 5s linear infinite;
}

.process-step {
  position: relative;
  padding-right: clamp(18px, 2.5vw, 40px);
}

.process-step__num {
  width: 52px;
  height: 52px;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  margin-bottom: 53px;
  color: #919087;
  background: var(--ink);
  border: 1px solid #4b4b44;
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 8px;
}

.process-step__num i {
  width: 6px;
  height: 6px;
  position: absolute;
  right: 0;
  top: 6px;
  display: block;
  background: var(--orange);
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.process-step__verb {
  display: block;
  margin-bottom: 16px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.process-step h3 {
  max-width: 190px;
  margin-bottom: 14px;
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.2;
}

.process-step p {
  min-height: 112px;
  margin-bottom: 22px;
  color: #8c8b83;
  font-size: 11px;
  line-height: 1.75;
}

.process-step small {
  color: #5c5b54;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.architecture {
  background: var(--paper-bright);
}

.architecture__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(550px, 1.28fr);
  align-items: center;
  gap: clamp(60px, 9vw, 145px);
}

.architecture__copy > p {
  max-width: 470px;
  margin: 30px 0 43px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.search-console-note {
  display: flex;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.search-console-note__icon {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
}

.search-console-note strong {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
}

.search-console-note p {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.system-map {
  position: relative;
  border: 1px solid var(--ink);
  background: #eff0e7;
  box-shadow: 13px 13px 0 var(--blue);
}

.system-map::before {
  content: "";
  position: absolute;
  inset: 39px 0 47px;
  opacity: 0.4;
  background-image: linear-gradient(rgba(23,23,19,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(23,23,19,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.system-map__header {
  min-height: 40px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 15px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.08em;
}

.system-map__flow {
  min-height: 360px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 150px 1fr 170px 1fr 150px;
  align-items: center;
  padding: 40px 25px;
}

.map-column {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.map-column > small {
  margin-bottom: 5px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.1em;
}

.map-column > span {
  min-height: 37px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 9px;
  border: 1px solid var(--ink);
  background: rgba(251, 250, 246, 0.85);
  font-size: 9px;
  font-weight: 600;
}

.map-column--sources span i {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background: var(--orange);
}

.map-column--sources span:nth-child(3) i { background: var(--blue); }
.map-column--sources span:nth-child(4) i { background: var(--lime); border: 1px solid var(--ink); }
.map-column--sources span:nth-child(5) i { background: var(--ink); }

.map-column--outputs span {
  justify-content: space-between;
}

.map-column--outputs span i {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 7px;
  font-style: normal;
}

.map-connector {
  position: relative;
  height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.map-connector::after {
  content: "";
  width: 1px;
  position: absolute;
  right: 0;
  top: 20px;
  bottom: 20px;
  background: var(--ink);
}

.map-connector i {
  height: 1px;
  display: block;
  position: relative;
  background: var(--ink);
}

.map-connector i::after {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  right: -2px;
  top: -2px;
  background: var(--orange);
  border-radius: 50%;
}

.map-connector--right::after {
  left: 0;
  right: auto;
}

.map-connector--right i::after {
  left: -2px;
  right: auto;
  background: var(--blue);
}

.map-core {
  width: 132px;
  height: 132px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-self: center;
  background: var(--ink);
  color: var(--white);
  border-radius: 50%;
}

.map-core__ring {
  position: absolute;
  inset: -10px;
  border: 1px dashed var(--ink);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.map-core__ring::before,
.map-core__ring::after {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: 12px;
  left: 18px;
  background: var(--orange);
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.map-core__ring::after {
  inset: auto 10px 19px auto;
  background: var(--lime);
}

.map-core__ring--two {
  inset: -20px;
  opacity: 0.22;
  animation-direction: reverse;
  animation-duration: 27s;
}

.map-core small,
.map-core em {
  color: #8a8980;
  font-family: var(--mono);
  font-size: 6px;
  font-style: normal;
  letter-spacing: 0.08em;
}

.map-core strong {
  margin-block: 4px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-align: center;
}

.system-map__delivery {
  min-height: 47px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  background: var(--paper-bright);
}

.system-map__delivery span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-right: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 7px;
}

.system-map__delivery span:last-child {
  border-right: 0;
}

.system-map__delivery i {
  width: 5px;
  height: 5px;
  display: block;
  background: var(--lime);
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.care {
  position: relative;
  background: #dce2ff;
}

.care::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.23;
  background-image: linear-gradient(rgba(49, 92, 255, 0.22) 1px, transparent 1px), linear-gradient(90deg, rgba(49, 92, 255, 0.22) 1px, transparent 1px);
  background-size: 60px 60px;
}

.care__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(70px, 10vw, 160px);
}

.care__sticky {
  align-self: start;
  position: sticky;
  top: 130px;
}

.care__sticky > p {
  max-width: 460px;
  margin: 30px 0 0;
  color: #5e6380;
  font-size: 14px;
  line-height: 1.75;
}

.care__list {
  border-top: 1px solid var(--ink);
}

.care-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  padding-block: 38px;
  border-bottom: 1px solid rgba(23,23,19,0.45);
}

.care-item > span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  background: rgba(255,255,255,0.2);
  font-family: var(--mono);
  font-size: 13px;
}

.care-item:nth-child(2) > span {
  background: var(--orange);
}

.care-item:nth-child(3) > span {
  color: var(--white);
  background: var(--blue);
}

.care-item small {
  display: block;
  margin-bottom: 8px;
  color: #686e8c;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.11em;
}

.care-item h3 {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.care-item p {
  margin-bottom: 0;
  color: #575d78;
  font-size: 12px;
  line-height: 1.7;
}

.pricing {
  background: var(--paper-bright);
}

.pricing__head {
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: end;
  gap: 80px;
  margin-bottom: clamp(60px, 8vw, 100px);
}

.pricing__head > p {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.price-card {
  min-height: 625px;
  position: relative;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--ink);
}

.price-card--build {
  background: var(--paper);
}

.price-card--operate {
  color: var(--white);
  background: var(--ink);
}

.price-card--operate::after {
  content: "";
  width: 95px;
  height: 95px;
  position: absolute;
  right: 35px;
  top: 105px;
  border: 1px solid #505049;
  border-radius: 50%;
  box-shadow: 0 0 0 14px var(--ink), 0 0 0 15px #43433d, 0 0 0 30px var(--ink), 0 0 0 31px #34342f;
}

.price-card__top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.price-card--operate .price-card__top {
  border-bottom-color: #3e3e38;
  color: #818078;
}

.price-card__amount {
  min-height: 160px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  letter-spacing: -0.07em;
}

.price-card__amount sup {
  align-self: center;
  margin: -42px 7px 0 0;
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
}

.price-card__amount strong {
  font-size: clamp(61px, 6.2vw, 88px);
  font-weight: 500;
  line-height: 1;
}

.price-card__amount em {
  align-self: flex-end;
  margin: 0 0 35px 10px;
  color: #828179;
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0;
}

.price-card > p {
  max-width: 460px;
  margin-bottom: 33px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.price-card--operate > p {
  color: #9b9a91;
}

.price-card ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  border-top: 1px solid var(--line);
}

.price-card--operate ul {
  border-top-color: #3f3f39;
}

.price-card li {
  min-height: 48px;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.price-card--operate li {
  border-bottom-color: #3f3f39;
  color: #cccac1;
}

.price-card li span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 7px;
}

.price-card > small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 7px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.price-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  padding: 17px 19px;
  color: var(--ink);
  background: var(--lime);
  font-size: 11px;
  font-weight: 700;
  transition: background 0.25s ease, transform 0.25s var(--ease);
}

.price-card__link:hover,
.price-card__link:focus-visible {
  background: var(--orange);
  transform: translateY(-3px);
}

.fit {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.fit__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: end;
  gap: clamp(70px, 9vw, 140px);
}

.fit-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--ink);
  background: var(--paper-bright);
  box-shadow: 12px 12px 0 var(--orange);
}

.fit-board__side {
  padding: 30px;
}

.fit-board__side--yes {
  border-right: 1px solid var(--ink);
}

.fit-board__side--no {
  background: #e7e4da;
}

.fit-board__label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 30px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.fit-board__label i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-style: normal;
  font-size: 9px;
}

.fit-board__side--no .fit-board__label i {
  background: var(--orange-dark);
}

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

.fit-board li {
  min-height: 70px;
  display: grid;
  grid-template-columns: 35px 1fr;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.fit-board li span {
  padding-top: 2px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 7px;
}

.fit-board li p {
  margin: 0;
  font-size: 10px;
  line-height: 1.6;
}

.faq {
  background: var(--paper-bright);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(70px, 9vw, 150px);
}

.accordion {
  border-top: 1px solid var(--ink);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

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

.accordion summary span {
  width: 24px;
  height: 24px;
  position: relative;
  flex: 0 0 auto;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.accordion summary span::before,
.accordion summary span::after {
  content: "";
  width: 8px;
  height: 1px;
  position: absolute;
  left: 7px;
  top: 11px;
  background: var(--ink);
}

.accordion summary span::after {
  transform: rotate(90deg);
  transition: transform 0.25s ease;
}

.accordion details[open] summary span {
  background: var(--orange);
}

.accordion details[open] summary span::after {
  transform: rotate(0deg);
}

.accordion__body {
  display: grid;
  grid-template-rows: 1fr;
}

.accordion__body p {
  max-width: 650px;
  margin: 0;
  padding: 0 55px 30px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.contact {
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
}

.contact__ticker {
  overflow: hidden;
  color: var(--ink);
  background: var(--lime);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.contact__ticker > div {
  width: max-content;
  height: 46px;
  display: flex;
  align-items: center;
  gap: 25px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  animation: ticker 26s linear infinite;
}

.contact__ticker i {
  color: var(--orange);
  font-style: normal;
}

.contact__inner {
  min-height: 610px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.contact__copy .section-kicker {
  color: #c4ceff;
}

.contact__copy h2 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(53px, 7vw, 72px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.93;
}

.contact__copy p {
  max-width: 560px;
  margin-bottom: 0;
  color: #c8d1ff;
  font-size: 14px;
  line-height: 1.75;
}

.contact__action {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.contact-form {
  display: grid;
  gap: 19px;
  padding: clamp(26px, 3.2vw, 42px);
  color: var(--ink);
  background: var(--orange);
  border: 1px solid var(--ink);
  box-shadow: 14px 14px 0 var(--ink);
}

.contact-form__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(23, 23, 19, 0.4);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form__top span:last-child {
  opacity: 0.58;
}

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

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

.contact-field > span {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid var(--ink);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: rgba(251, 250, 246, 0.44);
  box-shadow: none;
  font-size: 12px;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.contact-field input {
  height: 48px;
  padding: 0 14px;
}

.contact-field textarea {
  min-height: 112px;
  padding: 13px 14px;
  line-height: 1.55;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(23, 23, 19, 0.48);
}

.contact-field input:focus,
.contact-field textarea:focus {
  background: var(--paper-bright);
  box-shadow: 4px 4px 0 var(--ink);
}

.contact-form__submit {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 11px 10px 18px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--lime);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  background: var(--paper-bright);
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(-2px, -2px);
}

.contact-form__submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
  box-shadow: none;
}

.contact-form__submit i {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-style: normal;
  font-size: 9px;
}

.contact-form__status {
  display: none;
  margin: -6px 0 0;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.04em;
}

.contact-form__status:not(:empty) {
  display: block;
}

.contact-form__status[data-state="error"] {
  font-weight: 700;
}

.contact-form__success {
  display: none;
  min-width: 0;
  outline: 0;
}

.contact-form.is-sent {
  align-items: stretch;
}

.contact-form.is-sent > :not(.contact-form__success) {
  display: none;
}

.contact-form.is-sent .contact-form__success {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  animation: contact-success-in 0.65s var(--ease) both;
}

.contact-success__top,
.contact-success__receipt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-success__top {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(23, 23, 19, 0.4);
}

.contact-success__top span:last-child {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  color: var(--white);
  background: var(--ink);
}

.contact-success__body {
  max-width: 390px;
}

.contact-success__mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  font-size: 31px;
  font-weight: 800;
  transform: rotate(-5deg);
}

.contact-success__body > p {
  margin: 0 0 9px;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-success__body h3 {
  margin: 0 0 18px;
  font-size: clamp(39px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.contact-success__body > div {
  max-width: 360px;
  font-size: 13px;
  line-height: 1.65;
}

.contact-success__body strong {
  font-weight: 800;
}

.contact-success__receipt {
  align-items: flex-end;
  padding-top: 16px;
  border-top: 1px solid rgba(23, 23, 19, 0.4);
}

.contact-success__receipt span {
  opacity: 0.6;
}

.contact-success__receipt strong {
  max-width: 68%;
  text-align: right;
  overflow-wrap: anywhere;
}

@keyframes contact-success-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact__micro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 25px;
  color: #bdc8ff;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact__micro span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.contact__micro i {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
}

.site-footer {
  color: var(--paper);
  background: var(--ink);
}

.site-footer__top {
  min-height: 185px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid #3b3b35;
}

.brand--footer .brand__mark {
  background: var(--paper);
}

.brand--footer .brand__name em {
  color: #85847b;
}

.site-footer__top > p {
  grid-column: 3;
  justify-self: end;
  max-width: 400px;
  margin: 0;
  color: #85847b;
  font-size: 11px;
  text-align: right;
}

.footer-email {
  justify-self: end;
  padding-bottom: 4px;
  border-bottom: 1px solid #5a5952;
  color: #bab9b0;
  font-family: var(--mono);
  font-size: 9px;
}

.footer-email span {
  margin-left: 7px;
  color: var(--orange);
}

.site-footer__bottom {
  min-height: 77px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  color: #64635c;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer__bottom div {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.site-footer__bottom > a {
  justify-self: end;
}

.site-footer a {
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--white);
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

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

.principles .reveal:nth-child(2),
.project-list .reveal:nth-child(2),
.care__list .reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.principles .reveal:nth-child(3),
.project-list .reveal:nth-child(3),
.care__list .reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.process-track .reveal:nth-of-type(3) { transition-delay: 0.08s; }
.process-track .reveal:nth-of-type(4) { transition-delay: 0.16s; }
.process-track .reveal:nth-of-type(5) { transition-delay: 0.24s; }
.process-track .reveal:nth-of-type(6) { transition-delay: 0.32s; }

@keyframes status-pulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

@keyframes ring-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 91, 53, 0.55); }
  65%, 100% { box-shadow: 0 0 0 8px rgba(255, 91, 53, 0); }
}

@keyframes dash-flow {
  to { stroke-dashoffset: -90; }
}

@keyframes node-change {
  0% { opacity: 1; transform: translateY(0); }
  45% { opacity: 0; transform: translateY(8px); }
  55% { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 1; transform: translateY(0); }
}

.route-stage.is-changing .engine-node {
  animation-name: engine-node-change;
}

@keyframes engine-node-change {
  0% { opacity: 1; transform: translate(-50%, 0); }
  45% { opacity: 0; transform: translate(-50%, 8px); }
  55% { opacity: 0; transform: translate(-50%, -8px); }
  100% { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes pin-hop {
  0%, 80%, 100% { transform: skew(8deg) translateY(0); }
  90% { transform: skew(8deg) translateY(-6px); }
}

@keyframes audio-wave {
  to { transform: scaleY(0.38); }
}

@keyframes line-scan {
  from { transform: translateX(-100%); }
  to { transform: translateX(500%); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@media (max-width: 1160px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.8fr);
    gap: 45px;
  }

  .hero__title {
    font-size: clamp(49px, 6.3vw, 73px);
  }

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

  .project__visual {
    height: 350px;
  }

  .system-map__flow {
    grid-template-columns: 125px 1fr 145px 1fr 125px;
    padding-inline: 18px;
  }

  .map-core {
    width: 116px;
    height: 116px;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .hero {
    padding-top: 165px;
  }

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

  .hero__copy {
    padding-bottom: 10px;
  }

  .hero__title {
    max-width: 820px;
    font-size: clamp(58px, 9.5vw, 90px);
  }

  .hero__lede {
    max-width: 680px;
  }

  .hero-system {
    max-width: 720px;
    margin: 25px auto 0;
  }

  .pattern-strip {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 28px;
  }

  .pattern-strip__items {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .manifesto__grid,
  .work__heading,
  .pricing__head,
  .fit__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .manifesto__grid {
    gap: 45px;
  }

  .manifesto__copy {
    max-width: 650px;
  }

  .work__heading,
  .pricing__head {
    gap: 35px;
  }

  .work__intro,
  .pricing__head > p {
    max-width: 540px;
  }

  .project--merchantoria,
  .project--podvertise {
    grid-column: span 6;
  }

  .project--brandvertisor {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .project--brandvertisor .project__footer {
    grid-column: 1 / 3;
    min-height: 150px;
    border-top: 1px solid var(--ink);
  }

  .project__visual--catalog {
    border-right: 0;
  }

  .process-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 70px 35px;
  }

  .process-track__line {
    display: none;
  }

  .process-step {
    padding-top: 25px;
    border-top: 1px solid #3d3d37;
  }

  .process-step__num {
    margin-bottom: 35px;
  }

  .process-step p {
    min-height: auto;
  }

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

  .architecture__copy {
    max-width: 660px;
  }

  .system-map {
    width: 100%;
    max-width: 760px;
  }

  .care__grid {
    gap: 60px;
  }

  .care__sticky {
    position: static;
  }

  .price-card__amount strong {
    font-size: clamp(58px, 8vw, 78px);
  }

  .fit__grid,
  .faq__grid {
    align-items: start;
    gap: 60px;
  }

  .fit__title-block {
    max-width: 720px;
  }

  .contact__inner {
    grid-template-columns: 1fr 0.75fr;
    gap: 50px;
  }

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

@media (max-width: 760px) {
  :root {
    --section: 88px;
  }

  .announcement__inner {
    justify-content: space-between;
  }

  .announcement__inner > span:nth-child(2),
  .announcement__inner > span:nth-child(3) {
    display: none;
  }

  .site-header__inner {
    height: 72px;
  }

  .site-header.is-fixed .mobile-nav {
    inset-block-start: 72px;
  }

  .mobile-nav {
    inset-block-start: 106px;
  }

  .brand__mark {
    width: 35px;
    height: 35px;
  }

  .hero {
    padding-top: 145px;
    background: var(--paper);
  }

  .hero__title {
    font-size: clamp(46px, 13.4vw, 73px);
    line-height: 0.96;
  }

  .hero__lede {
    font-size: 15px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

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

  .hero__pricing p {
    grid-column: 1 / 3;
    margin-top: 17px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .hero-system {
    width: calc(100% - 10px);
    margin-right: 10px;
    box-shadow: 10px 10px 0 var(--orange), 10px 10px 0 1px var(--ink);
  }

  .hero-system::after {
    display: none;
  }

  .hero-system__body {
    padding: 15px;
  }

  .model-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .route-stage {
    height: 280px;
  }

  .source-node {
    width: 96px;
  }

  .engine-node {
    top: 122px;
  }

  .output-node {
    width: calc(100% - 32px);
    left: 16px;
  }

  .hero-system__note {
    flex-wrap: wrap;
    padding-block: 12px;
  }

  .note-line {
    display: none;
  }

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

  .principle {
    min-height: 290px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .principle__icon {
    margin-bottom: 40px;
  }

  .project-list {
    display: flex;
    flex-direction: column;
  }

  .project--brandvertisor {
    display: flex;
  }

  .project--brandvertisor .project__meta {
    min-height: 46px;
    flex-direction: row;
    padding-inline: 17px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
    writing-mode: initial;
    transform: none;
  }

  .project--brandvertisor .project__footer {
    min-height: 155px;
    border-top: 0;
  }

  .project__visual,
  .project__visual--catalog {
    min-height: 0;
    height: 330px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__head {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process__summary {
    max-width: 460px;
  }

  .process-track {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .process-step {
    display: grid;
    grid-template-columns: 70px 1fr;
    padding-right: 0;
  }

  .process-step__num {
    grid-row: 1 / 6;
    margin: 0;
  }

  .process-step__verb,
  .process-step h3,
  .process-step p,
  .process-step small {
    grid-column: 2;
  }

  .process-step p {
    max-width: 500px;
  }

  .system-map__flow {
    min-height: 680px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 50px auto 50px auto;
    justify-items: stretch;
  }

  .map-column {
    width: min(100%, 340px);
    justify-self: center;
  }

  .map-connector {
    width: 70%;
    height: 50px;
    justify-self: center;
    flex-direction: row;
    align-items: flex-end;
  }

  .map-connector::after {
    width: auto;
    height: 1px;
    left: 20px;
    right: 20px;
    top: auto;
    bottom: 0;
  }

  .map-connector i {
    width: 1px;
    height: 100%;
  }

  .map-connector i::after,
  .map-connector--right i::after {
    left: -2px;
    right: auto;
    top: auto;
    bottom: -2px;
  }

  .map-connector--right {
    align-items: flex-start;
  }

  .map-connector--right::after {
    top: 0;
    bottom: auto;
  }

  .map-connector--right i::after {
    top: -2px;
    bottom: auto;
  }

  .map-core {
    width: 126px;
    height: 126px;
  }

  .system-map__delivery {
    grid-template-columns: 1fr;
  }

  .system-map__delivery span {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .system-map__delivery span:last-child {
    border-bottom: 0;
  }

  .care__grid,
  .price-grid,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .care__grid {
    gap: 55px;
  }

  .price-card {
    min-height: 0;
  }

  .price-card__amount {
    min-height: 140px;
  }

  .fit-board {
    grid-template-columns: 1fr;
  }

  .fit-board__side--yes {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .contact__inner {
    padding-block: 90px;
  }

  .contact__copy h2 {
    font-size: clamp(50px, 13vw, 80px);
  }

  .contact-form {
    padding: 25px;
    box-shadow: 9px 9px 0 var(--ink);
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 55px;
  }

  .site-footer__top > p {
    grid-column: auto;
    justify-self: start;
    margin: 0;
    text-align: left;
  }

  .footer-email {
    justify-self: start;
  }

  .site-footer__bottom {
    min-height: 130px;
    grid-template-columns: 1fr auto;
    align-content: center;
    gap: 20px;
  }

  .site-footer__bottom div {
    grid-row: 2;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .announcement__price {
    font-size: 8px;
  }

  .brand__name {
    font-size: 14px;
  }

  .hero__title br:nth-of-type(2) {
    display: none;
  }

  .button--primary {
    width: 100%;
  }

  .pattern-strip__items {
    gap: 9px 12px;
  }

  .section-title {
    font-size: clamp(38px, 11.2vw, 52px);
  }

  .project__visual,
  .project__visual--catalog {
    height: 280px;
  }

  .project__visual--map {
    padding: 22px;
  }

  .mini-browser {
    width: 100%;
    height: 88%;
  }

  .map-ui {
    padding: 17px;
  }

  .map-ui__shape {
    height: 100px;
  }

  .catalog-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .catalog-grid span {
    min-height: 54px;
  }

  .project__footer,
  .project--brandvertisor .project__footer {
    padding: 22px;
  }

  .process-step {
    grid-template-columns: 58px 1fr;
  }

  .process-step__num {
    width: 43px;
    height: 43px;
  }

  .system-map__header {
    gap: 15px;
  }

  .system-map__flow {
    padding-inline: 14px;
  }

  .system-map {
    box-shadow: 7px 7px 0 var(--blue);
  }

  .care-item {
    grid-template-columns: 54px 1fr;
    gap: 16px;
  }

  .care-item > span {
    width: 46px;
    height: 46px;
  }

  .price-card {
    padding: 26px 22px;
  }

  .price-card--operate::after {
    width: 65px;
    height: 65px;
    right: 25px;
  }

  .price-card__amount strong {
    font-size: 58px;
  }

  .fit-board__side {
    padding: 24px 20px;
  }

  .accordion summary {
    font-size: 12px;
  }

  .contact__micro {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .contact-form {
    padding: 22px 18px;
  }

  .site-footer__bottom > a {
    justify-self: start;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
