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

:root {
  --bg: #05060a;
  --bg-alt: #080a10;
  --card: rgba(255,255,255,0.032);
  --card-border: rgba(255,255,255,0.07);
  --blue: #0098EA;
  --blue-light: #54a8f5;
  --text: #ffffff;
  --muted: #4d5a73;
  --muted2: #8a96b0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none; z-index: 0;
}

/* ORBS */
.orb { position: fixed; border-radius: 50%; pointer-events: none; filter: blur(110px); z-index: 0; }
.orb-1 { width: 800px; height: 800px; background: radial-gradient(circle, rgba(0,152,234,0.16) 0%, transparent 65%); top: -250px; left: -250px; animation: f1 14s ease-in-out infinite; }
.orb-2 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(84,168,245,0.09) 0%, transparent 65%); bottom: -100px; right: -150px; animation: f2 18s ease-in-out infinite; }
@keyframes f1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(50px,40px)} }
@keyframes f2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-40px,-30px)} }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  border-bottom: 1px solid rgba(255,255,255,0.055);
  background: rgba(5,6,10,0.75);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
}
.nav-inner {
  width: 100%; padding: 0 44px;
  height: 66px; display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.logo {
  display: flex; align-items: center; gap: 10px; font-size: 18px;
  font-weight: 800; color: #fff; text-decoration: none; letter-spacing: -0.03em;
  justify-self: start;
}
.logo-name { white-space: nowrap; }
.logo b {
  font-weight: 800;
  background: linear-gradient(100deg, #54c0ff 0%, #0098EA 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo.sm { font-size: 14px; }
.logo-img { mix-blend-mode: screen; display: block; flex-shrink: 0; filter: brightness(1.05); border-radius: 50%; }
.nav-links {
  display: flex; gap: 28px; list-style: none;
  justify-self: center;
}
.nav-links a { color: var(--muted2); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
#ton-connect-btn { justify-self: end; }

/* HERO */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh; display: flex; align-items: center; gap: 64px;
  max-width: 1180px; margin: 0 auto; padding: 140px 32px 80px;
}
.hero-left { flex: 1; }
.hero-right { flex: 0 0 385px; }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,152,234,0.08); border: 1px solid rgba(0,152,234,0.2);
  color: var(--blue-light); border-radius: 100px;
  padding: 7px 16px; font-size: 13px; font-weight: 600; margin-bottom: 28px;
}
.pill-dot { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.2} }

h1 { font-size: clamp(44px, 5.5vw, 72px); font-weight: 800; line-height: 1.06; letter-spacing: -0.04em; margin-bottom: 22px; }
.h1-blue {
  background: linear-gradient(130deg, #0098EA 20%, #54a8f5 60%, #a8d8ff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-desc { font-size: 17px; line-height: 1.72; color: var(--muted2); max-width: 450px; margin-bottom: 36px; }

.ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }

.btn-blue {
  background: var(--blue); color: #fff; border: none; border-radius: 13px;
  padding: 14px 28px; font-size: 15px; font-weight: 700; cursor: pointer;
  font-family: 'Inter', sans-serif; transition: all 0.2s; letter-spacing: -0.01em; display: inline-flex; align-items: center; gap: 8px;
}
.btn-blue:hover { background: #12a8f5; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,152,234,0.35); }
.btn-blue:active { transform: translateY(0); box-shadow: none; }
.btn-blue.big { padding: 16px 34px; font-size: 16px; border-radius: 14px; }

.btn-outline {
  background: transparent; color: var(--muted2); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 13px; padding: 14px 22px; font-size: 15px; font-weight: 600;
  cursor: pointer; font-family: 'Inter', sans-serif; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s;
}
.btn-outline:hover { color: #fff; border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.04); }

.trust-badges { display: flex; gap: 18px; flex-wrap: wrap; }
.trust-badges span { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted2); font-weight: 500; }
.trust-badges svg { flex-shrink: 0; }

/* CLAIM CARD — ultra HQ frozen ice */
.claim-card {
  background:
    linear-gradient(145deg,
      rgba(200,240,255,0.09) 0%,
      rgba(100,180,255,0.05) 18%,
      rgba(4,10,22,0.93) 45%,
      rgba(6,14,30,0.95) 70%,
      rgba(80,170,255,0.06) 88%,
      rgba(190,235,255,0.08) 100%
    );
  border: 1px solid transparent;
  background-clip: padding-box;
  border-radius: 26px; padding: 28px; position: relative; overflow: hidden;
  backdrop-filter: blur(40px) saturate(1.6); -webkit-backdrop-filter: blur(40px) saturate(1.6);
  box-shadow:
    0 0 0 1px rgba(160,220,255,0.22),
    0 0 0 2px rgba(100,180,255,0.06),
    inset 0 1px 0 rgba(220,245,255,0.18),
    inset 0 -1px 0 rgba(100,180,255,0.08),
    inset 1px 0 0 rgba(180,230,255,0.07),
    inset -1px 0 0 rgba(180,230,255,0.07),
    0 0 60px rgba(0,152,234,0.2),
    0 0 120px rgba(80,160,255,0.1),
    0 40px 80px rgba(0,0,0,0.75);
}

/* luminous top edge — crystal clarity */
.claim-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(140,210,255,0.35) 10%,
    rgba(200,240,255,0.8) 30%,
    rgba(255,255,255,1) 50%,
    rgba(200,240,255,0.8) 70%,
    rgba(140,210,255,0.35) 90%,
    transparent 100%
  );
  border-radius: 26px 26px 0 0;
  animation: topEdgeGlow 3s ease-in-out infinite;
}
@keyframes topEdgeGlow {
  0%,100% { opacity: 0.65; filter: blur(0px); }
  50% { opacity: 1; filter: blur(0.5px); }
}

/* deep frost corners + inner cold haze */
.claim-card::after {
  content: ''; position: absolute; inset: 0; border-radius: 26px; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 140px 100px at 0% 0%, rgba(180,225,255,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 160px 110px at 100% 0%, rgba(160,215,255,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 120px 90px at 0% 100%, rgba(140,210,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 130px 95px at 100% 100%, rgba(160,220,255,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 55% 35% at 50% 0%, rgba(120,190,255,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 25% at 50% 100%, rgba(100,180,255,0.05) 0%, transparent 70%);
  animation: frostPulse 7s ease-in-out infinite;
}
@keyframes frostPulse {
  0%,100% { opacity: 0.75; }
  50% { opacity: 1; }
}

/* frost dendrite SVG background */
.frost-bg {
  position: absolute !important; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
  animation: frostBreath 8s ease-in-out infinite;
}
@keyframes frostBreath {
  0%,100% { opacity: 0.18; }
  50% { opacity: 0.32; }
}

/* all card content sits above pseudo-elements */
.claim-card > *:not(.frost-bg) { position: relative; z-index: 2; }

/* balance number — icy glow */
.balance-num.active {
  color: #c2e8ff;
  text-shadow:
    0 0 20px rgba(0,152,234,0.9),
    0 0 50px rgba(100,180,255,0.5),
    0 0 90px rgba(140,210,255,0.25);
}

/* claim button — premium frozen */
.btn-claim {
  width: 100%;
  background: linear-gradient(135deg, #0098EA 0%, #1ab4ff 50%, #0098EA 100%);
  background-size: 200% 100%;
  color: #fff; border: none; border-radius: 13px; padding: 15px;
  font-size: 15px; font-weight: 800; letter-spacing: 0.07em;
  cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.25s;
  margin-bottom: 14px;
  box-shadow:
    0 0 24px rgba(0,152,234,0.45),
    0 0 48px rgba(0,152,234,0.2),
    inset 0 1px 0 rgba(255,255,255,0.25),
    0 4px 16px rgba(0,0,0,0.4);
  text-shadow: 0 1px 8px rgba(0,80,160,0.4);
  position: relative; overflow: hidden;
}
.btn-claim::before {
  content: '';
  position: absolute; top: 0; left: -120%; width: 70%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  animation: btnShine 2.8s ease-in-out infinite;
}
@keyframes btnShine {
  0% { left: -120%; }
  45%,100% { left: 160%; }
}
.btn-claim:not(:disabled):hover {
  background: linear-gradient(135deg, #12aaff 0%, #40c0ff 50%, #12aaff 100%);
  background-size: 200% 100%;
  transform: translateY(-2px);
  box-shadow:
    0 0 36px rgba(0,152,234,0.65),
    0 0 70px rgba(0,152,234,0.3),
    inset 0 1px 0 rgba(255,255,255,0.3),
    0 8px 28px rgba(0,0,0,0.5);
}
.btn-claim:disabled {
  opacity: 0.45; cursor: not-allowed;
  background: linear-gradient(135deg, rgba(0,80,160,0.7), rgba(20,110,200,0.7));
  box-shadow: 0 0 12px rgba(0,80,160,0.2);
}

.card-header { display: flex; align-items: center; gap: 13px; margin-bottom: 22px; }
.card-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: none; border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.card-ttl { font-size: 15px; font-weight: 700; }
.card-sub-ttl { font-size: 12px; color: var(--muted2); margin-top: 3px; }
.card-live { margin-left: auto; display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--muted2); }

.live-dot { display: inline-block; width: 7px; height: 7px; background: #22c55e; border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
.live-dot.sm { width: 6px; height: 6px; }

.divider { height: 1px; background: rgba(255,255,255,0.055); margin-bottom: 20px; }

.balance-label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.balance-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 24px; }
.balance-num { font-size: 52px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: var(--text); }
.balance-num.active { color: var(--blue); }
.balance-cur { font-size: 18px; font-weight: 600; color: var(--muted); }


.card-meta { display: flex; justify-content: center; gap: 18px; }
.card-meta span { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--muted); }

.feed-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.feed-title { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.09em; }
.feed-live { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: #22c55e; }

.feed { display: flex; flex-direction: column; gap: 7px; }
.feed-item {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px; padding: 8px 12px; animation: slideIn 0.35s ease;
}
@keyframes slideIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }
.feed-addr { font-size: 12px; color: var(--muted2); font-family: 'SF Mono', 'Fira Code', monospace; }
.feed-amount { font-size: 12px; font-weight: 700; color: #22c55e; }

.card-secure { display: flex; align-items: center; justify-content: center; gap: 6px; text-align: center; font-size: 11px; color: var(--muted); margin-top: 14px; }

/* PARTNERS */
.partners {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 32px 32px;
}
.partners-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  text-align: center;
}
.partner-label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; white-space: nowrap; }
.partner-logos { display: flex; gap: 44px; flex-wrap: wrap; align-items: center; justify-content: center; }
.partner-name {
  font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,0.28);
  letter-spacing: -0.01em;
  transition: color 0.2s; cursor: default;
}
.partner-name:hover { color: rgba(255,255,255,0.65); }

/* STATS */
.stats-bar { position: relative; z-index: 1; padding: 52px 32px; }
.stats-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; justify-content: center; align-items: center;
}
.stat { text-align: center; padding: 0 52px; }
.stat-num {
  font-size: 42px; font-weight: 800; letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 40%, #7a96b8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-lbl { font-size: 14px; color: var(--muted2); margin-top: 7px; }
.stat-sep { width: 1px; height: 52px; background: rgba(255,255,255,0.07); flex-shrink: 0; }


/* SECTIONS */
.section-wrap { position: relative; z-index: 1; padding: 100px 32px; }
.section-wrap.alt-bg {
  background: rgba(255,255,255,0.012);
  border-top: 1px solid rgba(255,255,255,0.055);
  border-bottom: 1px solid rgba(255,255,255,0.055);
}
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-inner.narrow { max-width: 740px; }
.section-tag { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue); margin-bottom: 14px; }
.section-title { font-size: clamp(34px, 4vw, 50px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; line-height: 1.08; }
.section-sub { font-size: 16px; color: var(--muted2); line-height: 1.65; margin-bottom: 56px; max-width: 480px; }

/* HOW IT WORKS */
.steps-grid { display: flex; align-items: stretch; gap: 0; }
.step-card {
  flex: 1; background: var(--card); border: 1px solid var(--card-border);
  border-radius: 20px; padding: 28px 24px; transition: border-color 0.2s;
}
.step-card:hover { border-color: rgba(0,152,234,0.22); }
.step-num-big { font-size: 38px; font-weight: 800; color: rgba(0,152,234,0.18); letter-spacing: -0.04em; margin-bottom: 14px; line-height: 1; }
.step-icon { margin-bottom: 14px; }
.step-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--muted2); line-height: 1.65; }
.step-connector { flex: 0 0 44px; display: flex; align-items: center; justify-content: center; padding-bottom: 20px; }
.connector-line { width: 100%; height: 1px; background: linear-gradient(90deg, rgba(0,152,234,0.4), rgba(0,152,234,0.1)); position: relative; }
.connector-line::after { content: '›'; position: absolute; right: -6px; top: -10px; color: rgba(0,152,234,0.5); font-size: 16px; }

/* FEATURES */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feat-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 18px; padding: 26px 22px; transition: all 0.2s;
}
.feat-card:hover { border-color: rgba(0,152,234,0.22); background: rgba(0,152,234,0.025); transform: translateY(-2px); }
.feat-icon-svg {
  width: 52px; height: 52px;
  background: linear-gradient(145deg, rgba(0,130,220,0.55) 0%, rgba(0,100,200,0.45) 100%);
  border: 1px solid rgba(80,170,255,0.4);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow:
    0 0 20px rgba(0,130,220,0.25),
    inset 0 1px 0 rgba(200,235,255,0.25),
    inset 0 -1px 0 rgba(0,80,160,0.3);
  position: relative;
  transition: all 0.25s;
}
.feat-card:hover .feat-icon-svg {
  background: linear-gradient(145deg, rgba(0,152,234,0.7) 0%, rgba(0,120,220,0.6) 100%);
  box-shadow: 0 0 32px rgba(0,152,234,0.45), inset 0 1px 0 rgba(200,235,255,0.35);
  border-color: rgba(100,190,255,0.6);
}
.feat-icon-svg svg {
  width: 26px; height: 26px;
  filter: drop-shadow(0 0 7px rgba(180,230,255,0.7));
}
.feat-icon-svg svg path,
.feat-icon-svg svg rect,
.feat-icon-svg svg line,
.feat-icon-svg svg circle,
.feat-icon-svg svg polyline,
.feat-icon-svg svg polygon {
  stroke: rgba(255,255,255,0.9) !important;
}
.feat-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 9px; }
.feat-card p { font-size: 13px; color: var(--muted2); line-height: 1.65; }

/* ROADMAP */
.roadmap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 52px; }
.rm-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 18px; padding: 22px 20px;
}
.now-card { border-color: rgba(0,152,234,0.3); background: rgba(0,152,234,0.04); }
.rm-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.12); margin-bottom: 18px; }
.rm-done { background: var(--blue); box-shadow: 0 0 10px rgba(0,152,234,0.5); }
.rm-now { background: var(--blue); box-shadow: 0 0 14px rgba(0,152,234,0.7); animation: pulse 2s infinite; }
.rm-q { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.rm-ttl { font-size: 15px; font-weight: 700; margin-bottom: 16px; color: var(--text); }

/* ROADMAP LIST — no bullets, no emoji, no blue highlight */
.rm-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.rm-item {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--muted2); line-height: 1.45;
}
.rm-dash { color: var(--muted); flex-shrink: 0; }
.rm-item-done {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--muted); line-height: 1.45;
}
.rm-check { flex-shrink: 0; margin-top: 1px; }

.rm-badge {
  display: inline-block; margin-top: 18px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted); border-radius: 100px;
  padding: 4px 12px; font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}
.rm-badge-done { background: rgba(0,152,234,0.09); border-color: rgba(0,152,234,0.22); color: var(--blue-light); }
.rm-badge-now { background: rgba(0,152,234,0.1); border-color: rgba(0,152,234,0.28); color: var(--blue-light); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; margin-top: 48px; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.faq-q {
  width: 100%; background: none; border: none; color: #fff;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  text-align: left; padding: 20px 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; transition: color 0.2s;
}
.faq-q:hover { color: var(--blue-light); }
.faq-icon { flex-shrink: 0; color: var(--muted); transition: transform 0.25s, color 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--blue); }
.faq-a {
  font-size: 14px; color: var(--muted2); line-height: 1.72;
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding-bottom 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* CTA */
.cta-section {
  position: relative; z-index: 1; padding: 110px 32px; text-align: center;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,152,234,0.07) 0%, transparent 65%);
}
.cta-inner { max-width: 580px; margin: 0 auto; }
.cta-section h2 { font-size: clamp(36px, 5vw, 54px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; }
.cta-section p { font-size: 17px; color: var(--muted2); margin-bottom: 36px; line-height: 1.6; }

/* FOOTER */
.footer { position: relative; z-index: 1; border-top: 1px solid rgba(255,255,255,0.06); padding: 56px 32px 28px; }
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-desc { font-size: 13px; color: var(--muted2); line-height: 1.6; max-width: 220px; }
.footer-trust { font-size: 12px; color: var(--muted); }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: var(--muted2); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1180px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px;
  font-size: 13px; color: var(--muted);
}

.mobile-wallets { display: none; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero { flex-direction: column; gap: 40px; padding: 100px 20px 60px; }
  .hero-right { flex: unset; width: 100%; max-width: 480px; margin: 0 auto; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .roadmap-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { flex-direction: column; }
  .step-connector { display: none; }
  .nav-links { display: none; }
  .stat { padding: 0 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .partners { padding: 28px 20px; }
  .partner-logos { gap: 24px; }
}
@media (max-width: 580px) {
  .nav-inner { padding: 0 20px; grid-template-columns: auto 1fr auto; }
  .nav-links { display: none; }
  #ton-connect-btn { transform: scale(0.78); transform-origin: right center; }
  .hero { padding: 100px 20px 60px; flex-direction: column; gap: 32px; }
  .hero-left { order: 1; }
  .hero-right { order: 2; max-width: 100%; }
  .hero-left h1 { font-size: 36px; line-height: 1.18; margin-bottom: 0; }
  .hero-desc { font-size: 15px; color: var(--muted2); margin-top: 12px; line-height: 1.55; }
  .pill { display: none; }
  .ctas { display: none; }
  .trust-badges { display: none; }
  .mobile-wallets {
    display: flex; flex-direction: column; gap: 8px; margin-top: 18px;
  }
  .mobile-wallets-label {
    font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--muted);
  }
  .mobile-wallets-row {
    display: flex; flex-wrap: wrap; gap: 8px;
  }
  .mobile-wallets-row span {
    font-size: 12px; color: var(--muted2); font-weight: 500;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; padding: 4px 12px;
  }
  .claim-card { padding: 24px 20px 20px; border-radius: 22px; }
  .balance-num { font-size: 52px; }
  .card-header { margin-bottom: 4px; }
  .balance-label { margin-top: 18px; }
  .balance-row { margin: 6px 0 18px; }
  .claim-card { padding: 22px 18px; }
  .balance-num { font-size: 44px; }
  .feat-grid { grid-template-columns: 1fr; }
  .roadmap-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-wrap: wrap; gap: 32px; justify-content: center; }
  .stat-sep { display: none; }
  .stat { padding: 0 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .partner-logos { gap: 18px; }
  .section-wrap { padding: 70px 18px; }
  .cta-section { padding: 70px 18px; }
  .ctas { flex-direction: column; }
  .ctas .btn-blue, .ctas .btn-outline { width: 100%; justify-content: center; }
  .footer { padding: 44px 18px 24px; }
}

/* ── App.js integration styles ────────────────────────────────── */
#liveList { list-style: none; display: flex; flex-direction: column; gap: 7px; margin: 0; padding: 0; }
.live-row {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px; padding: 8px 12px; animation: slideIn 0.35s ease;
}
.live-addr { font-size: 12px; color: var(--muted2); font-family: 'SF Mono', 'Fira Code', monospace; display: flex; align-items: center; gap: 8px; }
.live-avatar { display: inline-block; width: 20px; height: 20px; border-radius: 50%; background: linear-gradient(135deg, #0098EA, #54a8f5); flex-shrink: 0; }
.live-amount { font-size: 12px; font-weight: 700; color: #22c55e; }
#walletStatus.connected { color: #22c55e; }
#progressText.success { color: #22c55e; }
