:root {
  --ink: #101632;
  --ink-soft: #171e3e;
  --text: #121522;
  --muted: #666c7d;
  --paper: #f4f5f8;
  --paper-blue: #edf0ff;
  --white: #ffffff;
  --line: #dfe2e9;
  --blue: #5c70ff;
  --blue-dark: #4357f2;
  --lime: #d9ff52;
  --lime-dark: #b8e526;
  --container: 1240px;
  --shadow-sm: 0 12px 30px rgba(16, 22, 50, 0.08);
  --shadow-lg: 0 32px 80px rgba(16, 22, 50, 0.18);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--white);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

p,
h1,
h2,
h3,
ul,
ol,
dl,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

:focus-visible {
  outline: 3px solid var(--lime-dark);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 108px 0;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #acb7ff;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  content: "";
  border-radius: 2px;
  background: currentColor;
}

.eyebrow .status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(217, 255, 82, .13);
}

.eyebrow:has(.status-dot)::before {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1.2;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s ease, border-color .25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 12px 30px rgba(217, 255, 82, .16);
}

.button-primary:hover {
  background: #e4ff80;
  box-shadow: 0 16px 38px rgba(217, 255, 82, .23);
}

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

.button-dark:hover {
  background: var(--blue-dark);
}

.button-small {
  min-height: 46px;
  padding: 0 19px;
  border-radius: 12px;
  font-size: 14px;
}

.button-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

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

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(18, 21, 34, .35);
  font-weight: 750;
  transition: gap .25s var(--ease), color .2s ease, border-color .2s ease;
}

.text-link:hover {
  gap: 15px;
  color: var(--blue-dark);
  border-color: currentColor;
}

.text-link-light {
  color: #dce1f5;
  border-color: rgba(255, 255, 255, .35);
}

.text-link-light:hover {
  color: var(--lime);
}

/* Header */

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, .86);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  border-color: rgba(16, 22, 50, .08);
  box-shadow: 0 8px 28px rgba(16, 22, 50, .05);
}

.header-inner {
  display: grid;
  min-height: 76px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 44px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  color: var(--ink);
  background: var(--lime);
  font-size: 18px;
  font-weight: 900;
}

.brand-mark span {
  position: relative;
  z-index: 2;
  transform: translateX(-3px);
}

.brand-mark i {
  position: absolute;
  right: -6px;
  bottom: -7px;
  width: 25px;
  height: 25px;
  border: 6px solid var(--blue);
  border-radius: 50%;
}

.brand-name {
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.brand-name span {
  margin-left: 3px;
  color: var(--blue-dark);
  font-weight: 650;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 34px);
}

.desktop-nav a {
  position: relative;
  color: #3c4050;
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  border-radius: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle,
.mobile-menu,
.mobile-dock {
  display: none;
}

/* Hero */

.hero {
  padding-top: 20px;
  padding-bottom: 0;
}

.hero-shell {
  position: relative;
  display: grid;
  min-height: max(590px, min(688px, calc(100svh - 98px)));
  grid-template-columns: 1.04fr .96fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 22% 10%, rgba(92, 112, 255, .28), transparent 34%),
    linear-gradient(135deg, #101632 0%, #0b1128 58%, #080d20 100%);
  isolation: isolate;
}

.hero-shell::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 72%);
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.hero-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 5vw, 68px);
}

.hero h1 {
  max-width: 740px;
  margin-bottom: 28px;
  font-size: clamp(48px, 5.1vw, 72px);
  font-weight: 840;
  letter-spacing: -.065em;
  line-height: .98;
}

.hero h1 span {
  display: block;
  color: var(--lime);
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 35px;
  color: #cfd4e5;
  font-size: 18px;
  line-height: 1.58;
}

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

.hero-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 44px;
}

.hero-note p {
  margin: 0;
  color: #9da6c0;
  font-size: 13px;
  line-height: 1.45;
}

.hero-note strong {
  color: var(--white);
  font-size: 14px;
}

.avatars {
  display: flex;
  padding-left: 8px;
}

.avatars i {
  display: grid;
  width: 33px;
  height: 33px;
  margin-left: -8px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
}

.avatars i:nth-child(2) {
  background: var(--blue);
  color: var(--white);
}

.avatars i:nth-child(3) {
  background: var(--lime);
}

.hero-visual {
  position: relative;
  min-width: 0;
  margin: 34px 34px 34px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  background: #081022;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 30px 80px rgba(0,0,0,.28);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7,13,31,.06), rgba(7,13,31,.18));
}

.visual-kicker {
  position: absolute;
  z-index: 5;
  top: 22px;
  left: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: #bfc7e1;
  background: rgba(9, 15, 36, .68);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.hero-art-wrap,
.hero-art {
  width: 100%;
  height: 100%;
}

.hero-art {
  object-fit: cover;
  object-position: 56% center;
  transform: scale(1.06);
  transition: transform 1.1s var(--ease);
}

.hero-visual:hover .hero-art {
  transform: scale(1.02);
}

.metric-card {
  position: absolute;
  z-index: 6;
  border: 1px solid rgba(255, 255, 255, .14);
  color: var(--white);
  background: rgba(13, 21, 49, .72);
  box-shadow: 0 18px 46px rgba(0,0,0,.26);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.metric-card-top {
  top: 76px;
  right: 22px;
  width: min(240px, calc(100% - 44px));
  padding: 16px 17px;
  border-radius: 16px;
}

.metric-card-top span {
  display: block;
  margin-bottom: 6px;
  color: #9fa9c9;
  font-size: 11px;
  text-transform: uppercase;
}

.metric-card-top strong {
  display: block;
  font-size: 15px;
  line-height: 1.35;
}

.metric-card-bottom {
  right: 22px;
  bottom: 24px;
  left: 22px;
  padding: 16px 18px 14px;
  border-radius: 18px;
}

.metric-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
}

.metric-label em {
  color: var(--lime);
  font-size: 10px;
  font-style: normal;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sparkline {
  display: flex;
  height: 38px;
  align-items: flex-end;
  gap: 7px;
  margin-top: 13px;
}

.sparkline i {
  flex: 1;
  min-height: 5px;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, var(--lime), var(--blue));
  opacity: .9;
}

.orbit {
  position: absolute;
  z-index: 3;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 18px var(--lime);
}

.orbit-one {
  top: 32%;
  left: 11%;
  animation: float 4.4s ease-in-out infinite;
}

.orbit-two {
  top: 24%;
  left: 56%;
  background: #56b7ff;
  box-shadow: 0 0 18px #56b7ff;
  animation: float 5.2s ease-in-out infinite reverse;
}

.trust-strip {
  display: grid;
  align-items: center;
  padding: 30px 8px 6px;
  grid-template-columns: .85fr 1.5fr;
  gap: 34px;
}

.trust-strip > p {
  max-width: 300px;
  margin: 0;
  color: #777c89;
  font-size: 14px;
}

.trust-strip ul {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  gap: 12px;
}

.trust-strip li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #313643;
  font-size: 13px;
  font-weight: 700;
}

.trust-strip li span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-dark);
  background: var(--paper-blue);
  font-size: 10px;
  font-weight: 850;
}

/* Section headings */

.section-heading {
  margin-bottom: 54px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 60px;
}

.section-heading h2,
.approach h2,
.proof-heading h2,
.faq-intro h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 4.3vw, 62px);
  font-weight: 840;
  letter-spacing: -.055em;
  line-height: 1.02;
}

.split-heading > p,
.centered-heading > p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.marker {
  position: relative;
  display: inline-block;
  color: var(--blue-dark);
}

.marker::after {
  position: absolute;
  z-index: -1;
  right: -5px;
  bottom: 2px;
  left: -5px;
  height: 12px;
  content: "";
  border-radius: 50%;
  background: var(--lime);
  transform: rotate(-1.5deg);
}

/* Benefits */

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

.benefit-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(16, 22, 50, .08);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
}

.benefit-card:hover {
  border-color: rgba(92,112,255,.35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-6px);
}

.benefit-card-accent {
  color: var(--ink);
  border-color: transparent;
  background: var(--lime);
}

.benefit-card-accent:hover {
  border-color: transparent;
}

.card-index {
  color: #8b90a0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}

.benefit-card-accent .card-index {
  color: rgba(16,22,50,.55);
}

.benefit-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-top: auto;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 17px;
  color: var(--blue-dark);
  background: var(--paper-blue);
}

.benefit-card-accent .benefit-icon {
  color: var(--white);
  background: var(--ink);
}

.benefit-icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.benefit-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  letter-spacing: -.03em;
  line-height: 1.12;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.benefit-card-accent p {
  color: rgba(16,22,50,.72);
}

/* Approach */

.approach {
  background: var(--white);
}

.approach-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(50px, 8vw, 120px);
}

.approach-intro {
  position: sticky;
  top: 116px;
  align-self: start;
}

.approach-intro h2 {
  margin-bottom: 28px;
}

.approach-intro > p {
  max-width: 480px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 17px;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-item {
  display: grid;
  min-height: 245px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 72px 1fr;
  gap: 22px;
}

.process-item:last-child {
  border-bottom: 1px solid var(--line);
}

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

.process-item h3 {
  margin-bottom: 13px;
  font-size: clamp(26px, 2.4vw, 34px);
  letter-spacing: -.04em;
  line-height: 1.08;
}

.process-item p {
  max-width: 620px;
  margin-bottom: 22px;
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #4f5565;
  background: var(--paper);
  font-size: 12px;
  font-weight: 700;
}

/* Scenarios */

.scenarios {
  background: var(--paper-blue);
}

.scenario-tabs {
  overflow: hidden;
  border: 1px solid rgba(16, 22, 50, .1);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.tab-list {
  display: grid;
  padding: 10px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.tab-list button {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 0;
  border-radius: 14px;
  color: #505667;
  background: transparent;
  cursor: pointer;
  font-weight: 750;
  transition: color .2s ease, background-color .2s ease;
}

.tab-list button span {
  color: #9399a8;
  font-size: 11px;
}

.tab-list button:hover {
  color: var(--blue-dark);
  background: var(--paper);
}

.tab-list button[aria-selected="true"] {
  color: var(--white);
  background: var(--ink);
}

.tab-list button[aria-selected="true"] span {
  color: var(--lime);
}

.scenario-panel {
  display: grid;
  min-height: 480px;
  padding: clamp(34px, 5vw, 64px);
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: clamp(40px, 7vw, 92px);
}

.scenario-panel[hidden] {
  display: none;
}

.scenario-label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--paper-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.scenario-copy h3 {
  margin-bottom: 20px;
  font-size: clamp(30px, 3vw, 43px);
  letter-spacing: -.045em;
  line-height: 1.05;
}

.scenario-copy > p {
  margin-bottom: 30px;
  color: var(--muted);
}

.scenario-copy dl {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.scenario-copy dl div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.scenario-copy dt {
  margin-bottom: 5px;
  color: #8b91a0;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.scenario-copy dd {
  margin: 0;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.scenario-map {
  position: relative;
  display: grid;
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  border-radius: 26px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 16%, rgba(217,255,82,.16), transparent 28%),
    radial-gradient(circle at 10% 88%, rgba(92,112,255,.3), transparent 33%),
    var(--ink);
  grid-template-columns: repeat(5, auto);
  align-items: center;
  gap: 12px;
}

.scenario-map::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

.scenario-map > div {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 140px;
  flex: 1;
  flex-direction: column;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.scenario-map > div > span {
  margin-bottom: auto;
  color: #9eabd2;
  font-size: 11px;
  font-weight: 800;
}

.scenario-map strong {
  margin-bottom: 7px;
  font-size: 17px;
}

.scenario-map small {
  color: #aeb7ce;
  font-size: 11px;
  line-height: 1.4;
}

.scenario-map > i {
  position: relative;
  z-index: 2;
  width: 22px;
  height: 1px;
  background: var(--blue);
}

.scenario-map > i::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  content: "";
  border-top: 1px solid var(--blue);
  border-right: 1px solid var(--blue);
  transform: rotate(45deg);
}

.scenario-map .map-accent {
  color: var(--ink);
  border-color: var(--lime);
  background: var(--lime);
}

.scenario-map .map-accent span,
.scenario-map .map-accent small {
  color: rgba(16,22,50,.65);
}

/* Proof */

.proof-section {
  padding-top: 64px;
  padding-bottom: 64px;
  background: var(--paper-blue);
}

.proof-shell {
  display: grid;
  padding: clamp(44px, 6.5vw, 84px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 92% 0%, rgba(92,112,255,.32), transparent 30%),
    var(--ink);
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
  gap: clamp(50px, 7vw, 90px);
}

.proof-heading h2 {
  margin-bottom: 26px;
}

.proof-heading p {
  margin: 0;
  color: #aeb6d0;
  font-size: 16px;
}

.proof-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.proof-card {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.075);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.proof-card-wide {
  grid-column: span 2;
}

.file-type {
  display: inline-block;
  margin-bottom: 20px;
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 7px;
  color: #aab5da;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .08em;
}

.proof-card h3 {
  margin-bottom: 7px;
  font-size: 19px;
}

.proof-card p {
  margin: 0;
  color: #aeb6cf;
  font-size: 13px;
}

.mini-table {
  display: grid;
  max-width: 280px;
  margin-bottom: 18px;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.mini-table i {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,.18);
}

.mini-table i:nth-child(2),
.mini-table i:nth-child(6),
.mini-table i:nth-child(7) {
  background: var(--blue);
}

.mini-gauge {
  position: relative;
  width: 68px;
  height: 34px;
  margin-bottom: 31px;
  overflow: hidden;
  border-radius: 68px 68px 0 0;
  background: conic-gradient(from 270deg at 50% 100%, var(--blue), var(--lime) 50%, transparent 50%);
}

.mini-gauge i {
  position: absolute;
  right: 9px;
  bottom: 0;
  left: 9px;
  height: 25px;
  border-radius: 50px 50px 0 0;
  background: #1e274d;
}

.mini-gauge span {
  position: absolute;
  z-index: 2;
  right: 5px;
  bottom: 0;
  color: var(--lime);
  font-size: 18px;
}

.mini-lines {
  display: grid;
  margin: 4px 0 29px;
  gap: 7px;
}

.mini-lines i {
  width: 90%;
  height: 5px;
  border-radius: 3px;
  background: rgba(255,255,255,.18);
}

.mini-lines i:nth-child(2) { width: 70%; }
.mini-lines i:nth-child(3) { width: 82%; background: var(--blue); }
.mini-lines i:nth-child(4) { width: 54%; }

.proof-card-accent {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  border-color: var(--lime);
  background: var(--lime);
}

.proof-card-accent .file-type {
  align-self: flex-start;
  color: var(--ink);
  border-color: rgba(16,22,50,.2);
}

.proof-card-accent blockquote {
  margin: auto 0 14px;
  font-size: 19px;
  font-weight: 820;
  letter-spacing: -.02em;
  line-height: 1.25;
}

.proof-card-accent p {
  color: rgba(16,22,50,.62);
}

/* Pricing */

.pricing {
  background: var(--white);
}

.centered-heading {
  max-width: 800px;
  margin-right: auto;
  margin-bottom: 56px;
  margin-left: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading h2 {
  margin-bottom: 20px;
}

.centered-heading p {
  margin-inline: auto;
}

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

.price-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 630px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.price-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-7px);
}

.price-card-featured {
  border: 2px solid var(--blue);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(92,112,255,.13);
}

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

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 7px 13px;
  border-radius: 0 0 11px 11px;
  color: var(--white);
  background: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.price-label {
  display: block;
  margin-bottom: 16px;
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-card-dark .price-label {
  color: var(--lime);
}

.price-card h3 {
  margin-bottom: 14px;
  font-size: 35px;
  letter-spacing: -.05em;
}

.price-top p {
  min-height: 76px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 15px;
}

.price-card-dark .price-top p,
.price-card-dark .price-period {
  color: #aeb6d0;
}

.price {
  margin-top: 6px;
  font-size: 35px;
  font-weight: 850;
  letter-spacing: -.045em;
  line-height: 1;
}

.price small {
  color: #8c92a1;
  font-size: 14px;
  font-weight: 650;
}

.price-period {
  display: block;
  margin-top: 9px;
  color: #7a808e;
  font-size: 12px;
}

.check-list {
  display: grid;
  margin: 31px 0 34px;
  padding: 0;
  list-style: none;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  content: "✓";
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 10px;
  font-weight: 900;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  max-width: 760px;
  margin: 26px auto 0;
  color: #838895;
  font-size: 12px;
  text-align: center;
}

/* FAQ */

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

.faq-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(50px, 9vw, 130px);
}

.faq-intro {
  align-self: start;
}

.faq-intro h2 {
  margin-bottom: 24px;
}

.faq-intro > p {
  max-width: 390px;
  margin-bottom: 30px;
  color: var(--muted);
}

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

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

.accordion summary {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 760;
  letter-spacing: -.015em;
  list-style: none;
}

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

.accordion summary span {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--white);
  transition: background-color .2s ease, transform .3s var(--ease);
}

.accordion summary span::before,
.accordion summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  content: "";
  border-radius: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.accordion summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion details[open] summary span {
  background: var(--lime);
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 690px;
  margin: -6px 60px 28px 0;
  color: var(--muted);
}

/* Contact */

.contact-section {
  padding: 36px 0;
  background: var(--paper);
}

.contact-shell {
  display: grid;
  padding: clamp(36px, 6vw, 76px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(92,112,255,.35), transparent 36%),
    var(--ink);
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.contact-copy h2 {
  margin-bottom: 26px;
}

.contact-copy > p {
  max-width: 540px;
  margin-bottom: 30px;
  color: #b7bfd5;
  font-size: 17px;
}

.contact-points {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 13px;
}

.contact-points li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #e2e6f2;
  font-size: 14px;
  font-weight: 650;
}

.contact-points li span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 11px;
  font-weight: 900;
}

.contact-actions {
  display: flex;
  margin-top: 32px;
}

.button-telegram {
  border-color: rgba(255, 255, 255, .24);
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.button-telegram:hover {
  border-color: #2aabee;
  color: var(--white);
  background: #229ed9;
  box-shadow: 0 16px 34px rgba(34, 158, 217, .22);
}

.button-telegram svg {
  width: 21px;
  height: 21px;
  fill: rgba(255, 255, 255, .16);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.lead-form {
  padding: 32px;
  border-radius: 26px;
  color: var(--text);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.form-heading span {
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -.035em;
}

.form-heading strong {
  padding: 6px 10px;
  border-radius: 999px;
  color: #47500f;
  background: #efffba;
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

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

.form-grid label {
  display: block;
  min-width: 0;
}

.form-grid label > span {
  display: block;
  margin-bottom: 7px;
  color: #535968;
  font-size: 12px;
  font-weight: 750;
}

.form-span-2 {
  grid-column: span 2;
}

.form-grid input,
.form-grid select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--text);
  outline: 0;
  background: var(--paper);
  font-size: 14px;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.form-grid select {
  padding-right: 36px;
  cursor: pointer;
}

.form-grid input::placeholder {
  color: #9ba0ad;
}

.form-grid input:hover,
.form-grid select:hover {
  background: #eef0f5;
}

.form-grid input:focus,
.form-grid select:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(92,112,255,.12);
}

.form-grid input.is-invalid,
.consent input.is-invalid {
  border-color: #d94a55;
}

.field-error {
  display: block;
  min-height: 14px;
  margin-top: 4px;
  color: #bb3340;
  font-size: 11px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
  color: #777d8b;
  font-size: 11px;
}

.consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 0;
  accent-color: var(--blue);
}

.legal-link {
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--blue-dark);
  background: none;
  cursor: pointer;
  text-decoration: underline;
}

.button-submit {
  width: 100%;
  justify-content: space-between;
}

.button-submit:disabled {
  cursor: not-allowed;
  opacity: .72;
  transform: none;
}

.lead-form[aria-busy="true"] .button-submit {
  cursor: wait;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: #3d731d;
  font-size: 12px;
  font-weight: 650;
  text-align: center;
}

.form-status.is-error {
  color: #b62d3a;
}

.form-status.is-success {
  color: #34721a;
}

/* Footer */

.site-footer {
  padding: 76px 0 26px;
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr .7fr .85fr .8fr;
  gap: 48px;
}

.brand-footer {
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid nav,
.footer-contact,
.footer-legal {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.footer-grid strong {
  margin-bottom: 7px;
  font-size: 13px;
}

.footer-grid nav a,
.footer-contact a,
.footer-contact span,
.footer-legal button {
  padding: 0;
  border: 0;
  color: var(--muted);
  background: none;
  font-size: 13px;
  text-align: left;
}

.footer-grid nav a:hover,
.footer-contact a:hover,
.footer-legal button:hover {
  color: var(--blue-dark);
}

.footer-legal button {
  cursor: pointer;
}

.footer-bottom {
  display: grid;
  margin-top: 62px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  color: #8d929e;
  font-size: 11px;
}

.footer-bottom span:nth-child(2) {
  justify-self: center;
  text-align: center;
}

.footer-bottom a:hover {
  color: var(--blue-dark);
}

/* Legal dialog */

.legal-dialog {
  width: min(680px, calc(100% - 32px));
  max-height: min(760px, calc(100vh - 40px));
  padding: 38px;
  overflow: auto;
  border: 0;
  border-radius: 26px;
  color: var(--text);
  box-shadow: var(--shadow-lg);
}

.legal-dialog::backdrop {
  background: rgba(7, 12, 28, .72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--text);
  background: var(--paper);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.legal-dialog h2 {
  margin: 0 46px 20px 0;
  font-size: 34px;
  letter-spacing: -.04em;
}

.legal-dialog h3 {
  margin: 26px 0 8px;
  font-size: 18px;
}

.legal-dialog p,
.legal-dialog li {
  color: var(--muted);
  font-size: 14px;
}

/* Motion */

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

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

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(12px, -16px, 0); }
}

/* Tablet */

@media (max-width: 1080px) {
  .header-inner {
    gap: 26px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 13px;
  }

  .hero-shell {
    min-height: 620px;
  }

  .hero-copy {
    padding: 48px;
  }

  .hero h1 {
    font-size: clamp(44px, 5.8vw, 62px);
  }

  .hero-visual {
    margin: 24px 24px 24px 0;
  }

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

  .benefit-card {
    min-height: 320px;
  }

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

  .scenario-map {
    min-height: 290px;
  }

  .proof-shell {
    grid-template-columns: 1fr;
  }

  .proof-heading {
    max-width: 720px;
  }

  .price-card {
    min-height: 650px;
    padding: 28px;
  }

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

  .contact-copy {
    max-width: 800px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 30px;
  }
}

/* Mobile navigation breakpoint */

@media (max-width: 820px) {
  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: 76px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .header-inner {
    min-height: 66px;
    grid-template-columns: 1fr auto;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .brand-name {
    font-size: 18px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 6px;
    border: 0;
    border-radius: 12px;
    color: var(--ink);
    background: var(--paper-blue);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform .25s ease;
  }

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

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

  .mobile-menu {
    position: fixed;
    z-index: 99;
    top: 66px;
    right: 0;
    left: 0;
    height: calc(100dvh - 66px);
    padding: 18px 14px 100px;
    background: var(--white);
    overflow-y: auto;
  }

  .mobile-menu.is-open {
    display: block;
  }

  .mobile-menu nav {
    display: grid;
    gap: 4px;
  }

  .mobile-menu nav > a:not(.button) {
    display: flex;
    min-height: 58px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-size: 20px;
    font-weight: 800;
  }

  .mobile-menu .button {
    margin-top: 18px;
  }

  .mobile-dock {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: max(8px, env(safe-area-inset-bottom));
    left: 10px;
    display: grid;
    height: 68px;
    padding: 6px 8px;
    border: 1px solid rgba(16,22,50,.1);
    border-radius: 18px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 14px 36px rgba(16,22,50,.18);
    grid-template-columns: repeat(5, 1fr);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  body.menu-open .mobile-dock {
    opacity: 0;
    pointer-events: none;
  }

  .mobile-dock a {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    color: #646a7b;
    font-size: 9px;
    font-weight: 750;
  }

  .mobile-dock a > span {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border-radius: 9px;
    color: var(--blue-dark);
    background: var(--paper-blue);
    font-size: 14px;
    font-weight: 850;
  }

  .mobile-dock .dock-cta {
    color: var(--blue-dark);
  }

  .mobile-dock .dock-cta > span {
    width: 42px;
    height: 42px;
    margin-top: -20px;
    border: 5px solid var(--white);
    border-radius: 15px;
    color: var(--ink);
    background: var(--lime);
    box-shadow: 0 8px 20px rgba(92,112,255,.22);
    font-size: 23px;
  }

  .hero {
    padding-top: 10px;
  }

  .hero-shell {
    min-height: 0;
    border-radius: 27px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    align-items: center;
    padding: 52px 30px 34px;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(38px, 9vw, 58px);
  }

  .hero-lead {
    max-width: 620px;
  }

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

  .hero-note {
    margin-top: 34px;
    text-align: left;
  }

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

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip > p {
    max-width: none;
    text-align: center;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading h2,
  .approach h2,
  .proof-heading h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: clamp(36px, 7vw, 52px);
  }

  .approach-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .approach-intro {
    position: static;
  }

  .tab-list {
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(190px, 1fr));
    scrollbar-width: none;
  }

  .tab-list::-webkit-scrollbar {
    display: none;
  }

  .scenario-panel {
    padding: 34px;
  }

  .proof-shell {
    padding: 46px 34px;
  }

  .pricing-grid {
    display: flex;
    width: calc(100vw - 14px);
    margin-left: 0;
    padding: 8px 14px 32px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .pricing-grid::-webkit-scrollbar {
    display: none;
  }

  .price-card {
    width: min(400px, calc(100vw - 48px));
    min-width: min(400px, calc(100vw - 48px));
    min-height: 600px;
    scroll-snap-align: start;
  }

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

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
  }

  .footer-bottom span:nth-child(2) {
    grid-column: span 2;
    grid-row: 2;
    justify-self: start;
    text-align: left;
  }
}

/* Small mobile */

@media (max-width: 560px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 10px 0 0;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 11px;
  }

  .hero-copy {
    padding: 42px 20px 30px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(34px, 10.2vw, 48px);
    letter-spacing: -.06em;
    line-height: 1.01;
  }

  .hero-lead {
    margin-bottom: 27px;
    font-size: 16px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-note {
    align-self: flex-start;
  }

  .hero-visual {
    min-height: 370px;
    margin: 0 10px 10px;
    border-radius: 21px;
  }

  .hero-art {
    object-position: 59% center;
  }

  .metric-card-top {
    top: 62px;
    right: 14px;
    width: 210px;
  }

  .metric-card-bottom {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .trust-strip {
    padding-top: 24px;
  }

  .trust-strip ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .trust-strip li {
    padding: 10px 12px;
    border-radius: 13px;
    background: var(--paper);
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .approach h2,
  .proof-heading h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: clamp(34px, 9.2vw, 44px);
  }

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

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

  .process-item {
    min-height: 0;
    padding: 28px 0;
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .process-number {
    width: 42px;
    height: 42px;
  }

  .process-item h3 {
    font-size: 26px;
  }

  .scenario-tabs {
    border-radius: 24px;
  }

  .scenario-panel {
    padding: 28px 20px 20px;
    gap: 30px;
  }

  .scenario-copy h3 {
    font-size: 31px;
  }

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

  .scenario-map {
    min-height: 0;
    padding: 20px;
    grid-template-columns: 1fr;
  }

  .scenario-map > div {
    min-height: 105px;
  }

  .scenario-map > i {
    width: 1px;
    height: 22px;
    justify-self: center;
  }

  .scenario-map > i::after {
    top: auto;
    right: -3px;
    bottom: 0;
    transform: rotate(135deg);
  }

  .proof-shell {
    width: calc(100% - 12px);
    padding: 38px 20px 20px;
    border-radius: 28px;
  }

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

  .proof-card-wide {
    grid-column: auto;
  }

  .proof-card {
    min-height: 190px;
  }

  .price-card {
    min-height: 590px;
    padding: 26px;
    border-radius: 24px;
  }

  .faq-layout {
    gap: 36px;
  }

  .accordion summary {
    min-height: 78px;
    gap: 18px;
    font-size: 16px;
  }

  .accordion details p {
    margin-right: 8px;
    font-size: 14px;
  }

  .contact-section {
    padding: 12px 0;
  }

  .contact-shell {
    padding: 38px 20px 20px;
    border-radius: 28px;
  }

  .contact-actions,
  .contact-actions .button {
    width: 100%;
  }

  .lead-form {
    padding: 22px 16px;
    border-radius: 21px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .form-span-2 {
    grid-column: auto;
  }

  .site-footer {
    padding-top: 58px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .footer-contact,
  .footer-legal {
    grid-column: auto;
  }

  .footer-bottom {
    margin-top: 42px;
  }

  .legal-dialog {
    padding: 30px 22px;
    border-radius: 22px;
  }

  .legal-dialog h2 {
    font-size: 28px;
  }
}

@media (max-width: 370px) {
  .brand-name {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 32px;
  }

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

  .mobile-dock a {
    font-size: 8px;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

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

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

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