:root {
  --navy: #012243;
  --navy-deep: #001426;
  --navy-ink: #031a2e;
  --navy-soft: #082f50;
  --gold: #ffca08;
  --gold-soft: #ffe37b;
  --red: #c71f36;
  --orange: #cf681a;
  --cream: #f5f3ec;
  --white: #ffffff;
  --ink: #071c2e;
  --muted: #a8b9c8;
  --muted-dark: #566576;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 30px 80px rgba(0, 10, 22, 0.3);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1160px;
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--navy-deep);
  color: var(--white);
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

bdi {
  direction: ltr;
  unicode-bidi: isolate;
}

::selection {
  background: var(--gold);
  color: var(--navy-deep);
}

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

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

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  inset-inline-start: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 1500;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.04);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transform: scaleX(0);
  transform-origin: right center;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: 76px;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(1, 34, 67, 0.9);
  box-shadow: 0 10px 40px rgba(0, 10, 22, 0.18);
  backdrop-filter: blur(18px);
}

.nav-shell {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: visible;
  border-radius: 13px;
  background: transparent;
}

.brand-logo {
  display: none;
}

.brand-mark {
  width: 39px;
  height: 44px;
  object-fit: contain;
}

.menu-toggle {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 200ms ease, top 200ms ease;
}

.menu-toggle span:first-child {
  top: 18px;
}

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

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

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

.nav-links {
  position: absolute;
  top: 68px;
  right: 0;
  left: 0;
  display: grid;
  gap: 2px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: rgba(1, 28, 52, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.nav-links.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-links a {
  position: relative;
  padding: 13px 16px;
  border-radius: 12px;
  color: #d9e3eb;
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  background: rgba(255, 202, 8, 0.09);
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 126px 0 64px;
  background:
    radial-gradient(circle at 80% 22%, rgba(255, 202, 8, 0.08), transparent 30%),
    linear-gradient(145deg, #012243 0%, #011c36 54%, #001426 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 202, 8, 0.38), transparent);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(5px);
  pointer-events: none;
}

.hero-glow-one {
  top: -180px;
  inset-inline-end: -140px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(255, 202, 8, 0.1), transparent 68%);
}

.hero-glow-two {
  bottom: -240px;
  inset-inline-start: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(199, 31, 54, 0.09), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 68px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  border-radius: 10px;
  background: var(--gold);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 11.4vw, 4.2rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.hero h1 em {
  display: block;
  color: var(--gold);
  font-style: normal;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 28px;
  color: #bdcad5;
  font-size: clamp(1rem, 2.6vw, 1.15rem);
  line-height: 1.95;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #e9eff4;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-points span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  box-shadow: 0 0 0 4px rgba(255, 202, 8, 0.09);
}

.hero-visual {
  position: relative;
  width: min(100%, 450px);
  height: 510px;
  margin-inline: auto;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 202, 8, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 380px;
  height: 380px;
}

.orbit-two {
  width: 470px;
  height: 470px;
  border-color: rgba(255, 255, 255, 0.055);
}

.phone-frame {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 270px;
  height: 492px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 42px;
  background: linear-gradient(145deg, #183d59, #001425 70%);
  box-shadow: 0 38px 85px rgba(0, 7, 17, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: translate(-50%, -50%) rotate(-2deg);
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 50%;
  width: 72px;
  height: 18px;
  border-radius: 20px;
  background: #00111f;
  transform: translateX(-50%);
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 34px;
  background: #edf3f7;
  color: var(--ink);
}

.phone-status {
  display: flex;
  height: 43px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 17px 8px;
  color: #657585;
  font-size: 0.61rem;
  font-weight: 700;
}

.phone-status .online {
  display: flex;
  align-items: center;
  gap: 5px;
}

.phone-status .online i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #25a86a;
}

.bot-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px 12px;
  border-bottom: 1px solid #d8e1e8;
  background: rgba(255, 255, 255, 0.9);
}

.bot-header img {
  width: 39px;
  height: 39px;
  border-radius: 12px;
  object-fit: cover;
}

.bot-header div {
  display: grid;
  gap: 2px;
}

.bot-header strong {
  font-size: 0.82rem;
}

.bot-header small {
  color: #7d8a96;
  font-size: 0.58rem;
}

.chat-area {
  min-height: calc(100% - 104px);
  padding: 23px 14px;
  background:
    radial-gradient(circle at 10px 10px, rgba(1, 34, 67, 0.035) 1px, transparent 1px),
    #edf3f7;
  background-size: 20px 20px;
}

.message-bubble {
  width: 82%;
  margin-inline-end: auto;
  padding: 12px 13px;
  border-radius: 15px 15px 15px 4px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(4, 35, 59, 0.07);
  font-size: 0.69rem;
  font-weight: 700;
  line-height: 1.7;
}

.category-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 13px;
}

.category-row span {
  padding: 9px 4px;
  border: 1px solid #d8e2e9;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.72);
  color: #41576a;
  font-size: 0.57rem;
  font-weight: 800;
  text-align: center;
}

.category-row span:first-child {
  border-color: rgba(255, 202, 8, 0.72);
  background: var(--gold);
  color: var(--navy);
}

.order-card {
  margin-top: 15px;
  padding: 15px 13px;
  border-radius: 17px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 16px 28px rgba(1, 34, 67, 0.18);
}

.order-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-card-top div {
  display: grid;
  gap: 3px;
}

.order-card-top small {
  color: #9cb1c2;
  font-size: 0.55rem;
}

.order-card-top strong {
  font-size: 0.72rem;
}

.order-number {
  direction: ltr;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
}

.order-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 19px 8px 8px;
}

.order-track span {
  position: relative;
  height: 3px;
  background: rgba(255, 255, 255, 0.14);
}

.order-track span::after {
  position: absolute;
  top: 50%;
  inset-inline-end: -4px;
  width: 8px;
  height: 8px;
  border: 2px solid #536b7e;
  border-radius: 50%;
  background: var(--navy);
  content: "";
  transform: translateY(-50%);
}

.order-track span.done {
  background: var(--gold);
}

.order-track span.done::after,
.order-track span.active::after {
  border-color: var(--gold);
  background: var(--gold);
}

.order-track span.active::after {
  box-shadow: 0 0 0 5px rgba(255, 202, 8, 0.13);
}

.order-labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: #8fa4b5;
  font-size: 0.49rem;
  text-align: center;
}

.float-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 168px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(5, 37, 63, 0.88);
  box-shadow: 0 22px 50px rgba(0, 9, 20, 0.35);
  backdrop-filter: blur(14px);
}

.float-card-top {
  top: 42px;
  inset-inline-start: -2px;
}

.float-card-bottom {
  right: -2px;
  bottom: 42px;
}

.float-card div {
  display: grid;
  gap: 2px;
}

.float-card small {
  color: #93a9ba;
  font-size: 0.58rem;
}

.float-card strong {
  font-size: 0.72rem;
}

.float-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(255, 202, 8, 0.1), 0 0 24px rgba(255, 202, 8, 0.55);
}

.telegram-ring {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 202, 8, 0.55);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 900;
}

.snapshot-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 74px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 60px rgba(0, 10, 22, 0.18);
}

.snapshot-grid article {
  display: grid;
  min-height: 116px;
  align-content: center;
  gap: 8px;
  padding: 20px;
  background: rgba(2, 31, 56, 0.9);
}

.snapshot-grid strong {
  color: var(--gold);
  font-size: clamp(0.92rem, 2.6vw, 1.06rem);
}

.snapshot-grid span {
  color: #9eb0bf;
  font-size: 0.72rem;
  line-height: 1.55;
}

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

.section > .container {
  position: relative;
  z-index: 1;
}

.section-light {
  background: var(--cream);
  color: var(--ink);
}

.section-light::before,
.section-system::before,
.revenue-section::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  height: 42px;
  content: "";
  pointer-events: none;
}

.section-light::before {
  background: linear-gradient(
    180deg,
    rgba(0, 20, 38, 0.13) 0%,
    rgba(0, 20, 38, 0.045) 44%,
    rgba(0, 20, 38, 0) 100%
  );
}

.section-system::before,
.revenue-section::before {
  background: linear-gradient(
    180deg,
    rgba(245, 243, 236, 0.1) 0%,
    rgba(245, 243, 236, 0.025) 44%,
    rgba(245, 243, 236, 0) 100%
  );
}

.section-heading,
.readiness-intro {
  display: grid;
  gap: 18px;
  margin-bottom: 48px;
}

.section-heading h2,
.readiness-intro h2,
.brand-copy h2,
.closing-content h2 {
  max-width: 740px;
  margin-bottom: 0;
  font-size: clamp(2rem, 7.6vw, 3.5rem);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.section-heading > p,
.readiness-intro > p,
.brand-copy > p {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 0.98rem;
  line-height: 1.95;
}

.section-heading-dark > p {
  color: var(--muted);
}

.solution-layout {
  display: grid;
  gap: 18px;
}

.zero-card,
.comparison-card {
  border: 1px solid rgba(7, 28, 46, 0.1);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 20px 45px rgba(5, 30, 50, 0.07);
}

.zero-card {
  display: grid;
  min-height: 300px;
  align-content: space-between;
  padding: 26px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.zero-number {
  color: var(--gold);
  font-size: clamp(6rem, 35vw, 11rem);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.08em;
}

.zero-card h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.zero-card p {
  margin-bottom: 0;
  color: #b2c2ce;
  font-size: 0.88rem;
  line-height: 1.8;
}

.comparison-card {
  padding: 10px 22px;
}

.comparison-head,
.comparison-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(7, 28, 46, 0.09);
}

.comparison-head {
  padding-block: 21px;
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-head span,
.comparison-row span {
  color: #647383;
  font-size: 0.82rem;
}

.comparison-head strong {
  color: var(--red);
  font-size: 0.92rem;
}

.comparison-row strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
}

.comparison-row strong::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #20a46c;
  content: "";
  box-shadow: 0 0 0 4px rgba(32, 164, 108, 0.1);
}

.benefit-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(7, 28, 46, 0.1);
  border-radius: 999px;
  color: #35485a;
  font-size: 0.8rem;
  font-weight: 800;
}

.benefit-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.telegram-presence {
  display: grid;
  gap: 28px;
  margin-top: 20px;
  padding: 28px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 202, 8, 0.12), transparent 32%),
    var(--navy);
  box-shadow: 0 24px 55px rgba(5, 30, 50, 0.13);
  color: var(--white);
}

.telegram-presence-copy small {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
}

.telegram-presence-copy h3 {
  max-width: 690px;
  margin: 10px 0 12px;
  font-size: clamp(1.4rem, 5.5vw, 2.15rem);
  line-height: 1.45;
}

.telegram-presence-copy p {
  max-width: 760px;
  margin-bottom: 0;
  color: #b8c7d2;
  font-size: 0.9rem;
  line-height: 1.95;
}

.telegram-uses {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.telegram-uses li {
  padding: 9px 12px;
  border: 1px solid rgba(255, 202, 8, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #e8eef3;
  font-size: 0.72rem;
  font-weight: 800;
}

.section-system {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 202, 8, 0.055), transparent 25%),
    var(--navy-deep);
}

.ecosystem-grid {
  display: grid;
  gap: 14px;
}

.actor-card,
.system-core {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
}

.actor-card {
  display: flex;
  min-height: 146px;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.actor-card:hover {
  border-color: rgba(255, 202, 8, 0.35);
  background: rgba(255, 255, 255, 0.055);
  transform: translateY(-3px);
}

.actor-number {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
}

.actor-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.actor-card p {
  margin-bottom: 0;
  color: #9fb1bf;
  font-size: 0.82rem;
  line-height: 1.75;
}

.system-core {
  display: grid;
  min-height: 290px;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 28px;
  background: linear-gradient(160deg, rgba(255, 202, 8, 0.12), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 0 0 1px rgba(255, 202, 8, 0.04);
  text-align: center;
}

.system-core img {
  width: 112px;
  height: 124px;
  padding: 9px;
  border: 1px solid rgba(255, 202, 8, 0.22);
  border-radius: 28px;
  background: rgba(0, 20, 38, 0.46);
  object-fit: contain;
  box-shadow: 0 20px 45px rgba(0, 9, 20, 0.32);
}

.core-label {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.system-core small {
  color: #9fb1bf;
  font-size: 0.66rem;
  font-weight: 700;
}

.core-flow {
  display: flex;
  direction: ltr;
  align-items: center;
}

.core-flow span {
  width: 7px;
  height: 7px;
  border: 2px solid #6c8191;
  border-radius: 50%;
}

.core-flow span.active {
  border-color: var(--gold);
  background: var(--gold);
}

.core-flow i {
  width: 25px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.section-readiness {
  background: var(--navy);
}

.readiness-intro > p {
  color: var(--muted);
}

.team-grid {
  display: grid;
  gap: 14px;
}

.team-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
}

.team-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  content: "";
  transition: width 250ms ease;
}

.team-card:hover::after {
  width: 100%;
}

.team-card > span {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
}

.team-card h3 {
  margin-bottom: 9px;
  font-size: 1.06rem;
}

.team-card p {
  margin-bottom: 0;
  color: #9fb1bf;
  font-size: 0.81rem;
  line-height: 1.75;
}

.brand-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 65%, rgba(199, 31, 54, 0.12), transparent 30%),
    linear-gradient(125deg, #03192c, #062d4a 70%, #05203a);
}

.brand-section::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 202, 8, 0.3), transparent);
}

.brand-section-grid {
  display: grid;
  gap: 50px;
  align-items: center;
}

.brand-copy > p {
  color: #aebdca;
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.brand-tags span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #dbe4eb;
  font-size: 0.74rem;
  font-weight: 700;
}

.brand-stage {
  position: relative;
  margin: 0;
  width: 100%;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  background: #020d18;
  box-shadow: 0 30px 80px rgba(0, 8, 17, 0.38);
}

.brand-stage::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 10, 20, 0.82));
  content: "";
}

.brand-stage > img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: 52% center;
}

.brand-stage figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: grid;
  gap: 6px;
}

.brand-stage figcaption span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
}

.brand-stage figcaption strong {
  max-width: 430px;
  font-size: clamp(0.95rem, 3vw, 1.25rem);
  line-height: 1.6;
}

.growth-section {
  overflow: hidden;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.timeline::before {
  position: absolute;
  top: 20px;
  bottom: 20px;
  inset-inline-start: 23px;
  width: 1px;
  background: rgba(7, 28, 46, 0.13);
  content: "";
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding-bottom: 36px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.step-marker {
  position: relative;
  z-index: 2;
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border: 1px solid rgba(7, 28, 46, 0.12);
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 10px 25px rgba(5, 30, 50, 0.08);
}

.step-marker span {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 900;
}

.step-content {
  padding-top: 2px;
}

.step-content small {
  color: var(--red);
  font-size: 0.67rem;
  font-weight: 900;
}

.step-content h3 {
  margin: 7px 0 8px;
  font-size: 1.1rem;
}

.step-content p {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 0.8rem;
  line-height: 1.75;
}

.revenue-section {
  background: var(--navy-deep);
}

.revenue-primary,
.revenue-secondary {
  display: grid;
  gap: 14px;
}

.revenue-primary {
  margin-bottom: 14px;
}

.revenue-card {
  display: flex;
  min-height: 230px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
}

.revenue-card-featured {
  border-color: rgba(255, 202, 8, 0.22);
  background: linear-gradient(145deg, rgba(255, 202, 8, 0.14), rgba(255, 255, 255, 0.03));
}

.revenue-index {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
}

.revenue-card div {
  align-self: flex-end;
}

.revenue-card small,
.expansion-band small {
  color: #8fa5b6;
  font-size: 0.68rem;
  font-weight: 800;
}

.revenue-card h3 {
  margin: 8px 0 9px;
  font-size: 1.45rem;
}

.revenue-card p,
.mini-revenue p {
  margin-bottom: 0;
  color: #9fb1bf;
  font-size: 0.8rem;
  line-height: 1.75;
}

.mini-revenue {
  min-height: 165px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
}

.mini-revenue > span {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 900;
}

.mini-revenue h3 {
  margin: 30px 0 7px;
  font-size: 1rem;
}

.expansion-band {
  display: grid;
  gap: 22px;
  margin-top: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
}

.expansion-band > div:first-child {
  display: grid;
  gap: 6px;
}

.expansion-band strong {
  font-size: 1rem;
}

.expansion-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.expansion-items span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 202, 8, 0.2);
  border-radius: 999px;
  color: #dfe8ef;
  font-size: 0.7rem;
  font-weight: 700;
}

.revenue-evolution {
  position: relative;
  margin-top: 14px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 202, 8, 0.22);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 8% 15%, rgba(255, 202, 8, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(255, 202, 8, 0.07), rgba(255, 255, 255, 0.025));
}

.evolution-label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
}

.evolution-label i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(255, 202, 8, 0.1), 0 0 24px rgba(255, 202, 8, 0.38);
}

.revenue-evolution h3 {
  margin: 18px 0 10px;
  font-size: clamp(1.45rem, 5vw, 2.3rem);
  line-height: 1.45;
}

.revenue-evolution p {
  max-width: 880px;
  margin-bottom: 0;
  color: #aebfcc;
  font-size: 0.9rem;
  line-height: 1.95;
}

.funding-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.36), transparent 25%),
    var(--gold);
}

.funding-section::before {
  position: absolute;
  top: -160px;
  left: -120px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(1, 34, 67, 0.1);
  border-radius: 50%;
  content: "";
}

.funding-panel {
  position: relative;
  z-index: 2;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: var(--navy-deep);
  box-shadow: 0 36px 90px rgba(62, 41, 0, 0.23);
}

.funding-total,
.funding-breakdown {
  padding: 30px;
}

.funding-total {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.funding-total .section-kicker {
  margin-bottom: 28px;
}

.funding-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 202, 8, 0.25);
  border-radius: 999px;
  background: rgba(255, 202, 8, 0.07);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
}

.funding-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(255, 202, 8, 0.1);
}

.funding-total h2 {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--white);
  font-size: clamp(2.15rem, 9vw, 4.6rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.funding-intro {
  max-width: 510px;
  margin: 20px 0 0;
  color: #9fb1bf;
  font-size: 0.86rem;
  line-height: 1.9;
}

.funding-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.funding-principles span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #dce6ed;
  font-size: 0.68rem;
  font-weight: 700;
}

.funding-breakdown {
  display: grid;
  align-content: center;
}

.funding-breakdown article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.funding-breakdown article div {
  display: grid;
  gap: 5px;
}

.funding-breakdown article small {
  color: #8fa5b6;
  font-size: 0.68rem;
}

.funding-breakdown article strong {
  font-size: 0.9rem;
}

.funding-step {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 202, 8, 0.22);
  border-radius: 12px;
  background: rgba(255, 202, 8, 0.07);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
}

.funding-breakdown article p {
  margin: 6px 0 0;
  color: #92a6b6;
  font-size: 0.72rem;
  line-height: 1.75;
}

.funding-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(255, 202, 8, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 202, 8, 0.055);
}

.funding-note > span {
  align-self: start;
  padding: 5px 7px;
  border-radius: 7px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.6rem;
  font-weight: 900;
}

.funding-note p {
  margin-bottom: 0;
  color: #afbec9;
  font-size: 0.72rem;
  line-height: 1.8;
}

.closing-section {
  min-height: 650px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    var(--navy);
  background-size: 42px 42px;
}

.closing-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 202, 8, 0.12), transparent 67%);
  transform: translateX(-50%);
  pointer-events: none;
}

.closing-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
}

.closing-content h2 {
  max-width: 870px;
}

.closing-content h2 span {
  display: block;
  color: var(--gold);
}

.closing-pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin: 34px 0 48px;
}

.closing-pillars span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #dce6ed;
  font-size: 0.74rem;
  font-weight: 700;
}

.closing-pillars i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.closing-content blockquote {
  max-width: 820px;
  margin-bottom: 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #aebecb;
  font-size: clamp(1.25rem, 4.8vw, 2rem);
  font-weight: 700;
  line-height: 1.8;
}

.closing-content blockquote strong {
  display: block;
  color: var(--white);
}

.site-footer {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--navy-deep);
}

.footer-inner {
  display: grid;
  gap: 22px;
  justify-items: center;
  text-align: center;
}

.footer-inner img {
  width: 140px;
  height: auto;
  object-fit: contain;
}

.footer-inner div {
  display: grid;
  gap: 6px;
}

.footer-inner span {
  color: #d7e0e7;
  font-size: 0.76rem;
  font-weight: 800;
}

.footer-inner small {
  color: #71889a;
  font-size: 0.65rem;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.motion-ready .delay-1 {
  transition-delay: 100ms;
}

.motion-ready .delay-2 {
  transition-delay: 180ms;
}

.motion-ready .delay-3 {
  transition-delay: 260ms;
}

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

  .hero {
    padding-top: 142px;
  }

  .hero-visual {
    height: 550px;
  }

  .phone-frame {
    width: 292px;
    height: 528px;
  }

  .snapshot-grid article {
    padding: 24px;
  }

  .team-grid,
  .revenue-secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .funding-total,
  .funding-breakdown {
    padding: 42px;
  }
}

@media (min-width: 760px) {
  .section {
    padding: 118px 0;
  }

  .section-heading,
  .readiness-intro {
    grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 64px;
  }

  .solution-layout,
  .revenue-primary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zero-card,
  .comparison-card {
    min-height: 390px;
  }

  .zero-card {
    padding: 34px;
  }

  .comparison-card {
    padding-inline: 32px;
  }

  .telegram-presence {
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    align-items: end;
    padding: 36px;
  }

  .telegram-uses {
    align-content: flex-end;
  }

  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .brand-stage {
    min-height: 500px;
  }

  .brand-stage > img {
    min-height: 500px;
  }

  .timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .timeline::before {
    top: 24px;
    right: 23px;
    bottom: auto;
    left: 23px;
    width: auto;
    height: 1px;
  }

  .timeline-step {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 0;
  }

  .timeline-step:nth-child(2),
  .timeline-step:nth-child(4) {
    padding-top: 56px;
  }

  .step-marker {
    width: 49px;
    height: 49px;
  }

  .revenue-secondary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .expansion-band {
    grid-template-columns: minmax(260px, 0.8fr) 1.2fr;
    align-items: center;
    padding: 28px;
  }

  .expansion-items {
    justify-content: flex-end;
  }

  .revenue-evolution {
    padding: 36px;
  }

  .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: right;
  }
}

@media (min-width: 960px) {
  .site-header {
    height: 82px;
  }

  .brand {
    width: 170px;
    height: 54px;
    border-radius: 0;
  }

  .brand-logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .brand-mark {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    gap: 2px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-links a {
    padding: 10px 12px;
    color: #aebdca;
    font-size: 0.75rem;
  }

  .hero {
    padding-top: 154px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(400px, 0.88fr);
    gap: 62px;
  }

  .hero h1 {
    font-size: clamp(3.75rem, 6vw, 5.65rem);
  }

  .hero-visual {
    height: 580px;
  }

  .snapshot-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 62px;
  }

  .snapshot-grid article {
    min-height: 124px;
  }

  .ecosystem-grid {
    grid-template-areas:
      "customer core restaurant"
      "delivery core callcenter";
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr) minmax(0, 1fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .actor-customer { grid-area: customer; }
  .actor-restaurant { grid-area: restaurant; }
  .actor-delivery { grid-area: delivery; }
  .actor-callcenter { grid-area: callcenter; }
  .system-core { grid-area: core; }

  .actor-card {
    min-height: 188px;
    align-items: flex-start;
    padding: 25px;
  }

  .system-core {
    min-height: auto;
  }

  .brand-section-grid {
    grid-template-columns: minmax(0, 0.86fr) minmax(450px, 1.14fr);
    gap: 80px;
  }

  .funding-panel {
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  }

  .funding-total {
    border-bottom: 0;
    border-inline-end: 1px solid rgba(255, 255, 255, 0.1);
  }

  .funding-total,
  .funding-breakdown {
    padding: 58px;
  }
}

@media (min-width: 1200px) {
  .nav-links a {
    padding-inline: 15px;
    font-size: 0.78rem;
  }

  .phone-frame {
    width: 305px;
    height: 552px;
  }

  .hero-visual {
    width: 500px;
  }

  .orbit-one {
    width: 430px;
    height: 430px;
  }

  .orbit-two {
    width: 520px;
    height: 520px;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .hero-visual {
    height: 470px;
  }

  .phone-frame {
    width: 238px;
    height: 448px;
  }

  .float-card {
    min-width: 144px;
    padding: 10px;
  }

  .float-card-top {
    inset-inline-start: -8px;
  }

  .float-card-bottom {
    right: -8px;
  }

  .float-card strong {
    font-size: 0.63rem;
  }

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

  .benefit-strip i {
    display: none;
  }
}

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

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

/* Larger yellow section labels and index numbers */
.eyebrow,
.section-kicker,
.telegram-presence-copy small,
.brand-stage figcaption span,
.evolution-label,
.funding-badge {
  font-size: 1rem;
}

.actor-number,
.team-card > span,
.revenue-index,
.mini-revenue > span,
.funding-step {
  font-size: 0.95rem;
}
