:root {
  --bg: #0e0f11;
  --panel: #15171b;
  --panel-2: #1d2026;
  --line: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.04);
  --text: #fff;
  --muted: #a8a8a8;
  --orange: #e85600;
  --orange-soft: rgba(232, 86, 0, 0.18);
  --violet: #9897ff;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.page {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at top right, rgba(232, 86, 0, 0.12), transparent 22%),
    linear-gradient(180deg, #0c0d10, #101114 42%, #0e0f11);
}

.page__noise,
.page__glow {
  pointer-events: none;
  position: fixed;
  inset: auto;
  z-index: 0;
}

.page__noise {
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 94%);
}

.page__glow {
  width: 28rem;
  height: 20rem;
  filter: blur(80px);
  opacity: 0.44;
}

.page__glow--top {
  top: 14rem;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(232, 86, 0, 0.82), transparent 58%);
}

.page__glow--mid {
  top: 56rem;
  right: -8rem;
  background: radial-gradient(circle, rgba(152, 151, 255, 0.42), transparent 58%);
}

.shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 24px), 1200px);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section--tight {
  padding-top: 0px;
  padding-bottom: 40px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  /* padding-top: 10px; */
  isolation: isolate;
}

.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}

.brand img {
  width: 86px;
}

.nav {
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(30, 30, 30, 0.82);
  backdrop-filter: blur(20px);
}

.nav--desktop {
  display: none;
}

.nav--desktop a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.nav--mobile {
  display: grid;
  gap: 8px;
  position: absolute;
  left: 12px;
  right: 12px;
  top: calc(100% + 8px);
  padding: 12px;
  transform: scaleY(0.92);
  transform-origin: top;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 180ms ease, opacity 180ms ease, visibility 180ms ease;
}

.nav--mobile.is-open {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav--mobile a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
}

.header__cta {
  display: none;
}

.burger {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(21, 23, 27, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.burger span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.burger.is-open span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.burger.is-open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(24, 26, 30, 0.8);
  font-family: "Fragment Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow--center {
  display: flex;
  width: fit-content;
  margin: 0 auto 18px;
}

.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 14px var(--orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn--primary {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--text);
  box-shadow: 0 14px 30px rgba(232, 86, 0, 0.3);
}

.btn--primary:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
  box-shadow: none;
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.96);
  color: #0f1012;
}

.btn--ghost:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
  box-shadow: none;
}

.btn--light {
  background: var(--text);
  color: #0e0f11;
}

.btn--small {
  min-height: 44px;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 600;
}

.btn--tiny {
  min-height: 30px;
  padding: 0 12px;
  font-size: 10px;
}

.btn--block {
  width: 100%;
}

.hero {
  padding-top: 0;
  padding-bottom: 0;
}

.hero__content {
  position: relative;
  text-align: center;
  padding-top: 92px;
}

.hero__grid-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.085) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.085) 1px, transparent 1px);
  background-size: 92px 122px;
  opacity: 0.82;
  overflow: hidden;
  pointer-events: none;
}

.hero__grid-bg::before,
.hero__grid-bg::after {
  content: "";
  position: absolute;
}

.hero__grid-bg::before {
  top: 0;
  bottom: 0;
  left: 56%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  opacity: 0.16;
  animation: grid-line-glow-y 5.8s ease-in-out infinite;
}

.hero__grid-bg::after {
  left: 0;
  right: 0;
  top: 43%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  opacity: 0.14;
  animation: grid-line-glow-x 6.6s ease-in-out infinite 1.2s;
}

.hero__cell {
  position: absolute;
  width: 92px;
  height: 122px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.045);
}

.hero__cell ion-icon {
  font-size: 290%;
  object-fit: contain;
  opacity: 0.18;
}

.hero__cell--wallet { top: 123px; left: 7.9%; }
.hero__cell--binance { top: 0; left: 15.9%; }
.hero__cell--bitcoin { top: 245px; left: 15.9%; }
.hero__cell--solana { top: 123px; right: 5%; }
.hero__cell--graph { top: 244px; right: 12.9%; }

.hero__title {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 24px auto 0;
  font-size: clamp(2.5rem, 4.6vw, 4.4rem);
  line-height: 1.1;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.hero__title span {
  display: block;
}

.hero__text,
.intro__copy,
.section-head p,
.gateway__copy p,
.pulse__copy p,
.newsletter__copy p,
.footer__brand p,
.blog-card p,
.mini-card p,
.faq__item p {
  color: var(--muted);
  line-height: 1.5;
}

.hero__text {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 22px auto 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.48);
}

.hero__actions {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.hero__stage {
  position: relative;
  margin-top: 54px;
  padding-bottom: 36px;
}

.hero__stage-glow {
  position: absolute;
  left: 50%;
  bottom: -210px;
  width: 128%;
  max-width: none;
  transform: translateX(-50%);
  opacity: 0.82;
  mix-blend-mode: screen;
}

.hero__dashboard {
  position: relative;
  z-index: 1;
  width: min(100%, 1290px);
  margin: 0 auto;
  padding: 10px;
  border-radius: 22px;
  border: 1px solid rgba(232, 86, 0, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(17, 18, 22, 0.92);
  box-shadow: var(--shadow);
}

.hero__dashboard::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -1px;
  height: 34%;
  background: linear-gradient(180deg, rgba(14, 15, 17, 0), rgba(232, 86, 0, 0.18) 45%, rgba(14, 15, 17, 0.92) 100%);
  filter: blur(24px);
  pointer-events: none;
}

.hero__dashboard img {
  width: 100%;
  border-radius: 16px;
}

.intro {
  position: relative;
  min-height: 142vh;
  padding: 0;
  margin-top: -8px;
}

.intro__pin {
  position: sticky;
  top: 0;
  min-height: 80vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0e0f11;
}

.intro__pin::after {
  content: none;
}

.intro__copy {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(4rem, 9.5vw, 9.6rem);
  line-height: 1.12;
  letter-spacing: -0.055em;
  font-weight: 500;
}

.intro__copy span {
  color: rgba(255, 255, 255, 0.2);
  transition: color 180ms ease, text-shadow 180ms ease;
}

.intro__copy span.is-lit {
  color: #fff;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.12);
}

.brands {
  position: relative;
  z-index: 2;
  margin-top: -150px;
  padding-top: 0;
  background: #0e0f11;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.brands.is-visible-after-intro {
  opacity: 1;
  transform: translateY(0);
}

.brands__row {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(8, minmax(110px, 1fr));
  gap: 5px;
  align-items: center;
  min-width: 100%;
}

.brands__row img {
  width: 100%;
  height: 30px;
  object-fit: contain;
  opacity: 0.46;
  filter: grayscale(1) brightness(1.2);
}

.brands__marquee {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: brands-marquee 22s linear infinite;
}

.brands .eyebrow--center {
  position: relative;
  margin: 0 auto 44px;
  padding-inline: 18px;
  min-height: 28px;
  border: none;
  /* border-radius: 0; */
  /* background: #6a89b5; */
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.brands .eyebrow--center::before,
.brands .eyebrow--center::after {
  content: "";
  position: absolute;
  top: 50%;
  width: min(28vw, 390px);
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.brands .eyebrow--center::before {
  right: calc(100% + 16px);
}

.brands .eyebrow--center::after {
  left: calc(100% + 16px);
}

.section-head {
  display: grid;
  justify-items: start;
  gap: 14px;
  margin-bottom: 22px;
}

.section-head--center {
  justify-items: center;
  text-align: center;
}

.section-head h2,
.stats__copy h2,
.gateway__copy h2,
.pulse__copy h2,
.newsletter__copy h2,
.cta__copy h2 {
  margin: 0;
  font-size: clamp(1.7rem, 7vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.features__layout {
  display: grid;
  gap: 28px;
  align-items: start;
}

.features__intro {
  display: grid;
  align-content: start;
  gap: 20px;
  max-width: 600px;
  padding-top: 28px;
}

.features__intro .eyebrow {
  position: relative;
  gap: 10px;
  width: fit-content;
  min-height: 40px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  background: rgb(24, 26, 30);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 18px 36px rgba(0, 0, 0, 0.16);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.features__intro .eyebrow::before {
  content: "";
  position: absolute;
  left: 20px;
  top: -1px;
  width: 88px;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 86, 0, 0), rgba(232, 86, 0, 0.95), rgba(232, 86, 0, 0));
  opacity: 0.9;
}

.features__intro .eyebrow .eyebrow__dot {
  width: 8px;
  height: 8px;
  box-shadow: none;
}

.features__intro h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.9vw, 3.05rem);
  line-height: 1.06;
  letter-spacing: -0.055em;
  font-weight: 500;
  max-width: 490px;
}

.features__intro p {
  margin: 0;
  max-width: 430px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.btn--feature {
  width: fit-content;
  min-height: 50px;
  padding: 0 18px 0 20px;
  font-size: 13px;
  font-weight: 500;
  gap: 10px;
}

.btn--feature__arrow {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  font-size: 18px;
  line-height: 1;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.feature-card,
.mini-card,
.stat-card,
.plan,
.faq__item,
.blog-card,
.cta__card,
.newsletter {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(21, 23, 27, 0.96);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 14px;
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.014), rgba(255, 255, 255, 0.006)),
    rgba(14, 15, 17, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 24px 70px rgba(0, 0, 0, 0.16);
}

.feature-card--hero {
  grid-column: 1 / -1;
  min-height: 340px;
}

.feature-card--dapps,
.feature-card--swap {
  min-height: 260px;
}

.feature-card h3,
.mini-card h3,
.blog-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.15;
}

.feature-card p,
.mini-card p,
.blog-card p {
  margin: 8px 0 0;
  font-size: 12px;
}

.feature-card__empty-frame {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.01);
}

.feature-card__empty-frame::before {
  content: "";
  position: absolute;
  /* inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 30px; */
  pointer-events: none;
}

.feature-card__empty-frame--hero {
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  gap: 15px;
  background: rgba(255, 255, 255, 0.012);
}

.feature-card__hero-copy {
  position: relative;
  z-index: 1;
  /* max-width: 320px; */
}

.feature-card__hero-copy h3 {
  margin: 0;
  font-size: clamp(2.2rem, 2.8vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.feature-card__hero-copy p {
  margin: 10px 0 0;
  /* max-width: 260px; */
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.feature-card__hero-avatars {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  justify-content: center;
}

.feature-card__hero-person,
.feature-card__hero-coin {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.feature-card__hero-person {
  padding: 7px;
  background: rgba(255, 255, 255, 0.2);
  object-fit: cover;
}

.feature-card__hero-coin {
  display: grid;
  place-items: center;
  padding: 7px;
  background: rgba(255, 255, 255, 0.22);
}

.feature-card__hero-coin img,
.feature-card__hero-person {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.feature-card__hero-coin img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.feature-card__hero-link {
  width: 84px;
  border-top: 2px dashed rgba(255, 255, 255, 0.18);
}

.feature-card__empty-frame--chart {
  padding: 20px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card__chart-copy {
  position: relative;
  z-index: 1;
  max-width: 240px;
}

.feature-card__chart-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 2.4vw, 2.7rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.feature-card__chart-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.feature-card__chart-visual {
  position: relative;
  min-height: 138px;
  margin-top: 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.008)),
    rgba(255, 255, 255, 0.014);
  overflow: hidden;
}

.feature-card__chart-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 34px, 42px 100%;
  opacity: 0.4;
}

.feature-card__chart-area {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 74px;
  background: linear-gradient(180deg, rgba(232, 86, 0, 0.28), rgba(232, 86, 0, 0.02));
  clip-path: polygon(0% 88%, 12% 78%, 24% 80%, 38% 54%, 54% 60%, 68% 40%, 82% 48%, 100% 18%, 100% 100%, 0% 100%);
  filter: blur(0.2px);
  opacity: 0.92;
}

.feature-card__chart-line {
  position: absolute;
  inset: 0;
}

.feature-card__chart-line::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 24px;
  bottom: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  clip-path: polygon(0% 78%, 12% 70%, 24% 72%, 38% 44%, 54% 50%, 68% 30%, 82% 38%, 100% 8%, 100% 14%, 82% 44%, 68% 36%, 54% 56%, 38% 50%, 24% 78%, 12% 76%, 0% 84%);
}

.feature-card__chart-line::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 24px;
  bottom: 18px;
  border-bottom: 0;
  background: none;
  clip-path: polygon(0% 78%, 12% 70%, 24% 72%, 38% 44%, 54% 50%, 68% 30%, 82% 38%, 100% 8%, 100% 12%, 82% 42%, 68% 34%, 54% 54%, 38% 48%, 24% 76%, 12% 74%, 0% 82%);
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0);
}

.feature-card__chart-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 5px rgba(232, 86, 0, 0.14),
    0 0 18px rgba(232, 86, 0, 0.32);
}

.feature-card__chart-dot--a { left: 34%; top: 62%; }
.feature-card__chart-dot--b { left: 50%; top: 56%; }
.feature-card__chart-dot--c { left: 66%; top: 40%; }
.feature-card__chart-dot--d { right: 16px; top: 18%; }

.feature-card__empty-frame--icons {
  padding: 20px 28px 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.feature-card__icons-copy {
  position: relative;
  z-index: 1;
  max-width: 220px;
}

.feature-card__icons-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 500;
}

.feature-card__icons-visual {
  position: relative;
  flex: 1;
  min-height: 160px;
  margin-top: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(232, 86, 0, 0.12) 100%);
}

.feature-card__icons-visual::before {
  content: "";
  position: absolute;
  inset: 0 12px;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 84px 100%;
  opacity: 0.26;
}

.feature-card__icon {
  position: absolute;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.35rem;
  font-weight: 700;
  animation: icon-fall 6.8s ease-in-out infinite;
}

.feature-card__icon--a { left: 4px; top: 12px; opacity: 0.32; }
.feature-card__icon--b { left: 98px; top: 62px; animation-delay: -1.4s; }
.feature-card__icon--c { left: 194px; top: 30px; animation-delay: -2.6s; }
.feature-card__icon--d { right: 8px; top: 86px; animation-delay: -0.8s; }
.feature-card__icon--e { left: 4px; top: 138px; animation-delay: -3.1s; }
.feature-card__icon--f { left: 110px; top: 182px; animation-delay: -1.9s; }
.feature-card__icon--g { right: 100px; top: 162px; animation-delay: -2.2s; }
.feature-card__icon--h { right: 0; top: 228px; animation-delay: -3.5s; opacity: 0.36; }

.feature-card--dapps {
  background:
    radial-gradient(circle at 50% 100%, rgba(232, 86, 0, 0.1), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.014), rgba(255, 255, 255, 0.006)),
    rgba(14, 15, 17, 0.98);
}

.feature-card--swap {
  background:
    radial-gradient(circle at 50% 100%, rgba(232, 86, 0, 0.12), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.014), rgba(255, 255, 255, 0.006)),
    rgba(14, 15, 17, 0.98);
}

.steps__grid,
.pricing__grid,
.blog__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.steps {
  padding-top: 92px;
}

.steps__head {
  gap: 18px;
  margin-bottom: 46px;
}

.steps__head h2 {
  font-size: clamp(2.8rem, 6vw, 5.25rem);
  line-height: 1;
}

.steps__head p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.steps__head .eyebrow {
  position: relative;
  gap: 10px;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  background: rgb(24, 26, 30);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 18px 36px rgba(0, 0, 0, 0.16);
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.steps__head .eyebrow::before {
  content: "";
  position: absolute;
  left: 20px;
  top: -1px;
  width: 88px;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 86, 0, 0), rgba(232, 86, 0, 0.95), rgba(232, 86, 0, 0));
  opacity: 0.9;
}

.steps__head .eyebrow .eyebrow__dot {
  width: 10px;
  height: 10px;
  box-shadow: none;
}

.steps__flow {
  position: relative;
  padding-top: 72px;
}

.steps__connectors {
  position: absolute;
  left: 16.66%;
  right: 16.66%;
  top: 0;
  height: 112px;
  pointer-events: none;
}

.steps__connector {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.steps__connector--left {
  left: 0;
}

.steps__connector--right {
  left: 50%;
}

.steps__grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.step-card {
  display: grid;
  gap: 14px;
}

.step-card__visual {
  position: relative;
  min-height: 318px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 36px;
  background:
    radial-gradient(circle at 78% 0%, rgba(232, 86, 0, 0.36), rgba(232, 86, 0, 0.1) 22%, rgba(232, 86, 0, 0) 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.016), rgba(255, 255, 255, 0.006)),
    rgba(17, 18, 20, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.step-card__visual::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 30px;
  pointer-events: none;
}

.step-card__visual::after {
  content: "";
  position: absolute;
  top: -1px;
  right: 20px;
  width: 112px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 180, 146, 0.95), rgba(232, 86, 0, 0.9));
  box-shadow: 0 0 24px rgba(232, 86, 0, 0.42);
}

.step-card__panel {
  position: absolute;
  inset: 40px 32px 30px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.006)),
    rgba(255, 255, 255, 0.012);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.015);
}

.step-card__panel--account {
  padding: 26px 22px 18px;
}

.step-card__panel--account label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.26);
  font-size: 12px;
}

.step-card__input {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 13px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background: rgba(18, 20, 24, 0.9);
  color: rgba(255, 255, 255, 0.16);
  font-size: 13px;
}

.step-card__button {
  margin-top: 20px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.step-card__panel--fund {
  display: grid;
  place-items: center;
}

.step-card__wallet-shape {
  position: relative;
  width: 60%;
  height: 56%;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.012)),
    rgba(255, 255, 255, 0.03);
}

.step-card__wallet-shape::before {
  content: "";
  position: absolute;
  left: -30px;
  top: -10px;
  width: 90px;
  height: 128px;
  border: 12px solid rgba(255, 255, 255, 0.03);
  border-right: none;
  border-radius: 20px 0 0 20px;
}

.step-card__wallet-shape::after {
  content: "";
  position: absolute;
  right: -24px;
  top: 48%;
  width: 58px;
  height: 48px;
  transform: translateY(-50%);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.step-card__wallet-plus {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 18, 20, 0.78);
  color: rgba(255, 255, 255, 0.55);
  font-size: 2.25rem;
  line-height: 1;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.step-card__panel--swap {
  display: grid;
  gap: 9px;
  padding: 18px 16px;
}

.step-card__token-row {
  min-height: 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 13px;
  background: rgba(18, 20, 24, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.step-card__token-row--active {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
}

.step-card__token-row--muted {
  opacity: 0.76;
}

.step-card__token-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.42);
  font-size: 1rem;
  font-weight: 700;
}

.step-card__token-row strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

.step-card__token-row small {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.22);
}

.step-card__copy h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.2;
}

.step-card__copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.stats__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 56px;
  align-items: start;
}

.stats.section {
  position: relative;
  padding-bottom: 24px;
}

.stats__copy {
  display: grid;
  align-content: start;
  gap: 18px;
  padding-top: 28px;
}

.stats__copy .eyebrow {
  position: relative;
  gap: 10px;
  min-height: 40px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  background: rgb(24, 26, 30);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 18px 36px rgba(0, 0, 0, 0.16);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  width: fit-content;
}

.stats__copy .eyebrow::before {
  content: "";
  position: absolute;
  left: 20px;
  top: -1px;
  width: 88px;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 86, 0, 0), rgba(232, 86, 0, 0.95), rgba(232, 86, 0, 0));
  opacity: 0.9;
}

.stats__copy .eyebrow .eyebrow__dot {
  width: 10px;
  height: 10px;
  box-shadow: none;
}

.stats__copy h2 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(1.9rem, 4.3vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 500;
  color: var(--text);
}

.stats__copy p {
  margin: 0;
  max-width: 460px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.stats__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 12px;
}

.stats__avatars {
  display: flex;
  align-items: center;
}

.stats__avatars img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid rgba(17, 18, 20, 0.9);
  margin-right: -12px;
  object-fit: cover;
}

.stats__avatars span {
  margin-left: 12px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
}

.stats__stack {
  position: relative;
  min-height: 820px;
}

.stats__stack--scroll {
  position: sticky;
  top: 88px;
  padding-top: 10px;
}

.stats.section {
  padding-bottom: 10px;
}

.gateway.section {
  padding-top: 18px;
}

.stat-card {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  min-height: 236px;
  padding: 30px 36px 24px;
  border-radius: 42px;
  overflow: hidden;
  transition:
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 620ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 620ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.014), rgba(255, 255, 255, 0.006)),
    rgba(21, 23, 27, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 24px 70px rgba(0, 0, 0, 0.16);
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 100% 66px, 66px 100%;
  opacity: 0.14;
}

.stat-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 48%;
  filter: blur(10px);
  opacity: 0.92;
  border-top-right-radius: 42px;
  border-bottom-left-radius: 140px;
}

.stat-card:nth-child(1) {
  z-index: 1;
}

.stat-card:nth-child(2) {
  z-index: 2;
}

.stat-card:nth-child(3) {
  z-index: 3;
}

.stat-card small {
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}

.stat-card__main {
  position: relative;
  z-index: 1;
  font-size: clamp(5.5rem, 8vw, 9rem);
  letter-spacing: -0.06em;
  font-weight: 500;
  line-height: 1;
}

.stat-card__meta {
  position: relative;
  z-index: 1;
  position: absolute;
  top: 28px;
  right: 30px;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.stat-card__hint {
  display: none;
}

.stat-card__side {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 500;
}

.stat-card__side i {
  width: 28px;
  height: 28px;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
}

.stat-card__side i::before,
.stat-card__side i::after {
  content: "";
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.stat-card__side i::before {
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  opacity: 0.7;
}

.stat-card__side i::after {
  width: 4px;
  height: 4px;
  background: currentColor;
}

.stat-card--violet {
  color: #8780f2;
}

.stat-card--violet::after {
  background:
    radial-gradient(circle at 100% 0%, rgba(135, 128, 242, 0.58), rgba(135, 128, 242, 0.18) 42%, transparent 78%);
}

.stat-card--orange {
  color: #e9630a;
}

.stat-card--orange::after {
  background:
    radial-gradient(circle at 100% 0%, rgba(233, 99, 10, 0.56), rgba(233, 99, 10, 0.18) 42%, transparent 78%);
}

.stat-card--dark {
  color: rgba(255, 255, 255, 0.58);
}

.stat-card--dark::after {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08) 42%, transparent 78%);
}

.gateway__top {
  display: grid;
  gap: 36px;
  align-items: center;
}

.gateway__copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.gateway__copy .eyebrow {
  position: relative;
  gap: 10px;
  min-height: 40px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  background: rgb(24, 26, 30);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 18px 36px rgba(0, 0, 0, 0.16);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  width: fit-content;
}

.gateway__copy .eyebrow::before {
  content: "";
  position: absolute;
  left: 20px;
  top: -1px;
  width: 88px;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 86, 0, 0), rgba(232, 86, 0, 0.95), rgba(232, 86, 0, 0));
  opacity: 0.9;
}

.gateway__copy .eyebrow .eyebrow__dot {
  width: 10px;
  height: 10px;
  box-shadow: none;
}

.gateway__copy h2 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 500;
}

.gateway__copy p {
  margin: 0;
  max-width: 740px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.56;
}

.gateway__visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.gateway-network {
  position: relative;
  width: min(100%, 820px);
  height: 500px;
}

.gateway-network__beam {
  position: absolute;
  left: 50%;
  top: 38px;
  width: 210px;
  height: 270px;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 20%, rgba(232, 86, 0, 0.52), rgba(232, 86, 0, 0.16) 46%, transparent 76%);
  filter: blur(18px);
}

.gateway-network__ring {
  position: absolute;
  left: 50%;
  top: 202px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gateway-network__ring--outer {
  width: 640px;
  height: 290px;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.08);
}

.gateway-network__ring--mid {
  width: 560px;
  height: 250px;
  border-style: dashed;
  border-color: rgba(232, 86, 0, 0.42);
}

.gateway-network__ring--inner {
  width: 486px;
  height: 214px;
  border-color: rgba(255, 255, 255, 0.08);
}

.gateway-network__disc {
  position: absolute;
  left: 50%;
  top: 238px;
  width: 430px;
  height: 150px;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 70%, rgba(232, 86, 0, 0.2), rgba(232, 86, 0, 0.04) 58%, transparent 82%),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.gateway-network__center {
  position: absolute;
  left: 50%;
  top: 188px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
}

.gateway-network__halo {
  width: 104px;
  height: 34px;
  margin-bottom: -14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.76);
}

.gateway-network__coin {
  width: 66px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    linear-gradient(180deg, #f0e3dba3, #fff2eb);
  box-shadow: 0 10px 24px rgba(232, 86, 0, 0.34);
}

.gateway-network__coin img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.gateway-network__node {
  position: absolute;
  width: 78px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(27, 29, 33, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.gateway-network__node--tl { left: 112px; top: 116px; }
.gateway-network__node--tr { right: 112px; top: 116px; }
.gateway-network__node--ml { left: 10px; top: 246px; }
.gateway-network__node--mr { right: 10px; top: 246px; }
.gateway-network__node--bl { left: 140px; bottom: 72px; }
.gateway-network__node--br { right: 140px; bottom: 72px; }

.gateway-network__node--tl::before,
.gateway-network__node--tr::before,
.gateway-network__node--ml::before,
.gateway-network__node--mr::before,
.gateway-network__node--bl::before,
.gateway-network__node--br::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 170px;
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
  opacity: 0.5;
}

.gateway-network__node--tl::before,
.gateway-network__node--ml::before,
.gateway-network__node--bl::before {
  right: 100%;
}

.gateway-network__node--tr::before,
.gateway-network__node--mr::before,
.gateway-network__node--br::before {
  left: 100%;
}

.gateway__features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 44px;
}

.feature-pill {
  display: grid;
  align-content: start;
  gap: 16px;
}

.feature-pill span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, #ffb875 0, var(--orange) 68%, #8f3400 100%);
  box-shadow: 0 0 28px rgba(232, 86, 0, 0.32);
  color: #fff;
  font-size: 1.6rem;
}

.feature-pill h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.22;
}

.feature-pill p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.pricing__head {
  gap: 18px;
  margin-bottom: 42px;
}

.pricing__head .eyebrow {
  position: relative;
  gap: 10px;
  min-height: 40px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  background: rgb(24, 26, 30);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 18px 36px rgba(0, 0, 0, 0.16);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.pricing__head .eyebrow::before {
  content: "";
  position: absolute;
  left: 20px;
  top: -1px;
  width: 88px;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 86, 0, 0), rgba(232, 86, 0, 0.95), rgba(232, 86, 0, 0));
  opacity: 0.9;
}

.pricing__head .eyebrow .eyebrow__dot {
  width: 10px;
  height: 10px;
  box-shadow: none;
}

.pricing__head h2 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.pricing__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.plan {
  position: relative;
  min-height: 586px;
  padding: 30px 32px 30px;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.014), rgba(255, 255, 255, 0.006)),
    rgba(14, 15, 17, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 24px 70px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.plan::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 30px;
  pointer-events: none;
}

.plan::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.plan--featured {
  border-color: rgba(232, 86, 0, 0.3);
}

.plan__tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.plan__tag-dot {
  width: 24px;
  height: 24px;
  border-radius: 10px;
  display: inline-block;
  box-shadow: 0 0 20px currentColor;
}

.plan__tag-dot--white {
  color: rgba(255, 255, 255, 0.46);
  background: radial-gradient(circle at 35% 35%, #fff, rgba(255,255,255,0.24) 62%, rgba(255,255,255,0.06));
}

.plan__tag-dot--orange {
  color: rgba(232, 86, 0, 0.52);
  background: radial-gradient(circle at 35% 35%, #ffb47f, #e85600 62%, rgba(232,86,0,0.16));
}

.plan__tag-dot--violet {
  color: rgba(144, 141, 255, 0.5);
  background: radial-gradient(circle at 35% 35%, #d6d4ff, #8d89ff 62%, rgba(141,137,255,0.16));
}

.plan__price {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  font-size: 2.85rem;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
}

.plan__price span {
  margin-left: 8px;
  font-size: 0.34em;
  color: rgba(255, 255, 255, 0.54);
  font-weight: 600;
}

.plan p {
  position: relative;
  z-index: 1;
  min-height: 40px;
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.35;
}

.plan__cta {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
  background: transparent;
}

.plan__cta:hover {
  transform: translateY(-2px);
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.plan__cta--filled {
  border-color: var(--orange);
  background: var(--orange);
}

.plan__cta--filled:hover {
  background: transparent;
  border-color: #fff;
}

.plan ul {
  position: relative;
  z-index: 1;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.plan li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.35;
}

.plan li ion-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  padding: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #0f1012;
}

.plan li.is-off {
  color: rgba(255, 255, 255, 0.48);
}

.plan li.is-off ion-icon {
  background: rgba(255, 255, 255, 0.7);
}

.plan:nth-child(1)::after {
  background: radial-gradient(circle at 20% 100%, rgba(255,255,255,0.12), transparent 46%);
}

.plan:nth-child(2)::after {
  background:
    radial-gradient(circle at 0% 0%, rgba(232, 86, 0, 0.34), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(232, 86, 0, 0.32), transparent 28%);
}

.plan:nth-child(3)::after {
  background:
    radial-gradient(circle at 0% 0%, rgba(141, 137, 255, 0.34), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(141, 137, 255, 0.2), transparent 24%);
}

.faq__head {
  gap: 18px;
  margin-bottom: 46px;
}

.faq__head .eyebrow {
  position: relative;
  gap: 10px;
  min-height: 40px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  background: rgb(24, 26, 30);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 18px 36px rgba(0, 0, 0, 0.16);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.faq__head .eyebrow::before {
  content: "";
  position: absolute;
  left: 20px;
  top: -1px;
  width: 88px;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 86, 0, 0), rgba(232, 86, 0, 0.95), rgba(232, 86, 0, 0));
  opacity: 0.9;
}

.faq__head .eyebrow .eyebrow__dot {
  width: 10px;
  height: 10px;
  box-shadow: none;
}

.faq__head h2 {
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.faq__head p {
  max-width: 860px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 30px;
  align-items: start;
}

.faq__item {
  align-self: start;
  padding: 5px 38px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.004)),
    rgba(14, 15, 17, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.015);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.faq__item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.016), rgba(255, 255, 255, 0.006)),
    rgba(16, 17, 20, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 14px 30px rgba(0, 0, 0, 0.12);
}

.faq__item summary {
  position: relative;
  list-style: none;
  padding: 28px 48px 28px 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.98);
  transition: color 220ms ease, opacity 220ms ease;
}

.faq__item:hover summary {
  color: #fff;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.92);
  font-size: 2rem;
  line-height: 1;
  font-weight: 300;
  transition: color 220ms ease, transform 220ms ease;
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item p {
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  padding-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  transition:
    max-height 320ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 220ms ease,
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    padding-bottom 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__item[open] p {
  max-height: 220px;
  opacity: 1;
  transform: translateY(0);
  padding-bottom: 26px;
}

.chains {
  overflow: hidden;
}

.chains__head {
  gap: 18px;
  margin-bottom: 34px;
}

.chains__head .eyebrow {
  position: relative;
  gap: 10px;
  min-height: 40px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  background: rgb(24, 26, 30);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 18px 36px rgba(0, 0, 0, 0.16);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.chains__head .eyebrow::before {
  content: "";
  position: absolute;
  left: 20px;
  top: -1px;
  width: 88px;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 86, 0, 0), rgba(232, 86, 0, 0.95), rgba(232, 86, 0, 0));
  opacity: 0.9;
}

.chains__head .eyebrow .eyebrow__dot {
  width: 10px;
  height: 10px;
  box-shadow: none;
}

.chains__head h2 {
  max-width: 500px;
  margin: 0 auto;
  font-size: clamp(2.9rem, 5.4vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.chains__head p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.56;
}

.chains__marquees {
  position: relative;
  margin-top: 44px;
  padding: 56px 0 20px;
}

.chains__marquees::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 72%;
  height: 220px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 30% 40%, rgba(232, 86, 0, 0.18), transparent 42%),
    radial-gradient(circle at 70% 50%, rgba(214, 187, 95, 0.16), transparent 36%);
  filter: blur(36px);
  pointer-events: none;
}

.chains__track {
  display: flex;
  width: max-content;
  gap: 30px;
}

.chains__track--top {
  margin-bottom: 34px;
  animation: chains-marquee-left 26s linear infinite;
}

.chains__track--bottom {
  animation: chains-marquee-right 28s linear infinite;
}

.chains__row {
  flex: 0 0 auto;
  display: flex;
  gap: 30px;
  min-width: max-content;
}

.chains__row span {
  width: 60px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0 16%, rgba(255, 255, 255, 0.02) 16% 100%),
    radial-gradient(circle at 55% 40%, #f6ab3f 0, #ff991e 58%, #7b4a12 100%);
  box-shadow:
    inset 12px 0 0 rgba(0, 0, 0, 0.18),
    0 12px 28px rgba(0, 0, 0, 0.14);
  opacity: 0.75;
}

.chains__row ion-icon {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.82);
}

.pulse__head {
  gap: 18px;
  margin-bottom: 42px;
}

.pulse__head .eyebrow {
  position: relative;
  gap: 10px;
  min-height: 40px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  background: rgb(24, 26, 30);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 18px 36px rgba(0, 0, 0, 0.16);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.pulse__head .eyebrow::before {
  content: "";
  position: absolute;
  left: 20px;
  top: -1px;
  width: 88px;
  height: 1px;
  background: linear-gradient(90deg, rgba(232, 86, 0, 0), rgba(232, 86, 0, 0.95), rgba(232, 86, 0, 0));
  opacity: 0.9;
}

.pulse__head .eyebrow .eyebrow__dot {
  width: 10px;
  height: 10px;
  box-shadow: none;
}

.pulse__head h2 {
  max-width: 880px;
  margin: 0 auto;
  font-size: clamp(2.9rem, 5vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.pulse__head p {
  max-width: 860px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.56;
}

.pulse__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 34px;
  padding: 36px 34px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background:
    radial-gradient(circle at 0% 0%, rgba(232, 86, 0, 0.28), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.004)),
    rgba(14, 15, 17, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 24px 70px rgba(0, 0, 0, 0.12);
}

.pulse__copy {
  display: grid;
  align-content: start;
  gap: 22px;
}

.pulse__inner-badge {
  position: relative;
  width: fit-content;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  background: rgb(24, 26, 30);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.pulse__copy h3 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(2.4rem, 3vw, 4.3rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 500;
}

.pulse__list {
  display: grid;
  gap: 0;
  margin-top: 26px;
}

.pulse__list-item {
  padding: 20px 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pulse__list-item h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
}

.pulse__list-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.pulse__list-item.is-active {
  border-bottom-color: rgba(232, 86, 0, 0.9);
}

.pulse__visual {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: end;
}

.pulse__screen {
  position: relative;
  height: 90%;
  border-radius: 46px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(255, 207, 116, 0.18) 70%, rgba(229, 139, 31, 0.32)),
    rgba(26, 28, 31, 0.98);
  overflow: hidden;
}

.pulse__screen::before {
  content: "";
  position: absolute;
  inset: 116px 26px 28px 96px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.004)),
    rgba(18, 20, 23, 0.92);
  box-shadow:
    inset 0 0 0 2px rgba(255, 188, 144, 0.74),
    0 0 34px rgba(232, 86, 0, 0.36);
}

.pulse__screen-bar {
  position: absolute;
  left: 120px;
  right: 40px;
  top: 152px;
  height: 32px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 2;
}

.pulse__screen-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.pulse__screen-bar span:nth-child(1) { background: #ff5f56; }
.pulse__screen-bar span:nth-child(2) { background: #ffbd2e; }
.pulse__screen-bar span:nth-child(3) { background: #27c93f; }

.pulse__bars {
  position: absolute;
  left: 158px;
  right: 72px;
  bottom: 68px;
  height: 60%;
  display: grid;
  grid-template-columns: repeat(16, minmax(0, 1fr));
  align-items: end;
  gap: 16px;
  z-index: 2;
}

.pulse__bars span {
  height: var(--h);
  border-radius: 999px 999px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 144, 91, 0.9) 42%, rgba(255, 83, 23, 0.72) 68%, rgba(255, 83, 23, 0.04));
}

.contact-panel {
  padding-top: 44px;
}

.contact-panel__card {
  position: relative;
  display: grid;
  gap: 22px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.006)),
    #101114;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 0 1px rgba(255, 255, 255, 0.02);
}

.contact-panel__card::before,
.contact-panel__card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  filter: blur(24px);
}

.contact-panel__card::before {
  left: -10%;
  bottom: -10%;
  width: 34%;
  height: 68%;
  background: radial-gradient(circle at 30% 60%, rgba(232, 86, 0, 0.48), transparent 70%);
}

.contact-panel__card::after {
  top: -12%;
  right: -6%;
  width: 42%;
  height: 48%;
  background: radial-gradient(circle at 70% 30%, rgba(232, 86, 0, 0.42), transparent 72%);
}

.contact-panel__info,
.contact-panel__form-wrap {
  position: relative;
  z-index: 1;
}

.contact-panel__info {
  display: grid;
  align-content: space-between;
  gap: 20px;
  min-height: 360px;
  padding: 14px 12px 8px;
}

.contact-panel__info h2 {
  max-width: 360px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.contact-panel__meta {
  display: grid;
  gap: 14px;
  margin-top: auto;
}

.contact-panel__meta p {
  margin: 0;
  color: #cfcdc9;
  font-size: 13px;
  line-height: 1.45;
}

.contact-panel__meta strong {
  color: #ffffff;
  font-weight: 500;
}

.contact-panel__meta span {
  color: rgba(255, 255, 255, 0.72);
  margin-left: 8px;
}

.contact-panel__form {
  display: grid;
  gap: 14px;
  padding: 14px 12px 8px;
}

.contact-panel__field {
  display: grid;
  gap: 8px;
}

.contact-panel__field > span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.contact-panel__field em {
  color: #ff4f3d;
  font-style: normal;
}

.contact-panel__field input,
.contact-panel__field select,
.contact-panel__field textarea {
  width: 100%;
  border: 0;
  outline: 0;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(232, 86, 0, 0.06)),
    rgba(40, 42, 47, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition:
    box-shadow 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.contact-panel__field input,
.contact-panel__field select {
  height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.92rem;
}

.contact-panel__field textarea {
  min-height: 128px;
  padding: 18px 22px;
  border-radius: 24px;
  resize: vertical;
  font-size: 0.92rem;
}

.contact-panel__field input::placeholder,
.contact-panel__field textarea::placeholder,
.contact-panel__field select {
  color: rgba(255, 255, 255, 0.26);
}

.contact-panel__field input:focus,
.contact-panel__field select:focus,
.contact-panel__field textarea:focus {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(232, 86, 0, 0.32);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.028), rgba(232, 86, 0, 0.08)),
    rgba(42, 44, 49, 0.9);
}

.contact-panel__select-wrap {
  position: relative;
}

.contact-panel__select-wrap select {
  appearance: none;
  padding-right: 58px;
}

.contact-panel__select-wrap ion-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 19px;
  color: rgba(255, 255, 255, 0.56);
  pointer-events: none;
}

.contact-panel__submit {
  width: 100%;
  min-height: 60px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 34px rgba(232, 86, 0, 0.2);
  transition:
    transform 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.contact-panel__submit:hover {
  transform: translateY(-2px);
  background: #ff6806;
}

.newsletter {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.newsletter__copy h2 {
  font-size: 1.45rem;
}

.newsletter__copy p {
  margin: 6px 0 0;
  font-size: 12px;
}

.newsletter__form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.newsletter__form input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0 8px;
  color: var(--text);
  background: transparent;
  border: 0;
  outline: 0;
}

.footer {
  padding: 22px 0 40px;
}

.footer__top {
  display: grid;
  gap: 24px;
  margin-top: 65px;
}

.footer__brand img {
  width: 88px;
}

.footer__brand p {
  max-width: 420px;
  margin-top: 12px;
  font-size: 14px;
}

.footer__links {
  display: grid;
  gap: 10px;
}

.footer__links h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.footer__links a,
.footer__bottom,
.footer__bottom a {
  color: var(--muted);
  font-size: 14px;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.footer__bottom div {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 900ms cubic-bezier(0.12, 0.23, 0.17, 0.99),
    transform 900ms cubic-bezier(0.12, 0.23, 0.17, 0.99);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes pulse-ring {
  0% {
    opacity: 0.22;
    transform: translate(-50%, -50%) scale(0.86);
  }
  70% {
    opacity: 0.75;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.18);
  }
}

@keyframes orbit-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(232, 86, 0, 0.28);
    transform: translateY(-50%) scale(1);
  }
  50% {
    box-shadow: 0 0 18px rgba(232, 86, 0, 0.65);
    transform: translateY(-50%) scale(1.15);
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes token-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes center-pulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
  50% {
    transform: translateX(-50%) scale(1.08);
    box-shadow: 0 0 28px rgba(255, 255, 255, 0.22);
  }
}

@keyframes icon-fall {
  0%,
  100% {
    transform: translateY(-12px);
  }
  50% {
    transform: translateY(18px);
  }
}

@keyframes grid-line-glow-y {
  0%,
  100% {
    opacity: 0.04;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
  50% {
    opacity: 0.42;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.22);
  }
}

@keyframes grid-line-glow-x {
  0%,
  100% {
    opacity: 0.04;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
  50% {
    opacity: 0.34;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
  }
}

@keyframes brands-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 14px));
  }
}

@keyframes chains-marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--chains-shift, 0px)));
  }
}

@keyframes chains-marquee-right {
  from {
    transform: translateX(calc(-1 * var(--chains-shift, 0px)));
  }
  to {
    transform: translateX(0);
  }
}

@media (max-width: 1023px) {
  .section {
    padding: 72px 0;
  }

  .hero__title {
    max-width: 720px;
    font-size: clamp(2.7rem, 8vw, 4.4rem);
  }

  .hero__text {
    max-width: 560px;
    font-size: 16px;
  }

  .hero__stage {
    margin-top: 44px;
  }

  .hero__dashboard {
    width: min(100%, 940px);
  }

  .features__layout,
  .gateway__top,
  .pulse__panel,
  .contact-panel__card {
    grid-template-columns: 1fr;
  }

  .features__layout,
  .gateway__top,
  .pulse__panel {
    gap: 28px;
  }

  .features__intro,
  .gateway__copy,
  .pulse__copy,
  .stats__copy {
    justify-items: start;
  }

  .features__intro h2,
  .stats__copy h2,
  .gateway__copy h2,
  .pulse__copy h3,
  .contact-panel__info h2 {
    max-width: 640px;
  }

  .features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card--hero {
    grid-column: 1 / -1;
  }

  .steps__connectors {
    display: none;
  }

  .steps__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .step-card__visual {
    min-height: 250px;
  }

  .stats__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .stats__stack {
    min-height: auto;
    display: grid;
    gap: 20px;
  }

  .stats__stack--scroll {
    position: relative;
    top: auto;
    padding-top: 0;
  }

  .stat-card {
    position: relative;
    min-height: 184px;
    padding: 24px 26px 22px;
    transform: none !important;
  }

  .gateway__visual {
    min-height: 420px;
  }

  .gateway-network {
    width: min(100%, 720px);
    height: 430px;
    transform: scale(0.88);
    transform-origin: center;
  }

  .gateway__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
  }

  .pricing__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .plan {
    min-height: auto;
  }

  .chains__head h2,
  .pulse__head h2 {
    max-width: 720px;
  }

  .chains__row span {
    width: 88px;
  }

  .chains__row ion-icon {
    font-size: 2.5rem;
  }

  .pulse__visual {
    min-height: 520px;
  }

  .pulse__screen {
    min-height: 480px;
  }

  .contact-panel__info {
    min-height: 280px;
  }

  .footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 809px) {
  .header__cta {
    display: none !important;
  }

  .shell {
    width: min(calc(100% - 22px), 100%);
  }

  .section {
    padding: 52px 12px;
  }

  .section--tight {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .header {
    padding-top: 0;
  }

  .brand img {
    width: 90px;
  }

  .header__bar {
    padding: 4px 0 10px;
  }

  .nav--mobile {
    margin-top: 8px;
    padding: 10px;
    border-radius: 24px;
  }

  .nav--mobile .btn {
    width: 100%;
    min-height: 42px;
  }

  .eyebrow,
  .features__intro .eyebrow,
  .steps__head .eyebrow,
  .stats__copy .eyebrow,
  .gateway__copy .eyebrow,
  .pricing__head .eyebrow,
  .faq__head .eyebrow,
  .chains__head .eyebrow,
  .pulse__head .eyebrow,
  .pulse__inner-badge {
    min-height: 36px;
    padding: 0 16px;
    font-size: 14px;
  }

  .hero__content {
    padding-top: 20px;
  }

  .hero__cell--wallet {
    left: -0.1%;
  }

  .hero__cell--binance {
    left: 22.8%;
  }

  .hero__cell--bitcoin {
    left: 22%;
  }

  .hero__cell--solana {
    right: 11.1%;
  }

  .hero__cell--graph {
    right: -11.1%;
  }

  .hero__title {
    max-width: 400px;
    font-size: clamp(2.2rem, 9vw, 3.35rem);
    line-height: 1.04;
  }

  .hero__text {
    max-width: 320px;
    font-size: 14px;
    line-height: 1.45;
  }

  .hero__actions {
    gap: 10px;
    flex-wrap: wrap;
  }

  .btn--small {
    min-height: 40px;
    padding: 0 18px;
  }

  .hero__stage {
    margin-top: 28px;
    padding-bottom: 18px;
  }

  .hero__dashboard {
    width: calc(100% + 10px);
    margin-left: -5px;
    padding: 8px;
    border-radius: 20px;
  }

  .hero__dashboard img {
    border-radius: 14px;
  }

  .hero__stage-glow {
    width: 180%;
    bottom: -110px;
  }

  .intro.section {
    padding-top: 8px !important;
  }

  .intro__copy {
    max-width: 340px;
    font-size: clamp(2.5rem, 8.6vw, 4rem);
    line-height: 1.12;
  }

  .brands__marquee {
    overflow: hidden;
  }

  .features__layout {
    gap: 24px;
  }

  .features__intro {
    gap: 14px;
  }

  .features__intro h2,
  .stats__copy h2,
  .gateway__copy h2 {
    max-width: 330px;
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.08;
  }

  .features__intro p,
  .stats__copy p,
  .gateway__copy p,
  .pulse__head p,
  .chains__head p,
  .faq__head p {
    max-width: 330px;
    font-size: 14px;
    line-height: 1.5;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-card {
    padding: 10px;
    border-radius: 28px;
  }

  .feature-card__empty-frame {
    position: relative;
    inset: auto;
    min-height: 250px;
    border-radius: 24px;
  }

  .feature-card--hero {
    min-height: 302px;
  }

  .feature-card__empty-frame--hero {
    min-height: 282px;
    padding: 22px 20px;
  }

  .feature-card--dapps,
  .feature-card--swap {
    min-height: 272px;
  }

  .feature-card__empty-frame--chart,
  .feature-card__empty-frame--icons {
    min-height: 252px;
    padding: 22px 20px 18px;
  }

  .feature-card__hero-copy h3 {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
  }

  .feature-card__hero-copy p,
  .feature-card__chart-copy p {
    font-size: 14px;
  }

  .feature-card__hero-person,
  .feature-card__hero-coin {
    width: 58px;
    height: 58px;
  }

  .feature-card__hero-link {
    width: 60px;
  }

  .feature-card__chart-copy h3,
  .feature-card__icons-copy h3 {
    font-size: 1.55rem;
  }

  .feature-card__chart-visual {
    min-height: 124px;
  }

  .section-head,
  .steps__head,
  .pricing__head,
  .faq__head,
  .chains__head,
  .pulse__head {
    gap: 14px;
    margin-bottom: 28px;
  }

  .steps__flow {
    padding-top: 0;
  }

  .steps__head h2,
  .pricing__head h2,
  .faq__head h2,
  .chains__head h2,
  .pulse__head h2 {
    max-width: 340px;
    margin-inline: auto;
    font-size: clamp(2.2rem, 10vw, 3.6rem);
    line-height: 1.08;
  }

  .steps__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .step-card {
    max-width: 340px;
    width: 100%;
    margin: 0 auto;
  }

  .step-card__visual {
    min-height: 272px;
    border-radius: 26px;
  }

  .step-card__panel {
    inset: 14px;
    border-radius: 24px;
  }

  .step-card__panel--account {
    padding: 24px 18px 18px;
  }

  .step-card__input {
    min-height: 42px;
    margin-bottom: 10px;
  }

  .step-card__button {
    min-height: 42px;
    margin-top: 16px;
  }

  .step-card__wallet-shape {
    width: 64%;
    height: 58%;
  }

  .step-card__wallet-plus {
    width: 46px;
    height: 46px;
    font-size: 2rem;
  }

  .step-card__panel--swap {
    padding: 16px 14px;
    gap: 8px;
  }

  .step-card__token-row {
    min-height: 44px;
  }

  .step-card__copy {
    margin-top: 14px;
  }

  .stats.section {
    padding-bottom: 0;
  }

  .stats__copy {
    gap: 14px;
    padding-top: 0;
  }

  .stats__actions {
    flex-wrap: wrap;
    gap: 14px;
  }

  .stats__avatars img {
    width: 46px;
    height: 46px;
  }

  .stats__avatars span {
    width: 48px;
    height: 48px;
    font-size: 0.9rem;
  }

  .stat-card {
    min-height: 154px;
    padding: 20px 20px 18px;
    border-radius: 28px;
  }

  .stat-card::before {
    background-size: 100% 48px, 48px 100%;
  }

  .stat-card__main {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .stat-card small,
  .stat-card__side {
    font-size: 12px;
  }

  .stat-card__meta {
    top: 18px;
    right: 18px;
  }

  .gateway.section {
    padding-top: 70px;
  }

  .gateway__top {
    gap: 18px;
  }

  .gateway__visual {
    min-height: 295px;
    overflow: hidden;
  }

  .gateway-network {
    width: 620px;
    height: 340px;
    transform: scale(0.64);
  }

  .gateway__features {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 18px;
  }

  .feature-pill {
    gap: 12px;
  }

  .feature-pill span {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .feature-pill h3 {
    font-size: 1.25rem;
  }

  .feature-pill p {
    font-size: 13px;
  }

  .pricing__grid {
    gap: 18px;
  }

  .plan {
    min-height: auto;
    padding: 22px 20px;
    border-radius: 28px;
  }

  .plan::before {
    inset: 8px;
    border-radius: 22px;
  }

  .plan__price {
    font-size: 2.45rem;
  }

  .plan ul {
    gap: 14px;
    margin-top: 28px;
  }

  .faq__grid {
    gap: 16px;
  }

  .faq__item {
    padding: 2px 18px;
    border-radius: 18px;
  }

  .faq__item summary {
    padding: 20px 38px 20px 0;
    font-size: 15px;
  }

  .faq__item summary::after {
    width: 22px;
    height: 22px;
    font-size: 1.75rem;
  }

  .chains__marquees {
    margin-top: 24px;
    padding: 26px 0 6px;
  }

  .chains__track {
    gap: 16px;
  }

  .chains__track--top {
    margin-bottom: 16px;
    animation-duration: 18s;
  }

  .chains__track--bottom {
    animation-duration: 19s;
  }

  .chains__row {
    gap: 16px;
  }

  .chains__row span {
    width: 74px;
  }

  .chains__row ion-icon {
    font-size: 1.8rem;
  }

  .pulse__panel {
    gap: 18px;
    padding: 18px;
    border-radius: 26px;
  }

  .pulse__copy {
    gap: 16px;
  }

  .pulse__copy h3 {
    max-width: 340px;
    font-size: clamp(2rem, 8vw, 3.05rem);
    line-height: 1.08;
  }

  .pulse__list {
    margin-top: 6px;
  }

  .pulse__list-item {
    padding: 16px 0 18px;
  }

  .pulse__list-item h4 {
    font-size: 1rem;
  }

  .pulse__list-item p {
    font-size: 13px;
  }

  .pulse__visual {
    min-height: 320px;
  }

  .pulse__screen {
    min-height: 320px;
    height: 100%;
    border-radius: 28px;
  }

  .pulse__screen::before {
    inset: 72px 14px 16px 46px;
    border-radius: 18px;
  }

  .pulse__screen-bar {
    left: 60px;
    right: 22px;
    top: 92px;
    height: 18px;
    gap: 7px;
  }

  .pulse__screen-bar span {
    width: 8px;
    height: 8px;
  }

  .pulse__bars {
    left: 76px;
    right: 34px;
    bottom: 34px;
    gap: 9px;
  }

  .contact-panel {
    padding-top: 26px;
  }

  .contact-panel__card {
    gap: 18px;
  }

  .contact-panel__info {
    min-height: auto;
  }

  .contact-panel__info h2 {
    max-width: 280px;
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .contact-panel__meta {
    gap: 12px;
  }

  .contact-panel__meta p,
  .contact-panel__field > span {
    font-size: 13px;
  }

  .contact-panel__field input,
  .contact-panel__field select {
    height: 45px;
    font-size: 0.9rem;
  }

  .contact-panel__field textarea {
    min-height: 118px;
    font-size: 0.9rem;
  }

  .contact-panel__submit {
    min-height: 45px;
    font-size: 0.9rem;
  }

  .newsletter {
    border-radius: 22px;
  }

  .newsletter__form {
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
  }

  .newsletter__form .btn {
    width: 100%;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer__bottom {
    text-align: left;
  }
}

@media (min-width: 810px) {
  .shell {
    width: min(calc(100% - 48px), 1200px);
  }

  .section {
    padding: 96px 0;
  }

  .section--tight {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .nav--desktop {
    display: block;
  }

  .nav--mobile,
  .burger {
    display: none;
  }

  .header__cta {
    display: inline-flex;
  }

  .brand img {
    width: 115px;
  }

  .hero__content {
    /* padding-top: 116px; */
  }

  .hero__grid-bg {
    background-size: 114px 122px;
  }

  .hero__cell {
    width: 114px;
    height: 122px;
  }

  .hero__cell img {
    width: 200px;
    height: auto;
  }

  .hero__title {
    max-width: 1120px;
    font-size: clamp(3rem, 4.25vw, 5.4rem);
  }

  .hero__text {
    max-width: 860px;
    font-size: 18px;
  }

  .hero__stage {
    margin-top: 70px;
    padding-bottom: 48px;
  }

  .hero__dashboard {
    padding: 16px;
    border-radius: 30px;
  }

  .hero__dashboard img {
    border-radius: 20px;
  }

  .hero__stage-glow {
    width: 146%;
    bottom: -310px;
  }

  .intro__copy {
    max-width: 850px;
    font-size: clamp(2.8rem, 2.9vw, 7.6rem);
  }

  .brands__row {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .brands__row img {
    height: 38px;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .section-head h2,
  .stats__copy h2,
  .gateway__copy h2,
  .pulse__copy h2,
  .newsletter__copy h2,
  .contact-panel__info h2 {
    font-size: clamp(2.05rem, 3.6vw, 3.15rem);
  }

  .features__layout {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 0.9fr);
    gap: 125px;
  }

  .features__grid {
    gap: 24px;
  }

  .feature-card {
    padding: 14px;
    border-radius: 40px;
  }

  .feature-card--hero {
    min-height: 260px;
  }

  .feature-card--dapps,
  .feature-card--swap {
    min-height: 260px;
  }

  .feature-card h3,
  .mini-card h3 {
    font-size: 1.90rem;
  }

  .feature-card p,
  .mini-card p {
    font-size: 15px;
  }

  .features__intro h2 {
    font-size: clamp(2.05rem, 3.6vw, 3.15rem);
  }

  .btn--feature {
    min-height: 50px;
    padding: 0 18px 0 20px;
  }

  .steps__head {
    margin-bottom: 52px;
  }

  .steps__connectors {
    top: 0;
    height: 116px;
  }

  .steps__grid {
    gap: 28px;
  }

  .step-card__visual {
    min-height: 318px;
  }

  .step-card__copy h3 {
    font-size: 1.1rem;
  }

  .step-card__copy p {
    font-size: 14px;
  }

  .stats__grid,
  .gateway__top,
  .pulse__grid,
  .footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .stats__stack {
    min-height: 820px;
  }

  .stats__copy p,
  .gateway__copy p,
  .pulse__copy p,
  .contact-panel__meta p {
    font-size: 16px;
  }

  .stats__avatars img {
    width: 52px;
    height: 52px;
    margin-right: -12px;
  }

  .stats__avatars span {
    font-size: 12px;
  }

  .stat-card {
    min-height: 132px;
    padding: 22px;
  }

  .stat-card strong {
    font-size: 3rem;
  }

  .gateway__features {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 38px;
  }

  .plan {
    padding: 24px;
    border-radius: 28px;
  }

  .plan__tag {
    min-height: 40px;
    padding: 0 14px;
    font-size: 12px;
  }

  .plan__price {
    font-size: 3rem;
  }

  .plan p,
  .plan li {
    font-size: 14px;
  }

  .faq__item {
    padding-inline: 20px;
  }

  .faq__item summary {
    font-size: 16px;
    padding: 18px 28px 18px 0;
  }

  .faq__item summary::after {
    width: 20px;
    height: 20px;
    top: 25px;
  }

  .faq__item p {
    font-size: 14px;
  }

  .chains__row span {
    height: auto;
  }

  .chains__row img {
    width: 22px;
    height: 22px;
  }

  .pulse__visual {
    min-height: 420px;
    border-radius: 34px;
  }

  .pulse__orb {
    width: 42px;
    height: 42px;
  }

  .pulse__ring--1 {
    width: 120px;
    height: 120px;
  }

  .pulse__ring--2 {
    width: 200px;
    height: 200px;
  }

  .pulse__ring--3 {
    width: 290px;
    height: 290px;
  }

  .pulse__chain {
    width: 26px;
    height: 124px;
  }

  .pulse__chain--1 {
    transform: translate(-50%, -50%) rotate(28deg) translateY(-94px);
  }

  .pulse__chain--2 {
    transform: translate(-50%, -50%) rotate(-28deg) translateY(94px);
  }

  .contact-panel {
    padding-top: 56px;
  }

  .contact-panel__card {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.78fr);
    gap: 40px;
    padding: 28px 30px 26px;
    border-radius: 38px;
  }

  .contact-panel__info {
    min-height: 610px;
    padding: 10px 0 6px;
  }

  .contact-panel__info h2 {
    max-width: 430px;
    font-size: clamp(2.8rem, 4.2vw, 4.35rem);
    line-height: 1.1;
  }

  .contact-panel__meta {
    gap: 8px;
  }

  .contact-panel__meta p {
    font-size: 15px;
  }

  .contact-panel__form {
    gap: 18px;
    padding: 12px 0 6px;
  }

  .contact-panel__field {
    gap: 10px;
  }

  .contact-panel__field > span {
    font-size: 16px;
  }

  .contact-panel__field input,
  .contact-panel__field select {
    height: 50px;
    font-size: 0.98rem;
  }

  .contact-panel__field textarea {
    min-height: 146px;
    font-size: 0.98rem;
  }

  .contact-panel__submit {
    min-height: 50px;
    font-size: 0.96rem;
  }

  .newsletter {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 24px;
    border-radius: 30px;
  }

  .newsletter__form {
    min-width: 360px;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
