/* ===================== */
/*  CSS Variables        */
/* ===================== */
:root {
  --bg: #050505;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --text: #F9FAFB;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
  --accent-1: #007AFF;
  --accent-2: #3B82F6;
  --green: #22C55E;
  --red: #EF4444;
  --amber: #F59E0B;
  --nav-height: 72px;
  --radius: 16px;
  --radius-sm: 10px;
}

/* ===================== */
/*  Reset & Base         */
/* ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg);
  overscroll-behavior-y: none;
  color-scheme: dark;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
}

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

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--accent-1);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  z-index: 1000;
  font-size: 14px;
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 8px;
}

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

.section {
  padding: 120px 0;
  position: relative;
}

/* ===================== */
/*  Typography           */
/* ===================== */
.gradient-text {
  background: linear-gradient(135deg, #3B82F6 0%, #9CA3AF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.section-mascot {
  display: block;
  margin: 0 auto 16px;
  width: 80px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 122, 255, 0.2));
}

/* ===================== */
/*  Buttons              */
/* ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  padding: 14px 28px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: #fff;
  color: #000;
}

.btn-primary:hover {
  background: #e5e5e5;
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
  border-radius: 14px;
}

.btn-cta {
  background: linear-gradient(135deg, #007AFF, #3B82F6);
  color: #fff;
  border: none;
}

.btn-cta:hover {
  background: linear-gradient(135deg, #0066DD, #2563EB);
  transform: translateY(-1px);
}

.btn-cta:active {
  transform: scale(0.97);
}

/* ===================== */
/*  Navigation           */
/* ===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.nav.scrolled {
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav-logo-img {
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.nav-link:hover { color: var(--text); }

.nav-btn {
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  color: #000;
  padding: 10px 22px;
  border-radius: 10px;
  transition: all 0.2s;
}

.nav-btn:hover {
  background: #e5e5e5;
  transform: translateY(-1px);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-mobile-toggle.active span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-mobile-toggle.active span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
  left: 0;
  right: 0;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  padding: 0 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease, border-color 0.35s ease;
}

.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 0;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu.open a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu.open a:nth-child(7) { transition-delay: 0.35s; }

.mobile-menu .nav-btn {
  text-align: center;
  margin-top: 8px;
  color: #000;
}

.mobile-menu.open {
  max-height: 500px;
  opacity: 1;
  padding: 24px;
  border-bottom-color: var(--border);
}

/* ===================== */
/*  Hero                 */
/* ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
  position: relative;
  overflow: hidden;
}

.hero-bg {
  display: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===================== */
/*  Phone Mockup         */
/* ===================== */
.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 280px;
  background: #111;
  border-radius: 36px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 120px -20px rgba(0, 122, 255, 0.15);
  animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.phone-screen {
  background: #0A0A0A;
  border-radius: 26px;
  overflow: hidden;
  max-height: 560px;
}

.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 26px;
}

/* ===================== */
/*  SEO Intro            */
/* ===================== */
.seo-intro {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.seo-intro-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

/* ===================== */
/*  Ticker               */
/* ===================== */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.01);
}

.ticker-track {
  display: flex;
  gap: 48px;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

/* Ticker skeleton loading */
.ticker-skeleton {
  display: flex;
  gap: 48px;
  padding: 0 24px;
}

.ticker-skeleton-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.ticker-skeleton-bar {
  height: 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  animation: skeletonPulse 1.5s ease-in-out infinite;
}

.ticker-skeleton-bar--name { width: 40px; }
.ticker-skeleton-bar--price { width: 72px; }
.ticker-skeleton-bar--change { width: 48px; }

@keyframes skeletonPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.ticker-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.ticker-price {
  font-size: 14px;
  color: var(--text-secondary);
}

.ticker-change {
  font-size: 13px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 6px;
}

.ticker-change.up {
  color: var(--green);
  background: rgba(34, 197, 94, 0.1);
}

.ticker-change.down {
  color: var(--red);
  background: rgba(239, 68, 68, 0.1);
}

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

/* ===================== */
/*  Social Feed          */
/* ===================== */
.social-section {
  overflow: hidden;
}

.feed-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  height: 480px;
  overflow: hidden;
  position: relative;
}

.feed-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.feed-col-1 { animation: feedScroll1 25s linear infinite; }
.feed-col-2 { animation: feedScroll2 30s linear infinite; }
.feed-col-3 { animation: feedScroll1 22s linear infinite; }

.feed-container:hover .feed-column {
  animation-play-state: paused;
}

@keyframes feedScroll1 {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes feedScroll2 {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

.feed-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.feed-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.feed-info { flex: 1; min-width: 0; }

.feed-user {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.feed-action {
  font-size: 12px;
  color: var(--text-secondary);
}

.feed-action .token {
  color: var(--text);
  font-weight: 600;
}

.feed-amount {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.feed-amount.buy { color: var(--green); }
.feed-amount.sell { color: var(--red); }

.feed-fade-top,
.feed-fade-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 100px;
  pointer-events: none;
  z-index: 2;
}

.feed-fade-top {
  top: 0;
  background: linear-gradient(to bottom, var(--bg), transparent);
}

.feed-fade-bottom {
  bottom: 0;
  background: linear-gradient(to top, var(--bg), transparent);
}

/* ===================== */
/*  Features Grid        */
/* ===================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: background 0.45s ease, border-color 0.45s ease, transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s ease;
}

.feature-card:nth-child(1) { transition-delay: 0s; }
.feature-card:nth-child(2) { transition-delay: 0.1s; }
.feature-card:nth-child(3) { transition-delay: 0.2s; }
.feature-card:nth-child(4) { transition-delay: 0.3s; }
.feature-card:nth-child(5) { transition-delay: 0.4s; }
.feature-card:nth-child(6) { transition-delay: 0.5s; }

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-3px) scale(1.02);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--text);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===================== */
/*  Comparison           */
/* ===================== */
.compare-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.compare-old,
.compare-new {
  text-align: center;
}

.compare-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.compare-apps {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.compare-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.compare-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
}

.compare-app span {
  font-size: 11px;
  color: var(--text-muted);
}

.compare-plus {
  font-size: 20px;
  color: var(--text-muted);
  padding-bottom: 20px;
}

.compare-divider {
  color: var(--text-secondary);
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%, 100% { transform: translateX(0); opacity: 1; }
  50% { transform: translateX(6px); opacity: 0.6; }
}

.compare-higher {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.compare-higher-icon {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-higher-appicon {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.compare-higher span {
  font-size: 16px;
  font-weight: 700;
}

/* ===================== */
/*  Newsletter Section   */
/* ===================== */
.newsletter-section {
  padding-bottom: 0;
}

.newsletter-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 80px;
  display: flex;
  align-items: center;
  gap: 64px;
}

.newsletter-content {
  flex: 1;
  min-width: 0;
}

.newsletter-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.newsletter-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
}

.newsletter-form-wrap {
  flex: 1;
  min-width: 0;
  max-width: 420px;
}

/* Override any default Mailchimp styles */
#mc_embed_signup {
  background: transparent !important;
  clear: none !important;
  font: inherit !important;
  width: 100% !important;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.newsletter-input-group {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: all 0.2s ease;
}

.newsletter-input::placeholder {
  color: var(--text-muted);
}

.newsletter-input:focus {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
  flex-shrink: 0;
  cursor: pointer;
  font-family: inherit;
}

.newsletter-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: -4px;
}

/* Hide Mailchimp default response styling, style our own */
#mc_embed_signup .response {
  font-size: 14px;
  padding: 8px 0;
  color: var(--text-secondary);
}

/* ===================== */
/*  CTA Section          */
/* ===================== */
.cta-section {
  padding-bottom: 80px;
}

.cta-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.cta-bg {
  display: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 500px;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.android-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
}

.cta-mascot {
  position: relative;
  z-index: 1;
  width: 420px;
  flex-shrink: 0;
  margin: -120px -60px -120px 0;
}

.cta-mascot img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ===================== */
/*  Footer               */
/* ===================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

.footer-echoes {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
  padding: 32px 0 24px;
  opacity: 0.55;
  transition: opacity 0.3s;
}

.footer-echoes:hover {
  opacity: 0.85;
}

.footer-echoes img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: transform 0.2s;
}

.footer-echoes img:hover {
  transform: scale(1.25) rotate(-5deg);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-entity {
  margin-bottom: 8px;
}

.footer-entity a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-entity a:hover {
  color: var(--text);
}

/* ===================== */
/*  FAQ Section           */
/* ===================== */
.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.2s ease;
}

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

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-left: 16px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  content: '\2212';
}

.faq-question:hover {
  color: var(--accent-1);
}

.faq-answer {
  padding: 0 0 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--accent-1);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer a:hover {
  color: var(--text);
}

/* ===================== */
/*  Inline CTA           */
/* ===================== */
.inline-cta {
  text-align: center;
  padding: 48px 20px;
}

.inline-cta-text {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

/* ===================== */
/*  Steps Section        */
/* ===================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.step-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  transition: background 0.45s ease, border-color 0.45s ease, transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s ease;
}

.step-card.visible {
  transition: background 0.45s ease, border-color 0.45s ease, transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s ease;
}

.step-card.visible:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-3px) scale(1.02);
}

.step-number {
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-1);
  background: rgba(0, 122, 255, 0.12);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  color: var(--text-secondary);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===================== */
/*  Inline Newsletter    */
/* ===================== */
.inline-newsletter {
  padding: 48px 0;
}

.inline-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 40px;
}

.inline-newsletter-text {
  font-size: 1rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.inline-newsletter-text strong {
  color: var(--text);
}

.inline-newsletter-form {
  display: flex;
  gap: 10px;
  flex: 1;
  max-width: 400px;
}

.inline-newsletter-form .newsletter-input {
  flex: 1;
  min-width: 0;
}

/* ===================== */
/*  Newsletter Social    */
/* ===================== */
.newsletter-social-proof {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* ===================== */
/*  X Follow Section     */
/* ===================== */
.x-section {
  padding-bottom: 40px;
}

.x-card {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 80px 40px;
}

.x-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.x-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.x-follow-btn {
  display: inline-flex;
  gap: 10px;
}

/* ===================== */
/*  Footer X Button      */
/* ===================== */
.footer-x-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text) !important;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 14px;
  transition: all 0.2s;
}

.footer-x-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-hover);
}

/* ===================== */
/*  Sticky Mobile Bar    */
/* ===================== */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 98;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: white;
  font-weight: 600;
  font-size: 15px;
  border-radius: 12px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .sticky-bar {
    display: block;
  }
}

/* ===================== */
/*  Mobile Menu CTA      */
/* ===================== */
.mobile-menu-cta {
  margin-top: 12px !important;
  width: 100%;
  text-align: center;
  padding: 16px 24px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}

/* ===================== */
/*  Scroll Offset        */
/* ===================== */
#features,
#how-it-works,
#newsletter,
#download,
#social,
#faq {
  scroll-margin-top: calc(var(--nav-height) + env(safe-area-inset-top, 0px) + 24px);
}

/* ===================== */
/*  Focus Visible        */
/* ===================== */
:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

.btn:focus-visible,
.nav-btn:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

/* ===================== */
/*  Button Active States */
/* ===================== */
.btn-primary:active {
  transform: scale(0.97);
  background: #d4d4d4;
}

.btn-secondary:active {
  transform: scale(0.97);
  background: rgba(255, 255, 255, 0.08);
}

.nav-btn:active {
  transform: scale(0.97);
  background: #d4d4d4;
}

.sticky-bar-btn:active {
  transform: scale(0.98);
  opacity: 0.9;
}

.footer-x-btn:active {
  transform: scale(0.97);
}

/* ===================== */
/*  Newsletter Loading   */
/* ===================== */
.newsletter-btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

/* ===================== */
/*  Body Scroll Lock     */
/* ===================== */
body.menu-open {
  overflow: hidden;
}

/* ===================== */
/*  Hero Proof Line      */
/* ===================== */
.hero-proof {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
}

.hero-proof-link {
  color: var(--amber);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-proof-link:hover {
  color: #FCD34D;
}

/* ===================== */
/*  Feature Icon Colors  */
/* ===================== */
.feature-icon--discovery { color: var(--green); background: rgba(34, 197, 94, 0.1); }
.feature-icon--swap { color: var(--accent-1); background: rgba(0, 122, 255, 0.1); }
.feature-icon--charts { color: var(--amber); background: rgba(245, 158, 11, 0.1); }
.feature-icon--wallet { color: #8B5CF6; background: rgba(139, 92, 246, 0.1); }
.feature-icon--news { color: #EC4899; background: rgba(236, 72, 153, 0.1); }
.feature-icon--onramp { color: #14B8A6; background: rgba(20, 184, 166, 0.1); }

/* ===================== */
/*  Nav Active State     */
/* ===================== */
.nav-link.active {
  color: var(--text);
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-1);
  border-radius: 1px;
}

/* ===================== */
/*  Learn More Grid      */
/* ===================== */
.learn-more-section {
  padding-bottom: 0;
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.learn-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  display: block;
}

.learn-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.learn-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.learn-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.learn-more-link-wrap {
  text-align: center;
  margin-top: 32px;
}

.learn-more-link {
  color: var(--accent-1);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s;
}

.learn-more-link:hover {
  color: var(--text);
}

/* ===================== */
/*  Scroll Animations    */
/* ===================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===================== */
/*  Responsive           */
/* ===================== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .section { padding: 80px 0; }

  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .mobile-menu { display: flex; }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
    padding-top: 40px;
  }

  .hero-sub { margin-left: auto; margin-right: auto; }

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

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

  .hero-ctas {
    justify-content: center;
  }

  .phone-mockup {
    width: 240px;
  }

  .phone-screen {
    max-height: 460px;
  }

  .feed-container {
    grid-template-columns: 1fr 1fr;
    height: 400px;
  }

  .feed-col-3 { display: none; }

  .footer-echoes img:nth-child(n+9) {
    display: none;
  }

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

  .feature-card {
    padding: 24px;
  }

  .compare-visual {
    flex-direction: column;
    gap: 24px;
  }

  .compare-divider {
    transform: rotate(90deg);
  }

  @keyframes arrowPulse {
    0%, 100% { transform: rotate(90deg) translateX(0); opacity: 1; }
    50% { transform: rotate(90deg) translateX(6px); opacity: 0.6; }
  }

  .compare-apps {
    gap: 8px;
  }

  .compare-icon {
    width: 44px;
    height: 44px;
    font-size: 15px;
  }

  .newsletter-card {
    flex-direction: column;
    text-align: center;
    padding: 48px 32px;
    gap: 32px;
  }

  .newsletter-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .newsletter-form-wrap {
    max-width: 100%;
    width: 100%;
  }

  .newsletter-input-group {
    flex-direction: column;
  }

  .newsletter-btn {
    width: 100%;
    justify-content: center;
  }

  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 48px 32px;
    gap: 32px;
  }

  .cta-content { z-index: 2; }
  .cta-mascot { width: 220px; margin: 0 0 -60px 0; }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-card {
    padding: 24px;
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 4px 16px;
    align-items: center;
  }

  .step-number {
    position: static;
    grid-row: 1 / 3;
  }

  .step-icon {
    display: none;
  }

  .step-card h3 {
    margin-bottom: 0;
  }

  .inline-cta {
    padding: 40px 20px;
  }

  .inline-cta-text {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .steps-section {
    padding: 60px 0;
  }

  .steps-section .section-header {
    margin-bottom: 8px;
  }

  .steps-grid {
    gap: 12px;
    margin-top: 32px;
  }

  .inline-newsletter-inner {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    gap: 16px;
  }

  .inline-newsletter-text {
    white-space: normal;
  }

  .inline-newsletter-form {
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    gap: 12px;
  }

  .inline-newsletter-form .newsletter-input {
    width: 100%;
  }

  .inline-newsletter-form .newsletter-btn {
    width: 100%;
    justify-content: center;
  }

  .x-section {
    padding-bottom: 40px;
  }

  .x-card {
    padding: 48px 24px;
  }

  .x-follow-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .footer-echoes img {
    width: 36px;
    height: 36px;
  }
  .footer-echoes img:nth-child(n+8) {
    display: none;
  }
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn { width: 100%; justify-content: center; }

  .feed-container {
    grid-template-columns: 1fr;
    height: 350px;
  }

  .feed-col-2 { display: none; }
}

/* ===================== */
/*  Waitlist Modal        */
/* ===================== */
.waitlist-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.waitlist-overlay.active {
  display: flex;
}

.waitlist-modal {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 36px 32px;
  max-width: 440px;
  width: 100%;
  position: relative;
  text-align: center;
  animation: modalIn 0.25s ease-out;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  margin: auto;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.waitlist-prize-hook {
  margin-bottom: 16px;
}

.waitlist-prize-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #FCD34D;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
}

.waitlist-how-it-works {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.waitlist-step {
  flex: 1;
  font-size: 0.72rem;
  color: #9CA3AF;
  line-height: 1.4;
  text-align: center;
}

.waitlist-step-num {
  display: block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  border-radius: 50%;
  background: rgba(0, 122, 255, 0.12);
  color: #007AFF;
  font-size: 0.7rem;
  font-weight: 700;
  margin: 0 auto 6px;
}

.waitlist-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.waitlist-close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.waitlist-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.waitlist-sub {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.waitlist-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.waitlist-input:focus {
  border-color: var(--accent-1);
}

.waitlist-input::placeholder {
  color: var(--text-secondary);
  opacity: 0.5;
}

.waitlist-submit {
  width: 100%;
  justify-content: center;
}

.waitlist-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.waitlist-success-content {
  text-align: center;
}

.waitlist-success-content .waitlist-title {
  margin-bottom: 8px;
}

.waitlist-success-content .waitlist-sub {
  margin-bottom: 24px;
}

.waitlist-mascot {
  width: 120px;
  height: auto;
  margin: 0 auto 8px;
  display: block;
}

.waitlist-follow-btn {
  width: 100%;
  justify-content: center;
}

.waitlist-error {
  color: #ef4444;
  font-size: 0.9rem;
  margin-top: 12px;
}

@media (max-width: 480px) {
  .waitlist-modal {
    padding: 36px 24px;
  }
  .waitlist-how-it-works {
    gap: 6px;
  }
  .waitlist-step {
    font-size: 0.68rem;
  }
}

/* ===================== */
/*  Referral Share CTA   */
/* ===================== */
.waitlist-success-content .waitlist-title {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.waitlist-success-content .waitlist-sub {
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 0.9rem;
}

.waitlist-success-content .waitlist-sub strong {
  color: var(--amber);
  font-weight: 700;
}

.referral-link-box {
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
}

.referral-link-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.88rem;
  padding: 14px 16px;
  outline: none;
  min-width: 0;
  letter-spacing: 0.01em;
}

.referral-copy-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-1);
  color: #fff;
  border: none;
  padding: 14px 20px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.referral-copy-btn:hover {
  background: #0066DD;
}

.referral-share-btns {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.share-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.share-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
}

.share-x:hover {
  background: rgba(29, 155, 240, 0.1);
  border-color: rgba(29, 155, 240, 0.25);
}

.referral-stats {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.referral-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 10px;
}

.referral-stat + .referral-stat {
  border-left: 1px solid var(--border);
}

.referral-stat-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.referral-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.referral-verify-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  padding: 8px 14px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 10px;
  line-height: 1.5;
}

.referral-leaderboard-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent-1);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  transition: background 0.2s;
}

.referral-leaderboard-link:hover {
  background: rgba(0, 122, 255, 0.08);
}

/* ===================== */
/*  Leaderboard Page     */
/* ===================== */
.lb-hero {
  padding: 140px 0 60px;
  text-align: center;
}

.lb-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lb-hero-mascot {
  width: 140px;
  height: auto;
  margin-bottom: 24px;
}

.lb-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
}

.lb-hero .lb-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 32px;
}

.lb-prize-banner {
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.12), rgba(245, 158, 11, 0.12));
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius);
  padding: 32px 24px;
  margin-bottom: 48px;
}

.lb-prize-amount {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--amber), #FCD34D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.lb-prize-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.lb-prize-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  max-width: 640px;
  margin: 0 auto;
}

.lb-prize-tier {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  text-align: center;
}

.lb-prize-tier-rank {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lb-prize-tier-amount {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--amber);
}

.lb-stats-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 20px 0;
  margin-bottom: 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.lb-stat {
  text-align: center;
}

.lb-stat-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
}

.lb-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lb-lookup {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto 32px;
}

.lb-lookup-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.lb-lookup-input:focus {
  border-color: var(--accent-1);
}

.lb-lookup-input::placeholder {
  color: var(--text-muted);
}

.lb-lookup-btn {
  background: var(--accent-1);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.lb-lookup-btn:hover {
  background: var(--accent-2);
}

.lb-table-wrap {
  max-width: 700px;
  margin: 0 auto 64px;
}

.lb-table {
  width: 100%;
  border-collapse: collapse;
}

.lb-table th {
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.lb-table th:last-child {
  text-align: right;
}

.lb-table td {
  padding: 14px 16px;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.lb-table td:last-child {
  text-align: right;
  font-weight: 600;
}

.lb-table tr.lb-highlight {
  background: rgba(0, 122, 255, 0.08);
}

.lb-table tr.lb-highlight td {
  border-color: rgba(0, 122, 255, 0.15);
}

.lb-rank {
  font-weight: 700;
  color: var(--text-muted);
  min-width: 36px;
  display: inline-block;
}

.lb-rank-1 { color: var(--amber); }
.lb-rank-2 { color: #C0C0C0; }
.lb-rank-3 { color: #CD7F32; }

.lb-email {
  color: var(--text-secondary);
  font-family: 'Inter', monospace;
  font-size: 0.9rem;
}

.lb-verified {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 6px;
  vertical-align: middle;
  color: var(--green);
}

.lb-points {
  color: var(--accent-1);
}

.lb-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-muted);
}

.lb-cta {
  text-align: center;
  padding: 48px 0 80px;
}

.lb-cta p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .lb-hero h1 { font-size: 2rem; }
  .lb-prize-amount { font-size: 1.8rem; }
  .lb-stats-bar { gap: 24px; }
  .lb-stat-num { font-size: 1.3rem; }
  .lb-lookup { flex-direction: column; }
  .lb-prize-tiers { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .lb-hero { padding: 120px 0 40px; }
  .lb-hero h1 { font-size: 1.7rem; }
  .lb-hero-mascot { width: 100px; }
  .lb-table td, .lb-table th { padding: 12px 10px; font-size: 0.85rem; }
  .referral-share-btns { flex-direction: column; }
}

/* ===================== */
/*  Reduced Motion       */
/* ===================== */
@media (prefers-reduced-motion: reduce) {
  .phone-mockup { animation: none; }
  .ticker-track { animation: none; }
  .feed-col-1, .feed-col-2, .feed-col-3 { animation: none; }
  .compare-divider { animation: none; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .mobile-menu, .mobile-menu a, .nav-mobile-toggle span { transition: none; }
}
