/* ═══════════════════════════════════════════════════
   PORTFOLIO BTS SIO — SISR
   Thème : Terminal Dark — Tech Infrastructure
   ═══════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
    --bg:           #0a0e17;
    --bg-elevated:  #111827;
    --bg-card:      #151d2e;
    --bg-card-hover:#1a2540;
    --surface:      #1e293b;
    --border:       #1e3a5f;
    --border-light: #2d4a6f;
    --text:         #e2e8f0;
    --text-muted:   #8899b0;
    --text-dim:     #5a6d85;
    --accent:       #22d3ee;
    --accent-glow:  rgba(34,211,238,.15);
    --accent2:      #818cf8;
    --accent3:      #34d399;
    --red:          #f87171;
    --yellow:       #fbbf24;
    --green:        #34d399;
    --font-body:    'Outfit', system-ui, sans-serif;
    --font-mono:    'JetBrains Mono', 'Fira Code', monospace;
    --radius:       12px;
    --radius-sm:    8px;
    --radius-xs:    4px;
    --shadow:       0 4px 24px rgba(0,0,0,.4);
    --shadow-lg:    0 8px 40px rgba(0,0,0,.5);
    --transition:   .3s cubic-bezier(.4,0,.2,1);
    --max-width:    1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover, a:focus-visible { color: #67e8f9; }
a:focus-visible, button:focus-visible, [tabindex="0"]:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: var(--radius-xs);
}
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* ═══════════════════ LOADER ═══════════════════ */
#loader {
    position: fixed; inset: 0; z-index: 10000;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .5s, visibility .5s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-terminal {
    font-family: var(--font-mono); font-size: 1.1rem; color: var(--accent);
    display: flex; align-items: center; gap: .6rem;
}
.loader-prompt { color: var(--green); }
.loader-dots::after {
    content: ''; animation: dots 1.5s steps(4,end) infinite;
}
@keyframes dots {
    0% { content: ''; } 25% { content: '.'; } 50% { content: '..'; } 75% { content: '...'; }
}

/* ═══════════════════ HEADER ═══════════════════ */
#header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(10,14,23,.85);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition), box-shadow var(--transition);
}
#header.scrolled { background: rgba(10,14,23,.95); box-shadow: var(--shadow); }
.nav-container {
    max-width: var(--max-width); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: .8rem 1.5rem;
}
.nav-logo {
    font-family: var(--font-mono); font-size: 1.3rem; font-weight: 700;
    color: var(--text); display: flex; gap: .2rem; align-items: center;
}
.logo-bracket { color: var(--accent); }
.logo-text { color: var(--text); }
.nav-links {
    display: flex; gap: .3rem; align-items: center;
}
.nav-links a {
    color: var(--text-muted); font-size: .88rem; font-weight: 500;
    padding: .45rem .85rem; border-radius: var(--radius-sm);
    transition: all var(--transition); position: relative;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--accent); background: var(--accent-glow);
}

/* Mobile toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.nav-toggle span {
    display: block; width: 22px; height: 2px; background: var(--text);
    transition: var(--transition); border-radius: 2px;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed; top: 60px; left: 0; width: 100%;
        background: rgba(10,14,23,.98); backdrop-filter: blur(20px);
        flex-direction: column; padding: 1.5rem;
        transform: translateY(-110%); transition: transform .4s ease;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links a { width: 100%; padding: .8rem 1rem; font-size: 1rem; }
}

/* ═══════════════════ HERO ═══════════════════ */
.hero {
    min-height: 100vh; padding: 120px 1.5rem 60px;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 3rem; position: relative; overflow: hidden;
    max-width: var(--max-width); margin: 0 auto;
}
.hero-grid-bg {
    position: absolute; inset: 0; opacity: .06;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-content { flex: 1 1 480px; position: relative; z-index: 1; }
.hero-tag {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--accent-glow); border: 1px solid rgba(34,211,238,.2);
    padding: .35rem 1rem; border-radius: 50px;
    font-size: .82rem; font-weight: 600; color: var(--accent);
    margin-bottom: 1.5rem; font-family: var(--font-mono);
}
.tag-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{ opacity:1; } 50%{ opacity:.3; } }

.hero-title { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
.hero-line { display: block; }
.hero-line--accent { color: var(--accent); }
.hero-subtitle {
    font-family: var(--font-mono); font-size: clamp(.85rem, 1.5vw, 1rem);
    color: var(--accent2); margin-bottom: 1rem; letter-spacing: .5px;
}
.hero-description { color: var(--text-muted); font-size: 1.05rem; max-width: 540px; margin-bottom: 2rem; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .75rem 1.8rem; border-radius: var(--radius-sm);
    font-weight: 600; font-size: .92rem; transition: all var(--transition);
}
.btn--primary {
    background: var(--accent); color: #0a0e17;
    box-shadow: 0 0 20px rgba(34,211,238,.25);
}
.btn--primary:hover { background: #67e8f9; color: #0a0e17; box-shadow: 0 0 30px rgba(34,211,238,.4); }
.btn--outline {
    border: 1px solid var(--border-light); color: var(--text);
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }

/* Stats */
.hero-stats { display: flex; gap: 2.5rem; }
.stat-number {
    display: block; font-size: 2rem; font-weight: 800; color: var(--accent);
    font-family: var(--font-mono);
}
.stat-label { font-size: .78rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }

/* Terminal visual */
.hero-visual { flex: 1 1 400px; max-width: 520px; position: relative; z-index: 1; }
.terminal-window {
    background: #0d1117; border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: float-terminal 6s ease-in-out infinite;
}
@keyframes float-terminal { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-8px); } }
.terminal-bar {
    background: #161b22; padding: .6rem .8rem;
    display: flex; align-items: center; gap: .5rem;
    border-bottom: 1px solid var(--border);
}
.terminal-dot { width: 10px; height: 10px; border-radius: 50%; }
.terminal-dot--red { background: #f87171; }
.terminal-dot--yellow { background: #fbbf24; }
.terminal-dot--green { background: #34d399; }
.terminal-title { font-family: var(--font-mono); font-size: .7rem; color: var(--text-dim); margin-left: .5rem; }
.terminal-body { padding: 1.2rem; font-family: var(--font-mono); font-size: .82rem; line-height: 1.8; }
.terminal-line { white-space: nowrap; overflow: hidden; }
.t-prompt { color: var(--green); }
.t-sep { color: var(--text-dim); }
.t-path { color: var(--accent2); }
.t-dollar { color: var(--text-muted); margin: 0 .4rem; }
.t-output { color: var(--text-muted); padding-left: .4rem; }
.t-cursor { color: var(--accent); animation: blink 1s step-start infinite; }
@keyframes blink { 50%{ opacity:0; } }

/* ═══════════════════ SECTIONS ═══════════════════ */
.section { padding: 5rem 0; }
.section--dark { background: var(--bg-elevated); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
    display: inline-block; font-family: var(--font-mono); font-size: .8rem;
    color: var(--accent); background: var(--accent-glow);
    padding: .25rem .8rem; border-radius: 50px; margin-bottom: .8rem;
    letter-spacing: 1px;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: .6rem; }
.section-desc { color: var(--text-muted); font-size: 1.05rem; }

/* ═══════════════════ PROFIL ═══════════════════ */
.profil-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.profil-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 2rem;
    transition: all var(--transition);
}
.profil-card:hover { border-color: var(--border-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.profil-card-icon {
    width: 44px; height: 44px; border-radius: var(--radius-sm);
    background: var(--accent-glow); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.2rem;
}
.profil-card h3 { font-size: 1.15rem; margin-bottom: .8rem; color: var(--text); }
.profil-card p { color: var(--text-muted); font-size: .92rem; }

/* Timeline */
.timeline { padding-left: 1.2rem; border-left: 2px solid var(--border); }
.timeline-item {
    padding-bottom: 1.2rem; padding-left: 1rem; position: relative;
}
.timeline-item::before {
    content: ''; position: absolute; left: -1.45rem; top: .35rem;
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--accent); border: 2px solid var(--bg-card);
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-date {
    display: inline-block; font-family: var(--font-mono); font-size: .75rem;
    color: var(--accent); background: var(--accent-glow);
    padding: .1rem .5rem; border-radius: var(--radius-xs); margin-bottom: .3rem;
}
.timeline-place { display: block; font-size: .82rem; color: var(--text-dim); margin-top: .1rem; }
.timeline-item p { font-size: .85rem; color: var(--text-muted); margin-top: .3rem; }

/* BTS épreuves */
.bts-epreuves { margin-top: 1.2rem; display: flex; flex-direction: column; gap: .6rem; }
.epreuve {
    display: flex; align-items: center; gap: .8rem;
    padding: .6rem .8rem; background: var(--surface);
    border-radius: var(--radius-sm); font-size: .88rem;
}
.epreuve-code {
    font-family: var(--font-mono); font-weight: 700; color: var(--accent);
    background: var(--accent-glow); padding: .2rem .5rem;
    border-radius: var(--radius-xs); font-size: .82rem;
}

/* ═══════════════════ COMPÉTENCES ═══════════════════ */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}
.skill-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.8rem;
    transition: all var(--transition);
}
.skill-card:hover, .skill-card:focus-visible {
    border-color: var(--accent); transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(34,211,238,.08);
}
.skill-icon {
    width: 48px; height: 48px; border-radius: var(--radius-sm);
    background: var(--accent-glow); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
}
.skill-card h3 { font-size: 1.1rem; margin-bottom: .8rem; }
.skill-list { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.2rem; }
.skill-tag {
    font-size: .78rem; padding: .25rem .65rem;
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 50px; color: var(--text-muted);
    font-family: var(--font-mono);
}
.skill-bar-group { display: flex; flex-direction: column; gap: .8rem; }
.skill-bar-item span { font-size: .78rem; color: var(--text-dim); display: block; margin-bottom: .3rem; }
.skill-bar {
    height: 6px; background: var(--surface); border-radius: 3px; overflow: hidden;
}
.skill-bar-fill {
    height: 100%; width: var(--fill); border-radius: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    transition: width 1.5s ease;
}

/* ═══════════════════ PROJETS ═══════════════════ */
.filter-bar {
    display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center;
    margin-bottom: 2.5rem;
}
.filter-btn {
    font-size: .85rem; font-weight: 500;
    padding: .5rem 1.2rem; border-radius: 50px;
    border: 1px solid var(--border); color: var(--text-muted);
    transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active { background: var(--accent); color: #0a0e17; border-color: var(--accent); font-weight: 600; }

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}
.project-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.8rem;
    transition: all var(--transition); display: flex; flex-direction: column;
}
.project-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.project-card.hidden { display: none; }
.project-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.project-badge {
    font-family: var(--font-mono); font-weight: 700; font-size: .78rem;
    padding: .25rem .65rem; border-radius: var(--radius-xs);
    background: rgba(34,211,238,.15); color: var(--accent);
}
.badge--stage { background: rgba(129,140,248,.15); color: var(--accent2); }
.project-date { font-family: var(--font-mono); font-size: .78rem; color: var(--text-dim); }
.project-title { font-size: 1.1rem; font-weight: 700; margin-bottom: .6rem; line-height: 1.4; }
.project-desc { font-size: .9rem; color: var(--text-muted); flex: 1; margin-bottom: 1rem; }
.project-techs { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.2rem; }
.project-techs span {
    font-size: .72rem; font-family: var(--font-mono);
    padding: .2rem .55rem; border-radius: var(--radius-xs);
    background: var(--surface); border: 1px solid var(--border);
    color: var(--text-dim);
}
.project-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 1rem; border-top: 1px solid var(--border);
}
.project-context { font-size: .78rem; color: var(--text-dim); }
.project-link { font-size: .85rem; font-weight: 600; }

/* ═══════════════════ TABLEAU DE SYNTHÈSE ═══════════════════ */
.table-wrapper { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.synthese-table {
    width: 100%; border-collapse: collapse; font-size: .88rem;
}
.synthese-table th {
    background: var(--surface); text-align: left;
    padding: 1rem; font-weight: 600; color: var(--accent);
    font-family: var(--font-mono); font-size: .8rem;
    text-transform: uppercase; letter-spacing: .5px;
    border-bottom: 2px solid var(--accent);
    white-space: nowrap;
}
.synthese-table td {
    padding: .9rem 1rem; border-bottom: 1px solid var(--border);
    color: var(--text-muted);
}
.synthese-table tr:hover td { background: rgba(34,211,238,.03); }
.table-badge {
    font-family: var(--font-mono); font-weight: 700; font-size: .72rem;
    padding: .2rem .5rem; border-radius: var(--radius-xs);
    background: rgba(34,211,238,.15); color: var(--accent);
}
.table-badge.badge-e4 { background: rgba(52,211,153,.15); color: var(--green); }
.table-badge.badge-stage { background: rgba(129,140,248,.15); color: var(--accent2); }
.synthese-note {
    margin-top: 1.5rem; padding: 1rem 1.5rem;
    background: rgba(251,191,36,.08); border: 1px solid rgba(251,191,36,.2);
    border-radius: var(--radius-sm); font-size: .85rem; color: var(--yellow);
}

/* ═══════════════════ VEILLE ═══════════════════ */
.veille-grid {
    display: grid; grid-template-columns: 1fr 340px; gap: 2rem;
}
@media (max-width: 900px) { .veille-grid { grid-template-columns: 1fr; } }

.veille-topic-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 2rem; margin-bottom: 1.5rem;
}
.veille-label {
    display: inline-block; font-family: var(--font-mono); font-size: .72rem;
    color: var(--accent); background: var(--accent-glow);
    padding: .15rem .55rem; border-radius: var(--radius-xs); margin-bottom: .8rem;
    text-transform: uppercase; letter-spacing: 1px;
}
.veille-topic-card h3 { font-size: 1.4rem; margin-bottom: .8rem; }
.veille-topic-card p { color: var(--text-muted); font-size: .92rem; }
.veille-keywords { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.2rem; }
.veille-keywords span {
    font-size: .78rem; font-family: var(--font-mono);
    padding: .25rem .65rem; border-radius: 50px;
    background: var(--surface); border: 1px solid var(--border); color: var(--text-muted);
}

.veille-method { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.veille-method h3 { font-size: 1.1rem; margin-bottom: 1.2rem; }
.method-steps { display: flex; flex-direction: column; gap: 1.2rem; }
.method-step {
    display: flex; gap: 1rem; align-items: flex-start;
}
.method-num {
    flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
    background: var(--accent-glow); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono); font-weight: 700; font-size: .85rem;
}
.method-step strong { display: block; margin-bottom: .2rem; color: var(--text); }
.method-step p { font-size: .85rem; color: var(--text-muted); }

/* Sidebar veille */
.veille-sidebar {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.8rem;
    align-self: start;
}
.veille-sidebar h3 { font-size: 1rem; margin-bottom: 1rem; }
.veille-sidebar h3:not(:first-child) { margin-top: 1.5rem; }
.source-list li {
    display: flex; gap: .8rem; align-items: flex-start;
    padding: .6rem 0; border-bottom: 1px solid var(--border);
}
.source-list li:last-child { border-bottom: none; }
.source-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: .1rem; }
.source-list strong { display: block; font-size: .88rem; color: var(--text); }
.source-list span { font-size: .78rem; color: var(--text-dim); }
.veille-tools { display: flex; flex-wrap: wrap; gap: .4rem; }
.veille-tool {
    font-size: .75rem; font-family: var(--font-mono);
    padding: .25rem .6rem; border-radius: 50px;
    background: var(--accent-glow); border: 1px solid rgba(34,211,238,.15);
    color: var(--accent);
}

/* ═══════════════════ CONTACT ═══════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.2rem; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-sm); transition: all var(--transition);
}
.contact-item:hover { border-color: var(--border-light); }
.contact-item svg { color: var(--accent); flex-shrink: 0; margin-top: .15rem; }
.contact-item strong { display: block; font-size: .85rem; color: var(--text-dim); font-weight: 500; margin-bottom: .1rem; }
.contact-item a, .contact-item span { font-size: .92rem; color: var(--text); }
.cta-terminal {
    background: #0d1117; border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
}
.cta-terminal-body { padding: 1.5rem; font-family: var(--font-mono); font-size: .82rem; line-height: 1.8; }
.cta-terminal-body p { color: var(--text-dim); }
.cta-message { color: var(--green) !important; font-weight: 500; }

/* ═══════════════════ FOOTER ═══════════════════ */
footer {
    background: var(--bg); border-top: 1px solid var(--border);
    padding: 2.5rem 0;
}
.footer-content { text-align: center; }
.footer-content p { color: var(--text-dim); font-size: .85rem; }
.footer-legal { color: var(--text-dim); font-size: .78rem; margin: .4rem 0 1rem; }
footer nav { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
footer nav a { color: var(--text-muted); font-size: .82rem; }

/* ═══════════════════ SCROLL TO TOP ═══════════════════ */
#scroll-top {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--accent); color: #0a0e17;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(34,211,238,.3);
    opacity: 0; transform: translateY(20px);
    transition: all var(--transition); pointer-events: none;
}
#scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#scroll-top:hover { background: #67e8f9; transform: translateY(-2px); }

/* ═══════════════════ ANIMATIONS (scroll reveal) ═══════════════════ */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 600px) {
    .hero { padding: 100px 1rem 40px; gap: 2rem; }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
    .projects-grid { grid-template-columns: 1fr; }
    .skills-grid { grid-template-columns: 1fr; }
    .profil-grid { grid-template-columns: 1fr; }
    .section { padding: 3rem 0; }
    .terminal-body { font-size: .72rem; }
}

/* ═══════════════════ PRINT ═══════════════════ */
@media print {
    #header, .nav-toggle, #scroll-top, #loader, .hero-visual { display: none; }
    body { background: #fff; color: #111; }
    .section--dark { background: #f5f5f5; }
    .hero { min-height: auto; padding: 2rem 0; }
    a { color: #111; }
}
