/* ── NOISE TEXTURE ─────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
  pointer-events: none;
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 32px 80px;
  position: relative; z-index: 1;
  overflow: hidden;
}

/* ambient glow blobs */
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53,254,126,0.055) 0%, transparent 70%);
  top: -200px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
  animation: blob-drift 12s ease-in-out infinite alternate;
}
.hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,165,250,0.04) 0%, transparent 70%);
  bottom: 0; right: -100px;
  pointer-events: none;
  animation: blob-drift2 15s ease-in-out infinite alternate;
}

@keyframes blob-drift  { from{transform:translateX(-55%) translateY(0)} to{transform:translateX(-45%) translateY(30px)} }
@keyframes blob-drift2 { from{transform:translateX(0) translateY(0)} to{transform:translateX(-30px) translateY(-40px)} }

/* hero badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dark);
  background: var(--accent-dim);
  padding: 5px 16px; border-radius: 99px;
  margin-bottom: 40px;
  animation: fade-up 0.6s ease both;
}
.badge-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2.5s ease infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }
@keyframes fade-up { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }

/* hero headline */
.hero-title {
  font-size: clamp(48px, 7.5vw, 92px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.01;
  color: var(--text);
  margin-bottom: 24px;
  animation: fade-up 0.6s 0.1s ease both;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, #60a5fa 70%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
  font-size: 17px; color: var(--muted); max-width: 460px;
  line-height: 1.65; margin-bottom: 48px;
  animation: fade-up 0.6s 0.18s ease both;
}

/* hero claim bar */
.hero-actions {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  animation: fade-up 0.6s 0.26s ease both;
}
.claim-row {
  display: flex; align-items: center;
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: 12px; overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  max-width: 420px; width: 100%;
}
.claim-row:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim), 0 8px 32px rgba(53,254,126,0.1);
}
.claim-prefix {
  font-family: var(--mono); font-size: 12.5px; color: var(--accent);
  padding: 13px 14px; border-right: 1px solid var(--border);
  background: rgba(53,254,126,0.04); white-space: nowrap; flex-shrink: 0;
}
.claim-input {
  flex: 1; font-size: 13.5px; background: transparent;
  border: none; outline: none; color: var(--text); padding: 13px 14px;
  min-width: 0; font-family: var(--mono);
}
.claim-input::placeholder { color: var(--dim); }
.claim-btn {
  background: var(--accent); color: #020804;
  font-weight: 700; font-size: 12.5px; font-family: var(--font);
  border: none; padding: 13px 20px; cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s; flex-shrink: 0;
}
.claim-btn:hover { background: #5affa0; }

.action-links {
  display: flex; align-items: center; gap: 12px;
}

/* hero scroll hint */
.scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--dim); font-size: 10px; letter-spacing: 0.1em;
  font-family: var(--mono); text-transform: uppercase;
  animation: fade-up 0.6s 0.7s ease both;
}
.scroll-arrow {
  width: 18px; height: 18px; border-right: 1.5px solid var(--dim); border-bottom: 1.5px solid var(--dim);
  transform: rotate(45deg);
  animation: arrow-bob 1.8s ease infinite;
}
@keyframes arrow-bob { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(4px)} }

/* ── MARQUEE ─────────────────────────────────────── */
.marquee-section {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  padding: 18px 0; overflow: hidden; position: relative; z-index: 1;
}
.marquee-fade {
  position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.marquee-fade-l { left: 0; background: linear-gradient(90deg, var(--bg2), transparent); }
.marquee-fade-r { right: 0; background: linear-gradient(-90deg, var(--bg2), transparent); }
.marquee-track {
  display: flex; gap: 12px;
  animation: marquee 32s linear infinite; width: max-content;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.m-chip {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 99px;
  border: 1px solid var(--border); white-space: nowrap;
  font-size: 12.5px; color: var(--muted); font-weight: 500;
  background: var(--bg); transition: border-color 0.15s;
}
.m-chip:hover { border-color: var(--border2); }
.m-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }

/* ── STATS ───────────────────────────────────────── */
.stats-section {
  padding: 80px 0; position: relative; z-index: 1;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
}
.stat-item {
  background: var(--bg2); padding: 32px 24px; text-align: center;
  transition: background 0.2s;
}
.stat-item:hover { background: var(--bg3); }
.stat-num {
  font-size: 34px; font-weight: 800; letter-spacing: -0.03em;
  color: var(--text); line-height: 1; margin-bottom: 6px;
}
.stat-num span { color: var(--accent); }
.stat-label {
  font-family: var(--mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.13em; color: var(--muted);
}

/* ── SECTION ─────────────────────────────────────── */
.section { padding: 100px 0; position: relative; z-index: 1; }
.section-head { margin-bottom: 64px; }
.section-title {
  font-size: clamp(32px, 4vw, 52px); font-weight: 800;
  letter-spacing: -0.035em; line-height: 1.08; color: var(--text);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 16px; color: var(--muted);
  line-height: 1.7; max-width: 480px;
}

/* ── FEATURES GRID ───────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
}
.feat {
  background: var(--bg2); padding: 30px 26px;
  position: relative; overflow: hidden;
  transition: background 0.25s;
  cursor: default;
}
.feat::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feat:hover { background: var(--bg3); }
.feat:hover::before { opacity: 0.5; }
.feat-icon {
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; transition: border-color 0.2s, background 0.2s;
}
.feat:hover .feat-icon { border-color: rgba(53,254,126,0.25); background: var(--accent-dim); }
.feat-icon svg { width: 18px; height: 18px; stroke: var(--muted); transition: stroke 0.2s; }
.feat:hover .feat-icon svg { stroke: var(--accent); }
.feat-title {
  font-size: 14px; font-weight: 700; color: var(--text);
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.feat-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── SHOWCASE ────────────────────────────────────── */
.showcase-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.check-list { display: flex; flex-direction: column; gap: 13px; margin-top: 28px; }
.check-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--muted);
}
.check-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent-dim); border: 1px solid rgba(53,254,126,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.check-dot svg { width: 10px; height: 10px; stroke: var(--accent); stroke-width: 2.5; }

/* Profile mock card */
.profile-mock {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  position: relative;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.4s;
}
.profile-mock:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 48px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(53,254,126,0.1);
}
.mock-banner {
  height: 96px;
  background: linear-gradient(135deg, #070d0f, #0e2233, #07111a);
  position: relative; overflow: hidden;
}
.mock-banner::before {
  content: '';position:absolute;inset:0;
  background: radial-gradient(circle at 35% 65%, rgba(53,254,126,0.2), transparent 50%),
              radial-gradient(circle at 75% 25%, rgba(96,165,250,0.15), transparent 50%);
}
.mock-body { padding: 0 22px 24px; }
.mock-avatar {
  width: 60px; height: 60px; border-radius: 50%;
  border: 3px solid var(--bg2);
  background: linear-gradient(135deg, var(--accent-dark), #1e2d5e);
  margin-top: -30px; margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: var(--text);
}
.mock-name { font-size: 17px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 2px; }
.mock-handle { font-family: var(--mono); font-size: 11px; color: var(--accent); margin-bottom: 12px; }
.mock-badges { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.mock-bio { font-size: 12.5px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.mock-links { display: flex; flex-direction: column; gap: 7px; }
.mock-link {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 13px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 9px;
  font-size: 13px; font-weight: 500;
  transition: border-color 0.15s, background 0.15s;
}
.mock-link:hover { border-color: rgba(53,254,126,0.2); background: var(--accent-dim); }
.mlink-icon {
  width: 24px; height: 24px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0;
}
.icon-tw { background: rgba(29,161,242,0.12); color: #1da1f2; }
.icon-yt { background: rgba(255,0,0,0.1); color: #ff4444; }
.icon-dc { background: rgba(88,101,242,0.12); color: #5865f2; }
.icon-gh { background: rgba(255,255,255,0.05); color: var(--muted); }
.mlink-arrow { margin-left: auto; color: var(--dim); font-size: 11px; }

/* ── CTA ─────────────────────────────────────────── */
.cta-section { padding: 0 0 100px; position: relative; z-index: 1; }
.cta-wrap {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 24px; padding: 80px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-wrap::before {
  content: '';position:absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(53,254,126,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-badge {
  display: inline-block; font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--accent-dark);
  background: var(--accent-dim); padding: 5px 14px; border-radius: 99px;
  margin-bottom: 28px;
}
.cta-title {
  font-size: clamp(30px, 4vw, 52px); font-weight: 800;
  letter-spacing: -0.035em; line-height: 1.08;
  color: var(--text); margin-bottom: 16px;
}
.cta-desc {
  font-size: 16px; color: var(--muted);
  max-width: 380px; margin: 0 auto 40px; line-height: 1.65;
}

/* ── SCROLL REVEAL ───────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(.4,0,.2,1), transform 0.55s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .showcase-wrap { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero { padding: 100px 18px 80px; }
  .hero-title { font-size: 42px; letter-spacing: -0.03em; }
  .hero-sub { font-size: 15px; }
  .features-grid { grid-template-columns: 1fr; border-radius: 12px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 70px 0; }
  .cta-wrap { padding: 52px 24px; }
  .action-links { flex-direction: column; width: 100%; }
  .action-links .btn { justify-content: center; }
}
