@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --bg-panel: #f0f2f8;
  --text: #0b0f19;
  --muted: #5c6578;
  --muted-light: #8b95a8;
  --line: #e8ecf4;
  --trust: #0500ff;
  --trust-hover: #0038cc;
  --trust-soft: rgba(5, 0, 255, 0.08);
  --trust-glow: rgba(5, 0, 255, 0.15);
  --green: #16a34a;
  --radius-pill: 999px;
  --radius-card: 24px;
  --radius-card-lg: 32px;
  --shadow-sm: 0 4px 24px rgba(11, 15, 25, 0.06);
  --shadow-md: 0 12px 40px rgba(11, 15, 25, 0.08);
  --shadow-btn: 0 12px 32px rgba(5, 0, 255, 0.22);
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --section-label: #6b7280;
  --section-label-size: 1.125rem;
  --wrap: 1200px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

strong {
  font-weight: 700;
}

.wrap {
  width: min(var(--wrap), 100% - 32px);
  margin-inline: auto;
}

@media (min-width: 768px) {
  .wrap {
    width: min(var(--wrap), 100% - 48px);
  }
}

/* ---------- utilities ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
}

.pill--soft {
  color: var(--trust);
  background: var(--trust-soft);
  border: 1px solid rgba(5, 0, 255, 0.12);
}

.pill--outline {
  color: var(--trust);
  background: #fff;
  border: 1px solid rgba(5, 0, 255, 0.2);
}

.section-kicker {
  display: block;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--trust);
  margin-bottom: 12px;
}

.section-title {
  margin: 0 0 16px;
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-sub {
  margin: 0 auto 32px;
  max-width: 560px;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border: none;
  font-size: 0.9375rem;
  font-weight: 600;
  transition:
    transform 0.2s var(--ease),
    background 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--trust);
  color: #fff;
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  background: var(--trust-hover);
}

.btn-outline {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--trust);
  color: var(--trust);
}

.btn-lg {
  padding: 16px 28px;
  font-size: 1rem;
}

.btn-sm {
  padding: 10px 16px;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

.header-cta svg {
  width: 16px;
  height: 16px;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.brand img {
  width: 32px;
  height: auto;
}

.brand-text {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--trust);
  line-height: 1.1;
}

.brand-text strong {
  font-weight: 800;
}

.nav {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s var(--ease);
}

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

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

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.lang-btn img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
}

.lang-btn svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

.menu-toggle {
  display: flex;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  padding: 20px 24px 32px;
  flex-direction: column;
  gap: 4px;
  z-index: 90;
  border-top: 1px solid var(--line);
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

.mobile-nav .btn {
  margin-top: 16px;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .brand img {
    width: 34px;
  }

  .brand-text {
    font-size: 1rem;
  }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 32px 0 24px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(5, 0, 255, 0.08), transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.06), transparent 40%),
    url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23d8dce8'/%3E%3C/svg%3E");
  background-size: auto, auto, 24px 24px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  gap: 32px;
  align-items: center;
}

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

.hero-copy h1 {
  margin: 16px 0;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-lead {
  margin: 0 auto 28px;
  max-width: 520px;
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-actions .btn {
  width: 100%;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}

.hero-checks li {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.hero-checks li::before {
  content: '✓';
  display: inline-block;
  margin-right: 6px;
  color: var(--green);
  font-weight: 700;
}

.hero-visual {
  display: flex;
  justify-content: center;
  background: transparent;
}

.hero-visual img {
  width: min(100%, 480px);
  background: transparent;
  filter: drop-shadow(0 24px 48px rgba(5, 0, 255, 0.12));
}

@media (min-width: 900px) {
  .hero {
    padding: 56px 0 40px;
  }

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

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

  .hero-lead {
    margin-left: 0;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    width: auto;
  }

  .hero-checks {
    justify-content: flex-start;
  }
}

/* ---------- compatible wallets ---------- */
.wallets-compat {
  padding: 64px 0 72px;
  background: var(--bg);
  overflow: hidden;
}

.wallets-compat-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, var(--wrap));
  margin-inline: auto;
  padding-inline: 20px;
  text-align: center;
}

.wallets-compat-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 32px;
  margin-bottom: 48px;
}

.wallets-compat-payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 24px;
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px 11px 18px;
  border: 1px solid #d8dce6;
  border-radius: 10px;
  background: #fff;
  font-family: var(--font);
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pay-badge svg {
  flex-shrink: 0;
}

.pay-badge--apple {
  color: #111827;
}

.pay-badge--apple svg {
  width: 20px;
  height: 20px;
}

.pay-badge--google {
  color: #6b7280;
}

.pay-badge--google svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 639px) {
  .pay-badge--google {
    border-color: transparent;
    padding-inline: 6px;
  }
}

.wallets-compat-title,
.investors-label {
  margin: 0;
  font-family: var(--font);
  font-size: var(--section-label-size);
  font-weight: 500;
  line-height: 1.45;
  color: var(--section-label);
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.wallets-compat-title {
  max-width: 18rem;
}

.wallets-marquee {
  position: relative;
  width: min(100vw, 100%);
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
  padding: 12px 0 16px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.wallets-marquee-track {
  display: flex;
  width: max-content;
  animation: wallets-marquee 36s linear infinite;
  will-change: transform;
}

.wallets-marquee-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 80px;
  margin: 0;
  padding: 0 40px;
  list-style: none;
}

.wallets-marquee-group li {
  display: flex;
  flex: 0 0 auto;
}

.wallet-item {
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.wallet-name {
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #9ca3af;
  white-space: nowrap;
}

.wallets-marquee-group .wallet-logo {
  display: block;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  object-fit: contain;
  opacity: 0.55;
}

@keyframes wallets-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (min-width: 480px) {
  .wallets-compat-title {
    max-width: none;
    white-space: nowrap;
  }
}

@media (min-width: 640px) {
  .wallets-compat {
    padding: 72px 0 80px;
  }

  :root {
    --section-label-size: 1.25rem;
  }

  .wallets-compat-inner {
    padding-inline: 28px;
  }

  .wallets-compat-head {
    gap: 36px;
    margin-bottom: 52px;
  }

  .wallets-compat-title {
    max-width: none;
    white-space: nowrap;
  }

  .pay-badge {
    font-size: 1.25rem;
    padding: 12px 22px;
  }

  .pay-badge--apple svg {
    width: 22px;
    height: 22px;
  }

  .pay-badge--google svg {
    width: 24px;
    height: 24px;
  }

  .wallets-marquee-group {
    gap: 112px;
    padding: 0 56px;
  }

  .wallets-marquee-group .wallet-logo {
    width: 40px;
    height: 40px;
  }

  .wallet-name {
    font-size: 1rem;
  }
}

@media (min-width: 900px) {
  .wallets-compat {
    padding: 80px 0 88px;
  }

  :root {
    --section-label-size: 1.3125rem;
  }

  .wallets-compat-head {
    gap: 40px;
    margin-bottom: 56px;
  }

  .wallets-marquee-group {
    gap: 128px;
    padding: 0 64px;
  }

  .wallets-marquee-group .wallet-logo {
    width: 44px;
    height: 44px;
  }

  .wallet-item {
    gap: 10px;
  }

  .wallet-name {
    font-size: 1.0625rem;
  }

  .wallets-marquee-track {
    animation-duration: 40s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wallets-marquee-track {
    animation: none;
    justify-content: center;
    width: 100%;
    gap: 48px;
  }

  .wallets-marquee {
    mask-image: none;
    margin-inline: 0;
    width: 100%;
  }

  .wallets-marquee-group + .wallets-marquee-group {
    display: none;
  }

  .wallets-marquee-group {
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px 56px;
    padding: 0;
  }
}

/* ---------- investors ---------- */
.investors {
  padding: 44px 16px 52px;
  background: var(--bg);
}

.investors-inner {
  width: min(100%, 480px);
  margin-inline: auto;
}

.investors-label {
  margin: 0 0 28px;
  text-align: center;
}

.investors-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.investor-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  padding: 40px 20px;
  text-align: center;
  background: #fff;
  border: 1px solid #e8ecf4;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(11, 15, 25, 0.04);
}

.investor-logo {
  display: block;
  width: auto;
  max-width: 94%;
  height: auto;
  margin-inline: auto;
  object-fit: contain;
  object-position: center center;
}

.investor-logo--a16z {
  max-height: 32px;
}

.investor-logo--paradigm {
  max-height: 42px;
}

.investor-logo--sequoia {
  max-height: 34px;
}

.investor-logo--pantera {
  max-height: 34px;
}

.investor-logo--bcap {
  max-height: 32px;
}

@media (max-width: 767px) {
  .investors-grid > li:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 16px) / 2);
    max-width: 100%;
  }
}

@media (min-width: 480px) {
  .investors-inner {
    width: min(100%, 520px);
  }

  .investor-card {
    min-height: 140px;
    padding: 44px 24px;
  }

  .investor-logo--a16z {
    max-height: 34px;
  }

  .investor-logo--paradigm {
    max-height: 44px;
  }

  .investor-logo--sequoia,
  .investor-logo--pantera {
    max-height: 36px;
  }

  .investor-logo--bcap {
    max-height: 34px;
  }
}

@media (min-width: 768px) {
  .investors {
    padding: 56px 32px 68px;
  }

  .investors-inner {
    width: min(100%, var(--wrap));
  }

  .investors-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
  }

  .investors-grid > li:nth-child(5) {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }

  .investor-card {
    min-height: 156px;
    padding: 48px 28px;
  }

  .investor-logo--a16z {
    max-height: 36px;
  }

  .investor-logo--paradigm {
    max-height: 48px;
  }

  .investor-logo--sequoia,
  .investor-logo--pantera {
    max-height: 38px;
  }

  .investor-logo--bcap {
    max-height: 36px;
  }
}

/* ---------- features intro & tabs ---------- */
.features-intro {
  padding: 56px 0 24px;
}

.feature-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.feature-tab {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s var(--ease);
}

.feature-tab.is-active,
.feature-tab:hover {
  color: var(--trust);
  border-color: rgba(5, 0, 255, 0.25);
  background: var(--trust-soft);
}

/* ---------- feature cards ---------- */
.feature-cards {
  padding: 16px 0 56px;
}

.feature-cards-grid {
  display: grid;
  gap: 16px;
}

.fcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card-lg);
  padding: 28px 24px;
}

.fcard-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--trust-soft);
  color: var(--trust);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.fcard-icon svg {
  width: 24px;
  height: 24px;
}

.fcard h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 700;
}

.fcard p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .feature-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fcard--wide {
    grid-column: span 1;
  }
}

/* ---------- rewards ---------- */
.rewards-section {
  padding: 56px 0;
  background: var(--bg-soft);
}

.rewards-grid {
  display: grid;
  gap: 40px;
}

.rewards-copy h2 {
  margin: 12px 0 12px;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.rewards-copy > p {
  margin: 0 0 28px;
  color: var(--muted);
}

.cashback-tiers {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tier-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.tier-pct {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--trust);
}

.tier-head span:last-child {
  font-size: 0.875rem;
  color: var(--muted);
}

.tier-bar {
  height: 8px;
  background: var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.tier-bar span {
  display: block;
  height: 100%;
  background: var(--trust);
  border-radius: 4px;
}

.networks-wrap {
  position: relative;
}

.networks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.net-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.net-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  padding: 8px;
}

.net-icon img {
  width: 32px;
  height: 32px;
  display: block;
}

.net-card--tron .net-icon {
  background: #ffe8ec;
}

.net-card--eth .net-icon {
  background: #f0f0f5;
}

.net-card--bsc .net-icon {
  background: #fff8e6;
}

.net-card--poly .net-icon {
  background: #f3e8ff;
}

.net-card h4 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.net-card p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

.networks-max {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--trust);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(5, 0, 255, 0.35);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.networks-max svg {
  width: 14px;
  height: 14px;
  margin-bottom: 2px;
}

.networks-max strong {
  font-size: 1.1rem;
  line-height: 1;
}

@media (min-width: 900px) {
  .rewards-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* ---------- premium ---------- */
.premium-section {
  padding: 56px 0;
}

.premium-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.premium-copy h2 {
  margin: 12px 0 16px;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.premium-copy > p {
  margin: 0 0 24px;
  color: var(--muted);
}

.premium-list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.premium-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-weight: 500;
}

.premium-ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f2ff;
  color: var(--trust);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.premium-ico svg {
  width: 20px;
  height: 20px;
  display: block;
  stroke: currentColor;
}

.btn-premium-cta {
  width: 100%;
  min-height: 56px;
  padding: 17px 28px;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  gap: 10px;
  box-shadow: none;
}

.btn-premium-cta:hover,
.btn-premium-cta:focus-visible {
  box-shadow: none;
  background: var(--trust-hover);
}

.btn-premium-cta svg {
  width: 20px;
  height: 20px;
}

.premium-visual {
  display: flex;
  justify-content: center;
  padding: 12px 0 4px;
  background: transparent;
}

/* Trust Wallet premium card — trustcard.png + скругление как у пластика */
.trust-card-scene {
  --card-radius: clamp(20px, 5.45vw, 26px);
  position: relative;
  width: min(100%, 440px);
  margin-inline: auto;
  background: none;
  line-height: 0;
  border-radius: var(--card-radius);
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 1448 / 1086;
  filter:
    drop-shadow(0 28px 56px rgba(11, 15, 40, 0.26))
    drop-shadow(0 14px 36px rgba(5, 0, 255, 0.2));
}

.trust-card-scene::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 54%;
  width: 92%;
  height: 78%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(99, 102, 241, 0.38) 0%,
    rgba(5, 0, 255, 0.14) 45%,
    transparent 72%
  );
  filter: blur(32px);
  pointer-events: none;
  z-index: 0;
}

.trust-card-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  object-fit: cover;
  background: none;
  border: none;
  outline: none;
  border-radius: inherit;
  vertical-align: top;
}

@media (min-width: 900px) {
  .premium-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-card-scene {
    width: 100%;
    max-width: 440px;
    margin-left: auto;
    margin-right: 0;
    --card-radius: 26px;
  }
}

/* ---------- final CTA ---------- */
.final-cta {
  padding: 56px 0;
}

.final-cta-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.final-cta-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.final-cta-card > p {
  margin: 0 0 28px;
  color: var(--muted);
}

.final-tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

.final-tags span {
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  color: var(--muted);
}

@media (min-width: 640px) {
  .final-tags {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (min-width: 900px) {
  .final-cta-card {
    padding: 56px 64px;
    max-width: 720px;
    margin: 0 auto;
  }
}

/* ---------- signup ---------- */
.signup-section {
  padding: 56px 0 80px;
  background: var(--bg-soft);
}

.wallet-panel {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-md);
}

.apply-form__head {
  margin-bottom: 6px;
}

.apply-form__head h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
}

.apply-form__hint {
  margin: 0 0 16px;
  font-size: 0.8125rem;
  color: var(--muted);
}

.apply-form__fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field--full {
  grid-column: 1 / -1;
}

.field span {
  font-size: 0.8125rem;
  font-weight: 600;
}

.field input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  font-size: 0.9375rem;
  background: #fafbfe;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field input:focus {
  outline: none;
  border-color: var(--trust);
  box-shadow: 0 0 0 3px var(--trust-soft);
  background: #fff;
}

.apply-form__submit {
  width: 100%;
}

.apply-steps {
  display: flex;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.apply-steps__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.apply-steps__item.is-active {
  color: var(--trust);
  background: var(--trust-soft);
  border-color: rgba(5, 0, 255, 0.2);
}

.apply-steps__item.is-done {
  color: #0d8a4a;
  background: rgba(13, 138, 74, 0.08);
}

.apply-steps__num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  background: #fff;
  border: 1px solid currentColor;
}

.apply-step.is-hidden {
  display: none;
}

.apply-summary {
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: 0.8125rem;
  color: var(--muted);
}

.apply-back {
  display: inline-block;
  margin: 0 0 16px;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--trust);
}

.wallet-step-title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
}

.wallet-panel > p {
  margin: 0 0 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9375rem;
}

.wallet-trust {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  border: 2px solid var(--trust);
  border-radius: 16px;
  background: var(--trust-soft);
  font-size: 1rem;
  font-weight: 700;
  color: var(--trust);
  margin-bottom: 16px;
}

.wallet-trust img {
  width: 32px;
  height: 32px;
}

.wallet-trust.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

.wallet-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: var(--muted);
  font-size: 0.8125rem;
}

.wallet-divider::before,
.wallet-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.wallet-status {
  margin: 16px 0 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  min-height: 1.25em;
}

.wallet-status.is-ok {
  color: #0d8a4a;
}

.wallet-status.is-err {
  color: #c62828;
}

@media (min-width: 520px) {
  .apply-form__fields {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- footer ---------- */
.site-footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 48px;
}

.footer-brand .brand-text {
  display: block;
  margin: 12px 0;
}

.footer-brand p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 0.9375rem;
  font-weight: 700;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--trust);
}

.licenses {
  margin-bottom: 40px;
}

.licenses-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 24px;
  font-size: 1.1rem;
  font-weight: 700;
}

.licenses-title svg {
  width: 22px;
  height: 22px;
  color: var(--trust);
}

.licenses-grid {
  display: grid;
  gap: 16px;
}

.license-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: #fff;
}

.license-country {
  margin-bottom: 10px;
  font-size: 1rem;
}

.license-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--trust-soft);
  color: var(--trust);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.license-no {
  margin: 0 0 8px;
  font-size: 0.8125rem;
  color: var(--muted-light);
}

.license-addr {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.45;
}

.compliance {
  text-align: center;
}

.compliance-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.compliance-badges span {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}

.footer-copy {
  margin: 0 0 16px;
  font-size: 0.8125rem;
  color: var(--muted);
}

.footer-disclaimer {
  margin: 0 auto;
  max-width: 720px;
  font-size: 0.6875rem;
  color: var(--muted-light);
  line-height: 1.55;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }

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

@media (min-width: 1024px) {
  .licenses-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .compliance-badges {
    flex-wrap: nowrap;
  }
}

/* ---------- scroll top ---------- */
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 80;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--trust);
  color: #fff;
  box-shadow: var(--shadow-btn);
  display: grid;
  place-items: center;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.scroll-top[hidden] {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
}

.scroll-top:not([hidden]):hover {
  background: var(--trust-hover);
}

/* ---------- toast ---------- */
.toast {
  position: fixed;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  padding: 12px 20px;
  background: var(--text);
  color: #fff;
  border-radius: 12px;
  font-size: 0.875rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  z-index: 200;
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* panel highlight when tab clicked */
.section-panel.is-highlight {
  animation: panel-flash 1.2s var(--ease);
}

@keyframes panel-flash {
  0%,
  100% {
    background: transparent;
  }
  30% {
    background: var(--trust-soft);
  }
}

.signup-anchor {
  height: 0;
  overflow: hidden;
}

/* ---------- issue flow modals ---------- */
.flow-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

.flow-overlay:not([hidden]) {
  display: flex;
}

.flow-overlay[hidden] {
  display: none !important;
}

.flow-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 15, 25, 0.55);
  backdrop-filter: blur(4px);
}

.flow-sheet {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: min(92vh, 900px);
  background: #fff;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -8px 40px rgba(11, 15, 25, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: flow-slide-up 0.35s var(--ease);
}

@keyframes flow-slide-up {
  from {
    transform: translateY(100%);
    opacity: 0.6;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.flow-screen {
  display: none;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.flow-screen.is-active {
  display: flex;
}

.flow-header {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 8px;
  padding: 16px 12px 8px;
  flex-shrink: 0;
}

.flow-header--simple .flow-title {
  grid-column: 2;
}

.flow-header-spacer {
  width: 44px;
}

.flow-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}

.flow-icon-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text);
  border-radius: 12px;
  display: grid;
  place-items: center;
}

.flow-icon-btn:hover {
  background: var(--bg-soft);
}

.flow-sub {
  margin: 0 20px 12px;
  font-size: 0.9375rem;
  color: var(--muted);
}

.flow-sub--center {
  text-align: center;
}

.flow-stepper {
  display: flex;
  gap: 8px;
  padding: 0 16px 16px;
  overflow-x: auto;
  scrollbar-width: none;
  flex-shrink: 0;
}

.flow-stepper::-webkit-scrollbar {
  display: none;
}

.flow-step {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.flow-step::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}

.flow-step.is-active {
  color: var(--trust);
  border-color: rgba(5, 0, 255, 0.25);
  background: var(--trust-soft);
}

.flow-step.is-active::before {
  background: var(--trust);
}

.flow-step.is-done {
  color: var(--muted);
}

.flow-step.is-done::before {
  background: var(--green);
}

.flow-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 20px 16px;
  -webkit-overflow-scrolling: touch;
}

.flow-body--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 24px;
  padding-bottom: 24px;
}

.flow-footer {
  flex-shrink: 0;
  padding: 12px 20px 24px;
  padding-bottom: max(24px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: #fff;
}

.flow-footnote {
  margin: 12px 0 0;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--muted-light);
}

.flow-card-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.flow-card-opt {
  display: grid;
  grid-template-columns: 88px 1fr 28px;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.flow-card-opt:has(input:checked),
.flow-card-opt.is-selected {
  border-color: var(--trust);
  box-shadow: 0 0 0 1px var(--trust);
}

.flow-card-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.flow-card-preview {
  width: 88px;
  height: 56px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}

.flow-card-preview::after {
  content: 'TRUST';
  position: absolute;
  left: 8px;
  top: 8px;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
  white-space: pre;
  line-height: 1.2;
}

.flow-card-preview--white {
  background: linear-gradient(135deg, #e8e4ff 0%, #f5f3ff 50%, #ddd6fe 100%);
}

.flow-card-preview--white::after {
  color: rgba(5, 0, 255, 0.5);
}

.flow-card-preview--blue {
  background: linear-gradient(135deg, #0500ff 0%, #3b35ff 50%, #0500ff 100%);
}

.flow-card-preview--metal {
  background: linear-gradient(135deg, #1a1f36 0%, #3d4459 50%, #0b0f19 100%);
}

.flow-card-opt-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.flow-card-opt-text strong {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.flow-card-opt-text span {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.4;
  font-weight: 400;
}

.flow-badge {
  font-style: normal;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  background: var(--trust-soft);
  color: var(--trust);
}

.flow-card-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--line);
  flex-shrink: 0;
}

.flow-card-opt:has(input:checked) .flow-card-check,
.flow-network-opt:has(input:checked) .flow-card-check {
  border-color: var(--trust);
  background: var(--trust);
  box-shadow: inset 0 0 0 3px #fff;
}

.flow-wallet-icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  background: var(--trust-soft);
  color: var(--trust);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.flow-wallet-icon svg {
  width: 48px;
  height: 48px;
}

.flow-lead {
  margin: 0;
  max-width: 280px;
  color: var(--muted);
  font-size: 0.9375rem;
}

.flow-network-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.flow-network-opt {
  display: grid;
  grid-template-columns: 48px 1fr 28px;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  cursor: pointer;
}

.flow-network-opt:has(input:checked) {
  border-color: var(--trust);
  box-shadow: 0 0 0 1px var(--trust);
}

.flow-network-opt input {
  position: absolute;
  opacity: 0;
}

.flow-network-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #f0f2f8;
  display: grid;
  place-items: center;
  padding: 10px;
}

.flow-network-opt--tron .flow-network-icon {
  background: #ffe8ec;
}

.flow-network-opt--eth .flow-network-icon {
  background: #eef0ff;
}

.flow-network-opt--bnb .flow-network-icon {
  background: #fff6e6;
}

.flow-network-icon img {
  width: 28px;
  height: 28px;
  display: block;
}

.flow-network-label {
  font-weight: 700;
  font-size: 1rem;
}

.flow-ready {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.flow-ready-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.12);
  color: var(--green);
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.flow-ready strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.flow-ready p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.flow-summary {
  margin: 0 0 20px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.flow-summary > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.flow-summary > div:last-child {
  border-bottom: none;
}

.flow-summary dt {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
}

.flow-summary dd {
  margin: 0;
  font-weight: 700;
  font-size: 0.9375rem;
}

.flow-sum-free {
  color: var(--green);
}

.flow-perks-label {
  margin: 0 0 10px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted-light);
}

.flow-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.flow-perks > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}

.flow-wallet-status {
  margin-top: 12px;
  text-align: center;
  font-size: 0.8125rem;
}

.flow-wallet-status.is-ok {
  color: #0d8a4a;
}

.flow-wallet-status.is-err {
  color: #c62828;
}

.flow-footer--wallets {
  gap: 0;
}

.flow-wallet-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.flow-wallet-or {
  margin: 0;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--muted);
}

.flow-wallet-btn {
  width: 100%;
  display: grid;
  grid-template-columns: 36px 1fr 20px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 2px solid var(--line);
  background: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), opacity 0.2s var(--ease);
}

.flow-wallet-btn img {
  width: 28px;
  height: 28px;
  display: block;
}

.flow-wallet-btn__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.flow-wallet-btn__name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.flow-wallet-btn__via {
  font-size: 0.75rem;
  color: var(--muted);
}

.flow-wallet-btn__spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--line);
  border-top-color: currentColor;
  opacity: 0;
}

.flow-wallet-btn.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

.flow-wallet-btn.is-loading .flow-wallet-btn__spinner {
  opacity: 1;
  animation: flow-wallet-spin 0.75s linear infinite;
}

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

.flow-wallet-btn--trust {
  border-color: var(--trust);
  background: var(--trust-soft);
  color: var(--trust);
}

.flow-wallet-btn--trust .flow-wallet-btn__name {
  color: var(--trust);
}

.flow-wallet-btn--safepal {
  border-color: #4a21ef;
  background: rgba(74, 33, 239, 0.08);
  color: #4a21ef;
}

.flow-wallet-btn--safepal .flow-wallet-btn__name {
  color: #4a21ef;
}

.flow-wallet-btn--safepal.is-loading .flow-wallet-btn__spinner {
  border-top-color: #4a21ef;
}

body.flow-open {
  overflow: hidden;
}

/* WalletConnect QR — выше issue-flow (.flow-overlay z-index: 300) */
wcm-modal {
  --wcm-z-index: 100000 !important;
}

wcm-modal,
wcm-container {
  z-index: 100000 !important;
}

/* Пока идёт WC — опускаем нашу модалку, чтобы QR не уезжал под sheet */
body.wc-connecting .flow-overlay {
  z-index: 50;
}

body.wc-connecting .flow-backdrop {
  pointer-events: none;
}

@media (min-width: 640px) {
  .flow-overlay {
    align-items: center;
    padding: 24px;
  }

  .flow-sheet {
    max-width: 480px;
    max-height: min(90vh, 820px);
    border-radius: 24px;
    animation: flow-scale-in 0.3s var(--ease);
  }

  @keyframes flow-scale-in {
    from {
      transform: scale(0.96);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
}
