@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("static/fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("static/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #f4f4f7;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.72);
  --tile: #ededee;
  --ink: #111114;
  --muted: #7f8088;
  --muted-strong: #5c5d65;
  --line: rgba(17, 17, 20, 0.1);
  --line-strong: rgba(17, 17, 20, 0.16);
  --accent: #3f979c;
  --accent-dark: #2f858a;
  --shadow-soft: 0 18px 44px rgba(18, 24, 33, 0.07);
  --ease-fluid: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: var(--bg);
  font-synthesis: none;
  scrollbar-width: none;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
  position: relative;
  width: 100%;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  -ms-overflow-style: none;
  color: var(--ink);
  background: var(--bg);
  font-family: "Manrope", "SF Pro Display", "Segoe UI", Roboto, Arial, sans-serif;
  font-optical-sizing: auto;
  letter-spacing: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(17, 17, 20, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 20, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 58%);
}

body::after {
  position: fixed;
  top: 8dvh;
  left: 50%;
  z-index: 0;
  width: 560px;
  height: 560px;
  border-radius: 999px;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 38% 42%, rgba(93, 153, 199, 0.3), transparent 42%),
    radial-gradient(circle at 66% 62%, rgba(63, 151, 156, 0.18), transparent 50%);
  filter: blur(46px);
  opacity: 0.68;
  transform: translate3d(-46%, 0, 0) scale(1);
  animation: floatingBlue 14s var(--ease-fluid) infinite alternate;
}

::selection {
  background: rgba(63, 151, 156, 0.18);
}

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

button {
  border: 0;
  font: inherit;
}

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

code {
  font: inherit;
}

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

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 20;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.header-bar {
  position: relative;
  display: flex;
  width: min(100%, 820px);
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow:
    0 14px 42px rgba(18, 24, 33, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 0 0 1px rgba(17, 17, 20, 0.045);
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
  padding: 5px 6px 5px 8px;
  transition:
    transform 260ms var(--ease-fluid),
    box-shadow 260ms var(--ease-fluid),
    background 260ms var(--ease-fluid);
}

.site-header.is-compact .header-bar {
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 12px 34px rgba(18, 24, 33, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 0 0 1px rgba(17, 17, 20, 0.05);
  transform: translateY(-8px) scale(0.985);
}

.header-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 2px;
  padding-right: 10px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.brand__logo {
  width: 58px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.site-nav {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 780;
  letter-spacing: 0;
  padding: 0 15px;
  transition:
    color 180ms var(--ease-fluid),
    transform 180ms var(--ease-fluid);
}

.site-nav a::before {
  position: absolute;
  inset: 4px;
  z-index: -1;
  border-radius: inherit;
  background: #ffffff;
  content: "";
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 200ms var(--ease-fluid),
    transform 200ms var(--ease-fluid);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav a:hover::before,
.site-nav a:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.site-nav a:active {
  transform: translateY(1px) scale(0.98);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted-strong);
  transition:
    background 180ms var(--ease-fluid),
    color 180ms var(--ease-fluid),
    transform 180ms var(--ease-fluid);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    opacity 180ms var(--ease-fluid),
    transform 180ms var(--ease-fluid);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: #ffffff;
  color: var(--ink);
}

.menu-toggle:active {
  transform: translateY(1px) scale(0.98);
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100dvh - 94px);
  min-height: max(720px, calc(100dvh - 94px));
  isolation: isolate;
  overflow: visible;
  place-items: center;
  padding: 52px 0 118px;
  text-align: center;
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  max-width: 850px;
}

.hero-bubbles {
  position: absolute;
  inset: 0;
  left: 50%;
  z-index: 2;
  width: 100vw;
  width: min(1560px, 100vw);
  pointer-events: none;
  transform: translateX(-50%);
  --hero-left: max(-50vw, -760px);
  --hero-right: min(50vw, 760px);
}

.message-bubble {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: var(--w, 250px);
  height: auto;
  opacity: 1;
  transform: translate3d(var(--x), var(--y), 0) rotate(var(--r, 0deg));
  transform-origin: center center;
  user-select: none;
}

.bubble--1 {
  --x: calc(var(--hero-left) + clamp(92px, 6.7vw, 124px));
  --y: -276px;
  --r: -1deg;
  --w: clamp(292px, 23.6vw, 395px);
}

.bubble--2 {
  --x: calc(var(--w) / -2);
  --y: -332px;
  --r: 0.4deg;
  --w: clamp(286px, 23.1vw, 386px);
}

.bubble--3 {
  --x: calc(var(--hero-right) - var(--w) - clamp(92px, 9vw, 164px));
  --y: -270px;
  --r: 1.2deg;
  --w: clamp(280px, 22.4vw, 374px);
}

.bubble--4 {
  --edge: clamp(46px, 4.4vw, 74px);
  --x: calc(var(--hero-left) + var(--edge));
  --y: -42px;
  --r: -1.1deg;
  --w: clamp(238px, 20.9vw, 350px);
}

.bubble--5 {
  --edge: clamp(46px, 4.4vw, 74px);
  --x: calc(var(--hero-right) - var(--w) - var(--edge));
  --y: -30px;
  --r: 1deg;
  --w: clamp(238px, 21.4vw, 358px);
}

.bubble--6 {
  --edge: clamp(128px, 13.7vw, 229px);
  --x: calc(var(--hero-left) + var(--edge));
  --y: 150px;
  --r: 0.2deg;
  --w: clamp(232px, 20.5vw, 342px);
}

.bubble--7 {
  --x: calc(var(--w) / -2);
  --y: 172px;
  --r: -0.5deg;
  --w: clamp(236px, 20.7vw, 346px);
}

.bubble--8 {
  --edge: clamp(140px, 15.2vw, 254px);
  --x: calc(var(--hero-right) - var(--w) - var(--edge));
  --y: 160px;
  --r: 0.5deg;
  --w: clamp(232px, 20.2vw, 338px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 62px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero__motto {
  max-width: 660px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 20px;
  line-height: 1.5;
}

.section {
  padding: 78px 0;
}

.section-head {
  display: grid;
  gap: 8px;
  max-width: 790px;
  margin-bottom: 30px;
}

.section-head--center {
  justify-items: center;
  margin-inline: auto;
  text-align: center;
}

.case-note {
  max-width: 760px;
  margin: -12px auto 72px;
  color: var(--muted-strong);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.case-note a {
  color: #0b63db;
  font-weight: inherit;
}

.case-stories {
  display: grid;
  gap: clamp(58px, 6vw, 92px);
  max-width: 1120px;
  margin-inline: auto;
}

.case-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  align-items: center;
  gap: clamp(32px, 5vw, 70px);
}

.case-story--reverse .case-story__media {
  order: 2;
}

.case-story--reverse .case-story__body {
  justify-self: end;
}

.case-story__media {
  min-width: 0;
}

.case-story__media img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
}

.case-story__body {
  max-width: 440px;
}

.case-story__tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  border: 1px solid rgba(63, 151, 156, 0.18);
  border-radius: 999px;
  background: rgba(63, 151, 156, 0.08);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  padding: 7px 11px;
}

.case-story__body h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(24px, 2.15vw, 32px);
  line-height: 1.15;
  letter-spacing: 0;
}

.case-story__body p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.56;
}

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

.case-card,
.day-table-shell,
.pricing-list article {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition:
    transform 240ms var(--ease-fluid),
    border-color 240ms var(--ease-fluid),
    background 240ms var(--ease-fluid),
    box-shadow 240ms var(--ease-fluid);
}

.case-card {
  display: flex;
  min-height: 188px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.case-card--wide {
  min-height: 388px;
  grid-row: span 2;
}

.case-card--muted {
  background: rgba(237, 237, 238, 0.62);
}

.case-card:hover,
.pricing-list article:hover {
  border-color: rgba(63, 151, 156, 0.24);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.case-card span,
.pricing-list span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  border: 1px solid rgba(63, 151, 156, 0.2);
  border-radius: 999px;
  background: rgba(63, 151, 156, 0.08);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  padding: 6px 10px;
}

.case-card p,
.pricing-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.case-card--wide h3 {
  max-width: 620px;
  font-size: 28px;
  line-height: 1.1;
}

.case-card--wide p {
  max-width: 620px;
  font-size: 17px;
}

.section-subtitle {
  max-width: 660px;
  margin: 10px auto 0;
  color: var(--muted-strong);
  font-size: 20px;
  line-height: 1.5;
}

.day-table-shell {
  max-width: 1080px;
  overflow: hidden;
  margin-inline: auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 251, 252, 0.72)),
    rgba(255, 255, 255, 0.74);
}

.day-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.day-table th {
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-align: left;
}

.day-table th:first-child,
.day-table td:first-child {
  width: 34%;
}

.day-table th + th,
.day-table td + td {
  border-left: 1px solid rgba(219, 226, 231, 0.86);
}

.day-table td {
  padding: 22px 28px;
  border-bottom: 1px solid rgba(219, 226, 231, 0.76);
  color: var(--muted-strong);
  font-size: 18px;
  line-height: 1.45;
  vertical-align: top;
  transition:
    background 220ms var(--ease-fluid),
    color 220ms var(--ease-fluid);
}

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

.day-table tbody tr:hover td {
  background: rgba(63, 151, 156, 0.055);
}

.day-table td:first-child {
  color: var(--ink);
  font-weight: 800;
}

.day-table td + td {
  color: var(--muted);
}

.pricing {
  padding-top: 0;
}

.pricing-list {
  display: grid;
  max-width: 1000px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-inline: auto;
}

.pricing-list article {
  position: relative;
  display: flex;
  min-height: 292px;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  padding: 26px;
}

.pricing-list span {
  margin-bottom: 18px;
}

.pricing-list h3 {
  margin-bottom: 10px;
}

.pricing-list strong {
  display: block;
  margin-top: auto;
  color: var(--ink);
  font-size: clamp(21px, 1.75vw, 27px);
  font-weight: 520;
  line-height: 1.12;
  white-space: nowrap;
}

.pricing-list .is-featured {
  border-color: rgba(63, 151, 156, 0.32);
  background:
    radial-gradient(circle at 18% 0%, rgba(63, 151, 156, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 251, 0.84));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 18px 50px rgba(63, 151, 156, 0.1);
}

.pricing-list .is-featured::before {
  position: absolute;
  top: 0;
  right: 26px;
  left: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(63, 151, 156, 0.4), transparent);
  content: "";
}

.pricing-list .is-featured span {
  border-color: rgba(63, 151, 156, 0.28);
  background: rgba(63, 151, 156, 0.12);
}

.pricing-list .is-featured strong {
  color: var(--accent-dark);
}

.final-cta {
  position: relative;
  display: grid;
  max-width: 700px;
  justify-items: center;
  gap: 10px;
  margin: 28px auto 88px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(63, 151, 156, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(249, 251, 252, 0.7));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 18px 54px rgba(18, 24, 33, 0.045);
  padding: 40px 38px 38px;
  text-align: center;
}

.final-cta::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 180px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(63, 151, 156, 0.34), transparent);
  transform: translateX(-50%);
}

.final-cta__lead {
  display: grid;
  justify-items: center;
  gap: 6px;
}

.final-cta h2 {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 1.08;
}

.final-cta strong {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
}

.final-cta__body {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 6px;
}

.final-cta p {
  max-width: 570px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 17px;
  line-height: 1.55;
}

.final-cta__command {
  width: fit-content;
  margin: 0 0 2px !important;
  border: 0;
  border-bottom: 1px solid rgba(63, 151, 156, 0.34);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink) !important;
  font-size: 22px !important;
  font-weight: 800;
  line-height: 1.15 !important;
  padding: 0 2px 5px;
}

.final-cta__limit {
  margin-top: 0 !important;
  color: rgba(92, 93, 101, 0.66) !important;
  font-size: 14px !important;
  font-weight: 700;
  line-height: 1.35 !important;
}

.telegram-button {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  padding: 0 22px;
  transition:
    background 180ms var(--ease-fluid),
    box-shadow 180ms var(--ease-fluid),
    transform 180ms var(--ease-fluid);
}

.telegram-button:hover,
.telegram-button:focus-visible {
  border-color: rgba(17, 17, 20, 0.18);
  background: #222226;
  box-shadow: 0 12px 30px rgba(18, 24, 33, 0.12);
  transform: translateY(-1px);
}

.telegram-button:active {
  transform: translateY(1px) scale(0.98);
}

.site-footer {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-docs {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-docs a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  transition:
    color 180ms var(--ease-fluid),
    opacity 180ms var(--ease-fluid);
}

.footer-docs a:hover,
.footer-docs a:focus-visible {
  color: var(--muted-strong);
}

.footer-social a {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(126, 132, 145, 0.18);
  border-radius: 999px;
  color: var(--muted);
  place-items: center;
  transition:
    transform 180ms var(--ease-fluid),
    border-color 180ms var(--ease-fluid),
    background 180ms var(--ease-fluid),
    color 180ms var(--ease-fluid);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: rgba(126, 132, 145, 0.36);
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted-strong);
  transform: translateY(-1px);
}

.footer-social a:active {
  transform: translateY(1px) scale(0.98);
}

.footer-social svg {
  width: 17px;
  height: 17px;
}

.footer-social rect,
.footer-social circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
}

.footer-social path {
  fill: currentColor;
}

.document-main {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 76px;
}

.document-hero {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
  text-align: left;
}

.document-brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 820;
}

.document-brand img {
  width: 42px;
  height: auto;
}

.document-hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(42px, 7vw, 66px);
  line-height: 0.98;
  letter-spacing: 0;
}

.document-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 17px;
  line-height: 1.6;
}

.document-date {
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 820;
}

.document-card {
  display: grid;
  gap: 0;
  border: 1px solid rgba(17, 17, 20, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 252, 0.76)),
    rgba(255, 255, 255, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 18px 54px rgba(18, 24, 33, 0.045);
  padding: 8px 34px;
}

.document-section {
  display: grid;
  gap: 12px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(17, 17, 20, 0.08);
}

.document-section:last-child {
  border-bottom: 0;
}

.document-section h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(21px, 3vw, 28px);
  line-height: 1.18;
  letter-spacing: 0;
}

.document-section p,
.document-section li {
  color: var(--muted-strong);
  font-size: 16px;
  line-height: 1.7;
}

.document-section p {
  margin: 0;
}

.document-section ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.document-note {
  border-left: 2px solid rgba(63, 151, 156, 0.34);
  color: var(--muted-strong);
  padding-left: 16px;
}

.document-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.back-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  font-size: 15px;
  font-weight: 820;
  padding: 0 20px;
  transition:
    background 180ms var(--ease-fluid),
    box-shadow 180ms var(--ease-fluid),
    transform 180ms var(--ease-fluid);
}

.back-button:hover,
.back-button:focus-visible {
  background: #222226;
  box-shadow: 0 12px 30px rgba(18, 24, 33, 0.12);
  transform: translateY(-1px);
}

.back-button:active {
  transform: translateY(1px) scale(0.98);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms var(--ease-fluid),
    transform 620ms var(--ease-fluid);
}

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

@keyframes floatingBlue {
  0% {
    opacity: 0.48;
    transform: translate3d(-54%, -18px, 0) scale(0.94);
  }
  50% {
    opacity: 0.7;
    transform: translate3d(-42%, 34px, 0) scale(1.08);
  }
  100% {
    opacity: 0.56;
    transform: translate3d(-48%, 92px, 0) scale(1);
  }
}

@media (max-width: 1180px) {
  .bubble--1 {
    --x: calc(-50vw + 48px);
    --y: -266px;
    --w: clamp(250px, 27vw, 318px);
  }

  .bubble--2 {
    --x: calc(var(--w) / -2);
    --y: -288px;
    --w: clamp(252px, 27vw, 316px);
  }

  .bubble--3 {
    --x: calc(50vw - var(--w) - 48px);
    --y: -260px;
    --w: clamp(246px, 26.4vw, 308px);
  }

  .bubble--4 {
    --x: calc(-50vw + 36px);
    --y: -52px;
    --w: clamp(218px, 23vw, 276px);
  }

  .bubble--5 {
    --x: calc(50vw - var(--w) - 36px);
    --y: -34px;
    --w: clamp(218px, 23vw, 276px);
  }

  .bubble--6 {
    --x: calc(-50vw + clamp(108px, 13vw, 150px));
    --y: 138px;
    --w: clamp(218px, 23vw, 270px);
  }

  .bubble--7 {
    --x: calc(var(--w) / -2);
    --y: 164px;
    --w: clamp(222px, 23.5vw, 276px);
  }

  .bubble--8 {
    --x: calc(50vw - var(--w) - clamp(108px, 13vw, 150px));
    --y: 146px;
    --w: clamp(218px, 23vw, 270px);
  }
}

@media (max-width: 980px) {
  .header-bar {
    width: 100%;
  }

  .site-nav {
    overflow-x: auto;
    max-width: calc(100% - 128px);
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .hero {
    min-height: calc(100dvh - 80px);
    padding-top: 58px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 38px;
  }

  .bubble--1 {
    --x: calc(-50vw + 34px);
    --y: -252px;
    --w: clamp(224px, 27vw, 266px);
  }

  .bubble--2 {
    --x: calc(var(--w) / -2);
    --y: -274px;
    --w: clamp(226px, 27vw, 268px);
  }

  .bubble--3 {
    --x: calc(50vw - var(--w) - 34px);
    --y: -248px;
    --w: clamp(222px, 26.4vw, 262px);
  }

  .bubble--4 {
    --x: calc(-50vw + 30px);
    --y: -46px;
    --w: clamp(198px, 23vw, 238px);
  }

  .bubble--5 {
    --x: calc(50vw - var(--w) - 30px);
    --y: -36px;
    --w: clamp(198px, 23vw, 238px);
  }

  .bubble--6 {
    --x: calc(-50vw + clamp(90px, 12vw, 118px));
    --y: 116px;
    --w: clamp(198px, 23vw, 226px);
  }

  .bubble--7 {
    --x: calc(var(--w) / -2);
    --y: 138px;
    --w: clamp(202px, 23.5vw, 230px);
  }

  .bubble--8 {
    --x: calc(50vw - var(--w) - clamp(90px, 12vw, 118px));
    --y: 122px;
    --w: clamp(198px, 23vw, 226px);
  }

  .case-stories {
    gap: 70px;
  }

  .case-story {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
    gap: 30px;
  }

  .case-card,
  .case-card--wide {
    min-height: 0;
  }

  .case-card--wide {
    grid-row: auto;
  }

  .case-card--wide h3 {
    font-size: 28px;
  }

  .pricing-list {
    max-width: 720px;
    grid-template-columns: 1fr;
  }

}

@media (max-width: 820px) {
  .bubble--1 {
    --x: calc(-50vw + 28px);
    --y: -284px;
    --r: -1.4deg;
    --w: 176px;
  }

  .bubble--3 {
    --x: calc(50vw - 204px);
    --y: -276px;
    --r: 1.4deg;
    --w: 176px;
  }

  .bubble--6 {
    --x: calc(-50vw + 32px);
    --y: 132px;
    --r: 0.8deg;
    --w: 164px;
  }

  .bubble--8 {
    --x: calc(50vw - 196px);
    --y: 140px;
    --r: -0.8deg;
    --w: 164px;
  }

  .bubble--2,
  .bubble--4,
  .bubble--5,
  .bubble--7 {
    display: none;
  }
}

@media (max-width: 680px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 22px, 1120px);
  }

  .site-header {
    top: 8px;
    padding-top: 8px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    min-height: 0;
    max-width: none;
    overflow: hidden;
    gap: 2px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow:
      0 16px 38px rgba(18, 24, 33, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
    opacity: 0;
    padding: 8px;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    transition:
      opacity 200ms var(--ease-fluid),
      transform 200ms var(--ease-fluid);
    backdrop-filter: blur(18px) saturate(1.14);
    -webkit-backdrop-filter: blur(18px) saturate(1.14);
  }

  .header-bar {
    min-height: 56px;
    gap: 6px;
    padding: 4px 5px 4px 6px;
  }

  .site-header.is-menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

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

  .header-brand {
    gap: 0;
    padding-right: 4px;
    font-size: 19px;
  }

  .brand__logo {
    width: 48px;
  }

  .site-nav a {
    min-height: 38px;
    justify-content: flex-start;
    padding-inline: 12px;
    font-size: 13px;
  }

  .hero {
    min-height: calc(100dvh - 68px);
    padding: 48px 0 78px;
  }

  .hero__inner {
    max-width: 92vw;
  }

  h1 {
    font-size: 42px;
    line-height: 1.06;
  }

  h2 {
    font-size: 31px;
    line-height: 1.12;
  }

  h3 {
    font-size: 20px;
  }

  .hero__motto {
    font-size: 18px;
  }

  .bubble--1 {
    --x: -194px;
    --y: -300px;
    --r: -1.4deg;
    --w: 180px;
  }

  .bubble--3 {
    --x: 12px;
    --y: -290px;
    --r: 1.4deg;
    --w: 178px;
  }

  .bubble--6 {
    --x: -184px;
    --y: 128px;
    --r: 0.8deg;
    --w: 166px;
  }

  .bubble--8 {
    --x: 14px;
    --y: 134px;
    --r: -0.8deg;
    --w: 166px;
  }

  .bubble--2,
  .bubble--4,
  .bubble--5,
  .bubble--7,
  .bubble--9,
  .bubble--10 {
    display: none;
  }

  .section {
    padding: 76px 0;
  }

  .case-story {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .case-story--reverse .case-story__media {
    order: 0;
  }

  .case-story--reverse .case-story__body,
  .case-story__body {
    justify-self: stretch;
    max-width: none;
  }

  .case-note {
    margin: -8px auto 46px;
    font-size: 18px;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .case-card {
    padding: 22px;
  }

  .case-card--wide h3 {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 18px;
  }

  .day-table-shell {
    border-radius: 20px;
  }

  .day-table,
  .day-table tbody,
  .day-table tr,
  .day-table td {
    display: block;
  }

  .day-table thead {
    display: none;
  }

  .day-table tr {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(219, 226, 231, 0.76);
  }

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

  .day-table td {
    border-bottom: 0;
    padding: 0;
    font-size: 16px;
  }

  .day-table td + td {
    border-left: 0;
  }

  .day-table td:first-child {
    width: auto;
    margin-bottom: 9px;
    font-size: 18px;
  }

  .day-table td + td::before {
    display: block;
    margin-bottom: 4px;
    color: var(--muted-strong);
    content: attr(data-label);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
  }

  .pricing-list article {
    min-height: 0;
    padding: 22px;
  }

  .final-cta {
    margin: 22px auto 70px;
    padding: 34px 22px 32px;
  }

  .final-cta h2 {
    font-size: 30px;
  }

  .final-cta strong {
    font-size: 19px;
  }

  .final-cta p {
    font-size: 16px;
  }

  .final-cta__command {
    font-size: 18px !important;
  }

  .document-main {
    width: min(100%, calc(100% - 28px));
    padding: 36px 0 58px;
  }

  .document-hero {
    margin-bottom: 22px;
  }

  .document-brand {
    margin-bottom: 10px;
    font-size: 19px;
  }

  .document-brand img {
    width: 38px;
  }

  .document-hero h1 {
    font-size: 40px;
  }

  .document-hero p {
    margin: 0;
    font-size: 16px;
  }

  .document-card {
    border-radius: 22px;
    padding: 4px 22px;
  }

  .document-section {
    padding: 22px 0;
  }

  .document-section h2 {
    font-size: 21px;
  }

  .document-section p,
  .document-section li {
    font-size: 15px;
  }

  .site-footer {
    min-height: 82px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .footer-brand {
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-docs {
    order: 3;
    width: 100%;
  }
}

@media (max-width: 420px) {
  .brand__logo {
    width: 44px;
  }

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

  h1 {
    font-size: 37px;
  }

  .bubble--1 {
    --x: -170px;
    --y: -286px;
    --w: 158px;
  }

  .bubble--3 {
    --x: 10px;
    --y: -276px;
    --w: 156px;
  }

  .bubble--6 {
    --x: -160px;
    --y: 122px;
    --w: 148px;
  }

  .bubble--8 {
    --x: 12px;
    --y: 130px;
    --w: 146px;
  }

  .site-nav a {
    padding-inline: 11px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
