:root {
  --bg: #030813;
  --bg2: #071125;
  --panel: rgba(8, 18, 42, 0.76);
  --panel-2: rgba(6, 14, 33, 0.92);
  --line: rgba(94, 159, 255, 0.16);
  --line-strong: rgba(104, 181, 255, 0.28);

  --text: #eef5ff;
  --muted: #9fb4d7;
  --muted-2: #7f93b3;

  --blue: #297dff;
  --blue-2: #1ac9ff;
  --blue-3: #75f0ff;

  --shadow-xl: 0 30px 90px rgba(0, 0, 0, 0.42);
  --shadow-blue: 0 0 40px rgba(27, 143, 255, 0.16);

  --container: 1200px;
  --radius: 28px;
  --header-h: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(36, 107, 255, 0.18), transparent 26%),
    radial-gradient(circle at 90% 18%, rgba(0, 217, 255, 0.12), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(32, 87, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #020611 0%, #061124 55%, #030814 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  background: transparent;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

#bgFx {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.glow-1 {
  width: 340px;
  height: 340px;
  left: -80px;
  top: 80px;
  background: rgba(31, 105, 255, 0.18);
  animation: glowMove1 14s ease-in-out infinite alternate;
}

.glow-2 {
  width: 380px;
  height: 380px;
  right: -120px;
  top: 180px;
  background: rgba(0, 215, 255, 0.12);
  animation: glowMove2 17s ease-in-out infinite alternate;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(98, 156, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 156, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 38%, transparent 100%);
}

.bg-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    radial-gradient(circle at 20% 20%, white 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, white 1px, transparent 1px),
    radial-gradient(circle at 35% 70%, white 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, white 1px, transparent 1px);
  background-size: 150px 150px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(2, 7, 18, 0.88),
    rgba(2, 7, 18, 0.48)
  );
  border-bottom: 1px solid rgba(91, 147, 255, 0.08);
}

.header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__coin {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
  box-shadow: 0 0 20px rgba(255, 198, 0, 0.12);
}

.brand__coin img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.brand__title {
  font-family: "Orbitron", sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #f4f8ff;
}

.brand__subtitle {
  font-size: 12px;
  color: var(--muted);
}

.nav--desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav--desktop a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: 0.22s ease;
}

.nav--desktop a:hover {
  color: #ffffff;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(12, 20, 43, 0.72);
  position: relative;
  cursor: pointer;
}

.burger span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: 0.25s ease;
}

.burger span:first-child {
  top: 17px;
}

.burger span:last-child {
  bottom: 17px;
}

body.menu-open .burger span:first-child {
  transform: rotate(45deg);
  top: 22px;
}

body.menu-open .burger span:last-child {
  transform: rotate(-45deg);
  bottom: 22px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px 16px;
  border-top: 1px solid rgba(94, 155, 255, 0.08);
  background: rgba(4, 9, 21, 0.94);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(9, 18, 41, 0.84);
  border: 1px solid rgba(98, 158, 255, 0.12);
  color: #eef5ff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 18px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  will-change: transform;
}

.btn--sm {
  min-height: 46px;
  padding: 0 18px;
  font-size: 14px;
}

.btn--lg {
  min-height: 60px;
  padding: 0 28px;
  font-size: 16px;
}

.btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #1f70ff 0%, #1aafff 55%, #13d9ff 100%);
  box-shadow:
    0 18px 38px rgba(0, 112, 255, 0.24),
    0 0 28px rgba(0, 212, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn--primary:hover {
  transform: translateY(-2px);
}

.btn--secondary {
  color: #eef7ff;
  background: rgba(8, 18, 41, 0.82);
  border: 1px solid rgba(105, 171, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.btn--secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(127, 194, 255, 0.3);
}

.hero {
  padding: 56px 0 20px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - var(--header-h) - 40px);
}

.hero__content {
  max-width: 680px;
}

.hero__badge,
.section-kicker,
.status-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ddf2ff;
  border: 1px solid rgba(104, 171, 255, 0.14);
  background: rgba(10, 19, 43, 0.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.hero__badge-dot,
.status-pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.8);
}

.hero__title {
  margin: 20px 0 16px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.hero__title span {
  display: block;
  background: linear-gradient(90deg, #e6f8ff 0%, #87e8ff 30%, #4ca5ff 74%, #c8e8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__text {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  max-width: 620px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.hero__mini-points {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.mini-point {
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(8, 16, 36, 0.72);
  border: 1px solid rgba(97, 158, 255, 0.12);
  color: #e5f4ff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.hero__visual {
  position: relative;
}

.hero-card {
  position: relative;
  min-height: 620px;
  border-radius: 34px;
  overflow: hidden;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(10, 20, 45, 0.92), rgba(6, 13, 30, 0.92));
  border: 1px solid rgba(103, 168, 255, 0.14);
  box-shadow:
    var(--shadow-xl),
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 0 60px rgba(27, 132, 255, 0.12);
  transform-style: preserve-3d;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(97, 157, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 157, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.55;
  mask-image: radial-gradient(circle at center, black 36%, transparent 100%);
}

.hero-card__top,
.hero-card__bottom {
  position: relative;
  z-index: 2;
}

.hero-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.tiny-label {
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--muted-2);
}

.hero-card__center {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.token-core {
  position: relative;
  width: 270px;
  height: 270px;
  display: grid;
  place-items: center;
}

.token-core__halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0, 212, 255, 0.22), rgba(27, 95, 255, 0.16) 42%, rgba(0,0,0,0) 74%);
  filter: blur(16px);
  animation: pulseHalo 4.6s ease-in-out infinite;
}

.token-core__coin {
  position: relative;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,0.14), rgba(0,0,0,0) 38%),
    linear-gradient(180deg, rgba(18, 42, 89, 0.9), rgba(7, 16, 37, 0.96));
  border: 1px solid rgba(111, 177, 255, 0.16);
  box-shadow:
    0 0 40px rgba(28, 130, 255, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.05);
  animation: floatCoin 6.5s ease-in-out infinite;
}

.token-core__coin img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.floating-card {
  position: absolute;
  min-width: 160px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(8, 17, 38, 0.84);
  border: 1px solid rgba(103, 169, 255, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.floating-card__label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 6px;
}

.floating-card__value {
  font-size: 14px;
  font-weight: 800;
  color: #f3f9ff;
}

.floating-card--a {
  top: 38px;
  left: 6px;
  animation: floatBadge 6.5s ease-in-out infinite;
}

.floating-card--b {
  top: 62px;
  right: 0;
  animation: floatBadge 7s ease-in-out infinite reverse;
}

.floating-card--c {
  bottom: 36px;
  right: 32px;
  animation: floatBadge 7.8s ease-in-out infinite;
}

.hero-card__bottom {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  padding: 16px 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(8, 16, 36, 0.88), rgba(7, 13, 28, 0.84));
  border: 1px solid rgba(100, 164, 255, 0.12);
}

.info-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(103, 166, 255, 0.09);
}

.info-line:last-child {
  border-bottom: 0;
}

.info-line span {
  font-size: 14px;
  color: var(--muted);
}

.info-line strong {
  font-size: 14px;
  color: #f4f9ff;
}

.scan-line {
  position: absolute;
  inset: -20% 0 auto 0;
  height: 96px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0), rgba(77, 194, 255, 0.12), rgba(0,0,0,0));
  transform: translateY(-200%);
  animation: scanLine 5.5s linear infinite;
}

.ticker {
  padding: 6px 0 20px;
}

.ticker__wrap {
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(95, 160, 255, 0.1);
  background: rgba(7, 14, 31, 0.72);
}

.ticker__track {
  display: flex;
  width: max-content;
  gap: 36px;
  padding: 14px 24px;
  color: #dff1ff;
  font-size: 14px;
  font-weight: 700;
  animation: tickerMove 26s linear infinite;
}

.ticker__track span {
  position: relative;
  white-space: nowrap;
}

.ticker__track span::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 50%;
  width: 6px;
  height: 6px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(109, 188, 255, 0.6);
}

.section {
  padding: 108px 0;
}

.section--split {
  padding-top: 88px;
}

.section--cta {
  padding-top: 84px;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head h2,
.split__left h2,
.cta-box h2 {
  margin: 18px 0 14px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.section-head p,
.split__left p,
.cta-box p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.74;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 260px;
  padding: 28px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(8, 17, 38, 0.92), rgba(6, 12, 28, 0.9));
  border: 1px solid rgba(98, 160, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 14px 34px rgba(0, 0, 0, 0.18);
}

.feature-card__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 22px;
  font-size: 28px;
  background:
    linear-gradient(135deg, rgba(26, 117, 255, 0.34), rgba(0, 212, 255, 0.16));
  border: 1px solid rgba(111, 177, 255, 0.14);
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.1;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.split {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 24px;
  align-items: center;
}

.bullet-list {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.bullet-item {
  position: relative;
  padding-left: 22px;
  color: #eef5ff;
  font-weight: 600;
}

.bullet-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #8df0ff 0%, #18caff 42%, #2e7dff 100%);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.8);
}

.flow-panel {
  padding: 24px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(8, 17, 38, 0.94), rgba(6, 11, 25, 0.92));
  border: 1px solid rgba(99, 162, 255, 0.13);
  box-shadow:
    var(--shadow-xl),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.flow-panel__head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Orbitron", sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #eef7ff;
  margin-bottom: 18px;
}

.flow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.8);
}

.flow-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(100, 161, 255, 0.1);
}

.flow-row:last-of-type {
  border-bottom: 0;
}

.flow-row span {
  color: var(--muted);
  font-size: 15px;
}

.flow-row strong {
  color: #f4f9ff;
  font-size: 14px;
}

.flow-panel__note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(8, 15, 34, 0.76);
  border: 1px solid rgba(97, 160, 255, 0.1);
  color: #e2efff;
  line-height: 1.7;
  font-size: 15px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step {
  display: flex;
  gap: 18px;
  padding: 26px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(8, 17, 38, 0.92), rgba(6, 12, 28, 0.9));
  border: 1px solid rgba(98, 160, 255, 0.12);
}

.step__num {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(23, 108, 255, 0.34), rgba(0, 212, 255, 0.16));
  border: 1px solid rgba(112, 181, 255, 0.14);
  font-family: "Orbitron", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #f4faff;
}

.step__body h3 {
  margin: 2px 0 10px;
  font-size: 24px;
}

.step__body p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(7, 16, 36, 0.94), rgba(5, 12, 27, 0.96));
  border: 1px solid rgba(101, 166, 255, 0.14);
  box-shadow:
    var(--shadow-xl),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.cta-box__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -120px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.16), rgba(0,0,0,0) 70%);
  filter: blur(26px);
}

.cta-box__actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.footer {
  padding: 22px 0 40px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(96, 156, 255, 0.1);
  padding-top: 20px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.footer__title {
  font-family: "Orbitron", sans-serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: #f4f9ff;
}

.footer__sub {
  font-size: 12px;
  color: var(--muted-2);
}

.footer__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.75s cubic-bezier(.2,.8,.2,1),
    transform 0.75s cubic-bezier(.2,.8,.2,1);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.is-visible {
  padding-left: 16px;
  padding-right: 16px;
  opacity: 1;
  transform: translateY(0);
}

@keyframes glowMove1 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, -30px); }
}

@keyframes glowMove2 {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-60px, 24px); }
}

@keyframes pulseHalo {
  0%, 100% { transform: scale(0.94); opacity: 0.8; }
  50% { transform: scale(1.06); opacity: 1; }
}

@keyframes floatCoin {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes scanLine {
  0% { transform: translateY(-220%); }
  100% { transform: translateY(820%); }
}

@keyframes tickerMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 1160px) {
  .hero__inner,
  .split {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 560px;
  }
}

@media (max-width: 900px) {
  .nav--desktop,
  .header__actions .btn {
    display: none;
  }

  .burger {
    display: inline-block;
  }

  .hero {
    padding-top: 32px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero__inner {
    min-height: auto;
    gap: 26px;
  }

  .hero__title {
    font-size: clamp(38px, 10vw, 62px);
  }

  .hero__text,
  .section-head p,
  .split__left p,
  .cta-box p {
    font-size: 16px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 520px;
  }

  .floating-card--a {
    top: 26px;
    left: 0;
  }

  .floating-card--b {
    top: 52px;
    right: 0;
  }

  .floating-card--c {
    right: 20px;
    bottom: 28px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

  .header__inner {
    min-height: 74px;
  }

  .brand__coin {
    width: 44px;
    height: 44px;
  }

  .brand__title {
    font-size: 15px;
  }

  .brand__subtitle {
    font-size: 11px;
  }

  .hero__actions,
  .cta-box__actions {
    flex-direction: column;
  }

  .btn--lg {
    width: 100%;
  }

  .hero__mini-points {
    gap: 8px;
  }

  .mini-point {
    font-size: 12px;
    padding: 10px 12px;
  }

  .hero-card {
    min-height: 460px;
    padding: 18px;
    border-radius: 26px;
  }

  .token-core {
    width: 220px;
    height: 220px;
  }

  .token-core__coin {
    width: 150px;
    height: 150px;
  }

  .floating-card {
    min-width: 118px;
    padding: 11px 12px;
    border-radius: 14px;
  }

  .floating-card__label {
    font-size: 10px;
  }

  .floating-card__value {
    font-size: 12px;
  }

  .hero-card__bottom {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 14px;
  }

  .info-line span,
  .info-line strong {
    font-size: 12px;
  }

  .section {
    padding: 16px 0;
  }

  .section-head h2,
  .split__left h2,
  .cta-box h2 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .feature-card,
  .step,
  .cta-box {
    border-radius: 22px;
  }

  .step {
    flex-direction: column;
  }

  .step__num {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    font-size: 20px;
  }

  .step__body h3,
  .feature-card h3 {
    font-size: 22px;
  }

  .flow-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .ticker__track {
    gap: 28px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .js .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}