/* ══════════════════════════════════════════════════
   ZENVESTRA — style.css (Homepage)
   Dark · Mono · Binance-inspired · Tunisian market
══════════════════════════════════════════════════ */

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg-primary:   #0a0b0d;
    --bg-secondary: #111318;
    --bg-panel:     #13161c;
    --bg-hover:     #1a1e27;
    --border:       #1e2330;
    --border-light: #252a38;
    --gold:         #b49104;
    --gold-light:   #d4a800;
    --gold-dim:     rgba(180,145,4,0.15);
    --green:        #00c896;
    --green-dim:    rgba(0,200,150,0.12);
    --red:          #ff4d6a;
    --red-dim:      rgba(255,77,106,0.12);
    --text-primary: #e8eaf0;
    --text-secondary:#6b7280;
    --text-dim:     #3d4352;
    --font-mono:    'IBM Plex Mono', monospace;
    --font-display: 'Syne', sans-serif;
    --font-arabic:  'Noto Naskh Arabic', serif;
}
[data-theme="light"] {
    --bg-primary:    #f2f4f8;
    --bg-secondary:  #ffffff;
    --bg-panel:      #ffffff;
    --bg-hover:      #f0f2f6;
    --border:        #e2e6ef;
    --border-light:  #d0d5e0;
    --text-primary:  #0f1117;
    --text-secondary:#5a6478;
    --text-dim:      #9aa0b4;
    --shadow:        0 4px 24px rgba(0,0,0,0.08);
}


html { scroll-behavior: smooth; }

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-display);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 3px; }

/* HEADER */
.header {
    height: 80px;
    background: var(--bg-panel);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 0 16px;
    position: sticky; top: 0; z-index: 100;
    gap: 20px;
}
.header .left-side  { display: flex; align-items: center; gap: 1px; }
.header .right-side { margin-left: 8px; }
.header-link { display: flex; align-items: center; gap: 4px; }
.header-link a {
    color: var(--text-secondary); padding: 5px 12px;
    text-decoration: none; border-radius: 6px;
    font-size: 12px; transition: 0.2s; cursor: pointer;
}
.header-link a:hover { background: var(--gold); color: #000; }
.logo { width: 100px; cursor: pointer; transition: opacity 0.2s; }
.logo:hover { opacity: 0.8; }
.menu { width: 22px; cursor: pointer; filter: brightness(0.6); transition: 0.2s; }
.menu:hover { filter: brightness(1); }

.btn {
    background: #0F3D2E; border-radius: 6px; color: #fff;
    padding: 6px 16px; border: 1.5px solid #1a4c3c;
    cursor: pointer; font-weight: 600; font-family: var(--font-display);
    font-size: 13px; letter-spacing: 0.4px; transition: 0.2s;
}
.btn:hover { background: #13352a; }
.btn:active { transform: scale(0.98); box-shadow: inset 0 2px 4px rgba(0,0,0,0.4); }

.about-btn {
    background: none;
    border-color: var(--border-light);
    color: var(--text-secondary);
}
.about-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
}

/* ══════════════════════════════════════════════════
   SIDEBAR (unchanged from portfolio)
══════════════════════════════════════════════════ */
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.sidebar {
    position: fixed; top: 0; left: -280px;
    width: 280px; height: 100%;
    background: var(--bg-panel);
    z-index: 1000;
    transition: left 0.3s cubic-bezier(0.4,0,0.2,1);
    display: flex; flex-direction: column;
    padding: 20px;
    border-right: 1px solid var(--gold);
    font-family: var(--font-display);
    overflow-y: auto;
    box-sizing: border-box;
}
.sidebar.open { left: 0; }
.sidebar-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 999; opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}
.sidebar-overlay.open { opacity: 1; pointer-events: all; }
.sidebar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.sidebar-logo { width: 90px; }
.sidebar-close { background: none; border: none; color: var(--text-secondary); font-size: 18px; cursor: pointer; transition: 0.2s; }
.sidebar-close:hover { color: var(--gold); transform: scale(1.2); }
.sidebar-nav, .sidebar-settings { display: flex; flex-direction: column; gap: 3px; }
.sidebar-nav a, .sidebar-settings a {
    color: var(--text-secondary); text-decoration: none;
    padding: 10px 15px; border-radius: 8px;
    font-size: 13px; transition: 0.2s; cursor: pointer;
}
.sidebar-nav a:hover, .sidebar-settings a:hover {
    background: var(--gold-dim); color: var(--gold); padding-left: 22px;
}
.sidebar-section-title {
    color: var(--gold); font-size: 10px; text-transform: uppercase;
    letter-spacing: 2px; padding: 0 15px; margin-bottom: 5px; display: block;
}
.sidebar-divider { border-top: 1px solid var(--border); margin: 15px 0; }
.sidebar-bottom { margin-top: auto; padding: 10px 0; flex-shrink: 0; }

/* ══════════════════════════════════════════════════
   TICKER TAPE
══════════════════════════════════════════════════ */
.ticker-wrap {
    height: 36px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
    display: flex; align-items: center;
}
.ticker-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: ticker 60s linear infinite;
}
@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 28px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-secondary);
    border-right: 1px solid var(--border);
    flex-shrink: 0;
}
.ticker-item .t-name { color: var(--text-primary); font-weight: 500; }
.ticker-item .t-chg.pos { color: var(--green); }
.ticker-item .t-chg.neg { color: var(--red); }
.btn.danger-outline{background:none;border-color:rgba(255,77,106,.3);color:var(--red);}
.btn.danger-outline:hover{background:var(--red-dim);}
/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: calc(100vh - 116px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 60px 0 80px;
}

/* grid background */
.hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* glow orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,200,150,0.12) 0%, transparent 70%);
    top: -100px; left: -100px;
}
.orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(180,145,4,0.10) 0%, transparent 70%);
    bottom: 0; right: 100px;
}

.hero-inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}
@media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-right  { display: none; }
}

/* ── HERO LEFT ── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--green);
    border: 1px solid rgba(0,200,150,0.25);
    background: var(--green-dim);
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both;
}
.badge-dot {
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

.hero-h1 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}
.hero-line-1 {
    font-size: clamp(52px, 8vw, 96px);
    color: var(--text-primary);
    animation: fadeUp 0.6s 0.1s ease both;
}
.hero-line-2 {
    font-size: clamp(52px, 8vw, 96px);
    color: var(--text-dim);
    animation: fadeUp 0.6s 0.2s ease both;
}
.hero-line-3 {
    font-size: clamp(52px, 8vw, 96px);
    color: var(--green);
    animation: fadeUp 0.6s 0.3s ease both;
    position: relative;
    display: inline-block;
}
.hero-line-3::after {
    content: '';
    position: absolute;
    bottom: 6px; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--green), transparent);
    border-radius: 2px;
}

.hero-arabic {
    font-family: var(--font-arabic);
    font-size: 20px;
    color: var(--gold);
    direction: rtl;
    margin-bottom: 20px;
    opacity: 0.85;
    animation: fadeUp 0.6s 0.35s ease both;
}

.hero-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 32px;
    animation: fadeUp 0.6s 0.4s ease both;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    animation: fadeUp 0.6s 0.5s ease both;
}

.cta-primary {
    background: var(--green);
    color: #000;
    border: none;
    border-radius: 10px;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    padding: 13px 24px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
    letter-spacing: 0.3px;
}
.cta-primary:hover {
    background: #00e6ad;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,200,150,0.35);
}
.cta-primary:active { transform: scale(0.98); }
.cta-arrow { font-size: 16px; }

.cta-secondary {
    background: none;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font-family: var(--font-mono);
    font-size: 13px;
    padding: 13px 24px;
    cursor: pointer;
    transition: 0.2s;
}
.cta-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
}

.hero-search { animation: fadeUp 0.6s 0.6s ease both; }
.search-box {
    display: flex;
    align-items: center;
    background: var(--bg-panel);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
    max-width: 420px;
    transition: border-color 0.2s;
}
.search-box:focus-within { border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,200,150,0.1); }
.search-icon {
    padding: 0 12px;
    font-size: 18px;
    color: var(--text-dim);
}
.search-box input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 13px;
    padding: 12px 0;
}
.search-box input::placeholder { color: var(--text-dim); }
.search-box button {
    background: var(--green);
    border: none;
    color: #000;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    padding: 12px 18px;
    cursor: pointer;
    transition: 0.2s;
    white-space: nowrap;
}
.search-box button:hover { background: #00e6ad; }

/* ── HERO RIGHT — mini dashboard card ── */
.hero-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.5);
    animation: fadeUp 0.7s 0.3s ease both;
    position: relative;
    overflow: hidden;
}
.hero-card::before {
    content: '';
    position: absolute; top: -40px; right: -40px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(0,200,150,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.hc-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-secondary);
}
.hc-live {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--green);
}
.hc-dot {
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 1.5s ease infinite;
}

.hc-value {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -1px;
    margin-bottom: 4px;
}
.hc-change {
    font-family: var(--font-mono);
    font-size: 13px;
    margin-bottom: 16px;
}
.hc-change.pos { color: var(--green); }
.hc-change.neg { color: var(--red); }

.hc-chart {
    width: 100%;
    height: 90px;
    margin-bottom: 16px;
}

.hc-stocks { display: flex; flex-direction: column; gap: 8px; }
.hc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 12px;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid transparent;
    transition: 0.2s;
}
.hc-row:hover { border-color: var(--border-light); background: var(--bg-hover); }
.hc-ticker {
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--text-primary);
}
.hc-price { font-family: var(--font-mono); font-size: 12px; color: var(--text-secondary); }
.hc-pct   { font-family: var(--font-mono); font-size: 12px; font-weight: 600; }
.hc-pct.pos { color: var(--green); }
.hc-pct.neg { color: var(--red); }

/* ── SCROLL CUE ── */
.scroll-cue {
    position: absolute;
    bottom: 24px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--text-dim);
    animation: fadeUp 1s 1s ease both;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-dim), transparent);
    animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
    0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50%  { opacity: 1; }
    100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}

/* ══════════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════════ */
.stats-bar {
    background: var(--bg-panel);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 28px 24px;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 48px;
    gap: 4px;
}
.stat-num {
    font-family: var(--font-mono);
    font-size: 36px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1;
}
.stat-suffix {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--green);
    vertical-align: super;
}
.stat-label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-mono);
    margin-top: 4px;
}
.stat-sep {
    width: 1px;
    height: 48px;
    background: var(--border);
    flex-shrink: 0;
}
@media (max-width: 700px) {
    .stats-bar { flex-wrap: wrap; gap: 20px; }
    .stat-sep  { display: none; }
    .stat-item { padding: 0 24px; }
}

/* ══════════════════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════════════════ */
.services-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
}
.section-eyebrow {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.services-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
}
.services-h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
}
.accent { color: var(--green); }
.ghost-btn {
    background: none;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 12px;
    padding: 9px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    white-space: nowrap;
}
.ghost-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .services-grid { grid-template-columns: 1fr; } }

.srv-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: 0.25s;
    position: relative;
    overflow: hidden;
}
.srv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--green), transparent);
    opacity: 0;
    transition: 0.3s;
}
.srv-card:hover {
    border-color: var(--border-light);
    background: var(--bg-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.srv-card:hover::before { opacity: 1; }

.srv-large {
    grid-column: span 1;
    grid-row: span 2;
    background: linear-gradient(145deg, #13161c 0%, #0f1118 100%);
}
.srv-cta { background: linear-gradient(145deg, #0a1a14, #0d1f18); border-color: rgba(0,200,150,0.2); }

.srv-icon { font-size: 28px; }
.srv-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}
.srv-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
}
.srv-card ul li {
    font-size: 13px;
    color: var(--text-secondary);
    padding-left: 14px;
    position: relative;
    line-height: 1.5;
}
.srv-card ul li::before {
    content: '—';
    position: absolute; left: 0;
    color: var(--text-dim);
    font-size: 11px;
}
.srv-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
}
.srv-link {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--green);
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none;
    letter-spacing: 0.5px;
}
.srv-link:hover { color: #00e6ad; letter-spacing: 1px; }

/* ══════════════════════════════════════════════════
   MARKET STRIP
══════════════════════════════════════════════════ */
.market-strip-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 60px 24px;
}
.ms-top {
    max-width: 1280px;
    margin: 0 auto 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.ms-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}
.ms-card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    transition: 0.2s;
    cursor: pointer;
}
.ms-card:hover {
    border-color: var(--border-light);
    background: var(--bg-hover);
    transform: translateY(-2px);
}
.ms-ticker { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.ms-name   { font-size: 10px; color: var(--text-dim); font-family: var(--font-mono); margin-bottom: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ms-price  { font-family: var(--font-mono); font-size: 16px; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.ms-chg    { font-family: var(--font-mono); font-size: 12px; font-weight: 600; }
.ms-chg.pos { color: var(--green); }
.ms-chg.neg { color: var(--red); }
.ms-bar { margin-top: 10px; height: 3px; border-radius: 2px; background: var(--border); overflow: hidden; }
.ms-bar-fill { height: 100%; border-radius: 2px; transition: width 0.6s ease; }

/* ══════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════ */
.cta-banner {
    position: relative;
    padding: 100px 24px;
    overflow: hidden;
    text-align: center;
}
.cta-banner-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(0,200,150,0.08) 0%, transparent 60%),
        linear-gradient(180deg, var(--bg-primary) 0%, #0c1a14 50%, var(--bg-primary) 100%);
}
.cta-banner-inner {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.cta-banner-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--green);
    opacity: 0.8;
}
.cta-banner-h2 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
}
.cta-banner-sub {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 480px;
}
.cta-banner-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer {
    background: var(--bg-panel);
    border-top: 1px solid var(--border);
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px 40px;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
}
@media (max-width: 768px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
}
@media (max-width: 480px) {
    .footer-inner { grid-template-columns: 1fr; }
    .footer-brand { grid-column: 1; }
}
.footer-brand {}
.footer-logo { width: 90px; margin-bottom: 14px; }
.footer-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.7; max-width: 240px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 34px; height: 34px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary);
    font-size: 12px;
    text-decoration: none;
    transition: 0.2s;
    font-family: var(--font-mono);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

.footer-links { display: contents; }
.fl-col { display: flex; flex-direction: column; gap: 10px; }
.fl-title {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    font-family: var(--font-mono);
    margin-bottom: 6px;
}
.fl-col a {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: 0.2s;
}
.fl-col a:hover { color: var(--text-primary); padding-left: 4px; }

.footer-bar {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-dim);
}
.footer-bar-right { opacity: 0.7; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
