/* ====== VoteCraft Coin — Page Styles ====== */

:root {
    --bg-dark: #111827;
    --bg-darker: #0a0f1a;
    --bg-card: rgba(30, 41, 59, 0.6);
    --bg-card-hover: rgba(30, 41, 59, 0.9);
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --teal: #14CCB0;
    --teal-glow: rgba(20, 204, 176, 0.3);
    --orange: #F32B44;
    --orange-glow: rgba(243, 43, 68, 0.3);
    --text: #f9fafb;
    --text-dim: #94a3b8;
    --text-muted: #64748b;
    --border: rgba(255, 255, 255, 0.08);
    --radius: 12px;
    --radius-pill: 24px;
    --glow-blue: 0 0 40px rgba(37, 99, 235, 0.3);
    --glow-teal: 0 0 40px rgba(20, 204, 176, 0.3);
    --glow-orange: 0 0 40px rgba(243, 43, 68, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ====== NAV BAR (votecraft.org style) ====== */

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
    transition: background 0.3s, box-shadow 0.3s;
}

.site-nav.scrolled {
    background: rgba(17, 24, 39, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}

.nav-logo {
    width: 28px;
    height: 28px;
    color: var(--teal);
}

.nav-wordmark {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover {
    color: var(--text);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--teal);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.2s;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: #32373c;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 9999px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
    background: #474d52;
    transform: translateY(-1px);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ====== SECTIONS ====== */

.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    position: relative;
}

.section-inner {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-dim);
    text-align: center;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ====== LIGHT SECTION VARIANT (votecraft.org style) ====== */

.section-light {
    background: #fafafa;
    color: #1a1a2e;
}

.offers-section {
    min-height: auto;
    padding: 56px 24px;
}

.section-light .section-title {
    color: #1a1a2e;
}

.section-light .section-subtitle {
    color: #555;
}

.section-light .philosophy-card,
.section-light .tags-category,
.section-light .exchange-listing,
.section-light .badge-toggle-demo {
    background: #ffffff;
    border-color: #e5e7eb;
    box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.06);
}

.section-light .philosophy-card:hover,
.section-light .exchange-listing:hover {
    box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
    transform: translateY(-4px);
}

.section-light .philosophy-card h3,
.section-light .badge-info h3 {
    color: #1a1a2e;
}

.section-light .philosophy-card p,
.section-light .philosophy-body,
.section-light .badge-info p {
    color: #555;
}

.section-light .badge-glow {
    opacity: 0.3;
}

.section-light .badge-preview-name {
    color: #1a1a2e;
}

.section-light .badge-toggle-btn {
    color: #1a1a2e;
}

.section-light .toggle-track {
    background: #e5e7eb;
    border-color: #d1d5db;
}

.section-light .toggle-label {
    color: #555;
}

.section-light .badge-tags-label {
    color: #777;
}

.section-light .exchange-listing-title {
    color: #1a1a2e;
}

.section-light .exchange-listing-meta {
    color: #999;
}

.section-light .earn-card {
    background: #ffffff;
    border-color: #e5e7eb;
    box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.06);
}

.section-light .earn-card:hover {
    box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.section-light .earn-card.clicked {
    border-color: var(--teal);
    box-shadow: 0 4px 16px rgba(20, 204, 176, 0.15);
}

.section-light .earn-card h3 {
    color: #1a1a2e;
}

.section-light .earn-card p {
    color: #555;
}

.section-light .earn-click-hint {
    color: #999;
}

.section-light .earn-card:hover .earn-click-hint {
    color: #555;
}

.section-light .demo-disclaimer {
    color: #999;
}

.section-light .earn-card-glow {
    background: radial-gradient(circle at 50% 50%, rgba(20, 204, 176, 0.08), transparent 70%);
}

.section-light .not-crypto-btn {
    background: rgba(0, 0, 0, 0.04);
    color: #555;
    border-color: #d1d5db;
}

.section-light .not-crypto-btn:hover {
    background: rgba(0, 0, 0, 0.07);
    border-color: var(--teal);
    color: #1a1a2e;
}

.section-light .emporium-card {
    background: #ffffff;
    border-color: #e5e7eb;
    box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.06);
}

.section-light .emporium-card:hover {
    box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.section-light .emporium-card.affordable {
    border-color: var(--teal);
    box-shadow: 0 4px 16px rgba(20, 204, 176, 0.15);
}

.section-light .emporium-card h3 {
    color: #1a1a2e;
}

.section-light .emporium-card p {
    color: #555;
}

.section-light .emporium-price {
    color: #777;
}

.section-light .quiz-result-earn,
.section-light .quiz-option {
    background: #ffffff;
    border-color: #e5e7eb;
}

.section-light .quiz-option:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
}

.section-light .quiz-option {
    color: #1a1a2e;
}

.section-light .quiz-question {
    color: #1a1a2e;
}

.section-light .quiz-progress {
    background: #e5e7eb;
}

.section-light .quiz-result-title {
    background: linear-gradient(135deg, #1a1a2e, var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-light .quiz-result-desc {
    color: #555;
}

.section-light .quiz-result-earn h4 {
    color: #555;
}

.section-light .quiz-path {
    background: rgba(0, 0, 0, 0.03);
}

.section-light .quiz-path-action {
    color: #1a1a2e;
}

/* Section transition gradients for light/dark boundaries */
.section-light + .section:not(.section-light) {
    border-top: none;
    box-shadow: inset 0 20px 40px -20px rgba(0, 0, 0, 0.15);
}

.section:not(.section-light) + .section-light {
    box-shadow: inset 0 20px 40px -20px rgba(0, 0, 0, 0.05);
}

/* ====== SCROLL ANIMATIONS ====== */

.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====== SECTION 1: HERO ====== */

.hero-section {
    background: radial-gradient(ellipse at 50% 40%, #1a2744 0%, var(--bg-dark) 70%);
    overflow: hidden;
    padding-top: 120px;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(20, 204, 176, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(243, 43, 68, 0.05) 0%, transparent 40%);
    animation: hero-bg-shift 12s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes hero-bg-shift {
    0% {
        opacity: 0.6;
        transform: scale(1) translate(0, 0);
    }
    33% {
        opacity: 1;
        transform: scale(1.1) translate(2%, -1%);
    }
    66% {
        opacity: 0.8;
        transform: scale(1.05) translate(-1%, 2%);
    }
    100% {
        opacity: 1;
        transform: scale(1.15) translate(1%, -2%);
    }
}

.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--teal);
    border-radius: 50%;
    opacity: 0;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    10% {
        opacity: 0.6;
        transform: scale(1);
    }
    90% {
        opacity: 0.2;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(0.5);
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text);
}

.hero-blue {
    color: #3b82f6;
}

.hero-red {
    color: #ef4444;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-dim);
    margin-bottom: 16px;
}

/* 3D Coin */
.coin-container {
    perspective: 800px;
    margin-bottom: 40px;
}

.coin {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    position: relative;
    transform-style: preserve-3d;
    animation: coin-spin 6s ease-in-out infinite;
}

.coin-small {
    width: 80px;
    height: 80px;
}

.coin-face {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    border: 3px solid rgba(37, 99, 235, 0.5);
}

.coin-front {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    box-shadow: 0 0 40px rgba(220, 38, 38, 0.3), inset 0 0 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(220, 38, 38, 0.5);
}

.coin-back {
    background: linear-gradient(135deg, #1e3a8a, #1d4ed8);
    box-shadow: 0 0 40px rgba(30, 58, 138, 0.3), inset 0 0 30px rgba(0, 0, 0, 0.3);
    transform: rotateY(180deg);
}

.coin.coin-green .coin-front {
    background: linear-gradient(135deg, #059669, #10b981);
    box-shadow: 0 0 40px rgba(20, 204, 176, 0.3), inset 0 0 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(20, 204, 176, 0.5);
}

.coin.coin-green .coin-back {
    background: linear-gradient(135deg, #0d9488, #14CCB0);
    box-shadow: 0 0 40px rgba(20, 204, 176, 0.3), inset 0 0 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(20, 204, 176, 0.5);
}

.coin .coin-face {
    transition: none;
}

/* Per-face teal — snapped while hidden, revealed on flip */
.coin-front.teal {
    background: linear-gradient(135deg, #0d9488, #14CCB0);
    box-shadow: 0 0 40px rgba(20, 204, 176, 0.3), inset 0 0 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(20, 204, 176, 0.5);
}

.coin-back.teal {
    background: linear-gradient(135deg, #0d9488, #14CCB0);
    box-shadow: 0 0 40px rgba(20, 204, 176, 0.3), inset 0 0 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(20, 204, 176, 0.5);
}

.coin-text {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.coin-small .coin-text {
    font-size: 1.6rem;
}

.coin-icon {
    width: 50%;
    color: var(--text);
}

@keyframes coin-spin {
    0%, 100% {
        transform: rotateY(0deg) rotateX(5deg);
    }
    25% {
        transform: rotateY(180deg) rotateX(-3deg);
    }
    50% {
        transform: rotateY(360deg) rotateX(5deg);
    }
    75% {
        transform: rotateY(540deg) rotateX(-3deg);
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.8rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.get-app-link {
    display: inline-block;
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    animation: bounce 2s ease-in-out infinite;
}

/* ====== SECTION 2: PHILOSOPHY ====== */

.philosophy-section {
    background: #fafafa;
}

.philosophy-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.philosophy-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.philosophy-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: var(--glow-blue);
}

.philosophy-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    color: var(--primary);
}

.philosophy-icon.icon-teal {
    color: var(--teal);
}

.philosophy-icon.icon-orange {
    color: var(--orange);
}

.philosophy-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.philosophy-card p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.6;
}

.philosophy-body {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.8;
    color: var(--text-dim);
    max-width: 680px;
    margin: 0 auto 1.5rem;
}

.philosophy-punchline {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: var(--teal);
    max-width: 600px;
    margin: 0 auto;
}

/* ====== SECTION 3: HOW YOU EARN ====== */

.earn-section {
    background: #fafafa;
    position: relative;
}

.vc-counter {
    position: fixed;
    top: 72px;
    right: 24px;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--teal);
    border-radius: var(--radius);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 100;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s, transform 0.4s, box-shadow 0.3s;
    pointer-events: none;
}

.vc-counter.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.vc-counter.pulse {
    box-shadow: 0 0 20px var(--teal-glow), 0 0 40px var(--teal-glow);
}

.counter-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.counter-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal);
    min-width: 40px;
    text-align: right;
    transition: transform 0.15s;
}

.counter-value.bump {
    transform: scale(1.3);
}

.earn-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.earn-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s;
    user-select: none;
}

.earn-card:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, 0.4);
}

.earn-card:active {
    transform: scale(0.97);
}

.earn-card.clicked {
    border-color: var(--teal);
    box-shadow: var(--glow-teal);
}

.earn-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, var(--teal-glow), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.earn-card.clicked .earn-card-glow {
    opacity: 1;
}

.earn-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    color: var(--primary);
}

.earn-icon.icon-teal { color: var(--teal); }
.earn-icon.icon-orange { color: var(--orange); }

.earn-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.earn-card p {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.5;
    margin-bottom: 16px;
}

.earn-amount {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.earn-amount.amount-teal { color: var(--teal); }
.earn-amount.amount-orange { color: var(--orange); }

.earn-click-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 8px;
    transition: opacity 0.3s;
}

.earn-card:hover .earn-click-hint {
    color: var(--text-dim);
}

.demo-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 0;
}

.earn-section .section-inner {
    text-align: center;
}

.earn-section .section-inner .earn-cards {
    text-align: left;
}

.earn-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.quiz-trigger-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--teal);
    color: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.quiz-trigger-btn:hover {
    background: #10b89a;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(20, 204, 176, 0.3);
}

.quiz-trigger-arrow {
    font-size: 1rem;
    transition: transform 0.2s;
}

.quiz-trigger-btn:hover .quiz-trigger-arrow {
    transform: translateX(3px);
}

/* Quiz modal */
.quiz-modal-content {
    max-width: 640px;
    padding: 36px 32px 28px;
}

.quiz-modal-title {
    text-align: center;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    margin-bottom: 6px;
}

.quiz-modal-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.badge-divider {
    width: 60px;
    height: 2px;
    background: #d1d5db;
    margin: 40px auto 32px;
    border-radius: 1px;
}

.earn-badge-heading {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.earn-badge-sub {
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    color: #555;
    text-align: center;
    margin-bottom: 24px;
}

/* Particle burst */
.burst-particle {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 200;
    animation: burst 0.7s ease-out forwards;
}

@keyframes burst {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(0);
    }
}

/* Floating +VC label */
.vc-float {
    position: fixed;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--teal);
    pointer-events: none;
    z-index: 200;
    animation: float-up 1s ease-out forwards;
    text-shadow: 0 0 10px var(--teal-glow);
}

@keyframes float-up {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-60px);
    }
}

/* ====== SECTION 4: EMPORIUM ====== */

.emporium-section {
    background: #fafafa;
}

.emporium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.emporium-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.emporium-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: var(--glow-blue);
}

.emporium-card.affordable {
    border-color: var(--teal);
    box-shadow: var(--glow-teal);
}

.emporium-card-image {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary);
}

.emporium-card-image.icon-orange {
    color: var(--orange);
}

.emporium-card-image svg {
    width: 100%;
    height: 100%;
}

.emporium-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.emporium-card p {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 12px;
    line-height: 1.4;
}

.emporium-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
}

.price-vc {
    color: var(--teal);
    font-size: 1.3rem;
}

.emporium-afford {
    margin-top: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--teal);
    padding: 4px 12px;
    background: rgba(20, 204, 176, 0.1);
    border-radius: var(--radius-pill);
    display: inline-block;
}

.mystery-icon {
    font-size: 3rem;
    font-weight: 700;
    color: var(--orange);
    text-shadow: var(--glow-orange);
    animation: mystery-pulse 2s ease-in-out infinite;
}

@keyframes mystery-pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* ====== NOT CRYPTO BUTTON + MODAL ====== */

.not-crypto-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 24px auto 0;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--border);
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.not-crypto-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--teal);
    color: var(--text);
    transform: translateY(-1px);
}

.not-crypto-btn-sub {
    color: var(--teal);
    font-weight: 400;
    font-size: 0.85rem;
}

/* Modal overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 36px;
    max-width: 580px;
    width: 100%;
    position: relative;
    transform: translateY(20px) scale(0.96);
    transition: transform 0.3s;
}

.modal-overlay.open .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.modal-close:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.not-crypto-heading {
    text-align: center;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 6px;
}

.not-crypto-sub-modal {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.comparison-table {
    max-width: 640px;
    margin: 0 auto;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.comparison-col {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
}

.comparison-col.col-vc {
    color: var(--teal);
}

.comparison-vs {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.comparison-cell {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    text-align: center;
}

.cell-crypto {
    background: rgba(239, 68, 68, 0.08);
    color: var(--text-dim);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.cell-vc {
    background: rgba(20, 204, 176, 0.08);
    color: var(--teal);
    border: 1px solid rgba(20, 204, 176, 0.15);
    font-weight: 600;
}

.comparison-divider {
    width: 2px;
    height: 100%;
    min-height: 20px;
    background: var(--border);
}

/* ====== SECTION 6: PATRON BADGES ====== */

.badges-section {
    background: #fafafa;
    min-height: auto;
    padding: 56px 24px;
}

.badges-section .section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 10px;
}

.badges-section .section-subtitle {
    margin-bottom: 28px;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.badge-showcase {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
}

.badge-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
}

.badge-glow {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--orange-glow), transparent 70%);
    animation: badge-glow-pulse 3s ease-in-out infinite;
}

@keyframes badge-glow-pulse {
    0%, 100% { transform: scale(0.9); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.badge-icon {
    width: 72px;
    height: 72px;
    color: var(--orange);
    position: relative;
    z-index: 1;
}

.badge-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 12px rgba(243, 43, 68, 0.5));
}

.badge-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
}

.badge-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.badge-info p {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.5;
    margin-bottom: 16px;
}

.badge-tags-preview {
    margin-top: 14px;
    margin-bottom: 14px;
}

.badge-tags-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.badge-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.badge-toggle-demo {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
}

.badge-preview {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

.badge-mini-icon {
    width: 20px;
    height: 20px;
    color: var(--orange);
}

.badge-preview-name {
    transition: opacity 0.3s;
}

.badge-preview-name.anonymous {
    font-style: italic;
    color: var(--text-muted);
}

.badge-toggle-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.85rem;
}

.toggle-track {
    width: 44px;
    height: 24px;
    background: var(--bg-darker);
    border-radius: 12px;
    position: relative;
    border: 1px solid var(--border);
    transition: background 0.3s, border-color 0.3s;
}

.toggle-track .toggle-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: var(--text-muted);
    border-radius: 50%;
    transition: transform 0.3s, background 0.3s;
}

.badge-toggle-btn.active .toggle-track {
    background: rgba(20, 204, 176, 0.2);
    border-color: var(--teal);
}

.badge-toggle-btn.active .toggle-thumb {
    transform: translateX(20px);
    background: var(--teal);
}

.toggle-label {
    color: var(--text-dim);
}

/* ====== SECTION 7: CTA ====== */

.cta-section {
    background: radial-gradient(ellipse at 50% 60%, #1a2744 0%, var(--bg-dark) 70%);
    text-align: center;
    min-height: 60vh;
}

.cta-coin {
    margin-bottom: 32px;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-dim);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--primary);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 9999px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: #32373c;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 9999px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.btn-secondary:hover {
    background: #474d52;
    transform: translateY(-2px);
}

.cta-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.cta-disclaimer a {
    color: var(--text-dim);
    text-decoration: underline;
}

/* ====== SITE FOOTER (votecraft.org style) ====== */

.site-footer {
    background: #1a1a2e;
    border-top: 1px solid var(--border);
    padding: 40px 24px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    width: 24px;
    height: 24px;
    color: var(--teal);
}

.footer-wordmark {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--text-dim);
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* ====== SOCIAL PROOF TICKER ====== */

.ticker-section {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    overflow: hidden;
    padding: 16px 0;
}

.ticker-track {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.ticker-content {
    display: flex;
    gap: 48px;
    animation: ticker-scroll 40s linear infinite;
    width: max-content;
}

.ticker-content:hover {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 0.9rem;
    color: #555;
}

.ticker-item strong {
    color: #1a1a2e;
}

.ticker-icon {
    color: var(--primary);
    font-size: 1rem;
}

.ticker-icon.icon-teal { color: var(--teal); }
.ticker-icon.icon-orange { color: var(--orange); }

.ticker-vc {
    color: var(--teal);
    font-weight: 700;
}

/* ====== JOURNEY STORIES ====== */

.stories-section {
    background: #2563eb;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.story-card {
    background: rgba(30, 58, 138, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 28px 20px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.story-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
}

.story-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.story-avatar-blue { background: rgba(255, 255, 255, 0.12); color: #fff; }
.story-avatar-teal { background: rgba(20, 204, 176, 0.2); color: var(--teal); }
.story-avatar-orange { background: rgba(243, 43, 68, 0.2); color: var(--orange); }

.story-flow {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.story-arrow {
    display: flex;
    justify-content: center;
    color: #fff;
    opacity: 0.4;
}

.story-arrow svg {
    width: 18px;
    height: 18px;
}

.story-step {
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.story-step-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.story-step-value {
    font-size: 0.9rem;
    font-weight: 600;
}

.story-step-reward {
    background: rgba(20, 204, 176, 0.08);
    border: 1px solid rgba(20, 204, 176, 0.15);
}

.story-step-spend {
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.story-vc {
    color: var(--teal);
}

/* ====== COMMUNITY EXCHANGE ====== */

.exchange-section {
    background: #2563eb;
}

.exchange-demo {
    margin-bottom: 48px;
}

.exchange-scenario {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
}

.exchange-person {
    text-align: center;
    flex-shrink: 0;
}

.exchange-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 auto 8px;
}

.exchange-avatar-blue { background: rgba(255, 255, 255, 0.12); color: #fff; }
.exchange-avatar-teal { background: rgba(20, 204, 176, 0.2); color: var(--teal); }

.exchange-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.exchange-has {
    font-size: 0.8rem;
    color: #fff;
}

.exchange-offer {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    max-width: 600px;
}

.exchange-offer-card {
    flex: 1;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 20px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.exchange-offer-card:first-child {
    border-color: rgba(20, 204, 176, 0.3);
}

.exchange-offer-card:last-child {
    border-color: rgba(243, 43, 68, 0.3);
}

.exchange-offer-card:hover {
    box-shadow: var(--glow-teal);
    border-color: rgba(20, 204, 176, 0.4);
}

.exchange-offer-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal);
    margin-bottom: 8px;
}

.exchange-offer-card:last-child .exchange-offer-label {
    color: var(--orange);
}

.exchange-offer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.exchange-offer-desc {
    font-size: 0.8rem;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 10px;
}

.exchange-offer-price {
    font-size: 0.85rem;
    font-weight: 600;
}

.exchange-arrows {
    flex-shrink: 0;
}

/* ====== ALTRUISM TAGS ====== */

.altruism-tags-section {
    margin-bottom: 56px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.altruism-tags-heading {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    margin-bottom: 10px;
}

.altruism-tags-heading em {
    font-style: normal;
    color: var(--teal);
}

.altruism-tags-desc {
    text-align: center;
    font-size: 0.95rem;
    color: #fff;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* Transaction demo card */
.altruism-tags-demo {
    max-width: 520px;
    margin: 0 auto 40px;
}

.tags-transaction {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(20, 204, 176, 0.3);
    border-radius: var(--radius);
    padding: 20px 24px;
    position: relative;
    overflow: hidden;
}

.tags-transaction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--teal), var(--primary));
    border-radius: 4px 0 0 4px;
}

.tags-transaction-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.tags-transaction-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--teal);
    flex-shrink: 0;
}

.tags-transaction-action {
    font-size: 0.9rem;
    color: #fff;
}

.tags-transaction-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Tag pills */
.atag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid;
    transition: transform 0.2s, box-shadow 0.2s;
}

.atag:hover {
    transform: translateY(-1px);
}

.atag-contribution {
    background: rgba(20, 204, 176, 0.15);
    color: var(--teal);
    border-color: rgba(20, 204, 176, 0.35);
}

.atag-contribution:hover {
    box-shadow: 0 0 12px rgba(20, 204, 176, 0.2);
}

.atag-impact {
    background: rgba(37, 99, 235, 0.15);
    color: #60a5fa;
    border-color: rgba(37, 99, 235, 0.35);
}

.atag-impact:hover {
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.2);
}

.atag-effort {
    background: rgba(243, 43, 68, 0.15);
    color: var(--orange);
    border-color: rgba(243, 43, 68, 0.35);
}

.atag-effort:hover {
    box-shadow: 0 0 12px rgba(243, 43, 68, 0.2);
}

/* Tag categories grid */
.altruism-tags-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tags-category {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 24px 20px;
}

.tags-category-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tags-category-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    background: currentColor;
    flex-shrink: 0;
}

.tags-category-number::after {
    color: #fff;
}

.tags-label-contribution .tags-category-number { background: var(--teal); }
.tags-label-impact .tags-category-number { background: #60a5fa; }
.tags-label-effort .tags-category-number { background: var(--orange); }

.tags-label-contribution { color: var(--teal); }
.tags-label-impact { color: #60a5fa; }
.tags-label-effort { color: var(--orange); }

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.exchange-examples-title {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 24px;
}

.exchange-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 40px;
}

.exchange-listing {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    transition: transform 0.2s, border-color 0.2s;
}

.exchange-listing:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.3);
}

.exchange-listing-type {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 8px;
}

.type-offer {
    background: rgba(20, 204, 176, 0.12);
    color: var(--teal);
}

.type-request {
    background: rgba(243, 43, 68, 0.12);
    color: var(--orange);
}

.exchange-listing-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.exchange-listing-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.exchange-listing-price {
    color: var(--teal);
    font-weight: 700;
}

.exchange-tagline {
    text-align: center;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: var(--teal);
    max-width: 600px;
    margin: 0 auto;
}

/* White text overrides for blue sections */
.stories-section .section-subtitle,
.exchange-section .section-subtitle {
    color: #fff;
}

/* ====== CONTRIBUTOR QUIZ ====== */

.quiz-section {
    background: #fafafa;
    border-top: 1px solid #e5e7eb;
    min-height: auto;
    padding: 56px 24px;
}

.quiz-section .section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 10px;
}

.quiz-section .section-subtitle {
    margin-bottom: 28px;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.quiz-container {
    max-width: 600px;
    margin: 0 auto;
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
    animation: quiz-fade-in 0.4s ease;
}

@keyframes quiz-fade-in {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.quiz-progress {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    margin-bottom: 32px;
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--teal));
    border-radius: 2px;
    transition: width 0.4s ease;
}

.quiz-question {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.4;
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.quiz-option {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: inherit;
    color: var(--text);
    font-size: 0.9rem;
    text-align: left;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.quiz-option:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: var(--glow-blue);
}

.quiz-option:active {
    transform: scale(0.97);
}

.quiz-option.selected {
    border-color: var(--teal);
    box-shadow: var(--glow-teal);
    background: rgba(20, 204, 176, 0.08);
}

.quiz-option-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.quiz-option-text {
    line-height: 1.3;
}

/* Quiz Results */
.quiz-result {
    text-align: center;
    animation: quiz-fade-in 0.5s ease;
}

.quiz-result-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.quiz-result-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--text), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quiz-result-desc {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.quiz-result-earn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}

.quiz-result-earn h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.quiz-result-paths {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-path {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.quiz-path-action {
    font-size: 0.9rem;
    font-weight: 600;
}

.quiz-path-vc {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--teal);
}

.quiz-retake {
    font-size: 0.85rem;
    padding: 10px 24px;
}

/* ====== RESPONSIVE ====== */

@media (max-width: 1024px) {
    .emporium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .philosophy-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .earn-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .emporium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .badge-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .badge-visual {
        order: -1;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .comparison-vs,
    .comparison-divider {
        display: none;
    }

    .comparison-row {
        padding: 12px 0;
    }

    .vc-counter {
        top: 72px;
        right: 12px;
        padding: 8px 14px;
    }

    .counter-value {
        font-size: 1.2rem;
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .exchange-scenario {
        flex-direction: column;
    }

    .exchange-offer {
        flex-direction: column;
        max-width: 100%;
    }

    .exchange-arrows {
        transform: rotate(90deg);
    }

    .exchange-grid {
        grid-template-columns: 1fr;
    }

    .altruism-tags-grid {
        grid-template-columns: 1fr;
    }

    .quiz-options {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .section {
        padding: 48px 16px;
        min-height: auto;
    }

    .hero-section {
        padding-top: 24px;
        min-height: auto;
        justify-content: flex-start;
    }

    .emporium-grid {
        grid-template-columns: 1fr;
    }

    .coin {
        width: 100px;
        height: 100px;
    }

    .coin-text {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .modal-content {
        padding: 28px 20px;
    }

    .modal-overlay {
        padding: 16px;
    }

    .philosophy-card {
        padding: 24px 20px;
    }

    .earn-card {
        padding: 24px 20px;
    }

    .exchange-offer-card {
        padding: 16px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .cta-section {
        min-height: 50dvh;
    }

    .section-subtitle {
        margin-bottom: 32px;
    }
}
