/* ================================================
   BALLIN' — styles.css
   Dark luxury fintech · Full animation system
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500&family=JetBrains+Mono:wght@400;500&family=Syne:wght@700;800&display=swap');

/* ── VARIABLES ── */
:root {
  --bg:       #07090E;
  --surface:  #0E1119;
  --elevated: #141824;
  --blue:     #2D7EFF;
  --blue-dim: rgba(45,126,255,0.12);
  --blue-glow:rgba(45,126,255,0.25);
  --blue-hi:  #5B9EFF;
  --text:     #EEF2FF;
  --muted:    #5C6A88;
  --border:   rgba(255,255,255,0.06);
  --gold:     #C8A96E;
  --gold-dim: rgba(200,169,110,0.15);
  --radius:   14px;
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; }
button { font-family: inherit; cursor: pointer; }
a { text-decoration: none; }

/* ── GRAIN OVERLAY ── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ── CONTAINER ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─────────────────────────────
   HEADER
───────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(7,9,14,0.88);
  backdrop-filter: blur(24px);
  border-color: var(--border);
}
.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: opacity var(--transition);
}
.logo:hover { opacity: 0.8; }
.logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
}

.header-nav {
  display: flex;
  gap: 32px;
}
.header-nav a {
  color: var(--muted);
  font-size: 13px;
  transition: color var(--transition);
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.header-nav a:hover { color: var(--text); }
.header-nav a:hover::after { transform: scaleX(1); }

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch { display: flex; gap: 2px; }
.lang-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  padding: 4px 7px;
  border-radius: 5px;
  transition: color var(--transition), background var(--transition);
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active {
  color: var(--blue);
  background: var(--blue-dim);
}

.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px;
  color: var(--muted);
  display: flex;
  align-items: center;
  transition: color var(--transition), border-color var(--transition);
}
.theme-toggle svg { width: 16px; height: 16px; }
.theme-toggle:hover { color: var(--text); border-color: rgba(255,255,255,0.15); }
.icon-sun { display: none; }

body.light-mode {
  --bg: #F4F5F7;
  --surface: #FFFFFF;
  --elevated: #EAEDF2;
  --text: #0D1117;
  --muted: #7A8499;
  --border: rgba(0,0,0,0.08);
}
body.light-mode .icon-moon { display: none; }
body.light-mode .icon-sun { display: block; }

.btn-telegram {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 400;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-telegram svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-telegram:hover {
  background: var(--blue-hi);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--blue-glow);
}
.btn-telegram:active { transform: translateY(0); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.mobile-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(7,9,14,0.97);
  backdrop-filter: blur(20px);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--blue); }
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 28px;
  background: none; border: none;
  color: var(--muted);
  font-size: 32px;
  transition: color var(--transition);
}
.mobile-menu-close:hover { color: var(--text); }

/* ─────────────────────────────
   BUTTONS
───────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 400;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--blue-hi);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--blue-glow);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 400;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
}

/* ─────────────────────────────
   HERO
───────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: contents;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(45,126,255,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(45,126,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 80px 48px;
  max-width: 560px;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: heroLineIn 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 0.15s; }
.hero-title .line:nth-child(2) { animation-delay: 0.28s; color: var(--blue); }
.hero-title .line:nth-child(3) { animation-delay: 0.41s; }

@keyframes heroLineIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 32px;
  opacity: 0;
  animation: heroLineIn 0.7s cubic-bezier(0.16,1,0.3,1) forwards 0.55s;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  opacity: 0;
  animation: heroLineIn 0.7s cubic-bezier(0.16,1,0.3,1) forwards 0.68s;
}

.trust-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroLineIn 0.7s cubic-bezier(0.16,1,0.3,1) forwards 0.8s;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.trust-badge svg {
  color: var(--blue);
  flex-shrink: 0;
}

/* HERO CARD */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 48px 80px 0;
  opacity: 0;
  animation: heroLineIn 0.9s cubic-bezier(0.16,1,0.3,1) forwards 0.4s;
}

.hero-card-wrapper {
  position: relative;
  width: 420px;
  max-width: 100%;
  aspect-ratio: 420 / 265;
  filter: drop-shadow(0 40px 80px rgba(45,126,255,0.2));
  animation: float 5s ease-in-out infinite;
  transform-style: preserve-3d;
  perspective: 1000px;
  cursor: default;
  transition: filter var(--transition);
}
.hero-card-wrapper:hover {
  filter: drop-shadow(0 50px 100px rgba(45,126,255,0.35));
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotateX(2deg) rotateY(-5deg); }
  50% { transform: translateY(-10px) rotateX(-2deg) rotateY(5deg); }
}

@keyframes spin360 {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

.hero-card-wrapper:hover {
  animation-play-state: paused;
}

.visa-card-svg, .showcase-visa-card {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 16px;
  transition: transform 0.15s ease-out;
}

.card-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse 80% 60% at 50% 70%, rgba(45,126,255,0.2), transparent 70%);
  pointer-events: none;
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.08); }
}

/* ─────────────────────────────
   FEATURE STRIP
───────────────────────────── */
.feature-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
}
.feature-strip::before,
.feature-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.feature-strip::before { left: 0;  background: linear-gradient(to right,  var(--surface), transparent); }
.feature-strip::after  { right: 0; background: linear-gradient(to left, var(--surface), transparent); }

.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
}
.ticker-track span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  flex-shrink: 0;
  transition: color var(--transition);
}
.ticker-track span:hover { color: var(--blue); }
.ticker-track span::before {
  content: '·';
  margin-right: 48px;
  color: var(--border);
}
.ticker-track span:first-child::before { display: none; }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────
   SECTIONS
───────────────────────────── */
.section { padding: 100px 0; }

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 60px;
  line-height: 1.1;
}

/* ─────────────────────────────
   HOW IT WORKS
───────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-dim), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.step:hover {
  border-color: rgba(45,126,255,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(45,126,255,0.1);
}
.step:hover::before { opacity: 1; }

.step-number {
  font-family: 'Inter', sans-serif;
  font-size: 72px;
  font-weight: 500;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 16px; right: 16px;
  line-height: 1;
  user-select: none;
  transition: color var(--transition);
}
.step:hover .step-number { color: rgba(45,126,255,0.07); }

.step-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
  transition: background 0.22s;
  position: relative;
  z-index: 1;
}
.step:hover .step-icon {
  background: rgba(45,126,255,0.18);
}
.step-title {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.step-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.step-connector {
  position: absolute;
  right: -18px; top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 20px;
  z-index: 10;
}

/* ─────────────────────────────
   CARD SHOWCASE
───────────────────────────── */
#card-showcase { background: var(--surface); }

.card-showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.showcase-card-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 420 / 265;
  perspective: 1000px;
  cursor: pointer;
}
.showcase-visa-card {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transition: transform 0.15s ease-out;
  transform-style: preserve-3d;
  cursor: default;
}
.showcase-card-wrapper::after {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse 80% 50% at 50% 80%, rgba(45,126,255,0.15), transparent 70%);
  pointer-events: none;
}

.card-specs { display: flex; flex-direction: column; gap: 0; }
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.spec-row:last-child { border-bottom: none; }
.spec-row:hover {
  background: var(--blue-dim);
  margin: 0 -12px;
  padding: 13px 12px;
  border-radius: 8px;
  border-color: transparent;
}
.spec-label { font-size: 13px; color: var(--muted); }
.spec-value {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}

/* ─────────────────────────────
   BENEFITS
───────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.benefit-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0;
  transform: scaleX(0);
  transition: opacity var(--transition), transform 0.4s ease;
}
.benefit-card:hover {
  border-color: rgba(45,126,255,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(45,126,255,0.08);
}
.benefit-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}
.benefit-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}
.benefit-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─────────────────────────────
   ECOSYSTEM MARQUEE
───────────────────────────── */
#ecosystem { padding-bottom: 100px; }
#ecosystem .section-title { padding: 0 32px; }

.ecosystem-marquee {
  overflow: hidden;
  position: relative;
}
.ecosystem-marquee::before,
.ecosystem-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.ecosystem-marquee::before { left: 0;  background: linear-gradient(to right, var(--bg), transparent); }
.ecosystem-marquee::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }

.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

.brand-item {
  flex-shrink: 0;
  padding: 12px 32px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin: 0 8px;
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.brand-item:hover {
  color: var(--text);
  border-color: rgba(45,126,255,0.3);
  background: var(--blue-dim);
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────
   TELEGRAM SECTION
───────────────────────────── */
#telegram { background: var(--surface); }

.telegram-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.phone-mockup {
  --text: #EEF2FF;
  --muted: #5C6A88;
  --elevated: #141824;
  --border: rgba(255,255,255,0.06);
  color: var(--text);
  width: 260px;
  margin: 0 auto;
  background: #0A0D14;
  border-radius: 36px;
  border: 1px solid var(--border);
  padding: 20px 16px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.phone-mockup:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 60px 100px rgba(0,0,0,0.6),
    0 0 60px rgba(45,126,255,0.1),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.phone-screen {
  background: #111520;
  border-radius: 24px;
  overflow: hidden;
}
.phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}
.phone-avatar {
  width: 32px; height: 32px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.phone-name {
  font-size: 14px;
  font-weight: 500;
}
.phone-body { padding: 20px 16px; }

.phone-balance {
  background: linear-gradient(135deg, #0D1830, #131F3A);
  border: 1px solid rgba(45,126,255,0.2);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 14px;
  text-align: center;
}
.phone-balance-label {
  font-size: 10px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.phone-balance-amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
}

.phone-btn {
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-size: 13px;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
  transition: background var(--transition);
}
.phone-btn:hover { background: var(--blue-hi); }

.phone-card-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.phone-card-mini-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--elevated);
  border-radius: 8px;
  padding: 10px 12px;
}
.phone-card-mini-row .label {
  font-size: 11px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
}
.phone-card-mini-row .value {
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text);
}

.telegram-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.telegram-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--muted);
  transition: color var(--transition);
}
.telegram-features li:hover { color: var(--text); }
.check-icon {
  width: 22px; height: 22px;
  background: rgba(34,197,94,0.12);
  color: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

/* ─────────────────────────────
   PRICING
───────────────────────────── */
#pricing .section-title {
  text-align: center;
}

.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(200,169,110,0.06);
  transition: box-shadow var(--transition), transform var(--transition);
}
.pricing-card:hover {
  box-shadow: 0 0 80px rgba(200,169,110,0.12);
  transform: translateY(-4px);
}
.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--gold-dim);
}
.pricing-card-name {
  font-size: 15px;
  font-weight: 500;
}
.pricing-brand {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.pricing-rows { padding: 0 28px; }
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-label { font-size: 13px; color: var(--muted); }
.pricing-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.btn-pricing {
  display: block;
  width: calc(100% - 56px);
  margin: 20px 28px 28px;
  background: var(--gold);
  color: #07090E;
  border: none;
  border-radius: 9px;
  padding: 14px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-pricing:hover {
  background: #d4b87a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,110,0.25);
}

/* ─────────────────────────────
   FAQ
───────────────────────────── */
.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--blue); }
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--muted);
  transition: transform var(--transition), border-color var(--transition), color var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--blue);
  color: var(--blue);
}
.faq-answer {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  padding-bottom: 0;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding-bottom 0.4s;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ─────────────────────────────
   CTA SECTION
───────────────────────────── */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(45,126,255,0.06), transparent 70%);
}
.cta-section .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.cta-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 36px;
}
.cta-badges {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ─────────────────────────────
   FOOTER
───────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  background: var(--surface);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.footer-nav {
  display: flex;
  gap: 28px;
}
.footer-nav a {
  color: var(--muted);
  font-size: 13px;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  color: var(--muted);
  font-size: 12px;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--text); }

/* ─────────────────────────────
   SCROLL REVEAL
───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────
   RESPONSIVE
───────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 100px 32px 40px; max-width: 100%; }
  .hero-visual { padding: 0 32px 80px; }
  .hero-card-wrapper { width: 100%; max-width: 400px; }
  .card-showcase-inner { grid-template-columns: 1fr; gap: 40px; }
  .telegram-inner { grid-template-columns: 1fr; gap: 48px; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-connector { display: none; }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .btn-telegram .btn-text { display: none; }
  .mobile-toggle { display: flex; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 20px; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
  .hero-ctas { flex-direction: column; }
  .section { padding: 64px 0; }
}

/* ─────────────────────────────
   LEAD FORM SECTION
───────────────────────────── */
.lead-form-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.lead-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* LEFT */
.lead-form-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--blue);
  background: var(--blue-dim);
  border: 1px solid rgba(45,126,255,0.2);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 20px;
}

.lead-form-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.lead-form-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 380px;
}

.lead-form-promises {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lead-form-promises li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

/* RIGHT — FORM */
.lead-form {
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.06em;
}

.form-input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder { color: var(--muted); }
.form-input:focus {
  border-color: rgba(45,126,255,0.5);
  box-shadow: 0 0 0 3px rgba(45,126,255,0.1);
  background: var(--elevated);
}
.form-input:hover:not(:focus) {
  border-color: rgba(255,255,255,0.12);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C6A88' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-select option {
  background: #0E1119;
  color: #EEF2FF;
}

.btn-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px 24px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.22s, transform 0.15s, box-shadow 0.22s;
  margin-top: 4px;
  position: relative;
  overflow: hidden;
}
.btn-form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-form-submit:hover::before { transform: translateX(100%); }
.btn-form-submit:hover {
  background: var(--blue-hi);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--blue-glow);
}
.btn-form-submit:active { transform: translateY(0); }
.btn-form-submit.loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn-form-loading {
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-form-loading svg {
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.form-note {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
  opacity: 0.7;
}

/* SUCCESS STATE */
.form-success {
  background: var(--elevated);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 16px;
  padding: 60px 32px;
  text-align: center;
  animation: fadeUp 0.5s ease forwards;
}
.form-success-icon {
  width: 56px; height: 56px;
  background: rgba(34,197,94,0.12);
  color: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 20px;
  box-shadow: 0 0 24px rgba(34,197,94,0.2);
}
.form-success-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}
.form-success-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 300px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .lead-form-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .lead-form-sub { max-width: 100%; }
}
@media (max-width: 768px) {
  .lead-form { padding: 24px 20px; }
}
/* ─────────────────────────────
   GLOW MARQUEE
───────────────────────────── */
.glow-marquee {
  position: relative;
}
.glow-marquee::before,
.glow-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 150px;
  z-index: 5;
  pointer-events: none;
}
.glow-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.glow-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.glow-marquee .ticker-track,
.glow-marquee .marquee-track {
  position: relative;
}

.glow-marquee::after {
  box-shadow: -20px 0 60px rgba(45, 126, 255, 0.15);
}
.glow-marquee::before {
  box-shadow: 20px 0 60px rgba(45, 126, 255, 0.15);
}

/* ── WALLET SECTION ── */
.wallet-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.wallet-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

/* WALLET FEATURES — фикс hover смещения и light-mode */
.wallet-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: border-color 0.22s, background 0.22s;
  cursor: default;
}
.wallet-feature:hover {
  border-color: rgba(45,126,255,0.3);
  background: rgba(45,126,255,0.04);
  /* НЕТ transform — иконки не едут */
}

.wallet-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;           /* фикс: не сжимается */
  background: var(--blue-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  /* НЕТ transition transform */
}
.wallet-feature-icon svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.wallet-feature-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text);
}
.wallet-feature-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* Light mode фикс для wallet */
body.light-mode .wallet-app-mockup {
  background: #1A1F2E;
  border-color: rgba(0,0,0,0.15);
}
body.light-mode .wallet-app-balance { color: #F0F4FF; }
body.light-mode .wallet-app-label   { color: #6B7A99; }
body.light-mode .wallet-app-asset   { background: rgba(255,255,255,0.06); }
body.light-mode .asset-name         { color: #F0F4FF; }
body.light-mode .asset-amount,
body.light-mode .asset-value        { color: #9EACC8; }

.wallet-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.wallet-card-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(45, 126, 255, 0.25), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.wallet-app-mockup {
  position: relative;
  z-index: 1;
  width: 280px;
  background: #0D1117;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  transform: rotateY(-10deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.wallet-app-mockup:hover {
  transform: rotateY(0deg) rotateX(0deg) translateY(-10px);
}

.wallet-app-header {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}

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

.wallet-app-balance {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 4px;
}

.wallet-app-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 32px;
}

.wallet-app-assets {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wallet-app-asset {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  border-radius: 12px;
}

.asset-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.asset-icon.btc { background: #F7931A; color: #fff; }
.asset-icon.usdt { background: #26A17B; color: #fff; }

.asset-info {
  flex-grow: 1;
}

.asset-name {
  font-size: 13px;
  font-weight: 500;
}

.asset-amount {
  font-size: 11px;
  color: var(--muted);
}

.asset-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
}

@media (max-width: 1024px) {
  .wallet-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .wallet-features {
    align-items: center;
    text-align: left;
  }
  .wallet-feature {
    max-width: 400px;
  }
}

/* ── APPLE / GOOGLE PAY SECTION ── */
.section-sub {
  font-size: 15px;
  color: var(--muted);
  margin-top: 0;
  margin-bottom: 48px;
  max-width: 480px;
}

.pay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 0;
}

.pay-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}
.pay-card:hover {
  border-color: rgba(45,126,255,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(45,126,255,0.08);
}

.pay-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.pay-card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(45,126,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.pay-card-title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.pay-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  counter-reset: step-counter;
  padding: 0;
}
.pay-steps li {
  counter-increment: step-counter;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}
.pay-steps li::before {
  content: counter(step-counter);
  min-width: 22px;
  height: 22px;
  background: var(--blue-dim);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  flex-shrink: 0;
  margin-top: 1px;
}
.pay-steps li strong {
  color: var(--text);
  font-weight: 500;
}

@media (max-width: 768px) {
  .pay-grid { grid-template-columns: 1fr; }
}

/* ── PREMIUM UPGRADE ─────────────────────────────── */

/* Более утончённые кнопки */
.btn-primary {
  letter-spacing: 0.01em;
  font-weight: 400;
  border-radius: 8px;
}
.btn-secondary {
  letter-spacing: 0.01em;
  border-radius: 8px;
}

/* Hero title — более тяжёлый и tight */
.hero-title {
  letter-spacing: -0.04em;
  line-height: 1.0;
}

/* Section titles — tighter */
.section-title {
  letter-spacing: -0.03em;
}

/* Pricing — выделить важные строки */
.pricing-row:first-child .pricing-value,
.pricing-row:nth-child(4) .pricing-value,
.pricing-row:nth-child(5) .pricing-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}

/* Тикер — чуть ярче */
.ticker-track span {
  color: var(--muted);
  transition: color 0.2s;
}
.ticker-track span:hover {
  color: var(--text);
}

/* Benefit cards — убрать иконки-эмодзи из заголовков визуально */
.benefit-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* Steps — номера крупнее и прозрачнее */
.step-number {
  font-size: 80px;
  color: rgba(255,255,255,0.03);
}

/* FAQ — более воздушно */
.faq-question {
  font-size: 14px;
  letter-spacing: -0.01em;
}

/* Form — более строгий инпут */
.form-input {
  border-radius: 8px;
  font-size: 14px;
}

/* CTA title */
.cta-title {
  letter-spacing: -0.035em;
  line-height: 1.08;
}

/* Footer — чуть меньше */
.logo {
  font-size: 15px;
  letter-spacing: 0.05em;
}
