/* ─── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #0B0A0F;
  --surface:  #13111A;
  --surface2: #1E1B26;
  --pink:     #FBB0C9;
  --pink-dim: rgba(251,176,201,0.15);
  --blue:     #A8C5F0;
  --text:     #EAE6F0;
  --muted:    #9A96A3;
  --border:   rgba(255,255,255,0.07);
  --radius:   16px;
  --nav-h:    68px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── BUTTONS ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--pink);
  color: #1A0010;
}
.btn-primary:hover { background: #fcc5d8; transform: translateY(-1px); box-shadow: 0 8px 30px rgba(251,176,201,0.3); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-1px); }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ─── NAV ───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s, border-color 0.3s;
}
.nav.scrolled {
  background: rgba(11,10,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}
.nav-logo-img { width: 32px; height: 32px; border-radius: 8px; }
.nav-logo-svg { width: auto; height: 32px; border-radius: 0; }
.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { margin-left: 16px; padding: 10px 20px; font-size: 14px; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── BLOBS ─────────────────────────────────────────────────────── */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.blob-1 {
  width: 500px; height: 500px;
  background: rgba(251,176,201,0.12);
  top: -100px; right: -100px;
}
.blob-2 {
  width: 400px; height: 400px;
  background: rgba(168,197,240,0.08);
  top: 200px; left: -150px;
}
.blob-3 {
  width: 600px; height: 600px;
  background: rgba(251,176,201,0.1);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* ─── HERO ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.grad {
  background: linear-gradient(135deg, var(--pink) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-note {
  font-size: 13px;
  color: var(--muted);
}

/* ─── PHONE MOCKUP ──────────────────────────────────────────────── */
.hero-phone {
  display: flex;
  justify-content: center;
}
.phone-wrap {
  position: relative;
  display: inline-flex;
}
.phone-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, rgba(251,176,201,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.phone {
  width: 280px;
  background: #13111A;
  border-radius: 44px;
  border: 1.5px solid rgba(255,255,255,0.1);
  padding: 16px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
}
.phone-notch {
  width: 80px;
  height: 8px;
  background: #0B0A0F;
  border-radius: 10px;
  margin: 0 auto 16px;
}
.phone-screen {
  border-radius: 28px;
  overflow: hidden;
  background: #0F0D14;
  min-height: 480px;
}
.ps-header {
  padding: 20px 16px 0;
}
.ps-greeting {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}
.ps-balance {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 4px;
}
.ps-balance span { font-size: 22px; color: var(--muted); }
.ps-change { font-size: 12px; font-weight: 500; margin-bottom: 8px; }
.up { color: #4CAF7D; }
.dn { color: #F84E4E; }
.ps-chart {
  width: 100%;
  height: 70px;
  padding: 0 0 8px;
}
.ps-chart svg { width: 100%; height: 100%; }
.ps-actions {
  display: flex;
  justify-content: space-around;
  padding: 12px 8px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ps-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--muted);
}
.ps-action-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--pink);
}
.ps-assets { padding: 8px; }
.ps-asset {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  border-radius: 12px;
  transition: background 0.2s;
}
.ps-asset + .ps-asset { border-top: 1px solid var(--border); }
.ps-asset-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}
.ps-asset-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ps-asset-info b { font-size: 13px; font-weight: 600; }
.ps-asset-info span { font-size: 11px; color: var(--muted); }
.ps-asset-val {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.ps-asset-val b { font-size: 13px; font-weight: 600; }
.ps-asset-val span { font-size: 11px; font-weight: 500; }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ─── STATS ─────────────────────────────────────────────────────── */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 48px 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.stat-num {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--text) 0%, var(--muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-num span { font-size: 32px; color: var(--pink); -webkit-text-fill-color: var(--pink); }
.stat-label {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── FEATURES ──────────────────────────────────────────────────── */
.features {
  padding: 120px 0;
}
.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}
.feat-card {
  background: var(--surface);
  padding: 36px 32px;
  transition: background 0.3s;
}
.feat-card:hover { background: var(--surface2); }
.feat-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--pink-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--pink);
}
.feat-icon svg { width: 22px; height: 22px; }
.feat-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.feat-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ─── SECURITY ──────────────────────────────────────────────────── */
.security {
  padding: 120px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.security-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.security-visual {
  display: flex;
  justify-content: center;
  position: relative;
}
.shield {
  position: relative;
  z-index: 1;
}
.shield svg { width: 160px; height: 180px; }
.security-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(251,176,201,0.15);
  animation: ringPulse 3s ease-in-out infinite;
}
.ring-1 { width: 220px; height: 220px; animation-delay: 0s; }
.ring-2 { width: 300px; height: 300px; animation-delay: 0.5s; }
.ring-3 { width: 380px; height: 380px; animation-delay: 1s; }
@keyframes ringPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.02); }
}
.security-text h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin: 12px 0 20px;
}
.security-text > p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.security-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.security-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--muted);
}
.check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(76,175,125,0.15);
  color: #4CAF7D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* ─── CHAINS MARQUEE ────────────────────────────────────────────── */
.chains { padding: 100px 0; overflow: hidden; }
.chains-marquee {
  margin-top: 48px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.chains-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.chains-track span {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── DOWNLOAD ──────────────────────────────────────────────────── */
.download {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  text-align: center;
}
.download-bg { position: absolute; inset: 0; pointer-events: none; }
.download-inner { position: relative; z-index: 1; }
.download-icon {
  width: 80px; height: 80px;
  border-radius: 20px;
  margin: 0 auto 28px;
  box-shadow: 0 20px 60px rgba(251,176,201,0.3);
}
.download h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.download > .download-inner > p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
}
.download-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.download-apk {
  font-size: 14px;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.download-apk:hover { color: var(--pink); }

/* ─── FOOTER ────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.footer-inner {
  display: flex;
  gap: 60px;
  padding: 64px 24px;
  align-items: flex-start;
}
.footer-brand {
  flex: 1.5;
}
.footer-brand .nav-logo { margin-bottom: 12px; }
.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.footer-links {
  flex: 2;
  display: flex;
  gap: 60px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}

/* ─── REVEAL ANIMATIONS ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.reveal-right {
  transform: translateX(40px);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── RESPONSIVE ────────────────────────────────────────────────── */

/* ── Tablet ≤ 900px ── */
@media (max-width: 900px) {
  /* Hero */
  .hero { min-height: auto; padding-bottom: 60px; }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .hero-sub { max-width: 100%; font-size: 17px; }
  .hero-btns { justify-content: center; }
  .hero-note { text-align: center; }
  .hero-phone { order: -1; }
  .hero-scroll-hint { display: none; }

  /* Stats */
  .stats { padding: 36px 0; }
  .stats-inner { gap: 0; flex-wrap: wrap; }
  .stat { min-width: 50%; padding: 20px 16px; }
  .stat-divider { display: none; }
  .stat-num { font-size: 38px; }

  /* Features (home) */
  .features { padding: 80px 0; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .section-head { margin-bottom: 48px; }

  /* Chains */
  .chains { padding: 72px 0; }

  /* Security (home) */
  .security { padding: 80px 0; }
  .security-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .security-visual { order: -1; }
  .security-list { text-align: left; display: inline-flex; flex-direction: column; }

  /* CTA band */
  .cta-band-inner { flex-direction: column; gap: 24px; text-align: center; }
  .cta-band-inner .hero-btns { justify-content: center; }

  /* Multi-page features */
  .sec-cards { grid-template-columns: 1fr 1fr; }
  .sec-explainer { grid-template-columns: 1fr; gap: 48px; }
  .sec-compare { flex-direction: column; max-width: 380px; }
  .sec-phrase-section { grid-template-columns: 1fr; gap: 48px; }
  .feat-big-grid { grid-template-columns: 1fr; }
  .feat-small-grid { grid-template-columns: 1fr 1fr; }
  .feat-row { grid-template-columns: 1fr; gap: 40px; }
  .feat-row-rev { direction: ltr; }

  /* Download */
  .dl-why-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 40px; padding: 48px 24px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
}

/* ── Mobile ≤ 640px ── */
@media (max-width: 640px) {
  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  /* Hero */
  .hero-inner { gap: 36px; padding-top: 24px; }
  .hero-badge { font-size: 11px; }
  .hero-sub { font-size: 16px; }
  .hero-btns { flex-direction: column; align-items: center; gap: 10px; }
  .hero-btns .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Phone mockup */
  .phone { width: 230px; }
  .ps-balance { font-size: 26px; }
  .phone-screen { min-height: 400px; }

  /* Stats */
  .stat { min-width: 50%; padding: 16px 12px; }
  .stat-num { font-size: 32px; }
  .stat-label { font-size: 12px; }

  /* Features grid (home) */
  .features-grid { grid-template-columns: 1fr; }
  .feat-card { padding: 28px 20px; }

  /* Chains */
  .chains { padding: 56px 0; }

  /* Security home */
  .security { padding: 64px 0; }

  /* Page heroes */
  .page-hero { padding: 100px 0 56px; }
  .page-hero-inner h1 { font-size: 34px; letter-spacing: -1px; }
  .page-hero-inner p { font-size: 16px; }

  /* Features page */
  .sec-cards { grid-template-columns: 1fr; }
  .feat-small-grid { grid-template-columns: 1fr; }
  .feat-big { padding: 28px 20px; }
  .feat-chains { gap: 6px; }
  .feat-chains span { font-size: 11px; padding: 5px 10px; }
  .feat-list li { font-size: 14px; }

  /* Security page */
  .sec-explainer-text h2 { font-size: 28px; }
  .phrase-card { max-width: 100%; }
  .phrase-words { grid-template-columns: repeat(3, 1fr); gap: 6px; }

  /* Download page */
  .dl-both { flex-direction: column; align-items: center; gap: 12px; }
  .dl-both .btn { width: 100%; max-width: 320px; justify-content: center; }
  .btn-xl { padding: 14px 24px; font-size: 15px; }

  /* Download page reqs */
  .dl-reqs { flex-wrap: wrap; justify-content: center; gap: 10px; }
  .dl-req-item { font-size: 13px; }

  /* Price widget */
  .price-widget { width: 100%; max-width: 300px; }
  .nft-placeholder svg { width: 120px; height: 120px; }

  /* Footer */
  .footer-inner { padding: 40px 20px; gap: 32px; }
  .footer-links { gap: 24px; }
  .footer-col { min-width: 120px; }
  .footer-bottom { text-align: center; padding: 16px 20px; }

  /* Legal */
  .legal-inner { padding: 0 4px; }
  .legal-block { margin-bottom: 36px; padding-bottom: 36px; }
  .legal-block h2 { font-size: 18px; }

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

/* ── Small phones ≤ 420px ── */
@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .stat { min-width: 100%; }
  .phone { width: 200px; }
  .phone-screen { min-height: 340px; }
  .ps-balance { font-size: 22px; }
  .hero-btns .btn { max-width: 100%; }
  .dl-both .btn { max-width: 100%; }
  .footer-links { flex-direction: column; gap: 20px; }
  .nav-inner { padding: 0 16px; }
}

/* ─── NAV EXTRAS ────────────────────────────────────────────────── */
.nav-links a.active { color: var(--text); font-weight: 600; }

/* ─── MOBILE DRAWER ─────────────────────────────────────────────── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 300px;
  max-width: 90vw;
  height: 100dvh;
  background: #0c0b10;
  border-left: 1px solid var(--border);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 0;
}
.nav-drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}
.drawer-close {
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.drawer-close:hover { border-color: var(--pink); color: var(--pink); }

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.drawer-links li {
  opacity: 0;
  transform: translateX(14px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-drawer.open .drawer-links li { opacity: 1; transform: translateX(0); }
.nav-drawer.open .drawer-links li:nth-child(1) { transition-delay: 0.08s; }
.nav-drawer.open .drawer-links li:nth-child(2) { transition-delay: 0.13s; }
.nav-drawer.open .drawer-links li:nth-child(3) { transition-delay: 0.18s; }
.nav-drawer.open .drawer-links li:nth-child(4) { transition-delay: 0.23s; }

.drawer-links li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  transition: background 0.2s, color 0.2s;
}
.drawer-links li a::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: background 0.2s, box-shadow 0.2s;
}
.drawer-links li a:hover { background: rgba(251,176,201,0.06); color: var(--text); }
.drawer-links li a.active {
  background: rgba(251,176,201,0.1);
  color: var(--pink);
}
.drawer-links li a.active::before {
  background: var(--pink);
  box-shadow: 0 0 8px rgba(251,176,201,0.6);
}

.drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.drawer-footer .btn {
  width: 100%;
  justify-content: center;
}
.drawer-socials {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.drawer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}
.drawer-social-link:hover { border-color: var(--pink); color: var(--pink); }

/* Burger → X */
.nav-burger span { transition: transform 0.3s ease, opacity 0.2s ease; }
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── FOOTER SOCIALS ────────────────────────────────────────────── */
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--muted);
  transition: all 0.2s;
}
.footer-socials a:hover { border-color: var(--pink); color: var(--pink); }

/* ─── PAGE HERO (inner pages) ───────────────────────────────────── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  overflow: hidden;
  text-align: center;
}
.page-hero-inner h1 {
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.08;
  margin: 12px 0 20px;
}
.page-hero-inner p {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── 404 ───────────────────────────────────────────────────────── */
.error-page { padding: 0 0 140px; text-align: center; }
.error-code {
  font-size: clamp(120px, 22vw, 240px);
  font-weight: 800;
  letter-spacing: -6px;
  line-height: 1;
}
.error-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 440px;
  margin: 20px auto 0;
}
.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ─── CTA BAND ──────────────────────────────────────────────────── */
.cta-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 80px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band-inner h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.cta-band-inner p { font-size: 16px; color: var(--muted); }
.cta-band-inner .hero-btns { margin-bottom: 0; }

/* ─── FEATURES PAGE ─────────────────────────────────────────────── */
.features-page { padding: 80px 0 120px; }

.feat-big-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 60px;
}

.feat-big {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 40px;
  transition: border-color 0.3s;
}
.feat-big:hover { border-color: rgba(251,176,201,0.3); }

.feat-big-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--pink-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  margin-bottom: 24px;
}
.feat-big-icon svg { width: 28px; height: 28px; }

.feat-big h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}
.feat-big p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.feat-chains {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.feat-chains span {
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.feat-small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feat-icon-lg {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--pink-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  margin-bottom: 24px;
}
.feat-icon-lg svg { width: 26px; height: 26px; }

.feat-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.feat-list li {
  font-size: 15px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.feat-row-rev { direction: rtl; }
.feat-row-rev > * { direction: ltr; }

.feat-row-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.feat-row-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.feat-row-visual {
  display: flex;
  justify-content: center;
}

/* NFT grid */
.nft-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 300px;
}
.nft-card {
  aspect-ratio: 1;
  border-radius: 16px;
  background: var(--c, var(--surface2));
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 12px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  opacity: 0.9;
}

/* Portfolio widget */
.price-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  width: 280px;
}
.pw-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}
.pw-value {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 4px;
}
.pw-value span { font-size: 22px; color: var(--muted); }
.pw-chart { margin: 12px 0; }
.pw-periods {
  display: flex;
  gap: 4px;
  margin-top: 12px;
}
.pw-periods span {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  padding: 5px 0;
  border-radius: 6px;
  cursor: pointer;
}
.pw-periods span.active {
  background: var(--pink-dim);
  color: var(--pink);
}

/* ─── SECURITY PAGE ─────────────────────────────────────────────── */
.security-page { padding: 80px 0 120px; }

.sec-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 80px;
}

.sec-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.sec-card:hover { border-color: rgba(251,176,201,0.3); transform: translateY(-4px); }

.sec-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(251,176,201,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
}
.sec-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.sec-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.sec-explainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 80px;
}
.sec-explainer-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  margin: 12px 0 20px;
}
.sec-explainer-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.sec-compare {
  display: flex;
  gap: 16px;
}
.sc-col {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.sc-bad { border-color: rgba(248,78,78,0.2); }
.sc-good { border-color: rgba(76,175,125,0.3); }

.sc-head {
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.sc-bad .sc-head { background: rgba(248,78,78,0.1); color: #F84E4E; }
.sc-good .sc-head { background: rgba(76,175,125,0.1); color: #4CAF7D; }

.sc-col ul {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--surface);
}
.sc-col li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
li.bad { color: var(--muted); }
li.bad::before { content: '✕'; color: #F84E4E; font-size: 12px; flex-shrink: 0; }
li.good { color: var(--text); }
li.good::before { content: '✓'; color: #4CAF7D; font-size: 12px; flex-shrink: 0; }

.sec-phrase-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sec-phrase-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  margin: 12px 0 20px;
}
.sec-phrase-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.sec-phrase-visual {
  display: flex;
  justify-content: center;
}

.phrase-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  max-width: 320px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.phrase-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.phrase-words {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.phrase-words span {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-align: center;
  counter-increment: word;
}
.phrase-warning {
  font-size: 13px;
  color: #F84E4E;
  text-align: center;
  padding: 10px;
  background: rgba(248,78,78,0.08);
  border-radius: 8px;
  border: 1px solid rgba(248,78,78,0.15);
}

/* ─── DOWNLOAD PAGE ─────────────────────────────────────────────── */
.download-page {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  overflow: hidden;
}

.dl-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.dl-icon-wrap {}
.dl-icon {
  width: 96px; height: 96px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(251,176,201,0.3);
}

.dl-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -2px;
  margin: 8px 0;
}

.dl-sub {
  font-size: 17px;
  color: var(--muted);
}

.btn-xl {
  padding: 18px 36px;
  font-size: 17px;
  border-radius: 100px;
  gap: 10px;
}
.btn-xl small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.7;
  line-height: 1;
  text-align: left;
}
.btn-xl span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}

.dl-primary-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.dl-both {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.dl-secondary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.dl-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 420px;
  color: var(--muted);
  font-size: 13px;
}
.dl-divider::before,
.dl-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.dl-apk-row {
  display: flex;
  justify-content: center;
}

.dl-also {
  font-size: 14px;
  color: var(--muted);
}
.dl-also a { color: var(--pink); text-decoration: underline; text-underline-offset: 3px; }

.dl-also-label {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 4px;
}

.dl-apk-note {
  font-size: 13px;
  color: var(--muted);
  opacity: 0.7;
}

.dl-reqs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 0 0;
}
.dl-req-item {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

/* WHY section on download page */
.dl-why {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.dl-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 16px;
}
.dl-why-item {
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
}
.dw-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--pink-dim);
  letter-spacing: -2px;
  margin-bottom: 20px;
  line-height: 1;
  background: linear-gradient(135deg, var(--pink) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dl-why-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.dl-why-item p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ─── LEGAL PAGES ────────────────────────────────────────────────── */
.legal-page { padding: 80px 0 120px; }
.legal-inner {
  max-width: 740px;
  margin: 0 auto;
}
.legal-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.legal-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.legal-block h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.legal-block p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 10px;
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-block ul {
  padding-left: 20px;
  margin: 12px 0;
}
.legal-block ul li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 6px;
}
.legal-block a { color: var(--primary); text-decoration: none; }
.legal-block a:hover { text-decoration: underline; }
.legal-block strong { color: var(--text); font-weight: 500; }
