/* ============================================
   PELOSIFY — Bright Meme Theme
   ============================================ */

:root {
    --bg: #0a0a18;
    --bg-alt: #0e0e22;
    --surface: #13132a;
    --surface-border: #252550;
    --text: #c4c8d8;
    --text-dim: #6b7294;
    --text-bright: #f0f2ff;
    --accent: #a855f7;
    --accent-dim: #8b3fe0;
    --accent-glow: rgba(168, 85, 247, 0.15);
    --teal: #00e5b8;
    --teal-dim: #00c49d;
    --teal-glow: rgba(0, 229, 184, 0.12);
    --green: #00e5b8;
    --red: #ff5555;
    --purple: #c084fc;
    --pink: #f472b6;
    --yellow: #fbbf24;
    --font: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono: 'JetBrains Mono', 'Courier New', monospace;
    --max-w: 1140px;
    --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--text-bright); }

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

.text-accent { color: var(--accent); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-pink { color: var(--pink); }
.text-yellow { color: var(--yellow); }

/* MEME SPARKLE */
@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

.meme-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(244, 114, 182, 0.15));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 20px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--pink);
    letter-spacing: 1px;
}

.meme-glow {
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.4), 0 0 40px rgba(168, 85, 247, 0.2);
}

/* ============================================
   REVEAL ANIMATION
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   NAV
   ============================================ */

#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    z-index: 1000;
    background: rgba(6, 6, 14, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s;
}

#nav.scrolled {
    border-bottom-color: var(--surface-border);
    background: rgba(6, 6, 14, 0.95);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-bright);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 2px;
    white-space: nowrap;
}

.nav-logo {
    width: 38px;
    height: 38px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--pink);
    box-shadow: 0 0 12px rgba(244, 114, 182, 0.3);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
}

.nav-links a {
    color: var(--text-dim);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.25s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text-bright); }

.nav-link-x {
    display: flex;
    align-items: center;
    opacity: 0.5;
    transition: opacity 0.25s;
}

.nav-link-x:hover { opacity: 1; }

.nav-buy {
    display: inline-flex;
    align-items: center;
    padding: 9px 22px;
    background: linear-gradient(135deg, var(--accent), var(--pink));
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    white-space: nowrap;
}

.nav-buy:hover {
    background: linear-gradient(135deg, var(--accent-dim), #e048a0);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 24px rgba(168, 85, 247, 0.35), 0 2px 12px rgba(244, 114, 182, 0.2);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* ============================================
   HERO
   ============================================ */

#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-h);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.06) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 45% 35% at 25% 30%, rgba(168, 85, 247, 0.18), transparent),
        radial-gradient(ellipse 35% 45% at 75% 60%, rgba(244, 114, 182, 0.08), transparent),
        radial-gradient(ellipse 30% 30% at 60% 20%, rgba(251, 191, 36, 0.04), transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-text h1 {
    font-size: clamp(34px, 4.8vw, 54px);
    font-weight: 700;
    line-height: 1.12;
    color: var(--text-bright);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-sub {
    font-size: 17px;
    color: var(--text);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-sub strong { color: var(--accent); font-weight: 600; }

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--pink));
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-dim), #e048a0);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.3), 0 4px 16px rgba(244, 114, 182, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--surface-border);
}

.btn-outline:hover {
    border-color: var(--accent-dim);
    color: var(--accent);
    transform: translateY(-2px);
}

.hero-ca {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 10px 16px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 10px;
}

.ca-label {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 1.5px;
}

.hero-ca code {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text);
    user-select: all;
}

.ca-copy {
    background: none;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    padding: 2px;
    transition: color 0.25s;
    display: flex;
}

.ca-copy:hover { color: var(--accent); }
.ca-copy.copied { color: var(--teal); }

/* HERO VISUAL */
.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

/* HERO FLOW CARD */
.hero-flow-card {
    width: 100%;
    max-width: 420px;
    padding: 28px 24px 24px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    animation: flowCardEntry 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-flow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--pink), var(--teal), var(--accent));
    background-size: 300% 100%;
    animation: flowShimmer 4s linear infinite;
}

@keyframes flowCardEntry {
    0% { opacity: 0; transform: translateY(20px) scale(0.97); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes flowShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.flow-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.flow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
}

.flow-dot-pulse {
    animation: dotPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 6px var(--teal);
}

.flow-label {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--teal);
    text-transform: uppercase;
}

.flow-headline {
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 700;
    color: var(--text-bright);
    line-height: 1.3;
    margin-bottom: 18px;
}

.flow-divider {
    height: 1px;
    background: var(--surface-border);
    margin: 14px 0;
}

.flow-stats-row {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.flow-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 6px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.flow-stat-val {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 600;
}

.flow-stat-arrow {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-dim);
}

.flow-pipeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 4px 0;
    flex-wrap: wrap;
}

.flow-step-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    background: var(--accent-glow);
    border: 1px solid rgba(139, 92, 246, 0.12);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-bright);
    animation: flowStepPulse 4s ease-in-out infinite;
}

.flow-step-item:nth-child(3) { animation-delay: 0.5s; }
.flow-step-item:nth-child(5) { animation-delay: 1s; }

@keyframes flowStepPulse {
    0%, 100% { border-color: rgba(139, 92, 246, 0.12); }
    50% { border-color: rgba(139, 92, 246, 0.35); }
}

.flow-step-icon {
    font-size: 14px;
    opacity: 0.7;
}

.flow-arrow {
    font-size: 14px;
    color: var(--text-dim);
    opacity: 0.4;
    animation: arrowBlink 2s ease-in-out infinite;
}

@keyframes arrowBlink {
    0%, 100% { opacity: 0.25; }
    50% { opacity: 0.7; color: var(--accent); }
}

.flow-tokens {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
    justify-content: center;
}

.flow-token {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(0, 212, 170, 0.08);
    border: 1px solid rgba(0, 212, 170, 0.12);
    color: var(--teal);
}

.flow-token em {
    font-style: normal;
    color: var(--text-dim);
    font-weight: 400;
    margin-left: 3px;
}

.flow-bottom-text {
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-dim);
    text-align: center;
    line-height: 1.5;
}

.hero-ring-wrapper {
    position: relative;
    width: 340px;
    height: 340px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
}

.ring-1 {
    width: 100%;
    height: 100%;
    border-color: rgba(139, 92, 246, 0.12);
    animation: ringPulse 5s ease-in-out infinite;
}

.ring-2 {
    width: 78%;
    height: 78%;
    border-color: rgba(139, 92, 246, 0.07);
    animation: ringPulse 5s ease-in-out 1.5s infinite;
}

.ring-3 {
    width: 56%;
    height: 56%;
    border-color: rgba(0, 212, 170, 0.05);
    animation: ringPulse 5s ease-in-out 3s infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.06); opacity: 0.4; }
}

.hero-logo-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    animation: logoFloat 7s ease-in-out infinite;
    filter: drop-shadow(0 20px 60px rgba(168, 85, 247, 0.25)) drop-shadow(0 10px 30px rgba(244, 114, 182, 0.15));
    border: 3px solid rgba(244, 114, 182, 0.3);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-dim), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* TIMER */
.timer-card {
    padding: 20px 28px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    text-align: center;
    width: 100%;
    max-width: 300px;
    transition: border-color 0.4s, box-shadow 0.4s;
}

.timer-card.flash {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.25);
}

.timer-label {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.timer-digits {
    font-family: var(--mono);
    font-size: 40px;
    font-weight: 700;
    color: var(--text-bright);
    letter-spacing: 4px;
    line-height: 1;
    margin-bottom: 14px;
    transition: color 0.3s;
}

.timer-digits.urgent { color: var(--red); }

.timer-bar-track {
    width: 100%;
    height: 3px;
    background: var(--surface-border);
    border-radius: 2px;
    overflow: hidden;
}

.timer-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--teal));
    border-radius: 2px;
    width: 100%;
    transition: width 1s linear;
}

/* ============================================
   QUOTE BANNER
   ============================================ */

.section-quote {
    padding: 80px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--surface-border);
    border-bottom: 1px solid var(--surface-border);
}

.quote-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-mark {
    font-size: 80px;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -20px;
}

.quote-card blockquote {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 600;
    color: var(--text-bright);
    line-height: 1.3;
    margin-bottom: 16px;
    font-style: italic;
}

.quote-context {
    font-size: 14px;
    color: var(--text-dim);
    font-style: normal;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 120px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-tag {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section h2,
h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 48px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

/* ============================================
   ABOUT CARDS
   ============================================ */

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-card {
    padding: 36px 28px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 14px;
    transition: border-color 0.3s, transform 0.3s;
}

.about-card:hover {
    border-color: var(--accent-dim);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.1);
}

.about-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--accent);
}

.about-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 12px;
}

.about-card p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.75;
}

.about-card p strong { color: var(--teal); }

/* ============================================
   STATS BANNER
   ============================================ */

.section-stats {
    padding: 48px 0;
    background: var(--surface);
    border-top: 1px solid var(--surface-border);
    border-bottom: 1px solid var(--surface-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-family: var(--mono);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-bright);
}

.stat-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-dim);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ============================================
   STEPS (MECHANISM)
   ============================================ */

.steps {
    max-width: 640px;
}

.step {
    display: flex;
    gap: 24px;
    position: relative;
    padding-bottom: 48px;
}

.step:last-child { padding-bottom: 0; }

.step-num {
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 10px;
    flex-shrink: 0;
}

.step-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 8px;
}

.step-body p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.75;
}

.step-line {
    position: absolute;
    left: 20px;
    top: 48px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--surface-border), transparent);
}

/* ============================================
   PORTFOLIO TABLE
   ============================================ */

.portfolio-intro {
    font-size: 16px;
    color: var(--text);
    max-width: 700px;
    line-height: 1.75;
    margin-bottom: 32px;
    margin-top: -24px;
}

.portfolio-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--surface-border);
    border-radius: 14px;
    background: var(--surface);
}

.portfolio-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 600px;
}

.portfolio-table thead th {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    text-transform: uppercase;
    text-align: left;
    padding: 16px 20px;
    border-bottom: 1px solid var(--surface-border);
    background: rgba(139, 92, 246, 0.03);
}

.portfolio-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(28, 28, 53, 0.6);
    color: var(--text);
}

.portfolio-table tbody tr:last-child td { border-bottom: none; }
.portfolio-table tbody tr:hover { background: rgba(139, 92, 246, 0.03); }

.portfolio-table .ticker {
    font-family: var(--mono);
    font-weight: 600;
    color: var(--text-bright);
    font-size: 14px;
}

.row-dimmed { opacity: 0.45; }
.row-dimmed:hover { opacity: 0.7; }

.badge-live {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 6px;
    background: rgba(0, 212, 170, 0.12);
    color: var(--teal);
}

.badge-off {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 6px;
    background: rgba(94, 100, 120, 0.12);
    color: var(--text-dim);
}

.token-ca {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
}

.token-ca code {
    font-size: 10px;
    font-weight: 400;
    color: var(--text-dim);
    word-break: break-all;
    opacity: 0.7;
}

.portfolio-note {
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 20px;
    line-height: 1.7;
}

/* ============================================
   KEY METRICS
   ============================================ */

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.metric-card {
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: border-color 0.3s, transform 0.3s;
}

.metric-card:hover {
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
}

.metric-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-dim);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.metric-value {
    font-family: var(--mono);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-bright);
}

/* ============================================
   DISTRIBUTION TIERS
   ============================================ */

.tiers-intro {
    font-size: 16px;
    color: var(--text);
    max-width: 700px;
    line-height: 1.75;
    margin-bottom: 40px;
    margin-top: -20px;
}

.tiers-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--surface-border);
    border-radius: 14px;
    background: var(--surface);
}

.tiers-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 500px;
}

.tiers-table thead th {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    text-transform: uppercase;
    text-align: left;
    padding: 16px 24px;
    border-bottom: 1px solid var(--surface-border);
    background: rgba(139, 92, 246, 0.03);
}

.tiers-table tbody td {
    padding: 14px 24px;
    border-bottom: 1px solid var(--surface-border);
    color: var(--text);
}

.tiers-table tbody tr:last-child td { border-bottom: none; }
.tiers-table tbody tr:hover { background: rgba(139, 92, 246, 0.03); }

.tiers-table tbody td:first-child {
    font-family: var(--mono);
    font-weight: 500;
    color: var(--text-bright);
    font-size: 13px;
}

.tier-pct {
    display: inline-block;
    font-family: var(--mono);
    font-weight: 600;
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 6px;
}

.tier-top {
    color: var(--accent);
    background: var(--accent-glow);
}

.tier-high {
    color: #a78bfa;
    background: rgba(167, 139, 250, 0.1);
}

.tier-mid {
    color: var(--text);
    background: rgba(184, 188, 200, 0.08);
}

.tier-base {
    color: var(--text-dim);
    background: rgba(94, 100, 120, 0.08);
}

.tiers-note {
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 20px;
    line-height: 1.7;
}

.tiers-note code {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--accent);
    background: var(--accent-glow);
    padding: 2px 8px;
    border-radius: 4px;
}

/* ============================================
   LEADERBOARD
   ============================================ */

.lb-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.lb-stat {
    padding: 16px 20px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    text-align: center;
}

.lb-stat-label {
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.lb-stat-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--mono);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-bright);
}

.lb-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.lb-dot-live { background: var(--teal); box-shadow: 0 0 8px var(--teal); }
.lb-dot-loading { background: var(--accent); animation: dotPulse 1s ease-in-out infinite; }
.lb-dot-error { background: var(--red); }

@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.lb-search {
    position: relative;
    margin-bottom: 16px;
}

.lb-search input {
    width: 100%;
    padding: 14px 44px 14px 18px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    color: var(--text);
    font-family: var(--mono);
    font-size: 13px;
    outline: none;
    transition: border-color 0.25s;
}

.lb-search input::placeholder { color: var(--text-dim); opacity: 0.5; }
.lb-search input:focus { border-color: var(--accent-dim); }

.lb-search-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.lb-search-clear:hover { color: var(--text-bright); }

.lb-pinned { margin-bottom: 4px; }

.lb-pinned-row {
    display: grid;
    grid-template-columns: 60px 1fr 120px 90px 110px 80px;
    gap: 8px;
    align-items: center;
    padding: 12px 20px;
    background: var(--accent-glow);
    border: 1px solid var(--accent-dim);
    border-radius: 12px;
    margin-bottom: 12px;
    font-size: 13px;
}

.lb-pinned-row .lb-rank { color: var(--accent); font-weight: 700; }
.lb-pinned-row .lb-wallet { font-family: var(--mono); color: var(--accent); font-size: 12px; }

.lb-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--surface-border);
    border-radius: 14px;
    background: var(--surface);
}

.lb-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    min-width: 650px;
}

.lb-table thead th {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    text-transform: uppercase;
    text-align: left;
    padding: 14px 18px;
    border-bottom: 1px solid var(--surface-border);
    background: rgba(139, 92, 246, 0.03);
    position: sticky;
    top: 0;
}

.lb-table tbody td {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(28, 28, 53, 0.6);
    color: var(--text);
    font-family: var(--mono);
    font-size: 12px;
}

.lb-table tbody tr:last-child td { border-bottom: none; }
.lb-table tbody tr:hover { background: rgba(139, 92, 246, 0.03); }

.lb-rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
}

.lb-rank-1 { background: rgba(139, 92, 246, 0.2); color: var(--accent); }
.lb-rank-2 { background: rgba(0, 212, 170, 0.15); color: var(--teal); }
.lb-rank-3 { background: rgba(168, 85, 247, 0.15); color: var(--purple); }

.lb-wallet-addr {
    cursor: pointer;
    transition: color 0.2s;
}

.lb-wallet-addr:hover { color: var(--accent); }

.lb-tier-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    background: var(--accent-glow);
    color: var(--accent);
}

.lb-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.lb-page-btn {
    padding: 8px 18px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--mono);
    font-size: 12px;
    cursor: pointer;
    transition: border-color 0.25s, color 0.25s;
}

.lb-page-btn:hover { border-color: var(--accent-dim); color: var(--accent); }
.lb-page-btn:disabled { opacity: 0.3; cursor: default; }

.lb-page-info {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text-dim);
}

.lb-refresh {
    text-align: center;
    margin-top: 14px;
}

.lb-refresh span {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-dim);
    opacity: 0.5;
}

/* ============================================
   CTA
   ============================================ */

.cta-inner {
    text-align: center;
    max-width: 640px;
}

.cta-logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 28px;
    opacity: 0.9;
    border: 2px solid var(--pink);
    box-shadow: 0 0 20px rgba(244, 114, 182, 0.25);
}

.cta-inner h2 { margin-bottom: 20px; }

.cta-inner p {
    font-size: 16px;
    color: var(--text-dim);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-inner .hero-actions { justify-content: center; }

/* ============================================
   FOOTER
   ============================================ */

footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--surface-border);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-bright);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 2px;
}

.footer-logo {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 50%;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-dim);
    transition: color 0.25s;
}

.footer-links a:hover { color: var(--text-bright); }

.footer-disclaimer {
    font-size: 11px;
    color: var(--text-dim);
    max-width: 620px;
    line-height: 1.6;
    opacity: 0.6;
    margin-top: 12px;
}

.footer-copy {
    font-size: 12px;
    color: var(--text-dim);
    opacity: 0.4;
}

/* ============================================
   WHITEPAPER STYLES
   ============================================ */

.whitepaper {
    padding-top: calc(var(--nav-h) + 60px);
    padding-bottom: 80px;
}

.wp-container { max-width: 760px; }

.wp-header {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--surface-border);
}

.wp-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--text-bright);
    margin: 12px 0 16px;
    letter-spacing: -0.5px;
}

.wp-subtitle {
    font-size: 17px;
    color: var(--text-dim);
    line-height: 1.7;
}

.wp-toc {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 60px;
}

.wp-toc h4 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.wp-toc ol { list-style: none; counter-reset: toc; }
.wp-toc ol li { counter-increment: toc; margin-bottom: 8px; }
.wp-toc ol li a { font-size: 14px; color: var(--text-dim); transition: color 0.25s; }
.wp-toc ol li a::before {
    content: counter(toc) ". ";
    color: var(--text-dim);
    opacity: 0.4;
    font-family: var(--mono);
    font-size: 12px;
}
.wp-toc ol li a:hover { color: var(--text-bright); }

.wp-section {
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--surface-border);
}

.wp-section:last-of-type { border-bottom: none; }

.wp-section h2 { font-size: 24px; margin-bottom: 20px; }

.wp-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-bright);
    margin: 28px 0 12px;
}

.wp-section p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 16px;
}

.wp-section p:last-child { margin-bottom: 0; }

.wp-layers {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.wp-layer {
    padding: 20px 24px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 10px;
    border-left: 3px solid var(--accent-dim);
}

.wp-layer h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 6px;
}

.wp-layer p { font-size: 14px; color: var(--text-dim); margin-bottom: 0; }

.wp-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
}

.wp-table th, .wp-table td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid var(--surface-border);
}

.wp-table th {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-dim);
    text-transform: uppercase;
    background: var(--surface);
}

.wp-table td { color: var(--text); }
.wp-table tr:last-child td { border-bottom: none; }

.wp-cycle {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.wp-cycle-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 20px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 10px;
}

.wp-cycle-num {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    min-width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border-radius: 6px;
    flex-shrink: 0;
}

.wp-cycle-step h4 { font-size: 15px; font-weight: 600; color: var(--text-bright); margin-bottom: 4px; }
.wp-cycle-step p { font-size: 13px; color: var(--text-dim); margin-bottom: 0; line-height: 1.6; }

.wp-formula {
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 10px;
    margin: 24px 0;
}

.wp-formula code {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--accent);
    line-height: 2;
}

.wp-risks-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wp-risks-list li {
    padding: 16px 20px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.65;
}

.wp-risks-list li strong { color: var(--text-bright); }

.wp-roadmap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.wp-roadmap-phase {
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 10px;
    border-left: 3px solid var(--accent-dim);
}

.wp-roadmap-phase h4 { font-size: 15px; font-weight: 600; color: var(--accent); margin-bottom: 12px; }
.wp-roadmap-phase ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }

.wp-roadmap-phase li {
    font-size: 14px;
    color: var(--text-dim);
    padding-left: 16px;
    position: relative;
}

.wp-roadmap-phase li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 4px;
    height: 4px;
    background: var(--accent-dim);
    border-radius: 50%;
}

.wp-footer {
    padding-top: 40px;
    border-top: 1px solid var(--surface-border);
    margin-top: 40px;
}

.wp-footer p {
    font-size: 12px;
    color: var(--text-dim);
    opacity: 0.6;
    line-height: 1.6;
}

/* ============================================
   MEME ELEMENTS
   ============================================ */

.section-quote {
    background: linear-gradient(135deg, var(--bg-alt) 0%, rgba(168, 85, 247, 0.04) 50%, var(--bg-alt) 100%);
}

.quote-mark {
    background: linear-gradient(135deg, var(--accent), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.6;
}

.section-stats {
    background: linear-gradient(135deg, var(--surface) 0%, rgba(168, 85, 247, 0.05) 50%, var(--surface) 100%);
}

.tier-low {
    color: var(--text-dim);
    background: rgba(107, 114, 148, 0.1);
}

.pelosi-emoji {
    font-size: 1.2em;
    margin-right: 4px;
}

.meme-ticker {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(244, 114, 182, 0.1));
    border-radius: 4px;
    font-family: var(--mono);
    font-weight: 700;
    font-size: 13px;
    color: var(--pink);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .about-grid,
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .lb-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .lb-pinned-row {
        grid-template-columns: 50px 1fr 90px;
    }

    .lb-pinned-row > :nth-child(4),
    .lb-pinned-row > :nth-child(5),
    .lb-pinned-row > :nth-child(6) {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 24px;
    }

    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-ca { margin-left: auto; margin-right: auto; }

    .hero-ring-wrapper {
        width: 260px;
        height: 260px;
    }

    .hero-logo-img {
        width: 160px;
        height: 160px;
    }

    .hero-scroll { display: none; }
}

@media (max-width: 700px) {
    .nav-links, .nav-buy { display: none; }
    .nav-toggle { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg);
        padding: 40px 24px;
        gap: 20px;
        z-index: 999;
    }

    .nav-links.open a { font-size: 18px; color: var(--text); }
    .nav-links.open .nav-link-x { opacity: 1; }

    .nav-buy.open {
        display: inline-flex;
        position: fixed;
        bottom: 24px;
        left: 24px;
        right: 24px;
        z-index: 999;
        justify-content: center;
        padding: 14px;
        border-radius: 12px;
    }

    .about-grid,
    .metrics-grid { grid-template-columns: 1fr; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    .section { padding: 80px 0; }
    .section h2 { margin-bottom: 32px; }
}
