/* ===== Token-specific Components ===== */

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-primary);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255,215,0,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(22,199,154,0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 60% at 10% 80%, rgba(59,130,246,0.06) 0%, transparent 50%);
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,215,0,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,215,0,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}
.hero-text { max-width: 580px; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,215,0,0.1);
    border: 1px solid var(--border-gold);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.hero h1 { margin-bottom: 1.25rem; }
.hero-subtitle { font-size: 1.15rem; line-height: 1.7; margin-bottom: 2rem; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.hero-stat-item { text-align: center; }
.hero-stat-value {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
}
.hero-stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* Hero visual — coin animation */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.coin-container {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.coin-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,215,0,0.15);
    animation: coinRingPulse 3s ease-in-out infinite;
}
.coin-ring:nth-child(1) { width: 320px; height: 320px; animation-delay: 0s; }
.coin-ring:nth-child(2) { width: 260px; height: 260px; animation-delay: 0.5s; border-style: dashed; }
.coin-ring:nth-child(3) { width: 200px; height: 200px; animation-delay: 1s; }
@keyframes coinRingPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.03); }
}
.coin-main {
    position: relative;
    z-index: 2;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle at 35% 30%, #ffe566, #ffd700 50%, #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(255,215,0,0.4), 0 0 120px rgba(255,215,0,0.2), inset 0 -4px 15px rgba(0,0,0,0.3);
    animation: coinFloat 4s ease-in-out infinite;
}
@keyframes coinFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}
.coin-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}
.coin-symbol {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: #0a0f1e;
    line-height: 1;
}
.coin-peg {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0a0f1e;
    letter-spacing: 0.05em;
}
.coin-float-items {
    position: absolute;
    inset: 0;
}
.coin-float-item {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 0.6rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
    animation: floatItem 5s ease-in-out infinite;
}
.coin-float-item:nth-child(1) { top: 20px; right: 10px; animation-delay: 0s; }
.coin-float-item:nth-child(2) { bottom: 40px; right: 0px; animation-delay: 1.2s; }
.coin-float-item:nth-child(3) { bottom: 30px; left: 10px; animation-delay: 2.4s; }
.coin-float-item:nth-child(4) { top: 30px; left: 5px; animation-delay: 0.8s; }
@keyframes floatItem {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ===== Token Stats Bar ===== */
.stats-bar {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}
.stat-card {
    text-align: center;
    padding: 1rem;
    border-right: 1px solid var(--border);
}
.stat-card:last-child { border-right: none; }
.stat-value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    line-height: 1;
    margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-sub { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ===== How It Works ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--teal) 50%, var(--accent) 100%);
    opacity: 0.3;
    z-index: 0;
}
.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}
.step-card:hover { border-color: var(--border-gold); transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: #0a0f1e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    font-family: var(--font-display);
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 1;
}
.step-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.step-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ===== Tokenomics ===== */
.tokenomics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.tokenomics-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.donut-chart {
    width: 260px;
    height: 260px;
    position: relative;
}
.donut-chart svg { width: 100%; height: 100%; }
.donut-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.donut-center-value { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--accent); }
.donut-center-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

.tokenomics-list { display: flex; flex-direction: column; gap: 1rem; }
.tokenomics-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.tokenomics-item:hover { border-color: var(--border-gold); }
.tokenomics-color {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}
.tokenomics-name { font-weight: 600; font-size: 0.95rem; flex: 1; }
.tokenomics-pct { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--accent); }
.tokenomics-amt { font-size: 0.78rem; color: var(--text-muted); }
.tokenomics-bar-wrap { background: var(--border); border-radius: 100px; height: 6px; flex: 1; margin: 0 0.5rem; }
.tokenomics-bar { height: 100%; border-radius: 100px; }

/* ===== Roadmap ===== */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}
.roadmap-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.roadmap-card.active {
    border-color: var(--border-gold);
    background: linear-gradient(135deg, #111827 0%, #1a1600 100%);
}
.roadmap-card.active::before {
    content: 'ACTIVE';
    position: absolute;
    top: 1rem; right: 1rem;
    background: var(--accent);
    color: #0a0f1e;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    letter-spacing: 0.1em;
}
.roadmap-phase { font-size: 0.78rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.roadmap-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }
.roadmap-items { display: flex; flex-direction: column; gap: 0.5rem; }
.roadmap-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
}
.roadmap-item i { color: var(--teal); font-size: 0.75rem; margin-top: 0.3rem; flex-shrink: 0; }

/* ===== Liquidity Proof Teaser ===== */
.liquidity-teaser {
    background: linear-gradient(135deg, #0f1628 0%, #1a1600 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.liquidity-teaser::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.liquidity-counter {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--accent);
    letter-spacing: -0.02em;
    margin: 1rem 0;
    text-shadow: 0 0 40px rgba(255,215,0,0.4);
}
.liquidity-badges { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin: 1.5rem 0; }
.liquidity-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,215,0,0.08);
    border: 1px solid var(--border-gold);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}
.liquidity-badge i { color: var(--accent); }

/* ===== Trust Pillars ===== */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
}
.pillar-card:hover { border-color: var(--border-gold); transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.pillar-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,215,0,0.1);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}
.pillar-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.pillar-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.open { border-color: var(--border-gold); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    gap: 1rem;
}
.faq-question i { color: var(--accent); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, #0f1628 0%, #1a1600 50%, #0f1628 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 3rem 0;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,215,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.cta-buttons { display: flex; justify-content: center; gap: 1.25rem; flex-wrap: wrap; margin-top: 2rem; }

/* ===== Whitepaper Page ===== */
.whitepaper-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
    padding: 3rem 0;
}
.whitepaper-toc {
    position: sticky;
    top: 110px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
.toc-title { font-size: 0.8rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.toc-list { display: flex; flex-direction: column; gap: 0.1rem; }
.toc-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: var(--transition);
    text-decoration: none;
}
.toc-link:hover, .toc-link.active { background: rgba(255,215,0,0.08); color: var(--accent); }
.toc-num { font-size: 0.75rem; color: var(--text-muted); width: 20px; }

.whitepaper-content { min-width: 0; }
.wp-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}
.wp-section:last-child { border-bottom: none; }
.wp-section-num {
    display: inline-block;
    background: rgba(255,215,0,0.1);
    color: var(--accent);
    border: 1px solid var(--border-gold);
    padding: 0.2rem 0.75rem;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: 0.08em;
}
.wp-section h2 { font-size: 1.6rem; margin-bottom: 1.25rem; }
.wp-section h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--text-primary); }
.wp-section p { font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }
.wp-section ul { padding-left: 1rem; margin-bottom: 1rem; }
.wp-section ul li { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 0.5rem; padding-left: 1rem; position: relative; }
.wp-section ul li::before { content: '▸'; color: var(--accent); position: absolute; left: 0; }
.wp-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.wp-table th { background: rgba(255,215,0,0.08); color: var(--accent); font-size: 0.82rem; font-weight: 700; text-align: left; padding: 0.75rem 1rem; border-bottom: 1px solid var(--border-gold); letter-spacing: 0.06em; text-transform: uppercase; }
.wp-table td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--text-secondary); }
.wp-table tr:hover td { background: rgba(255,215,0,0.03); }
.wp-info-box {
    background: rgba(255,215,0,0.05);
    border: 1px solid var(--border-gold);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}
.wp-info-box strong { color: var(--accent); }
.wp-warning-box {
    background: rgba(233,69,96,0.05);
    border: 1px solid rgba(233,69,96,0.3);
    border-left: 4px solid var(--red);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

/* ===== Liquidity Page ===== */
.pof-hero {
    background: linear-gradient(135deg, #0f1628 0%, #1a1600 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}
.pof-amount {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--accent);
    text-shadow: 0 0 40px rgba(255,215,0,0.3);
    margin: 1rem 0;
}
.pof-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}
.pof-detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
}
.pof-detail-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.pof-detail-value { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-primary); }
.pof-doc-viewer {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
}
.pof-doc-header {
    background: rgba(255,215,0,0.05);
    border-bottom: 1px solid var(--border-gold);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pof-doc-title { font-weight: 700; font-size: 0.9rem; color: var(--accent); }
.pof-doc-img {
    width: 100%;
    max-width: 760px;
    margin: 2rem auto;
    display: block;
    border-radius: var(--radius-md);
    cursor: zoom-in;
    transition: transform 0.3s;
}
.pof-doc-img:hover { transform: scale(1.02); }
.pof-breakdown-table { width: 100%; border-collapse: collapse; }
.pof-breakdown-table th { background: rgba(255,215,0,0.08); color: var(--accent); font-size: 0.82rem; font-weight: 700; text-align: left; padding: 0.75rem 1.25rem; border-bottom: 1px solid var(--border-gold); }
.pof-breakdown-table td { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--text-secondary); }
.pof-breakdown-table .total-row td { font-weight: 700; color: var(--accent); font-size: 1rem; background: rgba(255,215,0,0.05); }

/* ===== Buy Page ===== */
.contract-box {
    background: var(--bg-card);
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}
.contract-label { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.contract-address {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: var(--accent);
    background: rgba(255,215,0,0.05);
    border: 1px solid var(--border-gold);
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 0.75rem;
    word-break: break-all;
    max-width: 100%;
}
.contract-address:hover { background: rgba(255,215,0,0.1); }
.buy-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
.buy-step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}
.buy-step:hover { border-color: var(--border-gold); transform: translateY(-4px); }
.buy-step-num {
    width: 44px;
    height: 44px;
    background: var(--gradient-gold);
    color: #0a0f1e;
    font-weight: 900;
    font-size: 1.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.exchange-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.exchange-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    transition: var(--transition);
}
.exchange-card:hover { border-color: var(--border-gold); }
.exchange-icon { font-size: 2.5rem; }
.exchange-name { font-weight: 700; }
.exchange-type { font-size: 0.8rem; color: var(--text-muted); }
.exchange-status { font-size: 0.75rem; }

/* ===== Print styles for whitepaper ===== */
@media print {
    .header, .footer, .back-to-top, .whitepaper-toc { display: none !important; }
    body { background: #fff; color: #000; padding-top: 0; }
    .whitepaper-layout { grid-template-columns: 1fr; }
    .wp-section { border-bottom: 1px solid #ccc; }
    .gradient-text { -webkit-text-fill-color: #000; color: #000; }
}

/* ===== Responsive token components ===== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 2rem; }
    .hero-visual { order: -1; }
    .coin-container { width: 280px; height: 280px; }
    .coin-main { width: 120px; height: 120px; }
    .coin-symbol { font-size: 1.5rem; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .roadmap-grid { grid-template-columns: repeat(2, 1fr); }
    .tokenomics-grid { grid-template-columns: 1fr; }
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .whitepaper-layout { grid-template-columns: 1fr; }
    .whitepaper-toc { position: static; }
    .pof-details-grid { grid-template-columns: repeat(2, 1fr); }
    .buy-steps-grid { grid-template-columns: 1fr; }
    .exchange-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .steps-grid, .roadmap-grid, .pillars-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-bar .stat-card { border-right: none; border-bottom: 1px solid var(--border); }
    .pof-details-grid { grid-template-columns: 1fr; }
    .exchange-cards { grid-template-columns: 1fr; }
    .cta-section { padding: 2.5rem 1.5rem; }
    .liquidity-teaser { padding: 2rem 1.5rem; }
    .hero-stats { grid-template-columns: 1fr; }
    /* OTC contact cards: stack on mobile */
    .otc-contact-grid { grid-template-columns: 1fr !important; max-width: 100% !important; }
    /* Reduce coin animation complexity on mobile */
    .coin-float-items { display: none; }
    .coin-ring:nth-child(2), .coin-ring:nth-child(3) { display: none; }
    .coin-main { animation-duration: 6s; }
    /* POF table horizontal scroll */
    .pof-doc-viewer { overflow-x: auto; }
    .pof-breakdown-table { min-width: 500px; }
    /* Contract address wrap fix */
    .contract-address { font-size: 0.78rem; flex-wrap: wrap; padding: 0.65rem 0.9rem; }
    .contract-address span { word-break: break-all; }
    /* Ticker: pause animation on very small screens to save battery */
    .ticker-content { animation-duration: 20s; }
    /* Performance: reduce paint layers */
    .step-card:hover, .pillar-card:hover, .card:hover { transform: none; }
}
@media (max-width: 480px) {
    .stat-value { font-size: 1.1rem; }
    .hero-eyebrow { font-size: 0.72rem; padding: 0.35rem 0.75rem; }
    .coin-main { width: 100px; height: 100px; }
    .coin-symbol { font-size: 1.4rem; }
    .pof-amount { font-size: clamp(1.6rem, 8vw, 3rem); }
    .liquidity-counter { font-size: clamp(1.5rem, 7vw, 2.5rem); }
    .pof-hero { padding: 1.5rem 1rem; }
    .cta-section { padding: 2rem 1rem; }
    /* Tokenomics: compact on small phones */
    .tokenomics-item { padding: 0.85rem; gap: 0.6rem; }
    .tokenomics-pct { font-size: 1.1rem; }
}
