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

@font-face {
  font-family: "Inter";
  src: url("/landing/static/fonts/inter-latin-v1.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  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;
}

@font-face {
  font-family: "Unbounded";
  src: url("/landing/static/fonts/unbounded-cyrillic-v1.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  unicode-range: U+0400-04FF, U+0500-052F, U+2DE0-2DFF, U+A640-A69F;
}

@font-face {
  font-family: "Unbounded";
  src: url("/landing/static/fonts/unbounded-latin-v1.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  unicode-range: U+0000-024F, U+1E00-1EFF, U+2000-206F, U+20A0-20CF;
}

:root {
  color-scheme: dark;
  --ink: #08142e;
  --muted: #475263;
  --blue: #0095ff;
  --blue-deep: #006fdb;
  --blue-light: #65caff;
  --blue-soft: rgba(0, 149, 255, 0.14);
  --blue-glow: rgba(0, 149, 255, 0.34);
  --lime: #c7ff3d;
  --canvas: #080e17;
  --radius-card: 28px;
  --radius-small: 18px;
}

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

html {
  min-width: 0;
  background: #070c14;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 2%, rgba(0, 149, 255, 0.22), transparent 38rem),
    #070c14;
  color: #fff;
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

img {
  display: block;
}

p,
h1,
h2 {
  margin: 0;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 12px;
  top: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: #08142e;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.landing-canvas {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--canvas);
  box-shadow:
    0 0 0 1px rgba(0, 149, 255, 0.08),
    0 0 96px rgba(0, 72, 155, 0.22),
    0 0 80px rgba(0, 0, 0, 0.5);
}

.hero,
.benefit,
.product,
.technology,
.pricing,
.proof {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.section-eyebrow {
  position: absolute;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #075fc8;
  font-size: 11px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0;
}

.section-eyebrow::before {
  width: 18px;
  height: 2px;
  flex: 0 0 18px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
  content: "";
}

.section-eyebrow--lime {
  color: var(--blue-light);
}

h1,
h2 {
  position: absolute;
  left: 16px;
  right: 16px;
  font-family: "Unbounded", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.primary-cta {
  position: absolute;
  left: 16px;
  right: 16px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: #0095ff;
  box-shadow:
    0 14px 15px rgba(0, 149, 255, 0.36),
    inset 0 1px 1px rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.primary-cta img {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.primary-cta:hover {
  transform: translateY(-2px);
  filter: saturate(1.08) brightness(1.04);
  box-shadow:
    0 18px 22px rgba(0, 149, 255, 0.42),
    inset 0 1px 1px rgba(255, 255, 255, 0.34);
}

.primary-cta:active {
  transform: translateY(0) scale(0.99);
}

a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

/* 01 · Hero */

.hero {
  min-height: 720px;
  height: min(780px, 100svh);
  background: #f4faff;
  isolation: isolate;
}

.hero__backdrop {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  filter: saturate(0.9) contrast(0.98);
  pointer-events: none;
}

.hero > picture,
.pricing > picture {
  position: absolute;
  inset: 0;
}

.hero__scrim {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(236, 248, 255, 0.08) 62%, rgba(218, 241, 255, 0.3) 100%);
}

.hero__header {
  position: absolute;
  z-index: 5;
  top: 16px;
  left: 16px;
  right: 16px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px 0 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 111, 219, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 12px 32px rgba(35, 101, 145, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.brand {
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 22px;
  color: #071b36;
  text-shadow: none;
}

.hero__header-cta {
  width: 157px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 999px;
  border: 1px solid rgba(0, 119, 222, 0.12);
  background: #087fd5;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  transition: background 180ms ease, transform 180ms ease;
}

.hero__header-cta:hover {
  background: #006fbe;
  transform: translateY(-1px);
}

.hero__eyebrow {
  position: absolute;
  z-index: 2;
  top: 86px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #0876c8;
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.hero__eyebrow::before {
  width: 16px;
  height: 2px;
  flex: 0 0 16px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
  content: "";
}

.hero h1 {
  z-index: 2;
  top: 116px;
  color: #071b36;
  font-size: 24px;
  line-height: 30px;
}

.hero h1 span {
  background: linear-gradient(90deg, #075ea9 0%, #008ce8 48%, #00a4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  position: absolute;
  z-index: 2;
  top: 204px;
  left: 16px;
  right: 16px;
  max-width: 354px;
  color: #40566f;
  font-size: 14px;
  font-weight: 450;
  line-height: 20px;
}

.hero-demo {
  position: absolute;
  z-index: 3;
  top: 288px;
  left: 16px;
  right: 16px;
  height: 276px;
  overflow: hidden;
  border: 1px solid rgba(93, 195, 255, 0.38);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at 80% 18%, rgba(0, 149, 255, 0.2), transparent 38%),
    linear-gradient(145deg, rgba(8, 19, 43, 0.94), rgba(4, 13, 31, 0.84));
  box-shadow:
    0 24px 52px rgba(0, 22, 67, 0.46),
    0 0 38px rgba(0, 149, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  --delay: 80ms;
}

.hero-demo::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(77, 184, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 184, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, #000, transparent 88%);
  content: "";
  pointer-events: none;
}

.hero-demo__header {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
  font-weight: 700;
  line-height: 12px;
  letter-spacing: 0.06em;
}

.hero-demo__live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #a7dbff;
}

.hero-demo__live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(199, 255, 61, 0.08), 0 0 16px rgba(199, 255, 61, 0.76);
  animation: hero-live-pulse 2.4s ease-in-out infinite;
}

.hero-demo__request {
  position: absolute;
  z-index: 2;
  top: 54px;
  left: 14px;
  right: 14px;
  min-height: 92px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-small);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(227, 243, 255, 0.92));
  box-shadow: 0 16px 34px rgba(0, 53, 122, 0.28);
  color: #071831;
  animation: hero-request-float 5.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.hero-demo__request p {
  margin-bottom: 8px;
  color: #087dca;
  font-size: 8px;
  font-weight: 800;
  line-height: 11px;
  letter-spacing: 0.06em;
}

.hero-demo__request strong {
  display: block;
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
}

.hero-demo__beam {
  position: absolute;
  z-index: 1;
  top: 143px;
  left: 50%;
  width: 2px;
  height: 32px;
  overflow: visible;
  background: linear-gradient(180deg, rgba(0, 149, 255, 0.2), var(--blue-light));
  box-shadow: 0 0 16px rgba(0, 149, 255, 0.68);
  transform: translateX(-50%);
}

.hero-demo__beam i {
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(199, 255, 61, 0.82);
  transform: translateX(-50%);
}

.hero-demo__result {
  position: absolute;
  z-index: 2;
  top: 174px;
  left: 14px;
  right: 14px;
  min-height: 88px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
  gap: 7px 9px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-small);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(226, 242, 255, 0.96));
  box-shadow: 0 16px 32px rgba(0, 68, 167, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-demo__bot-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #13a9ff, #006bd8);
  box-shadow: 0 7px 16px rgba(0, 116, 226, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  color: #fff;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.hero-demo__result-copy {
  min-width: 0;
}

.hero-demo__result-copy strong {
  display: block;
}

.hero-demo__bot-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.hero-demo__bot-line small {
  color: #087dca;
  font-size: 7.5px;
  font-weight: 800;
  line-height: 10px;
  letter-spacing: 0.04em;
}

.hero-demo__bot-line em {
  color: #7790a6;
  font-size: 7px;
  font-style: normal;
  font-weight: 600;
  line-height: 10px;
}

.hero-demo__result-copy strong {
  margin-top: 2px;
  color: #071831;
  font-size: 11px;
  line-height: 14px;
}

.hero-demo__match-meta {
  display: block;
  margin-top: 1px;
  color: #526d84;
  font-size: 7px;
  font-weight: 600;
  line-height: 10px;
}

.hero-demo__actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.25fr;
  gap: 4px;
}

.hero-demo__actions > span {
  min-width: 0;
  padding: 5px 4px;
  overflow: hidden;
  border: 1px solid rgba(0, 126, 218, 0.12);
  border-radius: 7px;
  background: rgba(0, 137, 232, 0.08);
  color: #087dca;
  font-size: 6.2px;
  font-weight: 750;
  line-height: 8px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-demo__actions > .hero-demo__reply {
  border-color: rgba(0, 126, 218, 0.2);
  background: linear-gradient(180deg, #169eea, #087dca);
  color: #fff;
}

.hero__trust {
  position: absolute;
  z-index: 3;
  top: 584px;
  left: 16px;
  right: 16px;
  color: #41627b;
  font-size: 11px;
  font-weight: 600;
  line-height: 15px;
  text-align: center;
}

.hero__trust span {
  color: #0876c8;
}

.hero__cta {
  z-index: 4;
  top: 622px;
  --delay: 180ms;
}

.hero__cta-note {
  position: absolute;
  z-index: 3;
  top: 692px;
  left: 16px;
  right: 16px;
  color: #60788c;
  font-size: 11px;
  line-height: 15px;
  text-align: center;
}

/* 02 · Benefit */

.benefit {
  height: 628px;
  background: #f6f8fb;
  color: var(--ink);
}

.benefit .section-eyebrow {
  top: 30px;
  color: #054599;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.benefit h2 {
  top: 62px;
  color: #0a121f;
  font-size: 28px;
  line-height: 33px;
}

.benefit__lead {
  position: absolute;
  top: 146px;
  left: 16px;
  right: 16px;
  color: #475263;
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
}

.benefit__lead strong {
  color: inherit;
  font-weight: 700;
}

.benefit-timeline {
  position: absolute;
  top: 214px;
  left: 16px;
  right: 16px;
  height: 384px;
  overflow: hidden;
  border: 1px solid rgba(0, 149, 255, 0.3);
  border-radius: var(--radius-card);
  background: linear-gradient(102deg, #fff 0%, #e8f5ff 62%, #c4ebff 100%);
  box-shadow:
    0 18px 38px -8px rgba(8, 18, 33, 0.1),
    0 0 40px rgba(0, 149, 255, 0.08);
}

.benefit-timeline__caption {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 19px;
  color: #054599;
  font-size: 10px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 0.04em;
}

.benefit-timeline__rail {
  position: absolute;
  top: 59px;
  left: 47px;
  width: 3px;
  height: 286px;
  border-radius: 999px;
  background: linear-gradient(180deg, #b2c2d6 0%, #0080ff 50%, #ccff40 100%);
}

.benefit-event {
  position: absolute;
  left: 0;
  right: 0;
  height: 86px;
}

.benefit-event--one { top: 53px; }
.benefit-event--two { top: 161px; }
.benefit-event--three { top: 269px; }

.benefit-event time {
  position: absolute;
  top: 20px;
  left: 11px;
  color: #475263;
  font-size: 11px;
  font-weight: 700;
  line-height: 14px;
}

.benefit-event > img {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 29px;
  width: 38px;
  height: 38px;
  pointer-events: none;
}

.benefit-event > div {
  position: absolute;
  left: 71px;
  right: 19px;
  height: 86px;
  padding: 14px;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 22px -5px rgba(8, 18, 33, 0.1);
}

.benefit-event--two > div {
  background: linear-gradient(90deg, #0057d9, #0094ff);
  color: #fff;
}

.benefit-event--three > div {
  background: linear-gradient(90deg, #e5ff73, #b2f533);
  color: #0a121f;
}

.benefit-event strong,
.benefit-event p {
  display: block;
}

.benefit-event strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  white-space: nowrap;
}

.benefit-event p {
  width: 100%;
  margin-top: 7px;
  color: #4d596b;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
}

.benefit-event--two p { color: rgba(255, 255, 255, 0.82); }
.benefit-event--three p { color: #293814; }

/* 03 · Product */

.product {
  height: 732px;
  background: linear-gradient(99deg, #060d18 0%, #081f42 58%, #0061d1 100%);
}

.product .section-eyebrow { top: 30px; }

.product h2 {
  top: 62px;
  color: #fff;
  font-size: 27px;
  line-height: 32px;
}

.product__lead {
  position: absolute;
  top: 145px;
  left: 16px;
  right: 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 25px;
}

.telegram-ui {
  position: absolute;
  top: 214px;
  left: 16px;
  right: 16px;
  height: 488px;
  overflow: hidden;
  border: 1px solid rgba(91, 196, 255, 0.32);
  border-radius: var(--radius-card);
  background: #050b16;
  box-shadow:
    0 24px 50px -10px rgba(0, 64, 166, 0.32),
    0 0 46px rgba(0, 149, 255, 0.12);
}

.telegram-ui__glow {
  position: absolute;
  top: -101px;
  left: 119px;
  width: 300px;
  height: 300px;
}

.telegram-ui__header {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  height: 48px;
  display: flex;
  align-items: center;
  padding: 0 9px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.telegram-ui__avatar {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}

.telegram-ui__avatar img {
  width: 30px;
  height: 30px;
}

.telegram-ui__avatar b {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  line-height: 16px;
}

.telegram-ui__header > span:last-child {
  min-width: 0;
  margin-left: 10px;
}

.telegram-ui__header strong,
.telegram-ui__header small {
  display: block;
}

.telegram-ui__header strong {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

.telegram-ui__header small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10.5px;
  line-height: 14px;
}

.request-card {
  position: absolute;
  top: 79px;
  left: 15px;
  right: 15px;
  height: 218px;
  padding: 14px;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  color: #08142e;
}

.request-card__badge {
  width: 127px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #d9ff67;
  color: #17330a;
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
}

.request-card__meta {
  position: absolute;
  top: 50px;
  left: 14px;
  color: #1f63ff;
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
}

.request-card__text {
  position: absolute;
  top: 72px;
  left: 14px;
  right: 14px;
  color: #0a121f;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.request-card__facts {
  position: absolute;
  top: 140px;
  left: 14px;
  display: flex;
  gap: 8px;
}

.request-card__facts span {
  height: 26px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 999px;
  background: #eef6ff;
  color: #1f63ff;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 14px;
}

.request-card__actions {
  position: absolute;
  top: 174px;
  left: 14px;
  right: 14px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 6px;
}

.request-card__actions a {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #edf4fb;
  color: #31506f;
  font-size: 11px;
  font-weight: 700;
  line-height: 14px;
}

.request-card__actions a:last-child {
  background: #0095ff;
  color: #fff;
}

.reply-draft {
  position: absolute;
  top: 317px;
  left: 15px;
  right: 15px;
  height: 154px;
  padding: 14px;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.reply-draft__label {
  color: var(--blue-light);
  font-size: 10.5px;
  font-weight: 700;
  line-height: 14px;
}

.reply-draft > div {
  position: absolute;
  top: 36px;
  left: 14px;
  right: 14px;
  height: 104px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff;
  color: #18243a;
}

.reply-draft > div p {
  font-size: 12.5px;
  font-weight: 400;
  line-height: 18px;
}

.reply-draft > div a {
  position: absolute;
  bottom: 10px;
  left: 14px;
  color: #1f63ff;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 14px;
}

/* 04 · Technology */

.technology {
  height: 800px;
  background: linear-gradient(180deg, #f6faff 0%, #e8f2ff 55%, #e0ebff 100%);
  color: var(--ink);
}

.technology__glow {
  position: absolute;
  pointer-events: none;
}

.technology__glow--cyan {
  top: 230px;
  left: -170px;
  width: 340px;
  height: 340px;
}

.technology__glow--lime {
  top: 510px;
  left: 250px;
  width: 280px;
  height: 280px;
}

.technology .section-eyebrow { top: 52px; }

.technology h2 {
  top: 88px;
  color: #08142e;
  font-size: 26px;
  line-height: 33px;
}

.technology__lead {
  position: absolute;
  top: 205px;
  left: 16px;
  right: 16px;
  color: #475263;
  font-size: 16px;
  line-height: 23px;
}

.tech-core-card {
  position: absolute;
  top: 286px;
  left: 16px;
  right: 16px;
  height: 470px;
  overflow: hidden;
  border: 1px solid rgba(77, 178, 255, 0.46);
  border-radius: var(--radius-card);
  background: linear-gradient(90deg, rgba(5, 15, 41, 0.92) 0%, rgba(8, 33, 84, 0.88) 55%, rgba(26, 10, 66, 0.9) 100%);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.34),
    0 0 54px rgba(0, 115, 255, 0.16);
}

.tech-core-card__connectors {
  position: absolute;
  inset: -1px 0 auto -1px;
  width: 358px;
  height: 470px;
}

.tech-core-card__orbit,
.tech-core-card__orb {
  position: absolute;
  pointer-events: none;
}

.tech-core-card__orbit--outer {
  top: 139px;
  left: calc(50% - 95px);
  width: 190px;
  height: 190px;
  animation: orbit-spin 18s linear infinite;
}

.tech-core-card__orbit--inner {
  top: 155px;
  left: calc(50% - 79px);
  width: 158px;
  height: 158px;
  animation: orbit-spin 13s linear infinite reverse;
}

.tech-core-card__orb {
  top: 128px;
  left: calc(50% - 106px);
  width: 212px;
  height: 212px;
  animation: core-breathe 4s ease-in-out infinite;
}

.tech-core-card__label {
  position: absolute;
  z-index: 3;
  top: 226px;
  left: calc(50% - 50px);
  width: 100px;
  color: #05142e;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
}

.tech-capability {
  position: absolute;
  z-index: 4;
  width: 152px;
  height: 96px;
  padding: 12px 11px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(36, 122, 255, 0.08));
  color: #fff;
}

.tech-capability--encryption { top: 21px; left: 15px; }
.tech-capability--ai { top: 21px; right: 15px; }
.tech-capability--queue { top: 354px; left: 15px; }
.tech-capability--privacy { top: 354px; right: 15px; }

.tech-capability strong,
.tech-capability small {
  display: block;
}

.tech-capability strong {
  color: var(--blue-light);
  font-size: 10.5px;
  font-weight: 700;
  line-height: 14px;
}

.tech-capability small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 400;
  line-height: 15px;
}

/* 05 · Price */

.pricing {
  height: 780px;
  background: #050a17;
}

.pricing__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 780px;
  object-fit: cover;
  pointer-events: none;
}

.pricing__scrim {
  position: absolute;
  inset: 0 0 auto;
  height: 470px;
  background: linear-gradient(180deg, rgba(3, 6, 15, 0.98) 0%, rgba(3, 6, 15, 0.72) 72%, rgba(3, 6, 15, 0) 100%);
}

.pricing .section-eyebrow { top: 56px; }

.pricing h2 {
  top: 92px;
  color: #fff;
  font-size: 27px;
  line-height: 34px;
}

.pricing__lead {
  position: absolute;
  top: 214px;
  left: 16px;
  right: 16px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 24px;
}

.price-card {
  position: absolute;
  top: 314px;
  left: 16px;
  right: 16px;
  height: 335px;
  overflow: hidden;
  border: 1px solid rgba(82, 190, 255, 0.46);
  border-radius: var(--radius-card);
  background: linear-gradient(90deg, rgba(8, 20, 51, 0.9), rgba(15, 46, 112, 0.7));
  box-shadow:
    0 18px 18px rgba(0, 0, 0, 0.3),
    0 0 44px rgba(0, 149, 255, 0.13);
  -webkit-backdrop-filter: blur(11px);
  backdrop-filter: blur(11px);
}

.price-card__badge {
  position: absolute;
  top: 17px;
  left: 17px;
  width: 76px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 8px 20px rgba(0, 149, 255, 0.3);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 12px;
}

.price-card__price {
  position: absolute;
  top: 57px;
  left: 17px;
  color: #fff;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
}

.price-card__period {
  position: absolute;
  top: 97px;
  left: 17px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 18px;
}

.price-card__divider {
  position: absolute;
  top: 126px;
  left: 17px;
  right: 17px;
  height: 1px;
  background: rgba(255, 255, 255, 0.17);
}

.price-card__summary {
  position: absolute;
  top: 144px;
  left: 17px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
  line-height: 17px;
}

.price-card__included {
  position: absolute;
  top: 178px;
  left: 17px;
  color: var(--blue-light);
  font-size: 10.5px;
  font-weight: 700;
  line-height: 14px;
}

.price-feature {
  position: absolute;
  width: calc(50% - 25px);
  height: 52px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.price-feature--profile { top: 203px; left: 17px; }
.price-feature--reply { top: 203px; right: 17px; }
.price-feature--channels { top: 265px; left: 17px; }
.price-feature--support { top: 265px; right: 17px; }

.price-feature b {
  width: 42px;
  flex: 0 0 42px;
  color: var(--blue-light);
  font-size: 11px;
  line-height: 14px;
  text-align: center;
}

.price-feature--reply b,
.price-feature--support b {
  color: var(--blue-light);
}

.price-feature span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 15px;
}

.pricing__cta { top: 674px; }

.pricing__note {
  position: absolute;
  top: 744px;
  left: 16px;
  right: 16px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}

/* 06 · Proof */

.proof {
  height: 960px;
  background: linear-gradient(180deg, #f6faff 0%, #e8f2ff 55%, #e0ebff 100%);
  color: var(--ink);
}

.proof__glow {
  position: absolute;
  top: -110px;
  left: 230px;
  width: 320px;
  height: 320px;
  pointer-events: none;
}

.proof .section-eyebrow {
  top: 52px;
  color: #1f63ff;
}

.proof h2 {
  top: 88px;
  color: #08142e;
  font-size: 28px;
  line-height: 35px;
}

.proof__lead {
  position: absolute;
  top: 176px;
  left: 16px;
  right: 16px;
  color: rgba(26, 43, 71, 0.76);
  font-size: 16px;
  line-height: 23px;
}

.scenario-card {
  position: absolute;
  left: 16px;
  right: 16px;
  height: 214px;
  overflow: hidden;
  border-radius: var(--radius-card);
  color: #fff;
  box-shadow: 0 18px 36px rgba(13, 46, 115, 0.2);
  border: 1px solid rgba(72, 181, 255, 0.24);
}

.scenario-card--target {
  top: 246px;
  background: linear-gradient(90deg, #050f2b, #0857bd);
}

.scenario-card--developer {
  top: 482px;
  background: linear-gradient(90deg, #210f61, #2957eb);
}

.scenario-card__badge {
  position: absolute;
  top: 16px;
  left: 18px;
  height: 24px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  line-height: 12px;
}

.scenario-card--developer .scenario-card__badge {
  background: #4dbdff;
  color: #05122e;
}

.scenario-card__value {
  position: absolute;
  top: 52px;
  left: 18px;
  color: #fff;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 32px;
}

.scenario-card__context {
  position: absolute;
  top: 88px;
  left: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12.5px;
  line-height: 16px;
}

.scenario-card__timeline {
  position: absolute;
  top: 116px;
  left: 18px;
  width: calc(100% - 36px);
  height: 16px;
}

.scenario-card__times {
  position: absolute;
  top: 136px;
  left: 18px;
  right: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 600;
  line-height: 13px;
}

.scenario-card__times span:nth-child(2) { text-align: center; }
.scenario-card__times span:nth-child(3) { text-align: right; }

.scenario-card__multiple {
  position: absolute;
  top: 174px;
  left: 18px;
  height: 24px;
  display: flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(199, 255, 61, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: var(--lime);
  font-size: 10px;
  font-weight: 700;
  line-height: 12px;
}

.scenario-card--developer .scenario-card__multiple {
  border-color: rgba(51, 214, 255, 0.34);
  color: #6bebff;
}

.proof__cta { top: 744px; }

.proof__note {
  position: absolute;
  top: 814px;
  left: 16px;
  right: 16px;
  color: rgba(23, 43, 74, 0.58);
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}

.proof__footer {
  position: absolute;
  top: 874px;
  left: 16px;
  right: 16px;
  height: 70px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 27px;
  border-top: 1px solid rgba(18, 43, 82, 0.12);
}

.proof__brand {
  color: #075fc8;
  font-family: "Unbounded", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.proof__footer nav {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(20, 43, 77, 0.62);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
}

/* Floating Telegram entry point */

.floating-telegram {
  position: fixed;
  z-index: 50;
  right: max(16px, calc((100vw - 1440px) / 2 + 20px));
  bottom: max(16px, calc(env(safe-area-inset-bottom) + 12px));
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: linear-gradient(145deg, #21afff 0%, #0077e8 72%);
  box-shadow:
    0 16px 34px rgba(0, 105, 224, 0.38),
    0 0 0 5px rgba(0, 149, 255, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.36);
  color: #fff;
  opacity: 1;
  transition:
    opacity 260ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 180ms ease;
}

.floating-telegram::before {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(65, 188, 255, 0.26);
  border-radius: inherit;
  animation: telegram-ring 3.2s ease-out infinite;
  content: "";
  pointer-events: none;
}

.floating-telegram svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.floating-telegram span {
  display: none;
}

.motion-ready .floating-telegram {
  pointer-events: none;
  opacity: 0;
  transform: translateY(14px) scale(0.9);
}

.motion-ready .floating-telegram.is-visible {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.motion-ready .floating-telegram.is-visible.is-over-footer {
  pointer-events: none;
  opacity: 0;
  transform: translateY(14px) scale(0.9);
}

.floating-telegram:hover {
  transform: translateY(-3px);
  box-shadow:
    0 20px 40px rgba(0, 105, 224, 0.46),
    0 0 0 7px rgba(0, 149, 255, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.motion-ready .floating-telegram.is-visible:hover {
  transform: translateY(-3px) scale(1);
}

/* Motion stays additive: layout and content remain identical to Figma. */

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(12px);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0ms),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0ms);
}

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

@keyframes core-breathe {
  0%, 100% { transform: scale(1); filter: saturate(1); }
  50% { transform: scale(1.025); filter: saturate(1.08); }
}

@keyframes telegram-ring {
  0%, 35% { opacity: 0.5; transform: scale(0.88); }
  75%, 100% { opacity: 0; transform: scale(1.14); }
}

@keyframes hero-live-pulse {
  0%, 100% { opacity: 0.72; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes hero-request-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-0.7deg); }
  50% { transform: translate3d(0, -4px, 0) rotate(0deg); }
}

@media (max-width: 359px) {
  .hero { min-height: 706px; }
  .hero h1 { font-size: 21px; line-height: 27px; }
  .hero__eyebrow { font-size: 8.5px; letter-spacing: 0.01em; }
  .hero__lead { font-size: 13px; line-height: 18px; }
  .hero-demo__request,
  .hero-demo__result {
    left: 12px;
    right: 12px;
  }
  .hero-demo__result-copy strong { font-size: 10.5px; }
  .hero-demo__actions > span { font-size: 5.7px; }
  .benefit h2,
  .proof h2 { font-size: 25px; }
  .product h2,
  .pricing h2 { font-size: 24px; }
  .technology h2 { font-size: 23px; line-height: 30px; }
  .benefit-event > div { right: 12px; }
  .benefit-event strong { font-size: 12.5px; }
  .benefit-event p { font-size: 10.5px; line-height: 15px; }
  .tech-capability { width: calc(50% - 25px); }
  .request-card__facts span { padding-inline: 10px; }
  .primary-cta { padding-inline: 16px; font-size: 14px; }
  .pricing__cta,
  .proof__cta {
    height: 64px;
    padding: 10px 12px;
    font-size: 12.5px;
    line-height: 16px;
  }
  .price-feature b { width: 36px; flex-basis: 36px; }
  .price-feature span {
    min-width: 0;
    padding-right: 4px;
    font-size: 10.5px;
    line-height: 13px;
    white-space: nowrap;
  }
}

@media (max-width: 639px) {
  .section-eyebrow {
    top: 40px;
    gap: 7px;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0.03em;
  }

  .section-eyebrow::before {
    width: 16px;
    flex-basis: 16px;
  }

  .benefit .section-eyebrow,
  .product .section-eyebrow,
  .technology .section-eyebrow,
  .pricing .section-eyebrow,
  .proof .section-eyebrow {
    top: 40px;
  }

  .benefit,
  .product,
  .technology,
  .pricing,
  .proof {
    --section-heading-top: 70px;
    --section-lead-size: 14px;
    --section-lead-line: 20px;
  }

  .benefit h2,
  .product h2,
  .technology h2,
  .pricing h2,
  .proof h2 {
    top: var(--section-heading-top);
    font-size: 24px;
    line-height: 30px;
  }

  .benefit__lead,
  .product__lead,
  .technology__lead,
  .pricing__lead,
  .proof__lead {
    font-size: var(--section-lead-size);
    line-height: var(--section-lead-line);
  }

  .benefit { height: 640px; }
  .benefit__lead { top: 158px; }
  .benefit-timeline { top: 226px; }

  .product { height: 744px; }
  .product__lead { top: 158px; }
  .telegram-ui { top: 226px; }

  .technology { height: 758px; }
  .technology__lead { top: 188px; }
  .tech-core-card { top: 256px; }

  .pricing { height: 724px; }
  .pricing__backdrop { height: 724px; }
  .pricing__lead { top: 188px; }
  .price-card { top: 256px; }
  .pricing__cta { top: 615px; }
  .pricing__note { top: 687px; }

  .proof { height: 918px; }
  .proof__lead { top: 158px; }
  .scenario-card--target { top: 226px; }
  .scenario-card--developer { top: 460px; }
  .proof__cta { top: 704px; }
  .proof__note { top: 776px; }
  .proof__footer { top: 826px; }

  .pricing__cta,
  .proof__cta {
    height: 56px;
    padding: 16px;
    font-size: 16px;
    line-height: 20px;
  }
}

@media (max-width: 359px) {
  .benefit h2,
  .product h2,
  .technology h2 {
    font-size: 21px;
    line-height: 27px;
  }

  .pricing h2,
  .proof h2 {
    font-size: 21px;
    line-height: 27px;
  }

  .benefit { height: 634px; }
  .benefit__lead { top: 152px; }
  .benefit-timeline { top: 220px; }

  .product { height: 762px; }
  .product__lead { top: 152px; }
  .telegram-ui {
    top: 220px;
    height: 512px;
  }

  .request-card {
    height: 232px;
    padding: 12px;
  }

  .request-card__badge {
    width: 122px;
    height: 24px;
    font-size: 9.5px;
    line-height: 12px;
  }

  .request-card__meta {
    top: 48px;
    left: 12px;
    font-size: 9px;
    line-height: 12px;
  }

  .request-card__text {
    top: 68px;
    left: 12px;
    right: 12px;
    font-size: 12.5px;
    line-height: 17px;
  }

  .request-card__facts {
    top: 146px;
    left: 12px;
    gap: 6px;
  }

  .request-card__facts span {
    height: 24px;
    padding-inline: 10px;
    font-size: 9.5px;
    line-height: 12px;
  }

  .request-card__actions {
    top: 178px;
    left: 12px;
    right: 12px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .request-card__actions a {
    min-width: 0;
    height: 40px;
    padding-inline: 8px;
    font-size: 10px;
    line-height: 13px;
    white-space: nowrap;
  }

  .floating-telegram {
    right: 12px;
    bottom: max(12px, calc(env(safe-area-inset-bottom) + 10px));
    width: 50px;
    height: 50px;
  }

  .floating-telegram svg {
    width: 22px;
    height: 22px;
  }

  .request-card__actions a:last-child {
    box-shadow: 0 8px 16px rgba(0, 149, 255, 0.24);
  }

  .reply-draft {
    top: 327px;
    height: 158px;
  }

  .technology { height: 749px; }
  .technology__lead { top: 179px; }
  .tech-core-card { top: 247px; }

  .pricing { height: 707px; }
  .pricing__backdrop { height: 707px; }
  .pricing__lead { top: 179px; }
  .price-card { top: 247px; }
  .pricing__cta { top: 606px; }
  .pricing__note { top: 670px; }

  .proof { height: 924px; }
  .proof__lead { top: 152px; }
  .scenario-card--target { top: 240px; }
  .scenario-card--developer { top: 474px; }
  .proof__cta { top: 718px; }
  .proof__note { top: 782px; }
  .proof__footer { top: 832px; }

  .hero__cta,
  .pricing__cta,
  .proof__cta {
    height: 52px;
    padding: 16px;
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 329px) {
  .hero h1,
  .benefit h2,
  .product h2,
  .technology h2,
  .pricing h2,
  .proof h2 {
    font-size: 19px;
    line-height: 25px;
  }
}

@media (max-width: 639px) and (max-height: 740px) {
  .hero {
    min-height: 660px;
    height: 100svh;
  }

  .hero__header { top: 12px; }
  .hero__eyebrow { top: 76px; }
  .hero h1 { top: 103px; }
  .hero__lead { top: 191px; font-size: 13px; line-height: 18px; }
  .hero-demo { top: 260px; height: 244px; }
  .hero-demo__header { top: 10px; }
  .hero-demo__request { top: 43px; min-height: 80px; padding-block: 10px; }
  .hero-demo__request p { margin-bottom: 5px; }
  .hero-demo__request strong { font-size: 12px; line-height: 16px; }
  .hero-demo__beam { top: 121px; height: 24px; }
  .hero-demo__result { top: 146px; min-height: 72px; padding: 9px; }
  .hero__trust { top: 518px; }
  .hero__cta { top: 550px; height: 52px; }
  .hero__cta-note { top: 614px; }
}

@media (min-width: 360px) and (max-width: 639px) {
  .proof__cta {
    padding-inline: 16px;
    font-size: 16px;
  }
}

@media (min-width: 391px) {
  body { padding-inline: max(0px, env(safe-area-inset-left)); }
}

@media (min-width: 640px) {
  .landing-canvas {
    --section-gutter: clamp(32px, 5vw, 72px);
    --section-gap: clamp(30px, 5vw, 68px);
  }

  .hero {
    min-height: 650px;
    height: auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
    grid-template-rows: auto auto auto auto auto auto;
    column-gap: var(--section-gap);
    align-content: start;
    padding: 112px var(--section-gutter) 52px;
  }

  .hero__backdrop {
    width: 100%;
    height: 100%;
    object-position: center 44%;
  }

  .hero__scrim {
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.68) 0%, rgba(245, 251, 255, 0.36) 48%, rgba(231, 246, 255, 0.08) 100%);
  }

  .hero__header {
    top: 24px;
    left: var(--section-gutter);
    right: var(--section-gutter);
    height: 56px;
    padding-left: 18px;
  }

  .hero__header-cta {
    width: 170px;
    height: 42px;
  }

  .hero__eyebrow,
  .hero h1,
  .hero__lead,
  .hero-demo,
  .hero__trust,
  .hero__cta,
  .hero__cta-note {
    position: relative;
    inset: auto;
  }

  .hero__eyebrow {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    font-size: 10px;
    white-space: normal;
  }

  .hero h1 {
    grid-column: 1;
    grid-row: 2;
    margin-top: 24px;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.17;
  }

  .hero__lead {
    grid-column: 1;
    grid-row: 3;
    max-width: 500px;
    margin-top: 32px;
    font-size: clamp(14px, 1.7vw, 18px);
    line-height: 1.5;
  }

  .hero-demo {
    width: 100%;
    height: 370px;
    min-width: 0;
    grid-column: 2;
    grid-row: 1 / span 6;
    align-self: center;
    margin-top: 10px;
  }

  .hero-demo__request {
    top: 70px;
    left: 24px;
    right: 24px;
    min-height: 108px;
    padding: 17px 18px;
  }

  .hero-demo__request strong {
    font-size: 15px;
    line-height: 21px;
  }

  .hero-demo__beam {
    top: 175px;
    height: 44px;
  }

  .hero-demo__result {
    top: 220px;
    left: 24px;
    right: 24px;
    min-height: 96px;
    padding: 15px;
  }

  .hero-demo__result-copy strong {
    font-size: 14px;
    line-height: 19px;
  }

  .hero__trust {
    grid-column: 1;
    grid-row: 4;
    margin-top: 22px;
    text-align: left;
  }

  .hero__cta {
    width: min(100%, 360px);
    grid-column: 1;
    grid-row: 5;
    padding-inline: 12px;
    margin-top: 22px;
    font-size: 13px;
  }

  .hero__cta-note {
    width: min(100%, 360px);
    grid-column: 1;
    grid-row: 6;
    margin-top: 12px;
  }

  .benefit,
  .product,
  .technology,
  .pricing {
    height: auto;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(310px, 1.18fr);
    grid-template-rows: auto auto auto 1fr;
    column-gap: var(--section-gap);
    align-content: center;
    padding: 64px var(--section-gutter);
  }

  .benefit { min-height: 600px; }
  .product { min-height: 650px; }
  .technology { min-height: 690px; }
  .pricing { min-height: 680px; }

  .benefit .section-eyebrow,
  .benefit h2,
  .benefit__lead,
  .benefit-timeline,
  .product .section-eyebrow,
  .product h2,
  .product__lead,
  .telegram-ui,
  .technology .section-eyebrow,
  .technology h2,
  .technology__lead,
  .tech-core-card,
  .pricing .section-eyebrow,
  .pricing h2,
  .pricing__lead,
  .price-card,
  .pricing__cta,
  .pricing__note {
    position: relative;
    inset: auto;
  }

  .benefit .section-eyebrow,
  .product .section-eyebrow,
  .technology .section-eyebrow,
  .pricing .section-eyebrow {
    grid-column: 1;
    grid-row: 1;
  }

  .benefit h2,
  .product h2,
  .technology h2,
  .pricing h2 {
    grid-column: 1;
    grid-row: 2;
    margin-top: 22px;
    font-size: clamp(25px, 3.2vw, 39px);
    line-height: 1.22;
  }

  .benefit__lead,
  .product__lead,
  .technology__lead,
  .pricing__lead {
    width: auto;
    grid-column: 1;
    grid-row: 3;
    margin-top: 28px;
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.5;
  }

  .benefit-timeline,
  .telegram-ui,
  .tech-core-card,
  .price-card {
    width: 100%;
    grid-column: 2;
    grid-row: 1 / span 4;
    align-self: center;
  }

  .benefit-timeline {
    height: 440px;
  }

  .benefit-timeline__rail {
    top: 70px;
    height: 314px;
  }

  .benefit-event--one { top: 64px; }
  .benefit-event--two { top: 177px; }
  .benefit-event--three { top: 290px; }

  .telegram-ui {
    height: 500px;
  }

  .tech-core-card {
    height: 500px;
  }

  .tech-capability {
    width: min(152px, calc(50% - 24px));
  }

  .tech-core-card__connectors {
    top: 14px;
    left: calc(50% - 179px);
  }

  .tech-core-card__orbit--outer { top: 154px; }
  .tech-core-card__orbit--inner { top: 170px; }
  .tech-core-card__orb { top: 143px; }
  .tech-core-card__label { top: 241px; }
  .tech-capability--queue,
  .tech-capability--privacy { top: 389px; }

  .pricing__backdrop {
    width: 100%;
    height: 100%;
    object-position: center;
  }

  .pricing__scrim {
    inset: 0;
    width: 100%;
    height: 100%;
    background:
      linear-gradient(90deg, rgba(3, 6, 15, 0.98) 0%, rgba(3, 6, 15, 0.82) 48%, rgba(3, 6, 15, 0.36) 100%);
  }

  .price-card {
    height: 350px;
  }

  .pricing__cta {
    width: min(100%, 360px);
    height: 64px;
    grid-column: 1;
    grid-row: 4;
    margin-top: 36px;
    align-self: start;
    padding: 10px 12px;
    font-size: 13px;
  }

  .pricing__note {
    width: min(100%, 360px);
    grid-column: 1;
    grid-row: 4;
    align-self: start;
    margin-top: 114px;
  }

  .proof {
    min-height: 760px;
    height: auto;
  }

  .proof .section-eyebrow,
  .proof h2,
  .proof__lead,
  .proof__cta,
  .proof__note {
    left: var(--section-gutter);
    right: auto;
    width: calc(48% - var(--section-gutter));
  }

  .proof .section-eyebrow { top: 72px; }

  .proof h2 {
    top: 112px;
    font-size: clamp(26px, 3.3vw, 42px);
    line-height: 1.22;
  }

  .proof__lead {
    top: 214px;
    font-size: clamp(15px, 1.7vw, 18px);
    line-height: 1.5;
  }

  .scenario-card {
    left: 52%;
    right: var(--section-gutter);
    height: 214px;
  }

  .scenario-card--target { top: 72px; }
  .scenario-card--developer { top: 310px; }

  .proof__cta {
    top: 350px;
    max-width: 360px;
    padding-inline: 12px;
    font-size: 13px;
  }

  .proof__note {
    top: 422px;
    max-width: 360px;
  }

  .proof__footer {
    top: auto;
    bottom: 0;
    left: var(--section-gutter);
    right: var(--section-gutter);
    height: 92px;
    padding-top: 32px;
  }
}

@media (min-width: 1000px) {
  .landing-canvas {
    --section-gutter: max(56px, calc((100% - 1180px) / 2));
    --section-gap: clamp(64px, 7vw, 112px);
  }

  .hero {
    min-height: 720px;
    grid-template-columns: minmax(0, 1fr) minmax(430px, 1fr);
    padding-top: 132px;
    padding-bottom: 64px;
  }

  .hero__eyebrow { font-size: 11px; }
  .hero h1 { font-size: clamp(34px, 3.4vw, 48px); }
  .hero-demo {
    max-width: 590px;
    height: 410px;
    justify-self: end;
  }

  .hero-demo__request {
    top: 78px;
    left: 28px;
    right: 28px;
  }

  .hero-demo__beam { top: 184px; height: 58px; }
  .hero-demo__result { top: 243px; left: 28px; right: 28px; min-height: 104px; }

  .benefit,
  .product,
  .technology,
  .pricing {
    grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
    padding-block: 76px;
  }

  .benefit { min-height: 620px; }
  .product { min-height: 680px; }
  .technology { min-height: 720px; }
  .pricing { min-height: 700px; }

  .telegram-ui,
  .benefit-timeline,
  .tech-core-card,
  .price-card {
    max-width: 590px;
    justify-self: end;
  }

  .request-card__text { font-size: 15px; }

  .hero__cta,
  .pricing__cta,
  .proof__cta {
    padding-inline: 24px;
    font-size: 16px;
  }

  .pricing__cta { height: 56px; }

  .floating-telegram {
    width: auto;
    min-width: 174px;
    padding: 0 20px;
    gap: 10px;
  }

  .floating-telegram span {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.01em;
  }
}

@media (min-width: 640px) and (max-height: 500px) {
  .hero {
    min-height: 100svh;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 1fr);
    padding-top: 72px;
    padding-bottom: 18px;
  }

  .hero__header {
    top: 12px;
    height: 48px;
  }

  .hero__header-cta { height: 36px; }
  .hero h1 {
    margin-top: 10px;
    font-size: clamp(22px, 3.35vw, 28px);
    line-height: 1.18;
  }

  .hero__lead {
    margin-top: 24px;
    font-size: 12px;
    line-height: 17px;
  }

  .hero-demo {
    height: 264px;
    margin-top: 0;
  }

  .hero-demo__header { top: 10px; }
  .hero-demo__request { top: 40px; min-height: 80px; padding-block: 10px; }
  .hero-demo__request p { margin-bottom: 5px; }
  .hero-demo__request strong { font-size: 12px; line-height: 16px; }
  .hero-demo__beam { top: 118px; height: 24px; }
  .hero-demo__result { top: 143px; min-height: 74px; padding: 10px; }
  .hero__trust { margin-top: 10px; }
  .hero__cta { height: 48px; margin-top: 10px; }
  .hero__cta-note { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .motion-ready .reveal { opacity: 1; transform: none; }
}
