:root {
  color-scheme: dark;
  --bg: #07161c;
  --bg-deep: #041015;
  --surface: #0e2228;
  --surface-2: #132c34;
  --surface-3: #193942;
  --line: rgba(159, 231, 234, 0.13);
  --line-strong: rgba(159, 231, 234, 0.22);
  --text: #f2fbfb;
  --soft: #c8dcde;
  --muted: #8fa9ad;
  --accent: #4ce3c1;
  --accent-blue: #49b7f6;
  --accent-strong: #31cfae;
  --accent-ink: #032822;
  --positive: #65e8b3;
  --warning: #f3c96b;
  --danger: #ff8f9b;
  --container: 1180px;
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 1%, rgba(73, 183, 246, 0.16), transparent 34rem),
    radial-gradient(circle at 94% 13%, rgba(76, 227, 193, 0.09), transparent 31rem),
    linear-gradient(180deg, #091c24 0, var(--bg) 50rem);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

body,
button,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

button:focus-visible,
a:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid rgba(73, 183, 246, 0.75);
  outline-offset: 3px;
}

.site-noise {
  position: fixed;
  z-index: -1;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 100% 5px;
  mask-image: linear-gradient(to bottom, black, transparent 45%);
}

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

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

.hidden {
  display: none !important;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(76, 227, 193, 0.09);
  animation: pulse 2s ease infinite;
}

.site-header {
  position: relative;
  z-index: 50;
  top: 0;
  padding-top: env(safe-area-inset-top);
  border-bottom: 1px solid transparent;
  background: #07161c;
  backdrop-filter: none;
  transition: border-color 220ms ease, background 220ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: #07161c;
}

.header-inner {
  display: flex;
  height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 39px;
  height: 39px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(76, 227, 193, 0.34);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(73, 183, 246, 0.28), rgba(76, 227, 193, 0.08));
  box-shadow: inset 0 0 20px rgba(73, 183, 246, 0.08);
}

.brand-mark-core {
  width: 17px;
  height: 17px;
  border: 3px solid var(--accent);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-35deg);
}

.brand-mark-trail {
  position: absolute;
  width: 15px;
  height: 3px;
  border-radius: 99px;
  background: var(--accent-blue);
  transform: translate(-8px, 7px) rotate(-35deg);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 17px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.site-header .brand-copy strong {
  font-family: "SF Pro Display", "SF Pro Text", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 750;
  letter-spacing: -0.04em;
}

.site-header .brand-copy small {
  margin-top: 4px;
  color: #b1dce7;
  font-family: "SF Pro Text", "SF Pro Display", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--text);
}

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

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 17px;
  border: 0;
  border-radius: 13px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 780;
  transition: transform 160ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent) 61%, var(--accent-strong));
  box-shadow: 0 14px 34px rgba(46, 207, 172, 0.16);
  color: var(--accent-ink);
}

.button-primary:hover {
  box-shadow: 0 16px 40px rgba(73, 183, 246, 0.2);
}

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

.button-light {
  background: var(--text);
  color: #092126;
}

.button-large {
  min-height: 56px;
  padding: 0 23px;
  border-radius: 16px;
  font-size: 15px;
}

.button-icon {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: rgba(3, 40, 34, 0.11);
}

.profile-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--soft);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.profile-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
}

.profile-avatar {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(145deg, #2995c8, #3fd9b9);
  color: var(--accent-ink);
  font-size: 12px;
  font-weight: 850;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-avatar img:not([hidden]) + span {
  display: none;
}

.profile-button.connected {
  width: 44px;
  min-width: 44px;
  padding: 3px;
  border-radius: 50%;
}

.profile-button.connected .profile-dot,
.profile-button.connected #profileLabel {
  display: none;
}

.profile-button.connected .profile-dot {
  background: var(--positive);
  box-shadow: 0 0 0 4px rgba(101, 232, 179, 0.08);
}

.menu-button {
  position: relative;
  display: none;
  width: 43px;
  height: 43px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.menu-button span {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 1px;
  margin: 0;
  background: var(--soft);
  transform-origin: center;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease;
}

.menu-button span:first-child {
  top: 16px;
}

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

.mobile-menu {
  display: none;
}

.hero {
  padding-top: 88px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: -80px;
  left: 52%;
  width: 670px;
  height: 670px;
  border: 1px solid rgba(73, 183, 246, 0.06);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(73, 183, 246, 0.025), 0 0 0 180px rgba(76, 227, 193, 0.018);
  content: "";
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  gap: 74px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 660px;
  margin-top: 22px;
  font-size: clamp(58px, 7vw, 92px);
  font-weight: 830;
  line-height: 0.93;
  letter-spacing: -0.035em;
}

.hero h1 span {
  display: inline-block;
  padding-right: 0.08em;
  white-space: nowrap;
  background: linear-gradient(110deg, var(--text) 20%, #90dfff 55%, var(--accent) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 590px;
  margin-top: 27px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 30px;
  color: var(--soft);
  font-size: 12px;
}

.hero-assurances span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.mini-check {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(76, 227, 193, 0.24);
  border-radius: 50%;
  background: rgba(76, 227, 193, 0.08);
  color: var(--accent);
  font-size: 10px;
  font-style: normal;
}

.exchange-showcase {
  position: relative;
  z-index: 2;
  padding: 20px 0 20px 28px;
}

.showcase-glow {
  position: absolute;
  inset: 11% -12% 4% 10%;
  border-radius: 50%;
  background: rgba(73, 183, 246, 0.12);
  filter: blur(70px);
}

.showcase-window {
  position: relative;
  padding: 23px;
  border: 1px solid rgba(159, 231, 234, 0.18);
  border-radius: 25px;
  background: linear-gradient(160deg, rgba(19, 44, 52, 0.97), rgba(10, 27, 33, 0.98));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.025);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.showcase-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 27px;
}

.showcase-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.showcase-logo {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(76, 227, 193, 0.28);
  border-radius: 50%;
  background: rgba(76, 227, 193, 0.08);
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
}

.showcase-brand > span:last-child {
  display: grid;
}

.showcase-brand strong {
  font-size: 14px;
}

.showcase-brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.online-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 10px;
}

.online-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--positive);
  box-shadow: 0 0 0 4px rgba(101, 232, 179, 0.07);
}

.showcase-label {
  margin: 0 4px 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.asset-field {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 13px 12px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-2);
}

.asset-amount {
  min-width: 0;
  overflow: hidden;
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 780;
  letter-spacing: -0.04em;
  text-overflow: ellipsis;
}

.showcase-amount-input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font-size: clamp(25px, 3.6vw, 31px);
  caret-color: var(--accent);
}

.showcase-amount-input:focus {
  color: var(--text);
}

.asset-amount-soft {
  color: var(--soft);
}

.asset-pill {
  display: grid;
  grid-template-columns: 35px auto;
  grid-template-rows: auto auto;
  min-width: 132px;
  align-items: center;
  gap: 1px 9px;
  padding: 8px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--surface-3);
}

.asset-pill .coin {
  grid-row: 1 / 3;
}

.asset-pill b {
  font-size: 13px;
}

.asset-pill small {
  color: var(--muted);
  font-size: 9px;
}

.coin {
  display: inline-grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  color: white;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.coin-usdt { background: #24a886; }
.coin-btc { background: #ee9417; }
.coin-eth { background: #6575c7; }
.coin-ton { background: #208acb; }
.coin-sol { background: linear-gradient(145deg, #7e58ff, #31dba9); }
.coin-rub { background: #247c91; }

.swap-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 35px;
  align-items: center;
  gap: 10px;
}

.swap-divider > span:not(.swap-indicator) {
  height: 1px;
  background: var(--line);
  transform: translateY(10px);
}

.rate-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 18px 3px;
  color: var(--muted);
  font-size: 10px;
}

.rate-row strong {
  color: var(--soft);
  font-weight: 650;
}

.showcase-action {
  display: flex;
  min-height: 53px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid rgba(128, 218, 255, 0.5);
  background: linear-gradient(135deg, #2aabee 0%, #229ed9 100%);
  box-shadow: 0 12px 26px rgba(24, 143, 211, 0.23);
  color: #ffffff;
  font-family: "SF Pro Text", "SF Pro Display", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.012em;
  text-shadow: none;
}

.showcase-action:hover {
  background: linear-gradient(135deg, #35b9f4 0%, #249fd8 100%);
  box-shadow: 0 15px 31px rgba(24, 143, 211, 0.32);
}

.showcase-note {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 9px;
}

.showcase-note span {
  color: var(--accent);
}

.trust-rail {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 40px;
  margin-top: 85px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.trust-rail-label {
  max-width: 130px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.asset-ticker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.asset-ticker span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
}

.asset-ticker .coin {
  width: 25px;
  height: 25px;
  font-size: 11px;
}

.experience-section {
  padding-top: 44px;
}

.experience-card {
  display: grid;
  grid-template-columns: 0.6fr 1.2fr 1fr;
  gap: 55px;
  align-items: center;
  padding: 48px 50px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: linear-gradient(130deg, rgba(19, 44, 52, 0.93), rgba(10, 29, 35, 0.9));
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.16);
}

.experience-number {
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.experience-number strong {
  font-size: 82px;
  font-weight: 820;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.experience-number strong span {
  color: var(--accent);
  font-size: 38px;
}

.experience-number small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}

.experience-copy h2,
.section-heading h2,
.safety-copy h2,
.telegram-copy h2,
.faq-intro h2,
.final-cta h2 {
  margin-top: 15px;
  font-size: clamp(36px, 4.5vw, 57px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.experience-copy p,
.section-heading > p,
.safety-copy > p,
.telegram-copy > p,
.faq-intro > p {
  margin-top: 17px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.experience-points {
  display: grid;
  gap: 17px;
}

.experience-points > div,
.telegram-benefits > div {
  display: flex;
  gap: 14px;
  align-items: center;
}

.experience-points i,
.telegram-benefits i {
  display: grid;
  width: 33px;
  height: 33px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--accent);
  font-size: 9px;
  font-style: normal;
}

.experience-points span,
.telegram-benefits span {
  display: grid;
}

.experience-points b,
.telegram-benefits b {
  font-size: 12px;
}

.experience-points small,
.telegram-benefits small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.directions-section {
  background: linear-gradient(180deg, transparent, rgba(14, 34, 40, 0.43) 25%, rgba(14, 34, 40, 0.43) 75%, transparent);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: end;
}

.split-heading > p {
  max-width: 460px;
  padding-bottom: 5px;
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 46px;
}

.direction-card {
  min-height: 225px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: rgba(14, 34, 40, 0.82);
  transition: border-color 200ms ease, transform 200ms ease;
}

.direction-card:hover {
  border-color: rgba(73, 183, 246, 0.31);
  transform: translateY(-3px);
}

.direction-card-featured {
  background:
    radial-gradient(circle at 85% 0, rgba(76, 227, 193, 0.13), transparent 16rem),
    linear-gradient(145deg, rgba(19, 57, 65, 0.97), rgba(13, 37, 44, 0.97));
}

.direction-card-head {
  display: flex;
  min-height: 25px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.direction-badge {
  padding: 6px 9px;
  border: 1px solid rgba(76, 227, 193, 0.22);
  border-radius: 99px;
  background: rgba(76, 227, 193, 0.08);
  color: var(--accent);
}

.direction-card-head > span:last-child {
  font-size: 16px;
}

.direction-route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.direction-route > span {
  display: grid;
  grid-template-columns: 35px auto;
  align-items: center;
  gap: 1px 10px;
}

.direction-route .coin {
  grid-row: 1 / 3;
  width: 35px;
  height: 35px;
}

.direction-route .route-arrow {
  transform: translateX(-70px);
}

.direction-route b {
  font-size: 17px;
}

.direction-route small {
  color: var(--muted);
  font-size: 9px;
}

.route-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--accent);
  font-style: normal;
}

.route-arrow svg {
  width: 28px;
  height: 28px;
}

.direction-route.compact {
  max-width: none;
}

.direction-card > p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.direction-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 31px;
}

.direction-cloud span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px 7px 7px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 11px;
  font-weight: 750;
}

.direction-cloud .coin {
  width: 24px;
  height: 24px;
  font-size: 10px;
}

.bank-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 16px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(7, 22, 28, 0.6);
}

.bank-strip > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bank-strip > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.bank-strip i {
  padding: 8px 11px;
  border-radius: 10px;
  background: var(--surface-2);
  color: var(--soft);
  font-size: 10px;
  font-style: normal;
  font-weight: 750;
}

.centered-heading {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading > p {
  max-width: 630px;
  margin-right: auto;
  margin-left: auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 55px;
}

.step {
  position: relative;
  padding: 25px 23px 26px;
  border-top: 1px solid var(--line-strong);
}

.step-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-number {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.step-icon {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  border: 1px solid rgba(76, 227, 193, 0.2);
  border-radius: 15px;
  background: rgba(76, 227, 193, 0.065);
  color: var(--accent);
  font-size: 20px;
}

.step h3 {
  margin-top: 34px;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.step p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.safety-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: radial-gradient(ellipse 76% 112% at 92% 50%, rgba(73, 183, 246, 0.13) 0%, rgba(73, 183, 246, 0.06) 31%, rgba(73, 183, 246, 0.018) 54%, transparent 77%);
}

.safety-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 85px;
  align-items: center;
}

.safety-list {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.safety-list > div {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.safety-check {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(76, 227, 193, 0.24);
  border-radius: 10px;
  background: rgba(76, 227, 193, 0.08);
  color: var(--accent);
  font-size: 11px;
}

.safety-list p {
  display: grid;
}

.safety-list b {
  font-size: 13px;
}

.safety-list small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.status-board {
  padding: 27px;
  border: 1px solid var(--line-strong);
  border-radius: 25px;
  background: linear-gradient(150deg, rgba(19, 44, 52, 0.95), rgba(9, 25, 31, 0.97));
  box-shadow: var(--shadow);
}

.status-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 11px;
}

.status-board-head b {
  color: var(--soft);
}

.status-board-head i {
  padding: 6px 9px;
  border-radius: 99px;
  background: rgba(243, 201, 107, 0.09);
  color: var(--warning);
  font-size: 9px;
  font-style: normal;
  font-weight: 750;
}

.status-route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 25px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface-2);
}

.status-route > span {
  display: grid;
  grid-template-columns: 33px auto;
  gap: 1px 9px;
  align-items: center;
}

.status-route .coin {
  grid-row: 1 / 3;
  width: 33px;
  height: 33px;
}

.status-route b {
  font-size: 13px;
}

.status-route small {
  color: var(--muted);
  font-size: 10px;
}

.status-route .route-arrow svg {
  width: 28px;
  height: 28px;
}

.status-route > span:last-child {
  justify-self: end;
}

.status-timeline {
  display: grid;
  gap: 0;
  margin-top: 28px;
}

.status-timeline > div {
  position: relative;
  display: flex;
  min-height: 61px;
  gap: 13px;
}

.status-timeline > div > i {
  position: relative;
  z-index: 2;
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface);
  color: var(--accent-ink);
  font-size: 9px;
  font-style: normal;
}

.status-timeline > div:not(:last-child)::before {
  position: absolute;
  top: 24px;
  left: 11px;
  height: 37px;
  border-left: 1px solid var(--line);
  content: "";
}

.status-timeline .done > i {
  border-color: var(--accent);
  background: var(--accent);
}

.status-check {
  display: block;
  width: 18px;
  height: 18px;
  color: #062d29;
}

.status-timeline .active > i {
  border-color: var(--warning);
}

.status-timeline .active > i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--warning);
  content: "";
  transform: translate(-50%, -50%);
}

.status-timeline > div > span {
  display: grid;
  align-content: start;
}

.status-timeline b {
  margin-top: 2px;
  font-size: 11px;
}

.status-timeline small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
}

.status-board-footer {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
}

.status-lock {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--accent);
  transform: translate(2px, 2px);
}

.telegram-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.65fr 1.25fr 0.8fr;
  gap: 45px;
  align-items: center;
  overflow: hidden;
  padding: 57px;
  border: 1px solid rgba(73, 183, 246, 0.2);
  border-radius: 27px;
  background:
    radial-gradient(circle at 8% 50%, rgba(73, 183, 246, 0.19), transparent 22rem),
    linear-gradient(140deg, #102d39, #0e252e 55%, #0b2027);
}

.telegram-orbit {
  position: relative;
  display: grid;
  width: 180px;
  height: 180px;
  place-items: center;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(73, 183, 246, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(73, 183, 246, 0.035), 0 0 0 60px rgba(73, 183, 246, 0.018);
}

.telegram-plane {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: linear-gradient(145deg, #54c0f7, #278dcc);
  box-shadow: 0 20px 50px rgba(19, 126, 187, 0.33);
  color: white;
  font-size: 37px;
  transform: rotate(-28deg);
}

.telegram-copy h2 {
  font-size: clamp(34px, 4vw, 50px);
}

.telegram-copy .button {
  margin-top: 27px;
}

.telegram-benefits {
  display: grid;
  gap: 23px;
}

.reviews-section {
  background: linear-gradient(180deg, transparent, rgba(14, 34, 40, 0.45) 22%, rgba(14, 34, 40, 0.45) 80%, transparent);
}

.reviews-heading {
  align-items: center;
}

.reviews-summary {
  padding: 24px;
  border-left: 1px solid var(--line-strong);
}

.summary-score {
  display: flex;
  align-items: center;
  gap: 17px;
}

.summary-score > strong {
  font-size: 49px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.summary-score > span {
  display: grid;
}

.summary-score i {
  color: var(--warning);
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0.12em;
}

.summary-score small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
}

.reviews-summary p {
  max-width: 400px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.review-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.review-compose + .review-toolbar {
  margin-top: 32px;
}

.review-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.review-period {
  position: relative;
  display: inline-flex;
  width: min(100%, 286px);
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 8px 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(19, 44, 52, 0.68);
  color: var(--soft);
}

.review-period-label {
  color: var(--text);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.review-period-button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 6px;
  padding: 0 7px 0 9px;
  border: 0;
  border-radius: 9px;
  outline: 0;
  background: rgba(76, 227, 193, 0.08);
  color: var(--soft);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 550;
  white-space: nowrap;
}

.review-period-button:hover,
.review-period-button[aria-expanded="true"] {
  background: rgba(76, 227, 193, 0.14);
}

.review-period-button svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  transition: transform 180ms ease;
}

.review-period-button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.review-period-menu {
  position: absolute;
  z-index: 12;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  width: 142px;
  gap: 3px;
  padding: 6px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #102a32;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

.review-period-menu button {
  min-height: 36px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--soft);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 550;
  text-align: left;
}

.review-period-menu button:hover,
.review-period-menu button[aria-selected="true"] {
  background: rgba(76, 227, 193, 0.11);
  color: var(--text);
}

.review-filter {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
}

.review-filter.active {
  border-color: rgba(76, 227, 193, 0.33);
  background: rgba(76, 227, 193, 0.08);
  color: var(--text);
}

.write-review-link {
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
}

.write-review-link span {
  margin-left: 6px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.reviews-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.reviews-more-wrap .button {
  min-width: 172px;
}

.review-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 0;
  padding: 25px 27px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  transition: border-color 180ms ease;
}

.review-card:hover {
  border-color: rgba(73, 183, 246, 0.27);
}

.review-card-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.review-stars {
  color: var(--warning);
  font-size: 16px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 8px;
}

.review-verified i {
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border-radius: 50%;
  background: rgba(76, 227, 193, 0.1);
  color: var(--accent);
  font-size: 8px;
  font-style: normal;
}

.review-text {
  width: 100%;
  margin-top: 17px;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.65;
  white-space: pre-line;
}

.review-reply {
  width: min(100%, 760px);
  margin-top: 20px;
  margin-left: 46px;
  padding: 16px 18px;
  border-left: 2px solid rgba(73, 183, 246, 0.62);
  border-radius: 0 13px 13px 0;
  background: rgba(73, 183, 246, 0.065);
}

.review-reply-head {
  display: flex;
  align-items: center;
  gap: 9px;
}

.review-reply-head img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  object-fit: cover;
}

.review-reply-head span {
  display: grid;
  gap: 2px;
}

.review-reply-head b {
  font-size: 14px;
  font-weight: 700;
}

.review-reply-head small {
  color: var(--muted);
  font-size: 12px;
}

.review-reply p {
  margin-top: 11px;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.6;
  white-space: pre-line;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  margin-top: 0;
  padding-top: 0;
}

.review-avatar,
.account-avatar {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: linear-gradient(145deg, #247c91, #1c5363);
  color: white;
  font-size: 10px;
  font-weight: 850;
}

.review-avatar img,
.account-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-avatar img:not([hidden]) + span {
  display: none;
}

.review-author-meta {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.review-author-name {
  display: flex;
  align-items: baseline;
  gap: 7px;
  min-width: 0;
}

.review-author b {
  font-size: 15px;
  font-weight: 650;
}

.review-author small {
  margin-top: 0;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.reviews-state {
  grid-column: 1 / -1;
  display: flex;
  min-height: 190px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 13px;
  border: 1px dashed var(--line);
  border-radius: 20px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.loader,
.small-loader {
  width: 24px;
  height: 24px;
  border: 2px solid var(--line-strong);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}

.small-loader {
  width: 18px;
  height: 18px;
}

.review-compose {
  margin-top: 26px;
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 23px;
  background: linear-gradient(145deg, rgba(19, 44, 52, 0.97), rgba(11, 30, 36, 0.98));
}

.review-compose-copy {
  display: flex;
  align-items: center;
  gap: 16px;
}

.compose-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(76, 227, 193, 0.2);
  border-radius: 15px;
  background: rgba(76, 227, 193, 0.07);
  color: var(--accent);
  font-size: 17px;
}

.review-compose-copy h3 {
  font-size: 19px;
  letter-spacing: -0.02em;
}

.review-compose-copy p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.review-gate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}

.review-gate p {
  color: var(--muted);
  font-size: 11px;
}

.review-form {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 25px;
  margin-top: 27px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.rating-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.rating-field legend,
.textarea-field > span {
  margin-bottom: 12px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 700;
}

.star-rating {
  display: flex;
  gap: 4px;
}

.star-rating button {
  padding: 0 2px;
  border: 0;
  background: transparent;
  color: #3a5053;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition: color 140ms ease, transform 140ms ease;
}

.star-rating button.active,
.star-rating button.hovered {
  color: var(--warning);
}

.star-rating button:hover {
  transform: scale(1.12);
}

.rating-caption {
  display: block;
  margin-top: 11px;
  color: var(--muted);
  font-size: 9px;
}

.textarea-field {
  position: relative;
  display: grid;
}

.textarea-field textarea {
  width: 100%;
  min-height: 126px;
  resize: vertical;
  padding: 15px 16px 29px;
  border: 1px solid var(--line);
  border-radius: 15px;
  outline: 0;
  background: var(--surface-2);
  color: var(--text);
  font-size: 12px;
  line-height: 1.6;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.textarea-field textarea:focus {
  border-color: rgba(73, 183, 246, 0.42);
  box-shadow: 0 0 0 3px rgba(73, 183, 246, 0.06);
}

.textarea-field textarea::placeholder {
  color: #61777b;
}

.textarea-field > small {
  position: absolute;
  right: 13px;
  bottom: 10px;
  color: var(--muted);
  font-size: 8px;
}

.review-form-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.review-form-footer p {
  color: var(--muted);
  font-size: 9px;
}

#submitReview {
  min-height: 50px;
  padding: 0 25px;
  font-size: 16px;
}

.review-form-footer .button:disabled {
  cursor: not-allowed;
  filter: saturate(0.25);
  opacity: 0.45;
  transform: none;
}

.review-success {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 23px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.review-success > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(101, 232, 179, 0.1);
  color: var(--positive);
}

.review-success h3 {
  font-size: 15px;
}

.review-success p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-intro .button {
  margin-top: 25px;
}

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

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

.faq-list summary {
  display: flex;
  min-height: 79px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
}

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

.faq-toggle {
  position: relative;
  display: block;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--muted);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  top: 13px;
  left: 7px;
  width: 13px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: '';
}

.faq-toggle::after {
  transform: rotate(90deg);
  transition: transform 180ms ease, opacity 180ms ease;
}

.faq-list details[open] .faq-toggle {
  color: var(--accent);
  border-color: rgba(76, 227, 193, 0.42);
  background: rgba(76, 227, 193, 0.08);
}

.faq-list details[open] .faq-toggle::after {
  opacity: 0;
  transform: rotate(90deg) scaleX(0);
}

.faq-list details p {
  max-width: 650px;
  padding: 0 45px 24px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

/* FAQ remains easy to scan in the Telegram browser and on a desktop screen. */
.faq-list summary {
  font-size: 18px;
  line-height: 1.35;
}

.faq-list details p {
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 640px) {
  .faq-list summary {
    min-height: 72px;
    font-size: 17px;
  }

  .faq-list details p {
    padding-right: 16px;
    font-size: 16px;
  }
}

.final-cta {
  padding-top: 50px;
}

.final-cta-card {
  position: relative;
  display: flex;
  min-height: 275px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  padding: 55px 65px;
  border-radius: 27px;
  background: linear-gradient(135deg, #4aaee6, #43d4b7 64%, #36bf9e);
  box-shadow: 0 30px 80px rgba(49, 207, 174, 0.15);
  color: var(--accent-ink);
}

.cta-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: linear-gradient(rgba(3, 40, 34, 0.35) 1px, transparent 1px), linear-gradient(90deg, rgba(3, 40, 34, 0.35) 1px, transparent 1px);
  background-size: 35px 35px;
  mask-image: linear-gradient(90deg, transparent, black);
}

.final-cta-copy,
.final-cta .button {
  position: relative;
  z-index: 2;
}

.final-cta-badge {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(3, 40, 34, 0.16);
  border-radius: 99px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.final-cta h2 {
  margin-top: 14px;
  font-size: clamp(43px, 5vw, 62px);
}

.final-cta p {
  margin-top: 11px;
  color: rgba(3, 40, 34, 0.73);
  font-size: 14px;
}

.site-footer {
  margin-top: 30px;
  padding: 70px 0 calc(28px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}

.footer-brand p {
  max-width: 280px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.footer-contact {
  display: grid;
  width: fit-content;
  gap: 4px;
  margin-top: 19px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 650;
}

.footer-contact span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.footer-contact:hover {
  color: var(--accent);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links strong {
  margin-bottom: 4px;
  color: var(--soft);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--muted);
  font-size: 10px;
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 65px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #5f767a;
  font-size: 8px;
}

.modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(2, 10, 13, 0.78);
  backdrop-filter: blur(12px);
}

.auth-modal {
  position: relative;
  width: min(100%, 410px);
  padding: 33px;
  border: 1px solid var(--line-strong);
  border-radius: 23px;
  background: linear-gradient(150deg, #132f38, #0b2027);
  box-shadow: var(--shadow);
  text-align: center;
  animation: modal-in 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 35px;
  height: 35px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  cursor: pointer;
  font-size: 20px;
}

.auth-mark {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.auth-modal h2 {
  font-size: 25px;
  letter-spacing: -0.04em;
}

.auth-modal > p {
  max-width: 315px;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.google-login {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  border: 1px solid #dadce0;
  border-radius: 6px;
  background: #fff;
  color: #3c4043;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.16);
  transition: background 160ms ease, box-shadow 160ms ease;
}

.google-login:hover {
  background: #f8faff;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.28);
}

.google-icon {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
}

.google-icon img {
  display: block;
  width: 18px;
  height: 18px;
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 11px;
  align-items: center;
  margin: 17px 0;
}

.auth-divider span {
  height: 1px;
  background: var(--line);
}

.auth-divider small {
  color: var(--muted);
  font-size: 9px;
}

.telegram-login-slot {
  display: grid;
  gap: 11px;
}

.telegram-login-slot > small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.telegram-bot-login {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #2aabee, #229ed9);
  box-shadow: 0 10px 22px rgba(34, 158, 217, 0.2);
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 750;
}

.telegram-bot-login:hover { filter: brightness(1.06); }
.telegram-bot-login:disabled { cursor: wait; opacity: 0.72; }

.telegram-bot-login img {
  width: 22px;
  height: 22px;
}

.auth-modal .auth-note {
  margin-top: 18px;
  font-size: 8px;
}

.account-popover {
  position: fixed;
  z-index: 80;
  top: 68px;
  right: max(20px, calc((100vw - var(--container)) / 2));
  width: 280px;
  padding: 15px;
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  background: rgba(14, 34, 40, 0.98);
  box-shadow: var(--shadow);
}

.account-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.account-head > span:last-child {
  display: grid;
}

.account-head b {
  font-size: 15px;
}

.account-head small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
}

.account-popover > a,
.account-popover > button {
  display: flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--soft);
  cursor: pointer;
  font-size: 15px;
  font-weight: 650;
  text-align: left;
}

.account-popover > a:hover,
.account-popover > button:hover {
  background: rgba(255, 255, 255, 0.035);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(76, 227, 193, 0.08); }
  50% { box-shadow: 0 0 0 8px rgba(76, 227, 193, 0.02); }
}

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

@keyframes modal-in {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1060px) {
  .desktop-nav {
    gap: 17px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

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

  .experience-card {
    grid-template-columns: 0.65fr 1.35fr;
  }

  .experience-points {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }

  .telegram-card {
    grid-template-columns: 0.45fr 1.1fr 0.8fr;
    padding: 45px;
  }

  .telegram-orbit {
    width: 130px;
    height: 130px;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 82px 0;
  }

  .desktop-nav,
  .header-exchange {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-menu {
    position: absolute;
    z-index: 4;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 4px;
    padding: 8px 20px 18px;
    border-top: 1px solid var(--line);
    background: #07161c;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -8px, 0);
    transform-origin: top center;
    will-change: transform, opacity;
    transition: opacity 240ms ease, transform 300ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 300ms;
  }

  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
  }

  .mobile-menu a {
    padding: 12px 6px;
    color: var(--soft);
    font-size: 12px;
    opacity: 1;
    transform: translateY(0);
  }

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

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

  .menu-button[aria-expanded="true"] {
    border-color: rgba(73, 183, 246, 0.55);
    background: rgba(73, 183, 246, 0.12);
    box-shadow: 0 0 0 4px rgba(73, 183, 246, 0.06);
  }

  .mobile-menu .button {
    margin-top: 6px;
    padding: 0 15px;
  }

  .hero {
    padding-top: 64px;
  }

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

  .hero-copy {
    text-align: center;
  }

  .hero h1,
  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero .eyebrow,
  .hero-actions,
  .hero-assurances {
    justify-content: center;
  }

  .exchange-showcase {
    width: min(100%, 540px);
    margin: 0 auto;
    padding-left: 0;
  }

  .showcase-window {
    transform: none;
  }

  .trust-rail {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .trust-rail-label {
    max-width: none;
  }

  .asset-ticker {
    flex-wrap: wrap;
    justify-content: center;
  }

  .experience-card,
  .safety-grid,
  .telegram-card,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .step:nth-child(2)::after {
    display: none;
  }

  .safety-grid {
    gap: 50px;
  }

  .telegram-card {
    text-align: center;
  }

  .telegram-orbit {
    margin: 0 auto;
  }

  .telegram-benefits {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }

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

  .faq-grid {
    gap: 45px;
  }

  .faq-intro {
    position: static;
  }
}

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

  .section {
    padding: 66px 0;
  }

  .header-inner {
    height: 68px;
  }

  .profile-button {
    max-width: 110px;
    overflow: hidden;
  }

  .profile-button span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(41px, 11.3vw, 50px);
    letter-spacing: -0.058em;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-assurances {
    display: grid;
    gap: 10px;
    justify-content: start;
    max-width: 260px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .exchange-showcase {
    margin-top: 15px;
  }

  .showcase-window {
    padding: 16px;
    border-radius: 21px;
  }

  .online-status {
    display: none;
  }

  .asset-field {
    min-height: 72px;
    padding-left: 13px;
  }

  .asset-amount {
    font-size: 24px;
  }

  .asset-pill {
    min-width: 116px;
    grid-template-columns: 30px auto;
    padding: 7px;
  }

  .asset-pill .coin {
    width: 30px;
    height: 30px;
  }

  .trust-rail {
    margin-top: 55px;
  }

  .asset-ticker {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .asset-ticker span {
    justify-content: center;
    font-size: 10px;
  }

  .experience-card {
    gap: 35px;
    padding: 29px 24px;
  }

  .experience-number strong {
    font-size: 68px;
  }

  .experience-copy h2,
  .section-heading h2,
  .safety-copy h2,
  .telegram-copy h2,
  .faq-intro h2 {
    font-size: 36px;
  }

  .experience-points,
  .telegram-benefits {
    grid-template-columns: 1fr;
  }

  .direction-card {
    min-height: 0;
    padding: 20px;
  }

  .direction-route {
    gap: 10px;
  }

  .direction-route b {
    font-size: 14px;
  }

  .bank-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .bank-strip > div {
    justify-content: flex-start;
  }

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

  .step::after {
    display: none;
  }

  .step {
    padding-right: 5px;
    padding-left: 5px;
  }

  .status-board {
    padding: 19px;
  }

  .status-route {
    gap: 10px;
    padding: 13px;
  }

  .telegram-card {
    padding: 39px 24px;
  }

  .telegram-orbit {
    width: 115px;
    height: 115px;
  }

  .reviews-summary {
    padding: 17px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .review-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .review-card {
    padding: 21px;
  }

  .review-compose {
    padding: 21px;
  }

  .review-compose-copy {
    align-items: flex-start;
  }

  .review-gate,
  .review-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .review-form {
    grid-template-columns: 1fr;
  }

  .review-form-footer {
    grid-column: 1;
  }

  .review-form-footer .button {
    width: 100%;
  }

  .final-cta-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 42px 27px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    line-height: 1.6;
  }

  .auth-modal {
    padding: 29px 20px;
  }

  .account-popover {
    right: 14px;
    left: 14px;
    width: auto;
  }
}

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

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

/* Brand and legibility refinement */
.brand-logo {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(25, 156, 236, 0.2);
}

.brand-copy strong {
  font-size: 18px;
}

.brand-copy small {
  font-size: 12px;
}

.desktop-nav a {
  font-size: 14px;
}

.eyebrow {
  font-size: 13px;
}

.hero-assurances {
  gap: 10px;
  font-size: 14px;
}

.hero-assurances span {
  min-height: 42px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
}

.hero-assurances b {
  color: var(--accent);
  font-size: 16px;
}

.hero-assurances small {
  color: var(--soft);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}

.showcase-logo {
  display: block;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  object-fit: cover;
}

.showcase-brand strong {
  font-size: 15px;
}

.showcase-brand small,
.online-status,
.showcase-label,
.asset-pill small,
.rate-row,
.showcase-note,
.trust-rail-label {
  font-size: 13px;
}

.coin.currency-icon {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  object-fit: contain;
}

.coin.currency-icon.bank-icon {
  padding: 4px;
  background: #fff;
}

.asset-pill .coin {
  width: 38px;
  height: 38px;
}

.asset-pill {
  grid-template-columns: 38px auto;
  min-width: 142px;
}

.asset-pill b {
  font-size: 15px;
}

.asset-ticker span {
  gap: 10px;
  font-size: 14px;
}

.asset-ticker .coin {
  width: 32px;
  height: 32px;
}

.experience-number small {
  font-size: 13px;
}

.experience-metrics {
  display: grid;
  gap: 13px;
}

.experience-metrics > div {
  padding: 15px 0 15px 18px;
  border-left: 2px solid rgba(76, 227, 193, 0.45);
}

.experience-metrics strong,
.experience-metrics span {
  display: block;
}

.experience-metrics strong {
  color: var(--text);
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.035em;
}

.experience-metrics span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.experience-copy p,
.section-heading > p,
.safety-copy > p,
.telegram-copy > p,
.faq-intro > p {
  font-size: 16px;
}

.direction-card-head,
.direction-label {
  font-size: 13px;
}

.direction-route .coin {
  width: 42px;
  height: 42px;
}

.direction-route {
  gap: 20px;
}

.direction-route > span {
  grid-template-columns: 42px auto;
  gap: 3px 12px;
}

.direction-route b {
  font-size: 19px;
}

.direction-route small,
.direction-card > p {
  font-size: 14px;
}

.direction-cloud {
  gap: 11px;
}

.direction-cloud span {
  min-height: 42px;
  padding: 7px 13px 7px 8px;
  font-size: 14px;
}

.direction-cloud .coin {
  width: 30px;
  height: 30px;
}

.bank-strip > span {
  font-size: 13px;
}

.bank-strip i {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  font-size: 13px;
}

.bank-strip i img {
  width: 25px;
  height: 25px;
  border-radius: 7px;
  background: #fff;
  object-fit: contain;
}

.step-visual {
  justify-content: flex-start;
}

.step-number {
  color: var(--accent);
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.step h3 {
  margin-top: 24px;
  font-size: 20px;
}

.step p {
  font-size: 14px;
}

.safety-list > div {
  padding: 4px 0 4px 17px;
  border-left: 2px solid rgba(76, 227, 193, 0.4);
}

.safety-list b {
  font-size: 15px;
}

.safety-list small {
  font-size: 13px;
  line-height: 1.45;
}

.status-board-head,
.status-route small,
.status-timeline small,
.status-board-footer {
  font-size: 13px;
}

.status-board-head i {
  font-size: 12px;
}

.status-route .coin {
  width: 40px;
  height: 40px;
}

.status-route > span {
  grid-template-columns: 40px auto;
  gap: 2px 10px;
}

.status-route b,
.status-timeline b {
  font-size: 15px;
}

.status-timeline > div {
  min-height: 72px;
  gap: 15px;
}

.status-timeline > div > i {
  width: 26px;
  height: 26px;
  font-size: 12px;
}

.status-timeline > div:not(:last-child)::before {
  top: 26px;
  left: 12px;
  height: 46px;
}

.status-timeline .active > i {
  background: rgba(243, 201, 107, 0.05);
  box-shadow: 0 0 0 0 rgba(243, 201, 107, 0.34);
  animation: status-active-pulse 2.3s ease-out infinite;
}

@keyframes status-active-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(243, 201, 107, 0.26); }
  50% { box-shadow: 0 0 0 7px rgba(243, 201, 107, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .status-timeline .active > i {
    animation: none;
  }
}

.telegram-plane {
  position: relative;
  z-index: 2;
  display: block;
  width: 128px;
  height: 128px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  filter: none;
  transform: none;
}

.telegram-benefits > div {
  padding-left: 16px;
  border-left: 2px solid rgba(73, 183, 246, 0.42);
}

.telegram-benefits b {
  font-size: 15px;
}

.telegram-benefits small {
  font-size: 13px;
  line-height: 1.4;
}

.review-filter,
.write-review-link,
.reviews-summary p,
.review-card p,
.review-author small,
.review-compose-copy p,
.review-gate p,
.rating-caption,
.textarea-field small,
.review-form-footer p,
.faq-list p,
.footer-brand p,
.footer-links a,
.footer-bottom,
.auth-modal > p,
.auth-note,
.account-head small {
  font-size: 13px;
}

.review-filter {
  min-height: 42px;
  padding: 0 16px;
}

.write-review-link {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(76, 227, 193, 0.24);
  border-radius: 12px;
  background: rgba(76, 227, 193, 0.055);
}

.star-rating {
  gap: 2px;
}

.star-rating button {
  width: 44px;
  height: 44px;
  padding: 0;
  font-size: 32px;
}

.textarea-field > span {
  font-size: 14px;
}

.review-card p,
.faq-list p {
  font-size: 15px;
}

.auth-logo {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(25, 156, 236, 0.25);
}

@media (max-width: 860px) {
  .experience-metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .experience-metrics > div {
    padding: 15px;
    border-top: 2px solid rgba(76, 227, 193, 0.4);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .hero-assurances {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    max-width: none;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
  }

  .hero-assurances span {
    align-items: center;
    justify-content: center;
    padding: 13px 7px;
    border: 0;
    border-radius: 0;
    border-right: 1px solid var(--line);
    background: transparent;
    text-align: center;
  }

  .hero-assurances span:last-child {
    border-right: 0;
  }

  .hero-assurances b {
    font-size: 17px;
  }

  .hero-assurances small {
    font-size: 11px;
    white-space: nowrap;
  }

  .experience-metrics {
    grid-template-columns: 1fr;
  }

  .experience-metrics > div {
    padding: 13px 0 13px 16px;
    border-top: 0;
    border-left: 2px solid rgba(76, 227, 193, 0.4);
  }

  .bank-strip i {
    font-size: 12px;
  }

  .telegram-plane {
    width: 104px;
    height: 104px;
    padding: 0;
  }
}

/* Fix the exchange board's optical alignment and remove decorative noise. */
.showcase-glow {
  opacity: 0.58;
  filter: blur(48px);
}

.showcase-window {
  transform: none;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24), inset 0 1px rgba(255, 255, 255, 0.04);
}

.swap-divider {
  height: 38px;
}

.swap-indicator {
  display: grid;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-items: center;
  color: var(--accent);
  transform: translateY(10px);
}

.showcase-swap {
  appearance: none;
  border: 0;
  border-radius: 50%;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.showcase-swap:hover {
  background: transparent;
}

.showcase-swap.is-flipped svg {
  transform: rotate(180deg);
}

.showcase-swap svg {
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.swap-indicator svg {
  width: 27px;
  height: 27px;
}

main {
  display: flex;
  flex-direction: column;
}

.reviews-section {
  order: 10;
}

.bank-strip i img,
.coin.currency-icon.bank-icon {
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.bank-strip i img {
  object-fit: contain;
}

.bank-strip i img.ozon-bank-logo {
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  padding: 2px;
  border-radius: 50%;
  background: #005bff;
  object-fit: contain;
}

.telegram-orbit {
  isolation: isolate;
}

.telegram-orbit::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(73, 183, 246, 0.2) 0 38%, rgba(73, 183, 246, 0.06) 39% 57%, transparent 72%);
  content: "";
}

.orbit-ring {
  z-index: 0;
}

/* The reviews area needs to be comfortably readable, not secondary metadata. */
.summary-score i,
.review-stars {
  font-size: 18px;
  letter-spacing: 0.1em;
}

.summary-score small {
  font-size: 15px;
}

.reviews-summary p {
  font-size: 15px;
  line-height: 1.65;
}

.review-filter,
.write-review-link {
  font-size: 14px;
}

.review-text {
  font-size: 17px !important;
  line-height: 1.65;
}

.review-author b {
  font-size: 15px;
}

.review-author small,
.reviews-state {
  font-size: 13px;
}

.review-compose-copy h3 {
  font-size: 26px;
}

.review-compose-copy p,
.review-gate p,
.rating-field legend,
.textarea-field > span,
.rating-caption,
.review-form-footer p,
.textarea-field textarea {
  font-size: 15px;
}

.textarea-field > small {
  font-size: 13px;
}

@media (max-width: 640px) {
  .review-reply {
    width: 100%;
    margin-left: 0;
    padding: 14px;
  }

  .direction-route .route-arrow {
    transform: translateX(-16px);
  }

  .telegram-orbit::after {
    inset: 0;
  }

  .review-compose-copy h3 {
    font-size: 22px;
  }

  .review-text {
    font-size: 16px !important;
  }

  .review-toolbar {
    display: block;
  }

  .review-period {
    width: auto;
    max-width: none;
    min-height: 0;
    gap: 11px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .review-period-label {
    display: block;
    font-size: 14px;
  }

  .review-period-button {
    min-height: 42px;
    padding: 0 11px;
    border: 1px solid var(--line-strong);
    background: rgba(19, 44, 52, 0.68);
    font-size: 14px;
  }

  .review-period-button::before {
    display: none;
  }
}

/* Motion and depth: deliberately restrained so the content remains the focus. */
.telegram-plane {
  object-fit: contain;
  transform: none;
}

.telegram-orbit::after {
  animation: telegram-ripple 3.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.orbit-ring {
  animation: telegram-orbit-breathe 4.6s ease-in-out infinite;
}

@keyframes telegram-ripple {
  0%, 100% { opacity: 0.62; transform: scale(0.9); }
  52% { opacity: 0.1; transform: scale(1.16); }
}

@keyframes telegram-orbit-breathe {
  0%, 100% { opacity: 0.72; transform: scale(0.985); }
  50% { opacity: 1; transform: scale(1.035); }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-up {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 460ms cubic-bezier(0.22, 1, 0.36, 1), transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal-up.is-visible {
    opacity: 1;
    transform: none;
  }

  .exchange-showcase {
    animation: showcase-float 7s ease-in-out infinite;
  }

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

@media (prefers-reduced-motion: reduce) {
  .telegram-orbit::after,
  .orbit-ring,
  .exchange-showcase {
    animation: none;
  }
}

/* The landing-page entrance motion is an explicit product effect, not autoplay decoration. */
.reveal-up {
  opacity: 0;
  transform: translateY(24px) scale(0.988);
  transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1), transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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