/* ═══════════════════════════════════════════════════════════════════════════
   Nexus Market Research — styles.css
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── CSS Variables ──────────────────────────────────────────────────────── */
:root {
    --bg: #18151a;
    --surface: #2b2d32;
    --text: #f3f5dc;
    --muted: #8892a4;
    --primary: #ff0101;
    --accent: #65e621;
    --border: #414041;

    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-mono: 'SF Mono', 'Fira Code', 'Fira Mono', 'Roboto Mono', monospace;

    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.4);
    --transition: 0.2s ease;

    --container: 1140px;
    --gap: 1.5rem;
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover, a:focus {
    color: var(--primary);
    text-decoration: underline;
}

ul, ol {
    padding-left: 1.5em;
}

/* ── Skip Link ──────────────────────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--primary);
    color: #fff;
    padding: 0.5rem 1rem;
    z-index: 9999;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
    text-decoration: none;
}

/* ── Container ──────────────────────────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ── Header ─────────────────────────────────────────────────────────────── */
.site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    max-width: var(--container);
    margin: 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 6px;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}

.logo-accent {
    color: var(--primary);
}

.header-badge {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 1, 1, 0.12);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 1, 1, 0.25);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text);
    left: 0;
    transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.main-nav {
    margin-left: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    padding: 0;
}

.nav-link {
    display: block;
    padding: 0.4rem 0.7rem;
    color: var(--muted);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all var(--transition);
    text-decoration: none;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--text);
    background: rgba(255,255,255,0.06);
    text-decoration: none;
}

/* ── Mobile Nav ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .nav-toggle {
        display: block;
    }

    .header-badge {
        display: none;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        padding: 1rem;
        box-shadow: var(--shadow-lg);
    }

    .main-nav.open {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
    padding: 3.5rem 0 2.5rem;
    text-align: center;
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
    border-bottom: 1px solid var(--border);
}

.hero-icon {
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 680px;
    margin: 0 auto 1.25rem;
    line-height: 1.6;
}

.hero-disclaimer {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 1, 1, 0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 1, 1, 0.2);
}

@media (max-width: 600px) {
    .hero {
        padding: 2.5rem 0 2rem;
    }
    .hero-title {
        font-size: 1.6rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* ── Sections ───────────────────────────────────────────────────────────── */
.section {
    padding: 3rem 0;
}

.section-alt {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-intro {
    color: var(--muted);
    margin-bottom: 2rem;
    max-width: 720px;
    line-height: 1.6;
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: #cc0000;
    border-color: #cc0000;
    color: #fff;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--bg);
    text-decoration: none;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ── Status Badge ───────────────────────────────────────────────────────── */
.status-badge {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--muted);
    animation: pulse 2s infinite;
}

.status-unverified .status-dot { background: #f59e0b; }
.status-operational .status-dot { background: var(--accent); }
.status-down .status-dot { background: var(--primary); }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-label {
    font-weight: 700;
    font-size: 1rem;
}

.status-updated {
    font-size: 0.8rem;
    color: var(--muted);
}

.status-note {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--muted);
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

/* ── Hub Grid ───────────────────────────────────────────────────────────── */
.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--gap);
}

.hub-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition);
    text-decoration: none;
    color: var(--text);
    display: block;
}

.hub-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text);
}

.hub-card-icon {
    margin-bottom: 1rem;
}

.hub-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hub-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ── Feature Grid ───────────────────────────────────────────────────────── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--gap);
    margin-top: 1.5rem;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: border-color var(--transition);
}

.feature-card:hover {
    border-color: var(--accent);
}

.feature-icon {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.feature-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ── Security Callout ───────────────────────────────────────────────────── */
.security-callout {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin: 1.5rem 0;
    border-left: 4px solid;
}

.callout-alert {
    background: rgba(255, 1, 1, 0.08);
    border-color: var(--primary);
}

.callout-alert .callout-icon { color: var(--primary); }

.callout-warning {
    background: rgba(245, 158, 11, 0.08);
    border-color: #f59e0b;
}

.callout-warning .callout-icon { color: #f59e0b; }

.callout-info {
    background: rgba(101, 230, 33, 0.08);
    border-color: var(--accent);
}

.callout-info .callout-icon { color: var(--accent); }

.callout-icon {
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.callout-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text);
}

/* ── FAQ Accordion ──────────────────────────────────────────────────────── */
.faq-accordion {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.25rem 0;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition);
    font-family: var(--font-sans);
    line-height: 1.4;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform var(--transition);
    margin-left: 1rem;
}

.faq-question[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 0 1.25rem;
}

.faq-answer p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ── Timeline ───────────────────────────────────────────────────────────── */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0.35rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg);
    border: 3px solid var(--accent);
    z-index: 1;
}

.timeline-date {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    font-family: var(--font-mono);
    margin-bottom: 0.25rem;
}

.timeline-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ── Mini Timeline (Home) ───────────────────────────────────────────────── */
.mini-timeline-item {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 0.75rem;
    align-items: start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.mini-timeline-item:last-child {
    border-bottom: none;
}

.mini-timeline-item time {
    font-size: 0.8rem;
    font-family: var(--font-mono);
    color: var(--accent);
    white-space: nowrap;
}

.mini-timeline-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: 0.4rem;
    flex-shrink: 0;
}

.mini-timeline-item strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.mini-timeline-item p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ── News Grid ──────────────────────────────────────────────────────────── */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--gap);
}

.news-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: border-color var(--transition);
}

.news-card:hover {
    border-color: var(--accent);
}

.news-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.news-card-header time {
    font-size: 0.8rem;
    color: var(--muted);
    font-family: var(--font-mono);
}

.news-chip {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.chip-alert {
    background: rgba(255, 1, 1, 0.15);
    color: var(--primary);
}

.chip-update {
    background: rgba(101, 230, 33, 0.15);
    color: var(--accent);
}

.chip-announcement {
    background: rgba(136, 146, 164, 0.15);
    color: var(--muted);
}

.news-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-card-title a {
    color: var(--text);
    text-decoration: none;
}

.news-card-title a:hover {
    color: var(--accent);
}

.news-card-excerpt {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.news-read-more {
    font-size: 0.85rem;
    font-weight: 600;
}

.news-filters {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.filter-label {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 600;
}

/* ── News Article ───────────────────────────────────────────────────────── */
.news-article {
    padding: 2rem 0 3rem;
}

.article-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.article-header h1 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 0.75rem 0;
    letter-spacing: -0.02em;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.meta-sep {
    color: var(--border);
}

.article-body {
    max-width: 720px;
    margin-bottom: 2rem;
}

.article-body p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.article-sources {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 2rem;
}

.article-sources h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.article-sources ul {
    list-style: none;
    padding: 0;
}

.article-sources li {
    font-size: 0.85rem;
    color: var(--muted);
    padding: 0.2rem 0;
}

.article-sources li::before {
    content: '→ ';
    color: var(--accent);
}

.article-nav {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

/* ── Breadcrumbs ────────────────────────────────────────────────────────── */
.breadcrumbs {
    margin: 1.5rem 0;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    gap: 0.25rem;
    font-size: 0.8rem;
}

.breadcrumb-item a {
    color: var(--muted);
}

.breadcrumb-item a:hover {
    color: var(--accent);
}

.breadcrumb-item.active span {
    color: var(--text);
    font-weight: 600;
}

.breadcrumb-sep {
    color: var(--border);
    margin: 0 0.25rem;
}

/* ── Page Content ───────────────────────────────────────────────────────── */
.page-content {
    padding: 1rem 1.25rem 3rem;
    max-width: var(--container);
    margin: 0 auto;
}

.page-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 0.75rem;
    letter-spacing: -0.01em;
}

.page-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 1.5rem 0 0.5rem;
}

.page-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.page-content ul, .page-content ol {
    margin-bottom: 1rem;
}

.page-content li {
    margin-bottom: 0.35rem;
    line-height: 1.6;
}

/* ── Content Layout (sidebar + article) ─────────────────────────────────── */
.content-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 768px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ── Table of Contents ──────────────────────────────────────────────────── */
.toc {
    position: sticky;
    top: 80px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
}

.toc-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.toc-list {
    list-style: none;
    padding: 0;
}

.toc-list li {
    margin-bottom: 0.35rem;
}

.toc-list a {
    font-size: 0.85rem;
    color: var(--muted);
    text-decoration: none;
    display: block;
    padding: 0.2rem 0;
    transition: color var(--transition);
}

.toc-list a:hover {
    color: var(--accent);
    text-decoration: none;
}

/* ── Term List ──────────────────────────────────────────────────────────── */
.term-list dt {
    font-weight: 700;
    color: var(--accent);
    margin-top: 1rem;
}

.term-list dd {
    color: var(--muted);
    margin-left: 0;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* ── Pattern Grid ───────────────────────────────────────────────────────── */
.pattern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--gap);
    margin: 1.5rem 0;
}

.pattern-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.pattern-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.pattern-card p {
    font-size: 0.875rem;
    color: var(--muted);
}

/* ── Scam Grid ──────────────────────────────────────────────────────────── */
.scam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--gap);
    margin: 1.5rem 0;
}

.scam-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border-left: 4px solid var(--border);
}

.scam-critical { border-left-color: var(--primary); }
.scam-high { border-left-color: #f59e0b; }
.scam-medium { border-left-color: var(--muted); }

.scam-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.scam-card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ── Check List ─────────────────────────────────────────────────────────── */
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ── Status Page ────────────────────────────────────────────────────────── */
.status-page {
    max-width: 800px;
}

.status-section {
    margin: 2rem 0;
}

.status-table-wrap {
    overflow-x: auto;
    margin: 1rem 0;
}

.status-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.status-table th,
.status-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.status-table th {
    font-weight: 700;
    color: var(--muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.status-table td .chip {
    display: inline-block;
}

/* ── Contact Layout ─────────────────────────────────────────────────────── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 0.9rem;
    font-family: var(--font-sans);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-note {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.75rem;
}

.contact-info h2 {
    margin-top: 0;
}

/* ── Glossary ───────────────────────────────────────────────────────────── */
.glossary-list {
    max-width: 800px;
}

.glossary-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}

.glossary-item dt {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.35rem;
}

.glossary-item dd {
    margin-left: 0;
    color: var(--muted);
    line-height: 1.7;
}

/* ── Source List ─────────────────────────────────────────────────────────── */
.source-list {
    list-style: none;
    padding: 0;
}

.source-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(65, 64, 65, 0.4);
    line-height: 1.6;
}

.source-list li:last-child {
    border-bottom: none;
}

/* ── Legal Content ──────────────────────────────────────────────────────── */
.legal-content {
    max-width: 720px;
}

.legal-content h2 {
    margin-top: 2rem;
}

/* ── Features Warning ───────────────────────────────────────────────────── */
.features-warning {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

/* ── Error Page ─────────────────────────────────────────────────────────── */
.error-page {
    padding: 5rem 0;
    text-align: center;
}

.error-content {
    max-width: 480px;
    margin: 0 auto;
}

.error-icon {
    margin-bottom: 1.5rem;
}

.error-content h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.error-content p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-heading {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.35rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--muted);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    text-decoration: none;
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 0.25rem;
}

.footer-notice {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
}

/* ── Scam Section ───────────────────────────────────────────────────────── */
.scam-section {
    margin: 2rem 0;
}

/* ── Timeline Sources ───────────────────────────────────────────────────── */
.timeline-sources {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

/* ── FAQ More ───────────────────────────────────────────────────────────── */
.faq-more {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

/* ── Focus Styles ───────────────────────────────────────────────────────── */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ── Selection ──────────────────────────────────────────────────────────── */
::selection {
    background: rgba(101, 230, 33, 0.25);
    color: var(--text);
}

/* ── Scrollbar ──────────────────────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--muted);
}
