/* ============================================
   ANCHOR — Dark Technical Theme
   ============================================ */

:root {
    --bg: #060a10;
    --bg-alt: #0a0f18;
    --surface: #0e1420;
    --surface-border: #1a2235;
    --text: #c8cdd6;
    --text-dim: #6b7a90;
    --text-bright: #e8ecf2;
    --gold: #c9a84c;
    --gold-dim: #a08234;
    --gold-glow: rgba(201, 168, 76, 0.15);
    --blue: #1a3a5c;
    --blue-dim: #0f2440;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono: 'JetBrains Mono', 'Courier New', monospace;
    --max-w: 1120px;
    --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(--gold); 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-gold { color: var(--gold); }

/* ============================================
   REVEAL ANIMATION
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s 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, 10, 16, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s;
}

#nav.scrolled {
    border-bottom-color: var(--surface-border);
    background: rgba(6, 10, 16, 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: 18px;
    letter-spacing: 2px;
    white-space: nowrap;
}

.nav-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.nav-links a {
    color: var(--text-dim);
    font-size: 14px;
    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: 8px 20px;
    background: var(--gold);
    color: var(--bg);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: background 0.25s, transform 0.25s;
    white-space: nowrap;
}

.nav-buy:hover {
    background: var(--text-bright);
    color: var(--bg);
    transform: translateY(-1px);
}

.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(26, 58, 92, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 58, 92, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    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 50% 40% at 30% 30%, rgba(26, 58, 92, 0.25), transparent),
        radial-gradient(ellipse 40% 50% at 70% 60%, rgba(201, 168, 76, 0.06), 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: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-text h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    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(--gold); 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: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg);
}

.btn-primary:hover {
    background: #d4b35a;
    color: var(--bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--surface-border);
}

.btn-outline:hover {
    border-color: var(--gold-dim);
    color: var(--gold);
    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: 8px;
}

.ca-label {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.hero-ca code {
    font-family: var(--mono);
    font-size: 13px;
    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(--gold); }
.ca-copy.copied { color: var(--gold); }

/* HERO VISUAL */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-anchor-ring {
    position: relative;
    width: 380px;
    height: 380px;
    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(201, 168, 76, 0.1);
    animation: ringPulse 6s ease-in-out infinite;
}

.ring-2 {
    width: 80%;
    height: 80%;
    border-color: rgba(201, 168, 76, 0.06);
    animation: ringPulse 6s ease-in-out 2s infinite;
}

.ring-3 {
    width: 60%;
    height: 60%;
    border-color: rgba(201, 168, 76, 0.03);
    animation: ringPulse 6s ease-in-out 4s infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.5; }
}

.hero-anchor-img {
    width: 240px;
    height: 240px;
    object-fit: contain;
    border-radius: 20px;
    animation: anchorFloat 8s ease-in-out infinite;
    filter: drop-shadow(0 20px 60px rgba(201, 168, 76, 0.15));
}

@keyframes anchorFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* HERO SCROLL INDICATOR */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold-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); }
}

/* ============================================
   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(--gold);
    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;
}

/* ============================================
   PROTOCOL CARDS
   ============================================ */

.protocol-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.protocol-card {
    padding: 36px 28px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    transition: border-color 0.3s, transform 0.3s;
}

.protocol-card:hover {
    border-color: var(--gold-dim);
    transform: translateY(-4px);
}

.protocol-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border-radius: 10px;
    margin-bottom: 20px;
    color: var(--gold);
}

.protocol-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 12px;
}

.protocol-card p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ============================================
   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: 500;
    color: var(--gold);
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    border-radius: 8px;
    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.7;
}

.step-line {
    position: absolute;
    left: 18px;
    top: 44px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--surface-border), transparent);
}

/* ============================================
   IMPACT CARDS
   ============================================ */

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.impact-card {
    padding: 36px 28px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    transition: border-color 0.3s, transform 0.3s;
}

.impact-card:hover {
    border-color: var(--gold-dim);
    transform: translateY(-4px);
}

.impact-num {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--surface-border);
}

.impact-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-bright);
    margin-bottom: 12px;
}

.impact-card p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ============================================
   TIMER
   ============================================ */

.timer-card {
    margin-top: 28px;
    padding: 20px 28px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 10px;
    text-align: center;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    transition: border-color 0.4s, box-shadow 0.4s;
}

.timer-card.flash {
    border-color: var(--gold);
    box-shadow: 0 0 40px rgba(201, 168, 76, 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: 42px;
    font-weight: 700;
    color: var(--text-bright);
    letter-spacing: 4px;
    line-height: 1;
    margin-bottom: 14px;
    transition: color 0.3s;
}

.timer-digits.urgent {
    color: #d44;
}

.timer-bar-track {
    width: 100%;
    height: 3px;
    background: var(--surface-border);
    border-radius: 2px;
    overflow: hidden;
}

.timer-bar-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    width: 100%;
    transition: width 1s linear;
}

/* ============================================
   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: 10px;
    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: #2ecc71; box-shadow: 0 0 6px #2ecc71; }
.lb-dot-loading { background: #f1c40f; animation: dotPulse 1s ease-in-out infinite; }
.lb-dot-error { background: #e74c3c; }

@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: 10px;
    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(--gold-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: rgba(201, 168, 76, 0.08);
    border: 1px solid var(--gold-dim);
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 13px;
}

.lb-pinned-row .lb-rank { color: var(--gold); font-weight: 700; }
.lb-pinned-row .lb-wallet { font-family: var(--mono); color: var(--gold); font-size: 12px; }

.lb-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    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: 500;
    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(201, 168, 76, 0.03);
    position: sticky;
    top: 0;
}

.lb-table tbody td {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(26, 34, 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(201, 168, 76, 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(201, 168, 76, 0.2); color: var(--gold); }
.lb-rank-2 { background: rgba(192, 192, 192, 0.15); color: #c0c0c0; }
.lb-rank-3 { background: rgba(205, 127, 50, 0.15); color: #cd7f32; }

.lb-wallet-addr {
    cursor: pointer;
    transition: color 0.2s;
}

.lb-wallet-addr:hover { color: var(--gold); }

.lb-tier-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
}

.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: 6px;
    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(--gold-dim); color: var(--gold); }
.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;
}

/* ============================================
   DISTRIBUTION TIERS
   ============================================ */

.tiers-intro {
    font-size: 16px;
    color: var(--text);
    max-width: 680px;
    line-height: 1.75;
    margin-bottom: 40px;
    margin-top: -20px;
}

.tiers-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    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: 11px;
    font-weight: 500;
    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(201, 168, 76, 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 {
    transition: background 0.2s;
}

.tiers-table tbody tr:hover {
    background: rgba(201, 168, 76, 0.04);
}

.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(--gold);
    background: rgba(201, 168, 76, 0.15);
}

.tier-high {
    color: #b8a45a;
    background: rgba(184, 164, 90, 0.1);
}

.tier-mid {
    color: var(--text);
    background: rgba(200, 205, 214, 0.08);
}

.tier-base {
    color: var(--text-dim);
    background: rgba(107, 122, 144, 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(--gold);
    background: var(--gold-glow);
    padding: 2px 8px;
    border-radius: 4px;
}

/* ============================================
   CTA
   ============================================ */

.cta-inner {
    text-align: center;
    max-width: 640px;
}

.cta-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 28px;
    opacity: 0.8;
}

.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: 28px;
    height: 28px;
    object-fit: contain;
}

.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: 600px;
    line-height: 1.6;
    opacity: 0.6;
    margin-top: 12px;
}

.footer-copy {
    font-size: 12px;
    color: var(--text-dim);
    opacity: 0.4;
}

/* ============================================
   WHITEPAPER
   ============================================ */

.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;
}

/* TOC */
.wp-toc {
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 10px;
    padding: 28px 32px;
    margin-bottom: 60px;
}

.wp-toc h4 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gold);
    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 SECTIONS */
.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 */
.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: 8px;
    border-left: 3px solid var(--gold-dim);
}

.wp-layer h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 6px;
}

.wp-layer p {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 0;
}

/* WP TABLE */
.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 */
.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: 8px;
}

.wp-cycle-num {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 500;
    color: var(--gold);
    min-width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-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 */
.wp-formula {
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 8px;
    margin: 24px 0;
}

.wp-formula code {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--gold);
    line-height: 2;
}

/* WP RISKS */
.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: 8px;
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.65;
}

.wp-risks-list li strong {
    color: var(--text-bright);
}

/* WP ROADMAP */
.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: 8px;
    border-left: 3px solid var(--gold-dim);
}

.wp-roadmap-phase h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--gold);
    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(--gold-dim);
    border-radius: 50%;
}

/* WP FOOTER */
.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;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .protocol-grid,
    .impact-grid {
        grid-template-columns: 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-anchor-ring {
        width: 260px;
        height: 260px;
    }

    .hero-anchor-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: 10px;
    }

    .section { padding: 80px 0; }

    .section h2 { margin-bottom: 32px; }
}
