:root {
  color-scheme: dark;
  --bg: #050807;
  --bg-2: #08150f;
  --panel: rgba(13, 18, 15, 0.78);
  --panel-strong: #101613;
  --line: rgba(99, 255, 151, 0.23);
  --line-soft: rgba(255, 255, 255, 0.12);
  --text: #f3fff7;
  --muted: #9ba8a0;
  --green: #20c933;
  --green-2: #00a95c;
  --mint: #64ff9a;
  --amber: #ffad00;
  --blue: #19a7ff;
  --violet: #b066ff;
  --radius-sm: 8px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
  --display: "Avenir Next", "DIN Alternate", "PingFang SC", "Microsoft YaHei", sans-serif;
  --body: "SF Pro Text", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    linear-gradient(180deg, rgba(9, 33, 18, 0.66) 0%, rgba(5, 8, 7, 0.94) 46%, #050807 100%),
    repeating-linear-gradient(90deg, rgba(100, 255, 154, 0.035) 0 1px, transparent 1px 92px),
    #050807;
  color: var(--text);
  font-family: var(--body);
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.46;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
  z-index: -1;
}

body.theme-light {
  color-scheme: light;
  --bg: #eef4f0;
  --bg-2: #ffffff;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: #ffffff;
  --line: rgba(0, 169, 92, 0.23);
  --line-soft: rgba(5, 8, 7, 0.1);
  --text: #07100b;
  --muted: #657169;
  --shadow: 0 26px 80px rgba(14, 72, 42, 0.16);
  background:
    linear-gradient(180deg, rgba(216, 244, 224, 0.86) 0%, #f6faf7 46%, #eff4f1 100%),
    repeating-linear-gradient(90deg, rgba(0, 169, 92, 0.055) 0 1px, transparent 1px 92px),
    #f6faf7;
}

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

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

img,
svg {
  display: block;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  transform: translateY(-180%);
  z-index: 30;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--mint);
  color: #06100b;
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 10px 10px 10px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(7, 13, 10, 0.7);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

body.theme-light .site-header {
  background: rgba(255, 255, 255, 0.76);
}

.site-header.is-scrolled {
  border-color: var(--line);
  transform: translateX(-50%) translateY(-4px);
}

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

.brand strong {
  display: block;
  font-family: var(--display);
  font-size: 18px;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
}

.brand-mark,
.mini-logo {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 12px 26px rgba(0, 169, 92, 0.35);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}

.brand-mark circle {
  fill: var(--green-2);
}

.brand-mark .brand-hole {
  fill: var(--green-2);
}

.mini-logo::before {
  content: "";
  width: 28px;
  height: 28px;
  background: #fff;
  clip-path: polygon(50% 0%, 60% 34%, 100% 50%, 60% 66%, 50% 100%, 40% 66%, 0% 50%, 40% 34%);
}

.mini-logo::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--green-2);
  transform: rotate(45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

body.theme-light .site-nav a:hover {
  background: rgba(0, 169, 92, 0.08);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.icon-button,
.nav-cta,
.button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 800;
  cursor: pointer;
}

.icon-button {
  display: inline-grid;
  width: 44px;
  place-items: center;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.moon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f5fff8;
  box-shadow: inset -7px -3px 0 #1b211d;
}

body.theme-light .moon {
  background: #06100b;
  box-shadow: inset -7px -3px 0 #f2fff6;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  background: var(--green);
  color: #04100a;
  box-shadow: 0 14px 32px rgba(32, 201, 51, 0.28);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  min-height: 92vh;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 130px 0 56px;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 92px;
  left: -7vw;
  right: -7vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100, 255, 154, 0.7), transparent);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(100, 255, 154, 0.35);
  text-underline-offset: 4px;
}

body.theme-light .eyebrow a {
  color: #06100b;
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(64px, 12vw, 148px);
  line-height: 0.85;
  letter-spacing: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero h1 span {
  display: block;
}

.hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 148px;
  padding: 0 22px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button:hover,
.service-card:hover,
.copy-card:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--green);
  color: #04100a;
  box-shadow: 0 18px 42px rgba(32, 201, 51, 0.3);
}

.button-secondary {
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

body.theme-light .button-secondary {
  background: rgba(255, 255, 255, 0.82);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 700px;
  margin: 42px 0 0;
}

.hero-metrics div {
  min-height: 110px;
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
}

body.theme-light .hero-metrics div {
  background: rgba(255, 255, 255, 0.72);
}

.hero-metrics dt {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
}

.hero-metrics dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-height: 730px;
}

.telegram-panel {
  position: absolute;
  inset: 28px auto auto 0;
  width: min(460px, 78%);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(210, 243, 174, 0.88), rgba(151, 195, 142, 0.82)),
    repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.08) 0 1px, transparent 1px 18px);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.tg-toolbar {
  display: grid;
  grid-template-columns: 54px 1fr 54px 54px;
  gap: 8px;
  align-items: center;
}

.tg-back,
.tg-search,
.tg-menu,
.tg-title,
.message-card,
.quick-grid span {
  background: rgba(241, 255, 232, 0.76);
  backdrop-filter: blur(10px);
}

.tg-back,
.tg-search,
.tg-menu {
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.tg-back::before,
.tg-search::before,
.tg-search::after,
.tg-menu::before {
  content: "";
  position: absolute;
  display: block;
}

.tg-back,
.tg-search,
.tg-menu {
  position: relative;
}

.tg-back::before {
  inset: 18px 19px 18px 22px;
  border-left: 4px solid #06100b;
  border-bottom: 4px solid #06100b;
  transform: rotate(45deg);
}

.tg-search::before {
  width: 21px;
  height: 21px;
  left: 15px;
  top: 13px;
  border: 3px solid #06100b;
  border-radius: 50%;
}

.tg-search::after {
  width: 14px;
  height: 3px;
  left: 32px;
  top: 34px;
  background: #06100b;
  transform: rotate(45deg);
}

.tg-menu::before {
  left: 16px;
  top: 25px;
  width: 22px;
  height: 5px;
  border-radius: 999px;
  background:
    radial-gradient(circle, #06100b 0 3px, transparent 3px) 0 0 / 8px 5px,
    radial-gradient(circle, #06100b 0 3px, transparent 3px) 8px 0 / 8px 5px,
    radial-gradient(circle, #06100b 0 3px, transparent 3px) 16px 0 / 8px 5px;
}

.tg-title {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 54px;
  padding: 0 14px;
  border-radius: 999px;
}

.tg-title .mini-logo {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
}

.tg-title strong,
.tg-title em {
  display: block;
  color: #06100b;
  font-style: normal;
  line-height: 1.05;
}

.tg-title em {
  color: rgba(6, 16, 11, 0.62);
}

.message-card {
  margin: 18px 34px 42px 2px;
  overflow: hidden;
  border-radius: 0 0 22px 22px;
  color: #06100b;
  font-size: 18px;
  line-height: 1.55;
}

.message-card p {
  margin: 14px 18px;
}

.poster {
  display: grid;
  height: 250px;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(23, 255, 127, 0.55), transparent 50%),
    linear-gradient(180deg, #063e24, #021108);
}

.poster-star {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: rgba(0, 169, 92, 0.55);
  box-shadow: inset 0 0 0 2px rgba(100, 255, 154, 0.5), 0 0 40px rgba(100, 255, 154, 0.46);
  position: relative;
}

.poster-star::before {
  content: "";
  position: absolute;
  inset: 33px;
  background: #fff;
  clip-path: polygon(50% 0%, 60% 34%, 100% 50%, 60% 66%, 50% 100%, 40% 66%, 0% 50%, 40% 34%);
}

.poster-star::after {
  content: "";
  position: absolute;
  inset: 61px;
  background: var(--green-2);
  transform: rotate(45deg);
  border-radius: 3px;
}

.quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 20px;
  background: rgba(0, 0, 0, 0.12);
}

.quick-grid span {
  padding: 12px 14px;
  color: #fff;
  background: rgba(18, 102, 48, 0.5);
  font-size: 14px;
  font-weight: 900;
}

.app-panel {
  position: absolute;
  right: 0;
  top: 0;
  width: min(500px, 82%);
  min-height: 680px;
  padding: 28px;
  border: 1px solid rgba(100, 255, 154, 0.28);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(3, 10, 6, 0.98)),
    #020403;
  color: #fff;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.app-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent, rgba(100, 255, 154, 0.12), transparent),
    repeating-linear-gradient(0deg, rgba(100, 255, 154, 0.035) 0 1px, transparent 1px 48px);
  mask-image: linear-gradient(180deg, black, transparent 70%);
  pointer-events: none;
}

.app-top,
.app-brand,
.app-tools {
  display: flex;
  align-items: center;
}

.app-top {
  position: relative;
  justify-content: space-between;
  gap: 18px;
}

.app-brand {
  gap: 12px;
  font-size: 24px;
  font-weight: 950;
}

.app-tools {
  gap: 12px;
}

.tool {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 950;
}

.moon-dot::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset -8px 0 0 #1b1f1d;
}

.lang-dot {
  border-color: rgba(32, 201, 51, 0.45);
  box-shadow: 0 0 22px rgba(32, 201, 51, 0.22);
}

.avatar-dot {
  background:
    linear-gradient(135deg, #ffad00, #b066ff 52%, #19a7ff),
    #111;
}

.app-kicker {
  position: relative;
  margin: 58px 0 10px;
  color: #fff;
  font-size: 34px;
  font-weight: 950;
}

.app-subtitle {
  position: relative;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 18px;
}

.service-preview-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.service-preview-grid article,
.service-card,
.flow-step,
.trust-board,
.faq-list details,
.copy-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
}

.service-preview-grid article {
  min-height: 170px;
  padding: 22px;
  background:
    linear-gradient(150deg, rgba(100, 255, 154, 0.13), transparent 45%),
    rgba(255, 255, 255, 0.06);
}

.service-preview-grid strong {
  display: block;
  margin-top: 24px;
  color: #fff;
  font-size: 21px;
}

.service-preview-grid small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  line-height: 1.55;
}

.service-icon {
  display: inline-grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: var(--accent, var(--green));
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.22);
}

.service-icon::before {
  content: "";
  display: block;
}

.star-icon {
  --accent: var(--amber);
}

.star-icon::before,
.premium-icon::before,
.hold-icon::before {
  width: 34px;
  height: 34px;
  background: #fff;
  clip-path: polygon(50% 0%, 60% 34%, 100% 50%, 60% 66%, 50% 100%, 40% 66%, 0% 50%, 40% 34%);
}

.premium-icon {
  --accent: var(--violet);
  background: linear-gradient(135deg, #5bc8ff, var(--violet), #ff74d6);
}

.hold-icon {
  --accent: var(--blue);
  background: linear-gradient(180deg, var(--blue), #0274e9);
}

.esim-icon {
  --accent: #55dd87;
  background: #fff;
}

.esim-icon::before {
  width: 32px;
  height: 38px;
  border: 4px solid #55dd87;
  border-radius: 8px;
  background:
    linear-gradient(#55dd87, #55dd87) 8px 9px / 10px 4px no-repeat,
    linear-gradient(#55dd87, #55dd87) 8px 18px / 16px 4px no-repeat,
    linear-gradient(#55dd87, #55dd87) 8px 27px / 12px 4px no-repeat;
}

.app-tabbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(100, 255, 154, 0.28);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 0 0 34px 34px;
}

.app-tabbar span {
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.48);
  text-align: center;
  font-weight: 900;
}

.app-tabbar .active {
  color: var(--mint);
}

.identity-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, calc(100% - 32px));
  margin: -12px auto 0;
}

.copy-card {
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 22px;
  color: var(--text);
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease;
}

button.copy-card {
  font: inherit;
  cursor: pointer;
}

.copy-card span,
.copy-card small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.copy-card strong {
  font-family: var(--display);
  font-size: clamp(20px, 2.5vw, 28px);
}

.copy-card.is-copied {
  border-color: var(--mint);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 112px 0 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.trust-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.05;
}

.section-heading p:not(.eyebrow),
.trust-copy p,
.final-cta p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.service-card {
  min-height: 330px;
  padding: 24px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.service-card:hover {
  border-color: color-mix(in srgb, var(--accent) 70%, #fff 30%);
}

.service-card h3 {
  margin: 30px 0 14px;
  font-family: var(--display);
  font-size: 28px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  color: color-mix(in srgb, var(--accent) 76%, #fff 24%);
  font-weight: 900;
}

.service-card a::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.flow-section {
  width: 100%;
  padding: 112px max(16px, calc((100% - 1180px) / 2)) 0;
}

.flow-section .section-heading {
  width: min(760px, 100%);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 1px;
  margin-top: 42px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.flow-step {
  min-height: 250px;
  padding: 26px;
  border-radius: 0;
}

.flow-step:first-child {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.flow-step:last-child {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.flow-step span {
  color: var(--mint);
  font-family: var(--display);
  font-size: 48px;
  font-weight: 950;
}

.flow-step h3 {
  margin: 40px 0 12px;
  font-size: 24px;
}

.flow-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: 36px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(32, 201, 51, 0.42);
}

.trust-board {
  position: sticky;
  top: 110px;
  padding: 8px;
  background:
    linear-gradient(150deg, rgba(100, 255, 154, 0.12), transparent 45%),
    var(--panel);
}

.trust-board div {
  padding: 22px;
  border-bottom: 1px solid var(--line-soft);
}

.trust-board div:last-child {
  border-bottom: 0;
}

.trust-board span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-board strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.28;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 42px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 22px 24px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 112px auto 0;
  padding: clamp(42px, 8vw, 86px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(32, 201, 51, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  text-align: center;
}

.final-cta .mini-logo {
  margin: 0 auto 24px;
}

.final-cta .button {
  margin-top: 28px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: 36px auto 0;
  padding: 28px 0 38px;
  color: var(--muted);
  border-top: 1px solid var(--line-soft);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--text);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

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

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }

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

  .telegram-panel {
    width: min(520px, 88%);
  }

  .app-panel {
    width: min(520px, 88%);
  }

  .identity-strip,
  .service-cards,
  .trust-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

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

  .trust-board {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 8px;
  }

  .brand small,
  .icon-button {
    display: none;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand-mark,
  .mini-logo {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero {
    width: auto;
    max-width: none;
    margin-right: 12px;
    margin-left: 12px;
    min-height: auto;
    padding: 104px 0 36px;
    justify-items: stretch;
    overflow: hidden;
  }

  .hero-copy,
  .hero-actions,
  .hero-lead {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .hero-copy {
    width: min(76vw, 560px);
    padding-right: 0;
  }

  .hero h1 {
    font-size: clamp(54px, 17vw, 70px);
  }

  .hero-lead {
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .button {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .hero-metrics div {
    min-height: auto;
  }

  .hero-visual {
    min-height: 720px;
    margin-top: 8px;
  }

  .telegram-panel {
    width: 100%;
    inset: 0 auto auto 0;
    transform: none;
    border-radius: 28px;
  }

  .tg-toolbar {
    grid-template-columns: 46px 1fr 46px 46px;
  }

  .tg-back,
  .tg-search,
  .tg-menu {
    width: 46px;
    height: 46px;
  }

  .tg-title {
    height: 46px;
  }

  .message-card {
    margin-right: 0;
    font-size: 16px;
  }

  .poster {
    height: 210px;
  }

  .app-panel {
    top: 310px;
    right: 50%;
    width: min(100%, 420px);
    min-height: 520px;
    padding: 20px;
    transform: translateX(50%);
    border-radius: 28px;
  }

  .app-tools {
    gap: 8px;
  }

  .tool {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .app-kicker {
    margin-top: 34px;
    font-size: 28px;
  }

  .service-preview-grid {
    gap: 12px;
  }

  .service-preview-grid article {
    min-height: 142px;
    padding: 16px;
  }

  .service-preview-grid strong {
    margin-top: 14px;
    font-size: 18px;
  }

  .service-preview-grid small {
    font-size: 12px;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .identity-strip {
    width: calc(100% - 24px);
    margin-top: 18px;
  }

  .section {
    width: calc(100% - 24px);
    padding-top: 78px;
  }

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

  .service-card {
    min-height: auto;
  }

  .flow-section {
    padding-top: 78px;
  }

  .timeline {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .flow-step,
  .flow-step:first-child,
  .flow-step:last-child {
    border-radius: var(--radius-md);
  }

  .faq-list details {
    padding: 18px;
  }

  .final-cta {
    width: calc(100% - 24px);
    margin-top: 78px;
  }

  .site-footer {
    display: grid;
    width: calc(100% - 24px);
  }
}
