:root {
  --blue: #21d4fd;
  --blue-2: #7cffb2;
  --ink: #f5fff9;
  --muted: #8fa6a8;
  --line: rgba(124, 255, 178, 0.18);
  --soft: rgba(255, 255, 255, 0.06);
  --gold: #f7c948;
  --pink: #ff4ecd;
  --dark: #06090d;
  --panel: rgba(9, 18, 24, 0.78);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 4%, rgba(33, 212, 253, 0.2), transparent 26%),
    radial-gradient(circle at 85% 12%, rgba(255, 78, 205, 0.12), transparent 22%),
    linear-gradient(180deg, #05070b 0%, #081016 42%, #05070b 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(124, 255, 178, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 212, 253, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000, transparent 88%);
  pointer-events: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  min-height: 86px;
  padding: 16px clamp(22px, 5vw, 70px);
  background: rgba(5, 9, 13, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-left {
  display: none;
  align-items: center;
  gap: 12px;
  justify-self: start;
  min-width: 0;
}

.menu-toggle,
.menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(124, 255, 178, 0.18);
  border-radius: 18px;
  color: var(--ink);
  background:
    radial-gradient(circle at 30% 20%, rgba(124, 255, 178, 0.18), transparent 45%),
    rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(33, 212, 253, 0.04);
  cursor: pointer;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.menu-toggle {
  display: none;
}

.menu-toggle {
  flex-direction: column;
  gap: 7px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.24s ease, width 0.24s ease;
}

.menu-toggle:hover,
.menu-toggle[aria-expanded="true"],
.menu-close:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 255, 178, 0.45);
  box-shadow: 0 16px 32px rgba(33, 212, 253, 0.16);
}

.menu-toggle:hover span:first-child,
.menu-toggle[aria-expanded="true"] span:first-child {
  width: 26px;
  transform: translateX(2px);
}

.menu-close {
  position: relative;
  flex: 0 0 auto;
}

.menu-close::before,
.menu-close::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-close::before {
  transform: rotate(45deg);
}

.menu-close::after {
  transform: rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: stretch;
  padding: clamp(18px, 3vw, 42px);
  background:
    radial-gradient(circle at 18% 12%, rgba(124, 255, 178, 0.16), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(33, 212, 253, 0.14), transparent 24%),
    rgba(3, 7, 10, 0.9);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transform: scale(1.01);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.menu-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(560px, 100%);
  max-height: calc(100vh - clamp(36px, 6vw, 84px));
  margin: auto;
  overflow: hidden;
  border: 1px solid rgba(124, 255, 178, 0.22);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(8, 24, 26, 0.94), rgba(4, 11, 17, 0.96)),
    radial-gradient(circle at 72% 58%, rgba(33, 212, 253, 0.16), transparent 34%);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
}

.menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(18px, 2.6vw, 30px);
  border-bottom: 1px solid rgba(124, 255, 178, 0.16);
}

.menu-head img {
  width: min(310px, 62vw);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.menu-grid {
  display: block;
  padding: clamp(18px, 3vw, 34px);
  overflow-y: auto;
}

.menu-column {
  display: grid;
  align-content: start;
  gap: 9px;
  min-width: 0;
}

.menu-column strong {
  margin-bottom: 5px;
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-column a,
.menu-column span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 12px 15px;
  border: 1px solid rgba(124, 255, 178, 0.12);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 800;
  line-height: 1.15;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.menu-column a::after {
  content: ">";
  margin-left: 12px;
  color: var(--blue);
}

.menu-column a:hover {
  transform: translateX(4px);
  border-color: rgba(33, 212, 253, 0.36);
  background: rgba(33, 212, 253, 0.12);
}

.menu-column .menu-label {
  margin: 18px 0 3px;
  color: rgba(124, 255, 178, 0.78);
  font-size: 12px;
}

body.menu-open {
  overflow: hidden;
}

.language,
.start-button {
  width: max-content;
  border: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.language {
  position: relative;
  display: inline-flex;
  padding: 0;
  color: var(--ink);
  overflow: visible;
}

.language::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  top: 100%;
  height: 14px;
}

.language-current,
.language-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  min-height: 50px;
  padding: 0 18px;
  color: var(--ink);
  font-weight: 900;
}

.language-current {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(124, 255, 178, 0.16);
  border-radius: 999px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 100%;
  padding: 6px;
  background: rgba(5, 14, 20, 0.94);
  border: 1px solid rgba(124, 255, 178, 0.2);
  border-radius: 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.language:hover .language-menu,
.language:focus-within .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language:hover,
.language:focus-within {
  z-index: 30;
}

.language:hover .language-current,
.language:focus-within .language-current {
  background: rgba(124, 255, 178, 0.1);
  border-color: rgba(124, 255, 178, 0.36);
  box-shadow: 0 0 24px rgba(33, 212, 253, 0.1);
}

.language-menu a {
  min-height: 42px;
  border-radius: 13px;
}

.language-menu a:hover {
  color: #03110d;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  max-width: min(24vw, 280px);
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  color: rgba(235, 255, 248, 0.72);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 900;
  white-space: nowrap;
  transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.desktop-nav a:hover {
  color: var(--ink);
  background: rgba(124, 255, 178, 0.08);
  border-color: rgba(124, 255, 178, 0.2);
  transform: translateY(-1px);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
  min-width: 0;
}

.start-button {
  padding: 16px 25px;
  color: #06100d;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.start-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(33, 212, 253, 0.26);
}

.grid-bg {
  background-color: transparent;
  background-image:
    radial-gradient(circle at center, rgba(124, 255, 178, 0.1) 0 1px, transparent 1px),
    linear-gradient(rgba(33, 212, 253, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 212, 253, 0.05) 1px, transparent 1px);
  background-size: 18px 18px, 96px 96px, 96px 96px;
}

.hero {
  padding: clamp(46px, 7vw, 84px) 24px 62px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 960px);
  margin: 0 auto;
  padding: clamp(42px, 6.4vw, 72px);
  color: #fff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(124, 255, 178, 0.13), rgba(33, 212, 253, 0.08)),
    rgba(6, 14, 20, 0.82);
  border: 1px solid rgba(124, 255, 178, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: floatCard 5.5s ease-in-out infinite;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -35% -10% auto;
  height: 70%;
  background: conic-gradient(from 90deg, transparent, rgba(124, 255, 178, 0.32), rgba(33, 212, 253, 0.24), transparent);
  filter: blur(32px);
  opacity: 0.82;
  animation: haloSpin 10s linear infinite;
}

.hero-card > * {
  position: relative;
}

.hero-card h1,
.section-heading h2,
.metal h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-card h1 {
  max-width: 820px;
  margin-inline: auto;
  font-size: clamp(34px, 4.5vw, 60px);
}

.section-heading h2,
.metal h2 {
  font-size: clamp(38px, 6vw, 78px);
}

.wallet-brand {
  display: inline-flex;
  align-items: center;
  margin: 0 auto 11px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
}

.wallet-brand img {
  display: block;
  width: clamp(150px, 18vw, 230px);
  height: auto;
}

.hero-card p {
  width: min(680px, 100%);
  margin: 26px auto 32px;
  color: rgba(214, 238, 233, 0.78);
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.35;
}

.hero-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  max-width: 660px;
  margin: 0 auto 34px;
  padding: 22px clamp(22px, 5vw, 44px);
  color: #04110d;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  border-radius: 18px;
  font-size: clamp(19px, 2.1vw, 27px);
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(33, 212, 253, 0.26);
}

.check-list,
.metal ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 780px;
  margin-inline: auto;
  text-align: left;
  color: rgba(230, 255, 246, 0.9);
}

.check-list li {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: center;
  min-height: 108px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(4, 13, 17, 0.62);
  border: 1px solid rgba(124, 255, 178, 0.18);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.check-list li::after {
  content: "";
  position: absolute;
  inset: auto -24px -42px auto;
  width: 92px;
  height: 92px;
  background: radial-gradient(circle, rgba(33, 212, 253, 0.2), transparent 64%);
  pointer-events: none;
}

.check-list li:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 255, 178, 0.38);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22), 0 0 28px rgba(33, 212, 253, 0.1);
}

.benefit-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #03110d;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  border-radius: 13px;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(124, 255, 178, 0.24);
}

.check-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}

.check-list small {
  display: block;
  color: rgba(214, 238, 233, 0.62);
  font-size: 13px;
  line-height: 1.35;
}

.showcase {
  padding: 76px 24px 0;
  overflow: hidden;
}

.ticker-strip {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 54px;
  padding: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-block: 1px solid var(--line);
  background: rgba(3, 8, 12, 0.78);
  contain: layout paint;
}

.ticker-track {
  display: flex;
  width: max-content;
  color: var(--blue-2);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  will-change: transform;
  animation: tickerMove 34s linear infinite;
}

.ticker-group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: clamp(58px, 7vw, 132px);
  padding-right: clamp(58px, 7vw, 132px);
  white-space: nowrap;
}

.ticker-strip span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  text-shadow: 0 0 18px rgba(124, 255, 178, 0.34);
}

.card-stage {
  position: relative;
  min-height: 540px;
  width: min(100%, 1000px);
  margin: 0 auto;
}

.payment-card,
.stat-card,
.audit-badge {
  position: absolute;
  border: 1px solid rgba(124, 255, 178, 0.2);
  background: rgba(8, 17, 23, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.payment-card {
  width: min(46vw, 430px);
  border-radius: 20px;
}

.payment-card img {
  display: block;
  width: 100%;
}

.payment-card-front {
  top: 72px;
  left: 50%;
  transform: translateX(-38%);
  animation: drift 6s ease-in-out infinite;
}

.payment-card-back {
  top: 118px;
  left: 28%;
  opacity: 0.5;
  filter: grayscale(1);
}

.stat-card {
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border-radius: 12px;
}

.stat-card strong {
  color: var(--ink);
  font-size: 20px;
}

.stat-card span,
.audit-badge {
  color: var(--muted);
  font-size: 12px;
}

.stat-left {
  top: 20px;
  left: 3%;
}

.stat-right {
  top: 254px;
  right: 4%;
}

.audit-badge {
  left: 50%;
  top: 370px;
  transform: translateX(-50%);
  padding: 18px 30px;
  border-radius: 14px;
  letter-spacing: 3px;
}

.audit-badge strong {
  color: var(--blue-2);
  font-size: 22px;
  letter-spacing: 5px;
}

.logos {
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.logos p,
.section-heading p,
.feature-card p,
.metal p,
.coin-row span {
  color: var(--muted);
}

.logos p {
  margin: 0 0 34px;
  font-size: 19px;
}

.logos div {
  display: flex;
  justify-content: center;
  gap: clamp(32px, 8vw, 110px);
  flex-wrap: wrap;
  color: rgba(235, 255, 248, 0.72);
  font-size: 24px;
  font-weight: 800;
}

.security {
  padding: 110px 24px;
  overflow: hidden;
}

.security-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.security-copy {
  width: min(800px, 100%);
  margin: 0 auto 54px;
  text-align: center;
}

.security-copy h2 {
  margin: 0;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.08;
}

.security-copy p {
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.45;
}

.security-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
  min-height: 340px;
  padding: clamp(24px, 4vw, 40px);
  background:
    radial-gradient(circle at 28% 50%, rgba(124, 255, 178, 0.16), transparent 32%),
    radial-gradient(circle at 88% 20%, rgba(33, 212, 253, 0.16), transparent 28%),
    rgba(5, 14, 20, 0.72);
  border: 1px solid rgba(124, 255, 178, 0.2);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.security-core {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 260px;
  text-align: center;
}

.security-core::before {
  content: "";
  position: absolute;
  width: min(260px, 72%);
  aspect-ratio: 1;
  border: 1px solid rgba(124, 255, 178, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(33, 212, 253, 0.1), inset 0 0 40px rgba(124, 255, 178, 0.08);
}

.security-orbit {
  position: absolute;
  width: min(306px, 86%);
  aspect-ratio: 1;
  border: 1px dashed rgba(33, 212, 253, 0.42);
  border-radius: 50%;
  animation: haloSpin 18s linear infinite;
}

.security-orbit::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--blue-2);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(124, 255, 178, 0.8);
}

.security-core strong {
  position: relative;
  color: var(--blue-2);
  font-size: clamp(46px, 6vw, 72px);
  line-height: 1;
  text-shadow: 0 0 30px rgba(124, 255, 178, 0.22);
}

.security-core span:last-child {
  position: relative;
  margin-top: 12px;
  color: rgba(214, 238, 233, 0.72);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.security-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.security-badges article,
.security-grid article {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(6, 16, 22, 0.72);
  border: 1px solid rgba(124, 255, 178, 0.16);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.security-badges article {
  display: grid;
  align-content: end;
  min-height: 122px;
  padding: 22px;
}

.security-badges article::after,
.security-grid article::after {
  content: "";
  position: absolute;
  inset: auto -32px -48px auto;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(33, 212, 253, 0.18), transparent 66%);
}

.security-badges article:hover,
.security-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(33, 212, 253, 0.4);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24), 0 0 32px rgba(33, 212, 253, 0.1);
}

.security-badges span {
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.security-badges strong {
  margin-top: 10px;
  color: var(--ink);
  font-size: 21px;
}

.wallet-support {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 126px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(124, 255, 178, 0.12), rgba(33, 212, 253, 0.08)),
    rgba(6, 16, 22, 0.76);
  border: 1px solid rgba(124, 255, 178, 0.22);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.wallet-support::before {
  content: "";
  position: absolute;
  inset: -60% auto auto -20%;
  width: 280px;
  height: 280px;
  background: conic-gradient(from 140deg, transparent, rgba(124, 255, 178, 0.18), rgba(33, 212, 253, 0.16), transparent);
  filter: blur(18px);
  animation: haloSpin 13s linear infinite;
}

.wallet-support > * {
  position: relative;
}

.wallet-support span:first-child {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wallet-support strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.08;
}

.wallet-support p {
  max-width: 490px;
  margin: 10px 0 0;
  color: rgba(214, 238, 233, 0.68);
  font-size: 16px;
  line-height: 1.45;
}

.wallet-chips {
  display: flex;
  gap: 12px;
  align-items: center;
}

.wallet-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 92px;
  min-height: 50px;
  padding: 0 18px;
  color: #03110d;
  background: rgba(245, 255, 249, 0.94);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 0 26px rgba(33, 212, 253, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.wallet-chip svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.wallet-chip-apple svg {
  fill: #05070b;
}

.wallet-chip strong {
  color: #05070b;
  font-size: 18px;
  font-weight: 900;
}

.wallet-chip-google {
  background: #fff;
}

.usecases {
  padding: clamp(78px, 9vw, 126px) 24px;
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.usecase-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(6, 16, 22, 0.72);
  border: 1px solid rgba(124, 255, 178, 0.16);
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 18px 48px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.usecase-card::before {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -58px;
  width: 138px;
  height: 138px;
  background: radial-gradient(circle, rgba(33, 212, 253, 0.18), transparent 68%);
}

.usecase-card:hover {
  transform: translateY(-5px);
  border-color: rgba(33, 212, 253, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 54px rgba(0, 0, 0, 0.24);
}

.usecase-card strong {
  position: relative;
  display: block;
  max-width: 210px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.14;
}

.usecase-card p {
  position: relative;
  margin: 18px 0 0;
  color: rgba(214, 238, 233, 0.68);
  font-size: 16px;
  line-height: 1.52;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.security-grid article {
  min-height: 230px;
  padding: 28px;
}

.security-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  color: #03110d;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  border-radius: 16px;
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(33, 212, 253, 0.18);
}

.security-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #03110d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.security-grid h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.16;
}

.security-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.features {
  padding: 100px 24px;
}

.section-heading {
  width: min(850px, 100%);
  margin: 0 auto 66px;
  text-align: center;
}

.pill,
.gold-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-bottom: 28px;
  padding: 0 24px;
  color: var(--blue-2);
  background: rgba(124, 255, 178, 0.1);
  border: 1px solid rgba(124, 255, 178, 0.22);
  border-radius: 999px;
  font-weight: 800;
}

.section-heading p {
  margin: 26px auto 0;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.35;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.feature-card {
  min-height: 290px;
  padding: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(7, 16, 22, 0.78);
  border: 1px solid rgba(124, 255, 178, 0.16);
  border-radius: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.28), 0 0 36px rgba(33, 212, 253, 0.12);
  border-color: rgba(33, 212, 253, 0.42);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  color: #fff;
  background: linear-gradient(145deg, var(--pink), var(--blue) 48%, var(--blue-2));
  border-radius: 14px;
  font-size: 31px;
  box-shadow: 0 0 28px rgba(33, 212, 253, 0.2);
}

.feature-card h3 {
  margin: 0 0 18px;
  font-size: 25px;
  line-height: 1.18;
}

.feature-card p {
  margin: 0;
  font-size: 19px;
  line-height: 1.55;
}

.rewards {
  padding: 100px 24px 120px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 78, 205, 0.13), transparent 32%),
    rgba(255, 255, 255, 0.025);
}

.bars,
.coin-row {
  width: min(900px, 100%);
  margin: 0 auto;
}

.bar-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
}

.bar-row strong {
  color: var(--blue-2);
  font-size: 34px;
}

.bar-row span {
  justify-self: end;
  color: var(--muted);
  font-size: 18px;
}

.bar-row i {
  grid-column: 1 / -1;
  height: 13px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.bar-row i::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-2), var(--blue), var(--pink));
  border-radius: inherit;
  transition: width 1.2s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.bar-row.is-visible i::before {
  width: var(--value);
}

.coin-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 108px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  margin-top: 68px;
}

.coin-row article {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 176px;
  padding: 28px 24px;
  background: rgba(8, 17, 23, 0.78);
  border: 1px solid rgba(124, 255, 178, 0.16);
  border-radius: 22px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
  text-align: center;
}

.coin-row article:first-child {
  grid-column: 1;
}

.coin-row article:nth-of-type(2) {
  grid-column: 3;
}

.coin-row img {
  width: 56px;
  height: 56px;
}

.coin-row strong {
  font-size: 22px;
  line-height: 1.15;
}

.bonus {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(33, 212, 253, 0.1), 0 0 0 24px rgba(255, 78, 205, 0.06);
  font-size: 29px;
  font-weight: 800;
  justify-self: center;
}

.metal {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: clamp(72px, 9vw, 132px) 24px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 22%, rgba(33, 212, 253, 0.2), transparent 24%),
    radial-gradient(circle at 12% 92%, rgba(124, 255, 178, 0.16), transparent 30%),
    radial-gradient(circle at 52% 110%, rgba(255, 78, 205, 0.12), transparent 28%),
    linear-gradient(135deg, #05080d 0%, #0b1820 48%, #05080d 100%);
}

.metal::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 255, 178, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 212, 253, 0.04) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.metal-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(44px, 8vw, 112px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.metal-copy {
  max-width: 560px;
  text-align: left;
}

.gold-pill {
  color: var(--blue-2);
  background: rgba(124, 255, 178, 0.1);
  border: 1px solid rgba(124, 255, 178, 0.28);
}

.metal h2 {
  width: min(700px, 100%);
  font-size: clamp(42px, 5.4vw, 76px);
}

.metal p {
  width: min(720px, 100%);
  margin: 30px 0 36px;
  color: rgba(214, 238, 233, 0.68);
  font-size: 21px;
  line-height: 1.55;
}

.metal ul {
  width: min(610px, 100%);
  margin-bottom: 38px;
  text-align: left;
  font-size: 20px;
  font-weight: 700;
}

.metal li::before {
  content: "✧";
  margin-right: 14px;
  color: var(--blue-2);
}

.metal a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 20px 42px;
  color: #03110d;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  border-radius: 13px;
  font-size: 20px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.metal a:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(33, 212, 253, 0.26);
}

.metal-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 440px;
}

.metal-glow {
  position: absolute;
  width: min(100%, 620px);
  aspect-ratio: 1.45;
  background: radial-gradient(circle, rgba(124, 255, 178, 0.22), rgba(33, 212, 253, 0.16) 42%, transparent 70%);
  filter: blur(10px);
  transform: rotate(-8deg);
}

.metal img {
  position: relative;
  width: min(620px, 100%);
  filter: drop-shadow(0 22px 50px rgba(0, 0, 0, 0.42)) drop-shadow(0 0 34px rgba(33, 212, 253, 0.12));
  transform: rotate(-4deg);
  animation: metalFloat 6.5s ease-in-out infinite;
}

.site-footer {
  padding: clamp(54px, 7vw, 86px) 24px;
  border-top: 1px solid var(--line);
  background: rgba(3, 8, 12, 0.82);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(150px, 0.75fr));
  align-items: start;
  gap: clamp(26px, 4vw, 58px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-brand-block {
  display: grid;
  gap: 18px;
  max-width: 360px;
}

.footer-brand img {
  display: block;
  width: min(250px, 34vw);
  height: auto;
}

.footer-brand-block p {
  margin: 0;
  color: rgba(214, 238, 233, 0.68);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column strong {
  margin-bottom: 5px;
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(235, 255, 248, 0.72);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-column a:hover {
  color: var(--blue-2);
  transform: translateX(3px);
}

.legal-hero {
  padding: clamp(70px, 10vw, 128px) 24px 54px;
}

.legal-shell {
  width: min(980px, 100%);
  margin: 0 auto;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.95;
}

.legal-hero p {
  width: min(720px, 100%);
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.45;
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue-2);
  font-weight: 900;
}

.legal-content {
  padding: 32px 24px 110px;
}

.legal-grid {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 32px;
}

.legal-toc {
  position: sticky;
  top: 112px;
  align-self: start;
  display: grid;
  gap: 10px;
  padding: 16px;
  background: rgba(6, 16, 22, 0.72);
  border: 1px solid rgba(124, 255, 178, 0.16);
  border-radius: 20px;
}

.legal-toc a {
  padding: 12px 14px;
  color: rgba(235, 255, 248, 0.72);
  border-radius: 13px;
  font-weight: 800;
}

.legal-toc a:hover {
  color: #03110d;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
}

.legal-document {
  display: grid;
  gap: 20px;
}

.legal-card {
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(6, 16, 22, 0.72);
  border: 1px solid rgba(124, 255, 178, 0.16);
  border-radius: 22px;
}

.legal-highlight {
  border-color: rgba(33, 212, 253, 0.36);
  box-shadow: 0 0 40px rgba(33, 212, 253, 0.08);
}

.legal-card h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

.legal-card p,
.legal-card li {
  color: rgba(214, 238, 233, 0.76);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.legal-card p {
  margin: 0;
}

.legal-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 24px;
}

.legal-card a {
  color: var(--blue-2);
  font-weight: 900;
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 112px;
  padding: clamp(24px, 3vw, 34px);
  background:
    radial-gradient(circle at 22% 18%, rgba(124, 255, 178, 0.14), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(6, 16, 22, 0.76);
  border: 1px solid rgba(124, 255, 178, 0.18);
  border-radius: 24px;
}

.faq-intro h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
}

.faq-intro p {
  margin: 0;
  color: rgba(214, 238, 233, 0.7);
  font-size: 18px;
  line-height: 1.5;
}

.faq-metrics {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.faq-metrics span {
  display: grid;
  gap: 4px;
  padding: 16px;
  color: rgba(214, 238, 233, 0.66);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(124, 255, 178, 0.13);
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
}

.faq-metrics strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

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

.faq-item {
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(8, 13, 18, 0.84);
  border: 1px solid rgba(124, 255, 178, 0.12);
  border-radius: 14px;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(33, 212, 253, 0.28);
  background:
    radial-gradient(circle at 92% 20%, rgba(33, 212, 253, 0.08), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03)),
    rgba(8, 13, 18, 0.9);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 22px 58px 22px 24px;
  color: var(--ink);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.22s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-28%) rotate(225deg);
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: rgba(214, 238, 233, 0.72);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
}

.story-grid,
.review-grid,
.fees-highlights {
  display: grid;
  gap: 20px;
}

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

.story-card,
.review-card,
.fees-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(6, 16, 22, 0.72);
  border: 1px solid rgba(124, 255, 178, 0.16);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.story-card::after,
.review-card::after,
.fees-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(33, 212, 253, 0.16), transparent 68%);
  pointer-events: none;
}

.story-card strong {
  display: block;
  color: var(--blue-2);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
}

.story-card span,
.review-card span,
.fees-card span {
  display: block;
  margin-top: 12px;
  color: rgba(214, 238, 233, 0.68);
  font-size: 16px;
  line-height: 1.45;
}

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

.review-carousel {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.review-carousel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.review-carousel-head .pill {
  min-height: 36px;
  margin-bottom: 16px;
  padding-inline: 18px;
  font-size: 13px;
}

.review-carousel-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

.review-controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.review-controls button {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(124, 255, 178, 0.2);
  border-radius: 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.review-controls button:hover {
  transform: translateY(-2px);
  border-color: rgba(33, 212, 253, 0.42);
  background: rgba(33, 212, 253, 0.12);
}

.review-controls button:disabled {
  opacity: 0.42;
  cursor: default;
  transform: none;
  border-color: rgba(124, 255, 178, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.review-viewport {
  overflow: hidden;
  min-width: 0;
  border-radius: 22px;
}

.review-track {
  display: flex;
  gap: 20px;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.review-track .review-card {
  flex: 0 0 calc((100% - 20px) / 2);
  min-height: 270px;
}

.review-card p {
  margin: 0;
  color: rgba(235, 255, 248, 0.86);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.review-card strong {
  display: block;
  margin-top: 22px;
  color: var(--ink);
  font-size: 18px;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
}

.review-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(124, 255, 178, 0.24);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease;
}

.review-dots button.is-active {
  width: 28px;
  background: linear-gradient(90deg, var(--blue-2), var(--blue));
}

.about-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.about-cta h2 {
  margin-bottom: 10px;
}

.about-cta a,
.fees-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  color: #03110d;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  border-radius: 15px;
  font-weight: 900;
}

.fees-table {
  overflow: hidden;
  border: 1px solid rgba(124, 255, 178, 0.16);
  border-radius: 22px;
  background: rgba(6, 16, 22, 0.72);
}

.fees-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(160px, 0.8fr);
  gap: 18px;
  align-items: center;
  padding: 22px clamp(18px, 3vw, 34px);
  border-bottom: 1px solid rgba(124, 255, 178, 0.1);
}

.fees-row:first-child {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 900;
}

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

.fees-row span:first-child {
  color: rgba(235, 255, 248, 0.76);
}

.fees-row span:last-child {
  justify-self: end;
  color: var(--ink);
  font-weight: 900;
  text-align: right;
}

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

.fees-card strong {
  color: var(--blue-2);
  font-size: 22px;
}

.registration-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 42px);
  background:
    radial-gradient(circle at 18% 12%, rgba(124, 255, 178, 0.16), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(33, 212, 253, 0.16), transparent 26%),
    rgba(3, 7, 10, 0.88);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s ease;
}

.registration-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.registration-panel {
  position: relative;
  overflow: hidden;
  width: min(720px, 100%);
  max-height: min(860px, calc(100vh - 32px));
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(5, 14, 20, 0.94);
  border: 1px solid rgba(124, 255, 178, 0.22);
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.26s ease;
}

.registration-modal.is-open .registration-panel {
  transform: translateY(0) scale(1);
}

.registration-panel::before {
  content: "";
  position: absolute;
  inset: -38% -14% auto;
  height: 58%;
  background: conic-gradient(from 90deg, transparent, rgba(124, 255, 178, 0.22), rgba(33, 212, 253, 0.18), transparent);
  filter: blur(34px);
  opacity: 0.72;
  pointer-events: none;
  animation: haloSpin 14s linear infinite;
}

.registration-panel > * {
  position: relative;
}

.registration-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(124, 255, 178, 0.2);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  cursor: pointer;
}

.registration-close::before,
.registration-close::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 22px;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.registration-close::before {
  transform: rotate(45deg);
}

.registration-close::after {
  transform: rotate(-45deg);
}

.registration-head {
  padding-right: 56px;
}

.registration-head .pill {
  min-height: 36px;
  margin-bottom: 18px;
  padding-inline: 18px;
  font-size: 13px;
}

.registration-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
}

.registration-head p,
.registration-note,
.registration-error,
.registration-success p {
  color: rgba(214, 238, 233, 0.68);
}

.registration-head p {
  margin: 14px 0 0;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.45;
}

.registration-form {
  margin-top: 28px;
}

.registration-steps {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.registration-steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(124, 255, 178, 0.16);
  border-radius: 50%;
  color: rgba(235, 255, 248, 0.58);
  background: rgba(255, 255, 255, 0.05);
  font-size: 14px;
  font-weight: 900;
}

.registration-steps span.is-active,
.registration-steps span.is-complete {
  color: #03110d;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  border-color: transparent;
  box-shadow: 0 0 22px rgba(33, 212, 253, 0.18);
}

.registration-steps i {
  display: block;
  height: 2px;
  overflow: hidden;
  background: rgba(124, 255, 178, 0.14);
  border-radius: 999px;
}

.registration-steps i.is-complete {
  background: linear-gradient(90deg, var(--blue-2), var(--blue));
}

.registration-step,
.registration-success {
  display: none;
}

.registration-step.is-active,
.registration-success.is-active {
  display: grid;
  gap: 16px;
  animation: formStepIn 0.24s ease both;
}

.registration-step h3,
.registration-success h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
}

.registration-step label {
  display: grid;
  gap: 8px;
  color: rgba(235, 255, 248, 0.74);
  font-size: 14px;
  font-weight: 800;
}

.registration-step input[type="text"],
.registration-step input[type="email"],
.registration-step input[type="tel"] {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(124, 255, 178, 0.16);
  border-radius: 15px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.registration-step input:focus {
  border-color: rgba(33, 212, 253, 0.48);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 0 4px rgba(33, 212, 253, 0.09);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.choice-grid label {
  position: relative;
  display: block;
  min-height: 156px;
  padding: 20px;
  border: 1px solid rgba(124, 255, 178, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(6, 16, 22, 0.68);
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
}

.choice-grid label:has(input:checked) {
  border-color: rgba(33, 212, 253, 0.58);
  box-shadow: 0 0 28px rgba(33, 212, 253, 0.14);
}

.choice-grid strong,
.choice-grid small {
  display: block;
}

.choice-grid strong {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.16;
}

.choice-grid small {
  color: rgba(214, 238, 233, 0.64);
  font-size: 15px;
  line-height: 1.4;
}

.registration-note {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.check-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(124, 255, 178, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.check-field input {
  width: 20px;
  height: 20px;
  accent-color: var(--blue-2);
}

.registration-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
}

.registration-actions button {
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 15px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.registration-back {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(124, 255, 178, 0.14) !important;
}

.registration-next,
.registration-submit {
  margin-left: auto;
  color: #03110d;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
}

.registration-submit {
  display: none;
}

.registration-actions.is-last .registration-next {
  display: none;
}

.registration-actions.is-last .registration-submit {
  display: inline-flex;
  align-items: center;
}

.registration-actions.is-first .registration-back,
.registration-form.is-sent .registration-actions {
  display: none;
}

.registration-error {
  min-height: 22px;
  margin: 14px 0 0;
  color: #ff9db7;
  font-size: 14px;
  font-weight: 800;
}

.registration-success {
  min-height: 220px;
  align-content: center;
  padding: 26px;
  text-align: center;
  background: rgba(124, 255, 178, 0.08);
  border: 1px solid rgba(124, 255, 178, 0.2);
  border-radius: 18px;
}

body.registration-open {
  overflow: hidden;
}

.section-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-item {
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.2, 0.75, 0.2, 1);
  transition-delay: calc(var(--i, 0) * 75ms);
}

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

@keyframes floatCard {
  50% {
    transform: translateY(-8px);
  }
}

@keyframes haloSpin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes tickerMove {
  to {
    transform: translateX(-50%);
  }
}

@keyframes drift {
  50% {
    transform: translateX(-38%) translateY(-10px) rotate(1deg);
  }
}

@keyframes growBar {
  from {
    width: 0;
  }
}

@keyframes metalFloat {
  50% {
    transform: rotate(-2deg) translateY(-12px);
  }
}

@keyframes formStepIn {
  from {
    opacity: 0;
    transform: translateX(14px);
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 84px;
    padding: 14px 20px;
  }

  .header-left {
    display: inline-flex;
    gap: 9px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    gap: 9px;
  }

  .language {
    font-size: 15px;
  }

  .brand {
    justify-self: center;
    max-width: min(28vw, 210px);
  }

  .start-button {
    padding: 15px 20px;
    border-radius: 15px;
    font-size: 15px;
  }

  .hero {
    padding: 42px 20px 58px;
  }

  .hero-card {
    padding: 34px 28px;
  }

  .hero-cta {
    grid-template-columns: 1fr auto;
    padding: 22px;
  }

  .card-stage {
    min-height: 470px;
  }

  .payment-card {
    width: 270px;
  }

  .payment-card-front {
    left: 52%;
    top: 62px;
  }

  .payment-card-back {
    left: 17%;
    top: 100px;
  }

  .stat-left {
    left: 0;
  }

  .stat-right {
    right: 0;
    top: 232px;
  }

  .audit-badge {
    top: 340px;
  }

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

  .security-panel {
    grid-template-columns: 1fr;
  }

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

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

  .feature-card {
    min-height: 0;
  }

  .coin-row {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    margin-top: 52px;
  }

  .metal-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .metal-copy {
    max-width: none;
    text-align: center;
  }

  .metal ul {
    margin-inline: auto;
  }

  .metal-visual {
    min-height: 320px;
  }

  .metal img {
    width: min(540px, 92%);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
    max-width: 520px;
  }

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

  .legal-toc {
    position: static;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow-x: auto;
  }

  .story-grid,
  .review-grid,
  .fees-highlights,
  .about-cta {
    grid-template-columns: 1fr;
  }

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

  .review-track .review-card {
    flex-basis: 100%;
  }

  .registration-panel {
    overflow-y: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: auto minmax(80px, 1fr) auto;
    padding-inline: 21px;
  }

  .header-left {
    gap: 8px;
  }

  .header-actions {
    gap: 6px;
  }

  .menu-toggle,
  .menu-close {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .language {
    max-width: 154px;
    white-space: nowrap;
  }

  .language-current,
  .language-menu a {
    min-width: 50px;
    min-height: 46px;
    padding-inline: 10px;
  }

  .brand {
    max-width: 108px;
  }

  .wallet-brand {
    margin-bottom: 9px;
    padding: 4px 10px;
  }

  .wallet-brand img {
    width: 150px;
  }

  .start-button {
    padding: 13px 10px;
    font-size: 14px;
  }

  .menu-overlay {
    padding: 10px;
  }

  .menu-panel {
    max-height: calc(100vh - 20px);
    border-radius: 24px;
  }

  .menu-head {
    padding: 16px;
  }

  .menu-head img {
    width: min(220px, 58vw);
  }

  .menu-grid {
    padding: 16px;
  }

  .menu-column a,
  .menu-column span {
    min-height: 44px;
    padding: 11px 14px;
    border-radius: 15px;
    font-size: 17px;
  }

  .hero {
    padding-inline: 32px;
  }

  .ticker-strip {
    height: 48px;
  }

  .ticker-track {
    animation-duration: 28s;
  }

  .ticker-group {
    gap: 42px;
    padding-right: 42px;
  }

  .hero-card {
    border-radius: 26px;
  }

  .check-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .check-list li {
    min-height: 94px;
    padding: 16px;
  }

  .showcase {
    padding-top: 44px;
  }

  .card-stage {
    min-height: 420px;
  }

  .payment-card {
    width: 272px;
  }

  .payment-card-front {
    left: 48%;
  }

  .payment-card-back {
    left: 10%;
  }

  .audit-badge {
    width: max-content;
    top: 320px;
  }

  .logos {
    padding: 50px 18px;
  }

  .logos div {
    gap: 34px;
    font-size: 22px;
  }

  .features,
  .security,
  .rewards {
    padding-inline: 32px;
  }

  .security {
    padding-block: 76px;
  }

  .security-panel {
    padding: 20px;
    border-radius: 24px;
  }

  .security-badges {
    grid-template-columns: 1fr;
  }

  .wallet-support {
    grid-template-columns: 1fr;
  }

  .wallet-chips {
    flex-wrap: wrap;
  }

  .security-core {
    min-height: 220px;
  }

  .security-grid article {
    min-height: 0;
    padding: 24px;
  }

  .usecases {
    padding-inline: 32px;
  }

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

  .usecase-card {
    min-height: 0;
    padding: 24px;
  }

  .feature-card {
    padding: 32px;
  }

  .bar-row span {
    max-width: 230px;
    text-align: right;
  }

  .coin-row {
    gap: 16px;
  }

  .coin-row article {
    grid-column: auto;
    min-width: 0;
    width: min(100%, 360px);
    min-height: 152px;
    padding: 24px 18px;
  }

  .bonus {
    grid-column: auto;
    grid-row: auto;
    order: -1;
    width: 92px;
    height: 92px;
    font-size: 27px;
  }

  .metal {
    padding: 76px 32px 88px;
  }

  .metal h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .metal p {
    font-size: 18px;
  }

  .metal ul {
    font-size: 17px;
  }

  .metal a {
    width: 100%;
    justify-content: center;
    padding-inline: 20px;
    font-size: 17px;
  }

  .metal-visual {
    min-height: 230px;
  }

  .metal img {
    width: 100%;
    transform: rotate(0deg);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand img {
    width: 190px;
  }

  .faq-shell {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .faq-item summary {
    min-height: 60px;
    padding: 18px 52px 18px 18px;
  }

  .faq-item summary::after {
    right: 20px;
  }

  .faq-item p {
    padding: 0 18px 20px;
  }

  .legal-hero,
  .legal-content {
    padding-inline: 32px;
  }

  .legal-toc {
    display: flex;
  }

  .legal-toc a {
    flex: 0 0 auto;
  }

  .fees-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .fees-row span:last-child {
    justify-self: start;
    text-align: left;
  }

  .registration-modal {
    padding: 10px;
  }

  .registration-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .registration-head {
    padding-right: 46px;
  }

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

  .choice-grid label {
    min-height: 132px;
  }

  .registration-actions {
    flex-direction: column;
  }

  .registration-actions button,
  .registration-next,
  .registration-submit {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }
}

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