@font-face {
  font-family: "Familjen Grotesk";
  src: url("assets/fonts/familjen-grotesk-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Familjen Grotesk";
  src: url("assets/fonts/familjen-grotesk-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Familjen Grotesk";
  src: url("assets/fonts/familjen-grotesk-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("assets/fonts/source-sans-3-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("assets/fonts/source-sans-3-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --mist: #f4f7fd;
  --mist-blue: #eaf1ff;
  --mist-violet: #f1edff;
  --ink: #11131a;
  --ink-soft: #303541;
  --muted: #626978;
  --muted-light: #aeb8ce;
  --blue: #1767ff;
  --blue-deep: #0a4ee8;
  --violet: #7651f5;
  --violet-deep: #5634d8;
  --lime: #a9e63a;
  --lime-deep: #6fa700;
  --rose: #df3f77;
  --line: #dfe5f0;
  --line-dark: rgba(255, 255, 255, 0.18);
  --gradient: linear-gradient(112deg, var(--blue) 0%, #4f63f4 50%, var(--violet) 100%);
  --gradient-soft: linear-gradient(135deg, #edf4ff 0%, #f4f0ff 100%);
  --display: "Familjen Grotesk", sans-serif;
  --body: "Source Sans 3", sans-serif;
  --shell: min(100% - 40px, 1260px);
  --section: clamp(92px, 10vw, 150px);
  --radius: 16px;
  --radius-large: 28px;
  --shadow-soft: 0 18px 60px rgba(36, 52, 95, 0.11), 0 4px 18px rgba(36, 52, 95, 0.05);
  --shadow-action: 0 12px 30px rgba(45, 83, 237, 0.25);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  scrollbar-color: var(--violet) var(--mist);
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--violet);
  color: var(--white);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

button,
input,
textarea {
  font: inherit;
}

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  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: 100;
  top: 18px;
  left: 18px;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-180%);
  transition: transform 180ms ease-out;
}

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

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 5.6vw, 5.7rem);
}

h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.45rem);
  line-height: 1.06;
}

.section-heading {
  max-width: 890px;
  margin-bottom: clamp(58px, 7vw, 92px);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 66ch;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.15rem;
}

.section-heading--light,
.section-heading--light > p:last-child {
  color: var(--white);
}

.section-heading--light > p:last-child {
  color: #cbd4e9;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 14px;
  height: 0;
  pointer-events: none;
}

.site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 12px 10px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 55px rgba(31, 47, 92, 0.12), 0 3px 12px rgba(31, 47, 92, 0.05);
  pointer-events: auto;
  transition: transform 260ms var(--ease-out), box-shadow 260ms ease;
}

.site-header.is-scrolled .site-header__inner {
  transform: translateY(-4px);
  box-shadow: 0 20px 58px rgba(31, 47, 92, 0.16), 0 4px 14px rgba(31, 47, 92, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__text strong {
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brand__text small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.69rem;
  line-height: 1.1;
}

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

.site-nav > a:not(.button) {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav > a:not(.button):hover {
  color: var(--blue);
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  gap: 6px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
}

.menu-toggle > span:not(.sr-only) {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

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

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

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 15px 24px;
  border: 0;
  border-radius: 14px;
  background: var(--gradient);
  color: var(--white);
  box-shadow: var(--shadow-action);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease, filter 220ms ease;
}

.button:hover {
  box-shadow: 0 16px 38px rgba(45, 83, 237, 0.34);
  filter: saturate(1.1);
  transform: translateY(-2px);
}

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

.button svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--compact {
  min-height: 52px;
  padding: 13px 19px;
  border-radius: 13px;
  font-size: 0.88rem;
}

.button--secondary {
  border: 2px solid #5571ed;
  background: var(--white);
  color: var(--blue-deep);
  box-shadow: 0 8px 24px rgba(30, 78, 203, 0.08);
}

.button--secondary:hover {
  background: var(--mist-blue);
  box-shadow: 0 12px 30px rgba(30, 78, 203, 0.14);
}

.button--light {
  width: 100%;
  background: var(--white);
  color: var(--blue-deep);
  box-shadow: 0 14px 34px rgba(18, 27, 76, 0.22);
}

.button:disabled,
.button[aria-disabled="true"] {
  opacity: 0.5;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 0;
  background:
    radial-gradient(circle at 18% 38%, rgba(23, 103, 255, 0.09), transparent 31%),
    radial-gradient(circle at 82% 42%, rgba(118, 81, 245, 0.1), transparent 32%),
    linear-gradient(180deg, #fbfcff 0%, var(--white) 74%);
}

.hero__inner {
  text-align: center;
}

.hero h1 {
  max-width: none;
  margin: 0 auto 28px;
  font-size: clamp(4rem, 6vw, 5.2rem);
  line-height: 0.93;
}

.hero__line {
  display: block;
  white-space: nowrap;
}

.hero__accent {
  color: var(--blue);
}

.hero__intro {
  max-width: 66ch;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 58px;
}

.portrait-stage {
  position: relative;
  height: 390px;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  background: #dbe9f7;
  box-shadow: 0 32px 90px rgba(35, 57, 115, 0.16);
  isolation: isolate;
}

.portrait-stage::after {
  position: absolute;
  z-index: 4;
  inset: 0;
  border: 1px solid rgba(23, 55, 112, 0.11);
  border-bottom: 0;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.portrait-stage__wash {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(circle at 20% 28%, rgba(23, 103, 255, 0.32), transparent 31%),
    radial-gradient(circle at 78% 30%, rgba(118, 81, 245, 0.3), transparent 30%),
    linear-gradient(112deg, #d4eafa 0%, #eaf0ff 48%, #ddd5ff 100%);
}

.portrait-stage__wash::before,
.portrait-stage__wash::after {
  position: absolute;
  width: 58%;
  height: 120px;
  border: 2px solid rgba(255, 255, 255, 0.54);
  border-color: rgba(255, 255, 255, 0.54) transparent transparent;
  border-radius: 50%;
  content: "";
  transform: rotate(-7deg);
}

.portrait-stage__wash::before {
  top: 82px;
  left: -5%;
}

.portrait-stage__wash::after {
  right: -4%;
  bottom: 12px;
  transform: rotate(10deg);
}

.portrait-stage > picture {
  position: absolute;
  z-index: 1;
  top: -74px;
  bottom: 0;
  left: 50%;
  width: min(48%, 580px);
  height: calc(100% + 74px);
  filter: saturate(0.96) contrast(1.02);
  mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
  transform: translateX(-50%);
}

.portrait-stage > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 27%;
}

.proof-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 224px;
  padding: 14px 17px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 36px rgba(37, 53, 98, 0.15), 0 3px 10px rgba(37, 53, 98, 0.06);
  text-align: left;
}

.proof-chip svg {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  padding: 7px;
  border-radius: 11px;
  background: var(--mist-blue);
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-chip p {
  margin: 0;
  line-height: 1.15;
}

.proof-chip strong,
.proof-chip span {
  display: block;
}

.proof-chip strong {
  font-family: var(--display);
  font-size: 1.05rem;
  font-variant-numeric: lining-nums tabular-nums;
}

.proof-chip span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
}

.proof-chip--time {
  bottom: 42px;
  left: 42px;
}

.proof-chip--money {
  top: 54px;
  right: 42px;
}

.proof-chip--money svg {
  background: #f1ecff;
  stroke: var(--violet);
}

.proof-chip--local {
  right: 86px;
  bottom: 44px;
}

.proof-chip--local svg {
  background: #f1fbdc;
  stroke: var(--lime-deep);
}

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

.friction-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: clamp(82px, 10vw, 132px);
}

.friction {
  min-height: 304px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}

.friction--raised {
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transform: translateY(-18px);
}

.friction__mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 14px;
  background: #fdebf2;
  color: var(--rose);
}

.friction__mark svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.friction h3 {
  margin-bottom: 18px;
  font-size: clamp(1.6rem, 2vw, 2rem);
}

.friction p {
  margin-bottom: 0;
  color: var(--muted);
}

.turning-point {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 8vw, 104px);
  border-radius: 30px;
  background: #14172b;
  color: var(--white);
  text-align: center;
}

.turning-point::before {
  position: absolute;
  width: 470px;
  height: 470px;
  top: -280px;
  left: 50%;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.42;
  filter: blur(72px);
  content: "";
  transform: translateX(-50%);
}

.turning-point > * {
  position: relative;
  z-index: 1;
}

.turning-point > p:first-child {
  margin-bottom: 16px;
  color: #c4cee5;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
}

.turning-point h2 {
  max-width: 12ch;
  margin: 0 auto 28px;
}

.turning-point > p:last-child {
  max-width: 64ch;
  margin: 0 auto;
  color: #c4cee5;
}

.services {
  background: var(--mist);
}

.service-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.service {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  padding: clamp(34px, 4vw, 56px);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(38, 53, 95, 0.08);
}

.service__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
  color: var(--blue-deep);
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 700;
}

.service__topline span:last-child {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--mist-blue);
  color: var(--blue-deep);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service h3 {
  max-width: 17ch;
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 3.8vw, 3.65rem);
}

.service p {
  max-width: 54ch;
  color: var(--muted);
}

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

.service li {
  position: relative;
  padding-left: 29px;
  color: var(--ink-soft);
}

.service li::before {
  position: absolute;
  top: 0.48em;
  left: 2px;
  width: 12px;
  height: 7px;
  border-bottom: 2px solid var(--blue);
  border-left: 2px solid var(--blue);
  content: "";
  transform: rotate(-45deg);
}

.service a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--blue-deep);
  font-family: var(--display);
  font-weight: 700;
}

.service a span {
  transition: transform 180ms ease;
}

.service a:hover span {
  transform: translateX(4px);
}

.service--relief {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(65, 71, 225, 0.26);
}

.service--relief .service__topline,
.service--relief p,
.service--relief a {
  color: var(--white);
}

.service--relief .service__topline span:last-child {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.service--analysis {
  min-height: 310px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 70px;
  background: linear-gradient(118deg, #fff 0%, #f2f5ff 55%, #edf5ff 100%);
}

.service--analysis .service__topline {
  margin-bottom: 36px;
}

.service--analysis h3 {
  max-width: 20ch;
  margin: 0;
  font-size: clamp(2.25rem, 4.4vw, 4.2rem);
}

.service__aside p {
  margin-bottom: 30px;
}

.service-boundary {
  max-width: 72ch;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.results {
  position: relative;
  overflow: hidden;
  background: #121528;
  color: var(--white);
}

.results::before {
  position: absolute;
  width: 520px;
  height: 520px;
  top: 6%;
  right: -260px;
  border-radius: 50%;
  background: var(--violet);
  opacity: 0.16;
  filter: blur(85px);
  content: "";
}

.results .shell {
  position: relative;
  z-index: 1;
}

.result-feature {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(52px, 8vw, 110px);
  align-items: center;
  margin-bottom: 24px;
  padding: clamp(38px, 6vw, 78px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(23, 103, 255, 0.2), rgba(118, 81, 245, 0.13));
}

.result-feature__metric strong,
.result-feature__metric span {
  display: block;
}

.result-feature__metric strong {
  color: #aeb6ff;
  font-family: var(--display);
  font-size: clamp(6.5rem, 12vw, 10rem);
  font-weight: 700;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: -0.04em;
  line-height: 0.8;
}

.result-feature__metric span {
  max-width: 18ch;
  margin-top: 26px;
  color: #d2daf0;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
}

.result-feature__client {
  margin-bottom: 18px;
  color: #a5b9e8;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.result-feature__copy h3 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.2vw, 4rem);
}

.result-feature__copy > p:not(.result-feature__client) {
  max-width: 58ch;
  color: #c8d0e6;
}

.result-feature__equation {
  display: grid;
  grid-template-columns: auto 56px auto 56px auto;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #cdd6ed;
  font-size: 0.88rem;
}

.result-feature__equation svg {
  width: 100%;
  fill: none;
  stroke: #7086b9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.result-feature__equation strong {
  color: var(--white);
  font-family: var(--display);
}

.result-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
}

.result-card {
  min-height: 460px;
  padding: clamp(36px, 5vw, 64px);
  border-radius: 20px;
  background: var(--white);
  color: var(--ink);
}

.result-card > p:first-child {
  margin-bottom: 50px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.result-card > strong {
  display: block;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(3.4rem, 6vw, 6.2rem);
  font-weight: 700;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.result-card h3 {
  margin: 12px 0 28px;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.result-card > p:not(:first-child) {
  color: var(--muted);
}

.result-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0 0;
}

.result-card dl div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.result-card dt {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.result-card dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.result-card--internal {
  background: #20243a;
  color: var(--white);
}

.result-card--internal > p:first-child,
.result-card--internal > strong {
  color: #b9a9ff;
}

.result-card--internal > p:not(:first-child) {
  color: #c7cfe3;
}

.result-card__note {
  display: block;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #9da7c2;
  font-size: 0.78rem;
}

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

.about__grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: clamp(58px, 10vw, 140px);
}

.about__portrait {
  position: relative;
  height: min(690px, 64vw);
  overflow: hidden;
  border-radius: 24px;
  background: var(--mist-blue);
  box-shadow: var(--shadow-soft);
}

.about__halo {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23, 103, 255, 0.2), rgba(118, 81, 245, 0.24));
}

.about__portrait picture,
.about__portrait img {
  position: relative;
  width: 100%;
  height: 100%;
}

.about__portrait img {
  object-fit: cover;
  object-position: 50% 28%;
}

.about__location {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 16px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 30px rgba(29, 47, 99, 0.13);
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 600;
}

.about__location span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
}

.about__copy h2 {
  max-width: 12ch;
}

.about__copy .lead {
  max-width: 40ch;
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -0.02em;
}

.about__copy > p:not(.lead) {
  max-width: 62ch;
  color: var(--muted);
}

.about__strengths {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0;
}

.about__strengths span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 0.83rem;
  font-weight: 600;
}

.process {
  background: var(--mist);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 37px;
  right: 15%;
  left: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--violet));
  opacity: 0.3;
  content: "";
}

.process-list li {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  text-align: center;
}

.process-list__number {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin: 0 auto 32px;
  border: 7px solid var(--mist);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 12px 30px rgba(32, 57, 127, 0.12);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
}

.process-list li:nth-child(2) .process-list__number {
  color: #5362ed;
}

.process-list li:nth-child(3) .process-list__number {
  color: var(--violet);
}

.process-list h3 {
  margin-bottom: 18px;
  font-size: 1.75rem;
}

.process-list p {
  margin: 0;
  color: var(--muted);
}

.process-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: clamp(68px, 8vw, 105px);
  padding: 26px 28px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 14px 45px rgba(36, 52, 95, 0.08);
}

.process-cta p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
}

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

.faq__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(56px, 10vw, 140px);
}

.faq__intro {
  position: sticky;
  top: 126px;
}

.faq__intro h2 {
  max-width: 10ch;
  font-size: clamp(3rem, 5vw, 5.1rem);
}

.faq__intro > p:last-child {
  max-width: 42ch;
  color: var(--muted);
}

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

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

.faq summary {
  position: relative;
  padding: 28px 54px 28px 0;
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

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

.faq summary::before,
.faq summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  content: "";
  transition: transform 200ms var(--ease-out);
}

.faq summary::after {
  transform: rotate(90deg);
}

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

.faq details p {
  max-width: 65ch;
  margin: -4px 54px 28px 0;
  color: var(--muted);
}

.contact {
  padding-block: clamp(50px, 6vw, 82px);
  background: var(--white);
}

.contact__shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: clamp(52px, 8vw, 105px);
  padding: clamp(40px, 7vw, 88px);
  border-radius: 30px;
  background: linear-gradient(135deg, #0f56ef 0%, #4c55e9 46%, #6f42dc 100%);
  color: var(--white);
}

.contact__shell::before {
  position: absolute;
  width: 440px;
  height: 440px;
  top: -260px;
  left: -180px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  content: "";
}

.contact__intro,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact__intro h2 {
  max-width: 10ch;
  font-size: clamp(3rem, 5.3vw, 5.3rem);
}

.contact__intro > p {
  max-width: 48ch;
  color: #e1e7ff;
}

.contact__intro dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 48px 0 0;
}

.contact__intro dl div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.contact__intro dt {
  color: #f2f5ff;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact__intro dd {
  margin: 4px 0 0;
  font-size: 0.9rem;
}

.contact-form {
  padding: clamp(28px, 4vw, 48px);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 26px 70px rgba(17, 27, 74, 0.28);
  color: var(--ink);
}

.route-fieldset {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 30px;
  padding: 0;
  border: 0;
}

.route-fieldset legend {
  grid-column: 1 / -1;
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 700;
}

.route-fieldset label {
  cursor: pointer;
}

.route-fieldset input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.route-fieldset label > span {
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--mist);
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.route-fieldset input:checked + span {
  border-color: var(--blue);
  background: var(--mist-blue);
  box-shadow: 0 0 0 2px rgba(23, 103, 255, 0.08);
}

.route-fieldset input:focus-visible + span {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.route-fieldset strong,
.route-fieldset small {
  display: block;
}

.route-fieldset strong {
  font-family: var(--display);
  font-size: 0.85rem;
  line-height: 1.2;
}

.route-fieldset small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.2;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 23px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 700;
}

.field label span {
  color: #5c6474;
  font-family: var(--body);
  font-weight: 400;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #cfd7e6;
  border-radius: 12px;
  outline: 0;
  background: #fbfcff;
  color: var(--ink);
  caret-color: var(--violet);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.field input {
  min-height: 50px;
  padding: 10px 13px;
}

.field textarea {
  min-height: 126px;
  padding: 13px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #596273;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(23, 103, 255, 0.12);
}

.field input:user-invalid,
.field textarea:user-invalid {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(223, 63, 119, 0.1);
}

.form-note {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.4;
  text-align: center;
}

.site-footer {
  padding-block: 34px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer__inner > div {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

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

.js .hero h1,
.js .hero__intro,
.js .hero__actions,
.js .portrait-stage {
  opacity: 0;
}

.js .hero h1,
.js .hero__intro,
.js .hero__actions {
  filter: blur(8px);
  transform: translateY(22px);
}

.js.is-ready .hero h1,
.js.is-ready .hero__intro,
.js.is-ready .hero__actions {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition: opacity 700ms var(--ease-out), filter 750ms var(--ease-out), transform 750ms var(--ease-out);
}

.js.is-ready .hero h1 { transition-delay: 40ms; }
.js.is-ready .hero__intro { transition-delay: 170ms; }
.js.is-ready .hero__actions { transition-delay: 240ms; }

.js .portrait-stage {
  clip-path: inset(0 10% 100% 10% round 30px 30px 0 0);
}

.js.is-ready .portrait-stage {
  opacity: 1;
  clip-path: inset(0 0 0 0 round 30px 30px 0 0);
  transition: opacity 650ms ease 280ms, clip-path 1050ms var(--ease-out) 280ms;
}

.js.is-ready .proof-chip--time {
  animation: chip-float 6s ease-in-out 1.4s infinite;
}

.js.is-ready .proof-chip--money {
  animation: chip-float 7s ease-in-out 1.8s infinite reverse;
}

@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav > a:not(.button):nth-child(3),
  .site-nav > a:not(.button):nth-child(4) {
    display: none;
  }

  .portrait-stage > picture {
    width: 58%;
  }

  .proof-chip--local {
    right: 42px;
  }

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

  .result-feature__equation svg {
    width: 54px;
    transform: rotate(90deg);
  }

  .route-fieldset {
    grid-template-columns: 1fr;
  }

  .route-fieldset label > span {
    min-height: 72px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 30px, 720px);
    --section: clamp(78px, 16vw, 112px);
  }

  body {
    font-size: 17px;
  }

  .site-header {
    top: 10px;
  }

  .site-header__inner {
    min-height: 68px;
    border-radius: 18px;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
  }

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

  .site-nav > a:not(.button),
  .site-nav > a:not(.button):nth-child(3),
  .site-nav > a:not(.button):nth-child(4) {
    display: block;
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .button {
    margin-top: 12px;
  }

  .hero {
    padding-top: 126px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 10vw, 5.2rem);
  }

  .portrait-stage {
    height: 560px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-content: end;
    padding: 360px 14px 14px;
    border-radius: 24px 24px 0 0;
  }

  .portrait-stage > picture {
    top: 0;
    width: 100%;
    height: 390px;
    object-position: 50% 26%;
    mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
  }

  .proof-chip {
    position: relative;
    inset: auto;
    min-width: 0;
    padding: 12px;
  }

  .proof-chip--time,
  .proof-chip--money {
    animation: none !important;
  }

  .proof-chip--local {
    grid-column: 1 / -1;
  }

  .friction-list,
  .result-grid,
  .about__grid,
  .faq__grid,
  .contact__shell {
    grid-template-columns: 1fr;
  }

  .friction--raised {
    transform: none;
  }

  .service-grid,
  .service--analysis {
    grid-template-columns: 1fr;
  }

  .service--analysis {
    gap: 34px;
  }

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

  .result-feature__metric span {
    max-width: 26ch;
  }

  .about__portrait {
    width: min(100%, 540px);
    height: min(690px, 120vw);
    margin-inline: auto;
  }

  .faq__intro {
    position: static;
  }

  .faq__intro h2 {
    max-width: 12ch;
  }

  .contact__shell {
    gap: 50px;
  }

  .contact__intro h2 {
    max-width: 12ch;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__inner > p {
    order: 3;
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 24px, 560px);
  }

  .brand__text small {
    display: none;
  }

  .site-header__inner {
    padding-left: 12px;
  }

  .hero {
    padding-top: 118px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 14.2vw, 4.25rem);
    line-height: 0.95;
  }

  .hero__line {
    white-space: normal;
  }

  .hero__intro {
    font-size: 1.03rem;
  }

  .hero__actions {
    flex-direction: column;
    margin-bottom: 42px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .portrait-stage {
    height: auto;
    min-height: 650px;
    grid-template-columns: 1fr;
    padding-top: 410px;
  }

  .portrait-stage > picture {
    height: 440px;
  }

  .proof-chip--local {
    grid-column: auto;
  }

  .friction-list {
    gap: 14px;
  }

  .friction {
    min-height: auto;
    padding: 28px;
  }

  .friction__mark {
    margin-bottom: 26px;
  }

  .turning-point {
    padding: 56px 24px;
    border-radius: 22px;
  }

  .service {
    min-height: auto;
    padding: 30px;
  }

  .service__topline {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 34px;
  }

  .service h3,
  .service--analysis h3 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .result-feature,
  .result-card {
    padding: 30px;
  }

  .result-feature__metric strong {
    font-size: clamp(5.5rem, 27vw, 8rem);
  }

  .result-card > strong {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

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

  .about__copy h2,
  .faq__intro h2,
  .contact__intro h2 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .process-list::before {
    top: 37px;
    bottom: 37px;
    left: 37px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--blue), var(--violet));
  }

  .process-list li {
    display: grid;
    grid-template-columns: 74px 1fr;
    align-items: start;
    gap: 18px;
    padding: 0;
    text-align: left;
  }

  .process-list__number {
    margin: 0;
  }

  .process-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact {
    padding-inline: 0;
  }

  .contact__shell {
    width: 100%;
    padding: 48px 18px 18px;
    border-radius: 0;
  }

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

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

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__inner > div {
    justify-content: flex-start;
  }

  .site-footer__inner > p {
    grid-column: auto;
  }
}

@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;
  }

  .js .hero h1,
  .js .hero__intro,
  .js .hero__actions,
  .js .portrait-stage {
    opacity: 1;
    clip-path: none;
    filter: none;
    transform: none;
  }
}
