/* ============================================================
   INVESTIGATIVE DOSSIER DESIGN — ScamSamanaGroup
   Modern editorial layout · light & dark themes
   ============================================================ */

/* --- CSS VARIABLES (Light Mode) --- */
:root {
    --bg-primary: #f6f5f1;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --text-primary: #15151d;
    --text-secondary: #5c5c6e;
    --accent-red: #d7263d;
    --accent-red-deep: #b01e31;
    --accent-teal: #0f766e;
    --accent-orange: #b45309;
    --accent-dark: #1b2230;
    --border-color: #e6e3da;
    --shadow-sm: 0 1px 3px rgba(20, 20, 30, 0.06);
    --shadow-md: 0 6px 24px rgba(20, 20, 30, 0.09);
    --shadow-lg: 0 16px 48px rgba(20, 20, 30, 0.14);
    --nav-bg: rgba(246, 245, 241, 0.82);
    --nav-border: rgba(21, 21, 29, 0.07);
    --warning-bg: #fdf3f2;
    --warning-border: #f3d2d2;
    --code-bg: #efede7;
    --link-color: #0f766e;
    --link-hover: #d7263d;
    --radius: 16px;
    --radius-sm: 12px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --font-mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
}

/* --- DARK MODE --- */
[data-theme="dark"] {
    --bg-primary: #0c0e14;
    --bg-secondary: #11131c;
    --bg-card: #161925;
    --text-primary: #eceef4;
    --text-secondary: #9aa0b2;
    --accent-red: #ff5c6e;
    --accent-red-deep: #e23047;
    --accent-teal: #2dd4bf;
    --accent-orange: #fbbf24;
    --accent-dark: #1b2230;
    --border-color: #242937;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.55);
    --nav-bg: rgba(12, 14, 20, 0.82);
    --nav-border: rgba(255, 255, 255, 0.07);
    --warning-bg: #1d1419;
    --warning-border: #44222b;
    --code-bg: #1a1d2a;
    --link-color: #2dd4bf;
    --link-hover: #ff5c6e;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.8;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color var(--transition), color var(--transition);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

::selection {
    background: var(--accent-red);
    color: #fff;
}

:focus-visible {
    outline: 2px solid var(--accent-red);
    outline-offset: 3px;
    border-radius: 4px;
}

/* --- Reading progress bar (modern browsers) --- */
@supports (animation-timeline: scroll()) {
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--accent-red), var(--accent-orange));
        transform-origin: 0 50%;
        transform: scaleX(0);
        z-index: 2000;
        animation: readingProgress linear;
        animation-timeline: scroll(root);
        pointer-events: none;
    }

    @keyframes readingProgress {
        from { transform: scaleX(0); }
        to   { transform: scaleX(1); }
    }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-bottom: 1px solid var(--nav-border);
    transition: background var(--transition), border-color var(--transition);
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 0.98rem;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.navbar-brand::before {
    content: '';
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent-red);
    box-shadow: 0 0 0 0 rgba(215, 38, 61, 0.45);
    animation: brandPulse 2.4s infinite;
}

@keyframes brandPulse {
    0%   { box-shadow: 0 0 0 0 rgba(215, 38, 61, 0.45); }
    70%  { box-shadow: 0 0 0 9px rgba(215, 38, 61, 0); }
    100% { box-shadow: 0 0 0 0 rgba(215, 38, 61, 0); }
}

.navbar-brand:hover {
    color: var(--accent-red);
}

.navbar-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- Language Selector --- */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
}

.lang-flag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border: 1px solid transparent;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all var(--transition);
    cursor: pointer;
}

.lang-flag:hover {
    background: var(--accent-teal);
    color: #fff;
}

.lang-flag .flag-icon {
    font-size: 1.1rem;
    line-height: 1;
}

/* --- Theme Toggle --- */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    cursor: pointer;
    font-size: 1.15rem;
    transition: all var(--transition);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.theme-toggle:hover {
    background: var(--accent-teal);
    color: #fff;
    border-color: var(--accent-teal);
    transform: translateY(-1px);
}

/* --- Hamburger --- */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    cursor: pointer;
    padding: 10px;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.nav-hamburger span {
    display: block;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-hamburger:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

.nav-hamburger:hover span {
    background: #fff;
}

/* ============================================================
   SECTION NAV (Table of Contents — floating card)
   ============================================================ */
.section-nav {
    position: fixed;
    top: 88px;
    left: 24px;
    width: 252px;
    max-height: calc(100vh - 116px);
    overflow-y: auto;
    padding: 18px 14px;
    z-index: 100;
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) transparent;
    background: var(--nav-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.section-nav h4 {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-red);
    margin: 0 0 10px 0;
    padding: 0 10px;
}

.section-nav h4 ~ h4 {
    margin-top: 18px;
}

.section-nav hr {
    border: none;
    height: 1px;
    background: var(--border-color);
    margin: 14px 6px;
}

.section-nav a {
    display: block;
    padding: 6px 10px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: all var(--transition);
    line-height: 1.45;
    margin-bottom: 1px;
}

.section-nav a:hover {
    color: var(--text-primary);
    background: rgba(215, 38, 61, 0.07);
}

.section-nav a.active {
    color: var(--accent-red);
    background: rgba(215, 38, 61, 0.09);
    font-weight: 700;
}

/* --- Mobile Nav Panel --- */
.mobile-nav-panel {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--nav-bg);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    padding: 20px 20px 60px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform var(--transition);
}

.mobile-nav-panel.open {
    transform: translateX(0);
}

.mobile-nav-panel a {
    display: block;
    padding: 13px 16px;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    margin-bottom: 2px;
}

.mobile-nav-panel a:hover {
    color: var(--accent-red);
    background: rgba(215, 38, 61, 0.07);
    padding-left: 22px;
}

.mobile-nav-panel hr {
    border: none;
    height: 1px;
    background: var(--border-color);
    margin: 16px 0;
}

/* ============================================================
   HERO HEADER
   ============================================================ */
.hero {
    position: relative;
    margin-top: 64px;
    padding: 76px 24px 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse 90% 70% at 50% -10%, rgba(215, 38, 61, 0.26), transparent 65%),
        linear-gradient(180deg, #11141d 0%, #0c0f16 100%);
    border-bottom: 1px solid var(--border-color);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 960px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 100px;
    background: rgba(215, 38, 61, 0.18);
    border: 1px solid rgba(255, 110, 125, 0.45);
    color: #ffd9de;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.035em;
    line-height: 1.12;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.hero-sub {
    margin: 0;
    max-width: 640px;
    font-size: 1.08rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

/* --- Hero stats (facts grid with icons) --- */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 10px;
    width: 100%;
    max-width: 880px;
}

.hero-stat {
    padding: 18px 16px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.13);
    text-align: center;
    transition: transform var(--transition), background var(--transition);
}

.hero-stat:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.09);
}

.hero-stat-icon {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat strong {
    display: block;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.25;
}

.hero-stat small {
    display: block;
    margin-top: 4px;
    font-size: 0.76rem;
    font-weight: 500;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.7);
}

/* --- Hero banner (full image, never cropped or covered) --- */
.hero-banner {
    margin: 38px 0 0;
    width: 100%;
    max-width: 980px;
}

.hero-banner img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* --- Hero buttons --- */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: all var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #e23047, #b01e31);
    color: #fff;
    box-shadow: 0 8px 28px rgba(215, 38, 61, 0.42);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(215, 38, 61, 0.55);
    color: #fff;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.38);
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    color: #fff;
}

/* legacy link kept for compatibility */
.read-pdf-link {
    font-size: 0.55em;
    vertical-align: middle;
    white-space: nowrap;
}

/* Clear the floating TOC on wide screens so it never covers the title */
@media (min-width: 1181px) {
    .hero {
        padding-left: 324px;
    }
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.container {
    margin: 24px auto 100px;
    padding: 0 24px;
    margin-left: 312px;
    margin-right: auto;
    max-width: min(800px, calc(100% - 336px));
}

/* --- Article Styles --- */
article h2 {
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-top: 3.2em;
    margin-bottom: 0.9em;
    letter-spacing: -0.025em;
    line-height: 1.25;
    scroll-margin-top: 90px;
}

article h2::before {
    content: '';
    display: block;
    width: 52px;
    height: 4px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-orange));
    margin-bottom: 16px;
}

article h3 {
    font-weight: 700;
    font-size: 1.28rem;
    color: var(--accent-teal);
    margin-top: 2.2em;
    margin-bottom: 0.8em;
    letter-spacing: -0.015em;
    scroll-margin-top: 90px;
}

article h4 {
    font-weight: 700;
    font-size: 1.12rem;
    color: var(--text-primary);
    margin-top: 1.8em;
    scroll-margin-top: 90px;
}

article p {
    margin-bottom: 1.5em;
    font-size: 1.04rem;
    color: var(--text-primary);
    line-height: 1.85;
}

article ul, article ol {
    margin-bottom: 1.5em;
    padding-left: 24px;
}

article li {
    margin-bottom: 0.6em;
    font-size: 1.04rem;
    color: var(--text-primary);
}

article li::marker {
    color: var(--accent-red);
}

/* --- Images in article (evidence) --- */
article img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    background-color: var(--bg-secondary);
    transition: transform var(--transition), box-shadow var(--transition);
}

article img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* --- Links --- */
a {
    color: var(--link-color);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color var(--transition);
    word-break: break-word;
}

a:hover {
    color: var(--link-hover);
}

.navbar a, .section-nav a, .mobile-nav-panel a, .hero a {
    text-decoration: none;
}

/* --- Strong --- */
strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* --- Blockquote (testimony card) --- */
blockquote {
    position: relative;
    margin: 2.5em 0;
    padding: 28px 30px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-red);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    font-style: italic;
    font-size: 1.02rem;
    color: var(--text-secondary);
    transition: background-color var(--transition), border-color var(--transition);
}

blockquote::before {
    content: '\201C';
    position: absolute;
    top: -6px;
    left: 16px;
    font-family: Georgia, serif;
    font-size: 4.4rem;
    font-style: normal;
    line-height: 1;
    color: var(--accent-red);
    opacity: 0.16;
    pointer-events: none;
}

blockquote p {
    color: var(--text-secondary);
}

blockquote p:last-child {
    margin-bottom: 0;
}

/* --- Warning Box (alert card) --- */
.warning-box {
    position: relative;
    background-color: var(--warning-bg);
    border: 1px solid var(--warning-border);
    border-left: 4px solid var(--accent-red);
    border-radius: var(--radius);
    padding: 30px 32px;
    margin: 44px 0;
    box-shadow: var(--shadow-sm);
    transition: background-color var(--transition), border-color var(--transition);
}

.warning-box::before {
    content: '\26A0';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: rgba(215, 38, 61, 0.12);
    color: var(--accent-red);
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.warning-box h2 {
    color: var(--accent-red);
    margin-top: 0;
    font-size: 1.45rem;
}

.warning-box h2::before {
    display: none;
}

.warning-box h3 {
    margin-top: 0;
    color: var(--accent-red);
}

.warning-box p:last-child {
    margin-bottom: 0;
}

/* --- Section Divider --- */
.section-divider {
    height: 1px;
    border: none;
    background: linear-gradient(90deg, transparent, var(--border-color) 20%, var(--border-color) 80%, transparent);
    margin: 72px 0;
    position: relative;
    overflow: visible;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 5px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-orange));
    opacity: 0.85;
}

/* --- Evidence Gallery --- */
.evidence-gallery {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
    margin-bottom: 32px;
    justify-content: center;
}

.evidence-gallery1 {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* --- Wallet Address --- */
.wallet-address {
    background: var(--code-bg);
    padding: 8px 14px;
    border-radius: 8px;
    font-family: var(--font-mono);
    word-break: break-all;
    display: inline-block;
    font-weight: 600;
    font-size: 0.86rem;
    color: var(--accent-red);
    border: 1px solid var(--border-color);
    transition: background var(--transition), border-color var(--transition);
}

/* --- Video Wrapper --- */
.video-wrapper {
    max-width: 520px;
    background-color: #000;
    overflow: hidden;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    margin: 28px 0;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* --- Contact Box (inverted CTA card) --- */
.contact-box {
    margin-top: 56px;
    padding: 36px;
    background: linear-gradient(135deg, #161e2c, #232f44);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    font-size: 0.98rem;
    box-shadow: var(--shadow-lg);
    color: rgba(255, 255, 255, 0.88);
}

.contact-box p {
    color: rgba(255, 255, 255, 0.88);
}

.contact-box strong {
    color: #fff;
}

.contact-box a {
    color: #fbbf24;
}

.contact-box a:hover {
    color: #ff8d9b;
}

/* --- Article Title (kept for compatibility) --- */
.article-title {
    display: none;
}

/* ============================================================
   SCROLL TO TOP BUTTON
   ============================================================ */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e23047, #b01e31);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(215, 38, 61, 0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 100;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(215, 38, 61, 0.55);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1180px) {
    .section-nav {
        display: none;
    }

    .container {
        margin-left: auto;
        margin-right: auto;
        max-width: 800px;
    }

    .nav-hamburger {
        display: flex;
    }

    .mobile-nav-panel {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 52px 20px 48px;
    }

    .hero-content {
        gap: 18px;
    }

    .hero-sub {
        font-size: 0.98rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .hero-stat {
        padding: 14px 12px;
    }

    .hero-stat-icon {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }

    .hero-stat strong {
        font-size: 1.15rem;
    }

    .hero-stat small {
        font-size: 0.72rem;
    }

    .hero-banner {
        margin-top: 28px;
    }

    .container {
        padding: 0 18px;
        margin-top: 8px;
    }

    .warning-box {
        padding: 22px 20px;
    }

    .warning-box h2 {
        font-size: 1.25rem;
    }

    article h2 {
        font-size: 1.35rem;
    }

    article h3 {
        font-size: 1.15rem;
    }

    article p, article li {
        font-size: 1rem;
    }

    .navbar-brand {
        font-size: 0.82rem;
        letter-spacing: 0.03em;
    }

    .lang-flag span.lang-label {
        display: none;
    }

    blockquote {
        padding: 22px 18px 18px;
        margin: 1.8em 0;
    }

    .contact-box {
        padding: 26px 22px;
    }
}

@media (max-width: 480px) {
    .navbar-inner {
        padding: 0 10px;
    }

    .navbar-brand {
        font-size: 0.72rem;
        gap: 7px;
    }

    .navbar-brand::before {
        width: 7px;
        height: 7px;
    }

    .navbar-controls {
        gap: 6px;
    }

    .lang-selector {
        padding: 3px;
        gap: 2px;
    }

    .lang-flag {
        padding: 4px 7px;
    }

    .lang-flag .flag-icon {
        font-size: 1rem;
    }

    .theme-toggle,
    .nav-hamburger {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .hero {
        padding: 44px 16px 40px;
    }

    .hero-badge {
        font-size: 0.66rem;
        padding: 7px 14px;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
