/* ============================================
   CUSTOM FONTS
   ============================================ */
@font-face {
    font-family: 'NEIIA';
    src: url('../assets/font/NEIIA_VF-s.p.3bb41c0a.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'NEIIA';
    src: url('../assets/font/NEIIA_Italic_VF-s.p.31e87b9d.woff2') format('woff2');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'NEIIA Display';
    src: url('../assets/font/NEIIADisplay_Regular-s.p.9a576876.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   VARIABLES
   ============================================ */
:root {
    --bg-dark: #011d21;
    --bg-darker: #010f12;
    --bg-card: #021e23;
    --bg-card-hover: #032a30;
    --bg-input: #0a2a30;
    --green-primary: #006341;
    --green-bright: #008751;
    --green-accent: #A3E635;
    --green-muted: #065f46;
    --text-white: #ffffff;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    --border-color: rgba(255,255,255,0.06);
    --border-hover: rgba(255,255,255,0.12);
    --red: #ef4444;
    --red-muted: #dc2626;
    --font-family: 'NEIIA', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --font-display: 'NEIIA Display', 'NEIIA', -apple-system, BlinkMacSystemFont, sans-serif;
    --container-max: 1200px;
    --radius: 12px;
    --transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ============================================
   BASE RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-family);
    color: var(--text-white);
    background-color: var(--bg-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 500; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-family); cursor: pointer; border: none; outline: none; }
input, select, textarea { font-family: var(--font-family); }

/* ============================================
   LOGO
   ============================================ */
.logo-fixed {
    position: absolute;
    top: 32px;
    left: 40px;
    z-index: 1001;
    text-decoration: none;
}

/* ==========================================================
   EA-NAV — modern sticky navbar (Bybit-inspired)
   Dark, blurred, with hover dropdowns + mobile slide drawer.
   Replaces .pill-nav / .auth-fixed / .logo-fixed / .back-home-link
   ========================================================== */
.ea-nav {
    position: sticky; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 12, 16, 0.78);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    height: 96px;
    display: flex;
    align-items: center;
}
.ea-nav-inner {
    width: 100%;
    max-width: var(--container-max, 1280px);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Brand — logo + product label */
.ea-brand {
    display: inline-flex; align-items: center; gap: 14px;
    text-decoration: none; flex-shrink: 0;
}
.ea-brand img { height: 84px; width: auto; }
@media (max-width: 768px) {
    .ea-nav { height: 76px; }
    .ea-brand img { height: 60px; }
}
.ea-brand-text {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.95); font-weight: 700; font-size: 14.5px;
    letter-spacing: -0.01em;
}
.ea-brand-text::before {
    content: ""; width: 1px; height: 18px; background: rgba(255,255,255,0.16);
}
.ea-brand-text .pill {
    padding: 2px 8px; border-radius: 4px; background: rgba(163,230,53,0.12);
    color: var(--green-accent, #a3e635); font-size: 10.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em;
}

/* Main nav */
.ea-nav-main { display: flex; align-items: center; gap: 4px; flex: 1; }
.ea-nav-item { position: relative; }
.ea-nav-link {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px; border-radius: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px; font-weight: 500;
    text-decoration: none; background: none; border: none; cursor: pointer;
    font-family: inherit;
    transition: color 0.15s ease, background 0.15s ease;
}
.ea-nav-link:hover, .ea-nav-link.is-active { color: #fff; background: rgba(255,255,255,0.04); }
.ea-nav-link .chev {
    transition: transform 0.2s ease;
    opacity: 0.7;
}
.ea-nav-item:hover .ea-nav-link .chev { transform: rotate(180deg); }

/* Dropdown — opens on hover (desktop) */
.ea-dropdown {
    position: absolute; top: calc(100% + 4px); left: 0;
    min-width: 240px;
    background: #14171d;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 24px 60px -12px rgba(0,0,0,0.45);
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    pointer-events: none;
}
.ea-nav-item:hover > .ea-dropdown,
.ea-nav-item:focus-within > .ea-dropdown {
    opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}
.ea-dropdown a {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 10px 12px; border-radius: 8px;
    text-decoration: none; color: rgba(255,255,255,0.85);
    transition: background 0.12s ease, color 0.12s ease;
}
.ea-dropdown a:hover { background: rgba(163,230,53,0.08); color: #fff; }
.ea-dropdown a .dd-icon {
    flex-shrink: 0; width: 32px; height: 32px; border-radius: 8px;
    background: rgba(255,255,255,0.04);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--green-accent, #a3e635);
}
.ea-dropdown a .dd-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ea-dropdown a .dd-title { font-size: 13.5px; font-weight: 600; line-height: 1.2; }
.ea-dropdown a .dd-sub { font-size: 11.5px; color: rgba(255,255,255,0.55); line-height: 1.3; }

/* Right-side actions */
.ea-nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.ea-cur-toggle { display: inline-flex; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 3px; }
.ea-cur-toggle button {
    background: none; border: none; padding: 5px 11px; font-size: 12px; font-weight: 600;
    color: rgba(255,255,255,0.55); cursor: pointer; border-radius: 5px;
    font-family: inherit; transition: all 0.15s ease;
}
.ea-cur-toggle button:hover { color: rgba(255,255,255,0.9); }
.ea-cur-toggle button.active {
    background: var(--green-accent, #a3e635);
    color: #0b0e11;
    box-shadow: 0 0 0 0 rgba(163,230,53,0.6);
    animation: ea-cur-flash 0.45s ease-out;
}
@keyframes ea-cur-flash {
    0%   { box-shadow: 0 0 0 0 rgba(163,230,53,0.55); }
    70%  { box-shadow: 0 0 0 10px rgba(163,230,53,0); }
    100% { box-shadow: 0 0 0 0 rgba(163,230,53,0); }
}

.ea-nav-signin {
    padding: 8px 14px;
    color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500;
    text-decoration: none; border-radius: 8px;
    transition: color 0.15s, background 0.15s;
}
.ea-nav-signin:hover { color: #fff; background: rgba(255,255,255,0.05); }

.ea-nav-cta {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 18px; border-radius: 8px;
    background: var(--green-accent, #a3e635);
    color: #0b0e11 !important;
    font-size: 14px; font-weight: 700;
    text-decoration: none;
    transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}
.ea-nav-cta:hover { transform: translateY(-1px); filter: brightness(1.06); box-shadow: 0 6px 16px -2px rgba(163,230,53,0.4); }

/* User menu (when logged in) */
.ea-user-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 10px 6px 6px; border-radius: 99px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    color: #fff; font-size: 13px; font-weight: 600; cursor: pointer;
    font-family: inherit;
}
.ea-user-avatar {
    width: 28px; height: 28px; border-radius: 50%;
    background: linear-gradient(135deg, #a3e635, #84cc16);
    display: inline-flex; align-items: center; justify-content: center;
    color: #0b0e11; font-weight: 700; font-size: 12px;
}

/* Mobile toggle */
.ea-mobile-toggle {
    display: none;
    width: 40px; height: 40px; border-radius: 8px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    color: #fff; cursor: pointer;
    align-items: center; justify-content: center;
}
.ea-mobile-toggle:hover { background: rgba(255,255,255,0.08); }

/* Mobile drawer */
.ea-mobile-drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 100%; max-width: 380px;
    background: #0b0e11;
    border-left: 1px solid rgba(255,255,255,0.06);
    transform: translateX(100%); transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
    display: flex; flex-direction: column;
    overflow-y: auto;
}
.ea-mobile-drawer.is-open { transform: translateX(0); }
.ea-mobile-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
    z-index: 1900;
}
.ea-mobile-overlay.is-open { opacity: 1; visibility: visible; }
.ea-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ea-drawer-close {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
}
.ea-drawer-section { padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.ea-drawer-section h6 {
    margin: 0 0 8px; font-size: 11px; font-weight: 600;
    color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em;
}
.ea-drawer-section a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 0; color: rgba(255,255,255,0.85);
    text-decoration: none; font-size: 15px; font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ea-drawer-section a:last-child { border-bottom: none; }
.ea-drawer-section a:hover { color: var(--green-accent, #a3e635); }
.ea-drawer-section a svg { opacity: 0.5; }
.ea-drawer-actions {
    padding: 20px; margin-top: auto; border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; flex-direction: column; gap: 10px;
}
.ea-drawer-actions .ea-nav-cta,
.ea-drawer-actions .ea-nav-signin {
    width: 100%; text-align: center; padding: 12px; justify-content: center;
}

@media (max-width: 1024px) {
    .ea-nav-main { display: none; }
    .ea-nav-actions .ea-nav-signin,
    .ea-nav-actions .ea-nav-cta { display: none; }
    /* Currency toggle stays visible — it's a primary on-page control */
    .ea-mobile-toggle { display: inline-flex; }
    .ea-nav-inner { justify-content: space-between; gap: 12px; }
}
@media (max-width: 600px) {
    .ea-cur-toggle button { padding: 4px 9px; font-size: 11.5px; }
}
@media (max-width: 480px) {
    .ea-brand-text { display: none; }
    .ea-cur-toggle { padding: 2px; }
    .ea-cur-toggle button { padding: 4px 7px; font-size: 11px; }
}

/* ==========================================================
   EA — content / page chrome shared across non-landing pages
   ========================================================== */
.ea-page { max-width: var(--container-max, 1280px); margin: 0 auto; padding: 56px 24px 32px; }
.ea-page-head { max-width: 760px; margin-bottom: 40px; }
.ea-page-head .eyebrow { display:inline-flex; align-items:center; gap:6px; padding: 4px 10px; border-radius:999px; background: rgba(163,230,53,0.1); color: var(--green-accent); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.ea-page-head h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 700; color: #fff; line-height: 1.08; margin: 0 0 16px; letter-spacing: -0.02em; }
.ea-page-head h1 span { color: var(--green-accent); }
.ea-page-head p { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.6; margin: 0; }

/* Card grids */
.ea-grid { display: grid; gap: 18px; }
.ea-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.ea-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .ea-grid.cols-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .ea-grid.cols-3, .ea-grid.cols-2 { grid-template-columns: 1fr; } }

.ea-card {
    background: var(--bg-card, #14171d); border: 1px solid var(--border-color, rgba(255,255,255,0.06));
    border-radius: 14px; padding: 24px; transition: border-color 0.15s, transform 0.15s;
}
.ea-card:hover { border-color: rgba(163,230,53,0.3); transform: translateY(-2px); }
.ea-card .card-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(163,230,53,0.1); color: var(--green-accent);
    display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.ea-card h3 { font-size: 16.5px; font-weight: 600; color: #fff; margin: 0 0 8px; }
.ea-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.55; margin: 0; }

/* Section spacing */
.ea-section { padding: 56px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.ea-section:first-child { border-top: none; padding-top: 0; }
.ea-section h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 700; color: #fff; margin: 0 0 8px; letter-spacing: -0.01em; }
.ea-section .sub { font-size: 15.5px; color: rgba(255,255,255,0.6); margin: 0 0 28px; max-width: 680px; }

/* Stats strip */
.ea-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: 14px; padding: 24px; margin-bottom: 32px;
}
.ea-stats .stat-label { font-size: 11.5px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.ea-stats .stat-value { font-size: 26px; font-weight: 700; color: #fff; line-height: 1.1; }
.ea-stats .stat-value span { color: var(--green-accent); }
.ea-stats .stat-sub { font-size: 12.5px; color: rgba(255,255,255,0.5); margin-top: 4px; }
@media (max-width: 900px) { .ea-stats { grid-template-columns: repeat(2, 1fr); } }

/* CTA banner */
.ea-cta-banner {
    background: linear-gradient(135deg, #14171d 0%, #1a1f29 100%);
    border: 1px solid rgba(163,230,53,0.2); border-radius: 16px;
    padding: 40px; display: flex; justify-content: space-between; align-items: center; gap: 24px;
    flex-wrap: wrap; margin: 40px 0;
}
.ea-cta-banner h3 { font-size: 22px; color: #fff; margin: 0 0 6px; font-weight: 700; }
.ea-cta-banner p { color: rgba(255,255,255,0.65); margin: 0; font-size: 14.5px; }
.ea-cta-actions { display: flex; gap: 10px; }

/* Form (used by contact + auth) */
.ea-form-card {
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 16px;
    padding: 32px; max-width: 520px;
}
.ea-form-row { margin-bottom: 16px; }
.ea-form-row label { display: block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.ea-form-row input, .ea-form-row textarea, .ea-form-row select {
    width: 100%; padding: 12px 14px; background: var(--bg-input, #0d1014);
    border: 1px solid var(--border-color); border-radius: 10px; color: #fff;
    font-size: 14px; font-family: inherit; transition: border-color 0.15s;
}
.ea-form-row input:focus, .ea-form-row textarea:focus, .ea-form-row select:focus {
    outline: none; border-color: var(--green-accent);
}
.ea-form-row textarea { resize: vertical; min-height: 120px; }
.ea-form-row .hint { display: block; font-size: 11.5px; color: rgba(255,255,255,0.45); margin-top: 6px; }
.ea-form-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 20px; border-radius: 10px;
    background: var(--green-accent); color: #0b0e11;
    border: none; font-weight: 700; font-size: 14px; cursor: pointer;
    text-decoration: none; font-family: inherit;
    transition: filter 0.12s, box-shadow 0.12s, transform 0.12s;
}
.btn-primary:hover { filter: brightness(1.06); box-shadow: 0 8px 20px -4px rgba(163,230,53,0.4); transform: translateY(-1px); }
.btn-secondary {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 20px; border-radius: 10px;
    background: transparent; color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.16); font-weight: 600; font-size: 14px; cursor: pointer;
    text-decoration: none; font-family: inherit;
    transition: all 0.12s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.32); color: #fff; }

/* Two-column layout for contact + auth */
.ea-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .ea-split { grid-template-columns: 1fr; gap: 32px; } }

/* Side info column */
.ea-info-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.ea-info-list li { display: flex; gap: 14px; }
.ea-info-list .icon {
    width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
    background: rgba(163,230,53,0.1); color: var(--green-accent);
    display: inline-flex; align-items: center; justify-content: center;
}
.ea-info-list h6 { font-size: 13.5px; font-weight: 600; color: #fff; margin: 0 0 4px; }
.ea-info-list p { font-size: 13.5px; color: rgba(255,255,255,0.6); margin: 0; line-height: 1.5; }
.ea-info-list a { color: rgba(255,255,255,0.85); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
.ea-info-list a:hover { color: var(--green-accent); border-bottom-color: var(--green-accent); }

/* ==========================================================
   EA-FOOTER — modern multi-column dark footer
   ========================================================== */
.ea-footer {
    background: #0a0c10;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 56px 24px 28px;
    margin-top: 64px;
    color: rgba(255,255,255,0.65);
}
.ea-footer-inner { max-width: var(--container-max, 1280px); margin: 0 auto; }
.ea-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.ea-footer-brand img { height: 32px; width: auto; margin-bottom: 14px; }
.ea-footer-brand p {
    font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,0.55);
    max-width: 320px; margin: 0 0 16px;
}
.ea-footer-socials { display: flex; gap: 8px; }
.ea-footer-socials a {
    width: 34px; height: 34px; border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7); transition: all 0.15s ease;
    text-decoration: none;
}
.ea-footer-socials a:hover { color: var(--green-accent, #a3e635); background: rgba(163,230,53,0.08); border-color: rgba(163,230,53,0.3); }
.ea-footer-col h6 {
    font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,0.95);
    text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 14px;
}
.ea-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.ea-footer-col a {
    color: rgba(255,255,255,0.55); font-size: 13.5px; text-decoration: none;
    transition: color 0.15s ease;
}
.ea-footer-col a:hover { color: var(--green-accent, #a3e635); }
.ea-footer-bottom {
    padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
    font-size: 12.5px; color: rgba(255,255,255,0.45);
}
.ea-footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: none; margin-right: 18px; }
.ea-footer-bottom a:hover { color: rgba(255,255,255,0.9); }
@media (max-width: 900px) {
    .ea-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .ea-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
    .ea-footer-grid { grid-template-columns: 1fr; }
    .ea-footer-bottom { flex-direction: column; align-items: flex-start; }
}
.logo-wrapper { display: flex; flex-direction: column; justify-content: center; }
.dark-mode-logo { display: inline !important; }
.light-mode-logo { display: none !important; }
.brand-text {
    font-size: 0.35rem;
    font-weight: 800;
    margin-top: 4px;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.7);
    max-width: 140px;
    line-height: 1.2;
}

/* ============================================
   AUTH LINKS
   ============================================ */
.auth-fixed {
    position: absolute;
    top: 32px;
    right: 40px;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 16px;
}
.auth-fixed .nav-link { color: rgba(255,255,255,0.8); font-weight: 500; font-size: 0.9rem; }
.auth-fixed .nav-link:hover { color: #fff; }
.btn-accent {
    background: var(--green-accent);
    color: var(--bg-dark);
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}
.btn-accent:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(163,230,53,0.3); }

/* ============================================
   PILL NAVBAR
   ============================================ */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; height: 80px; }
.nav-link { font-weight: 500; }
.nav-links { display: none; gap: 24px; font-weight: 500; }
.navbar.pill-nav {
    position: absolute; top: 24px; left: 50%; transform: translateX(-50%);
    width: auto; min-width: auto; max-width: 90%; height: 50px;
    background-color: rgba(1,29,33,0.85); border-radius: 100px; color: white;
    padding: 0 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    z-index: 1000; display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.06);
}
.navbar.pill-nav::before {
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(150px circle at var(--mouse-x,50%) var(--mouse-y,50%), rgba(163,230,53,0.15), transparent 50%);
    z-index: 0; pointer-events: none; border-radius: 100px; opacity: 0; transition: opacity 0.3s ease;
}
.navbar.pill-nav:hover::before { opacity: 1; }
.navbar.pill-nav > * { position: relative; z-index: 1; }
.navbar.pill-nav .nav-links { display: flex; gap: 24px; font-size: 0.9rem; font-weight: 500; }
.navbar.pill-nav .nav-links a { color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 4px; text-decoration: none; }
.navbar.pill-nav .nav-links a:hover { color: #fff; }

/* ============================================
   MEGA MENU
   ============================================ */
.nav-item.dropdown { position: static; }
.mega-menu {
    position: absolute; top: 70px; left: 50%; transform: translateX(-50%) translateY(10px);
    width: 90vw; max-width: 980px; background: #fff; border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3); padding: 0;
    opacity: 0; visibility: hidden; transition: all 0.2s ease; z-index: 1200;
    color: #050c26; display: grid; grid-template-columns: 1fr 1fr 1.6fr;
    gap: 0; text-align: left; cursor: default; overflow: hidden;
}
.mm-left-columns { display: grid; grid-template-columns: 1fr 1fr; grid-column: 1 / 3; gap: 40px; padding: 40px 0 40px 40px; }
.mm-right-panel { background: #fcfcfc; padding: 40px; grid-column: 3; }
.nav-item.dropdown:hover .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mm-column h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; color: #8890a0; margin-bottom: 16px; letter-spacing: 0.5px; }
.mm-list { list-style: none; padding: 0; margin: 0; }
.mm-list li { margin-bottom: 12px; }
.mm-list a { display: block; color: #050c26 !important; font-size: 15px; font-weight: 400; text-decoration: none; transition: color 0.15s; }
.mm-list a:hover { color: #4f46e5 !important; background: none !important; }
.nav-link.dropdown-toggle { cursor: default; display: flex; align-items: center; gap: 4px; color: rgba(255,255,255,0.85); font-weight: 500; }
.nav-link.dropdown-toggle:hover { color: #fff; }
.nav-item.dropdown:hover .dropdown-toggle i { transform: rotate(180deg); }
.mm-card { display: flex; align-items: flex-start; gap: 24px; padding: 16px; border-radius: 8px; transition: background 0.1s; cursor: pointer; text-decoration: none !important; margin-bottom: 24px; }
.mm-card:hover { background: transparent; }
.mm-icon { width: 80px; height: 80px; background: #051b22; border-radius: 4px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.mm-icon img { width: 60px !important; height: 60px !important; object-fit: contain; }
.mm-content h5 { margin: 0 0 8px; font-size: 17px; font-weight: 500; color: #050c26; letter-spacing: -0.3px; }
.mm-content p { margin: 0; font-size: 15px; color: #5e6d8a; line-height: 1.5; font-weight: 400; }

/* ============================================
   MOBILE MENU BTN
   ============================================ */
.mobile-menu-btn { display: block; background: none; border: none; cursor: pointer; color: var(--text-white); }
.mobile-nav-overlay { display: none; }
@media (min-width: 769px) {
    .nav-links { display: flex; }
    .mobile-menu-btn { display: none; }
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
@media (max-width: 768px) {
    .logo-fixed { top: 20px; left: 20px; position: absolute; }
    .auth-fixed { display: none; }
    .navbar.pill-nav { display: none; }
    .mobile-menu-btn { position: absolute; top: 20px; right: 20px; z-index: 1100; }
    .mobile-nav-overlay {
        position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
        background: #fff; z-index: 2000;
        transform: translateX(100%); transition: transform 0.3s ease;
        display: flex; flex-direction: column;
    }
    .mobile-nav-overlay.open { transform: translateX(0); }
    .mobile-nav-overlay ul { list-style: none; }
    .mobile-nav-overlay ul li { margin-bottom: 0; }
    .mobile-nav-overlay ul li a { font-size: 1.1rem; font-weight: 500; color: #333; }
    .mobile-nav-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid #eee; }
    .mobile-close-btn { font-size: 1.5rem; color: #666; padding: 8px; background: none; border: none; cursor: pointer; }
    .mobile-nav-content { flex: 1; display: flex; flex-direction: column; overflow-y: auto; }
    .mobile-nav-list { padding: 0; margin: 0; width: 100%; }
    .mobile-nav-list li { border-bottom: 1px solid #f5f5f5; }
    .mobile-nav-list li a { display: flex; justify-content: space-between; align-items: center; padding: 24px; text-decoration: none; }
    .mobile-nav-list li a i { color: #ccc; font-size: 0.9rem; }
    .mobile-nav-footer { padding: 24px; margin-top: auto; border-top: 1px solid #eee; display: flex; flex-direction: column; gap: 16px; }
    .mobile-nav-footer .btn { width: 100%; text-align: center; padding: 14px; border-radius: 8px; font-weight: 600; font-size: 1rem; }
    .mobile-nav-footer .btn-primary { background: #000; color: #fff; border: 1px solid #000; }
    .mobile-nav-footer .btn-secondary { background: #f5f5f5; color: #333; border: none; }
}

/* ============================================
   MOBILE SUBMENU
   ============================================ */
.mobile-submenu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #fff; z-index: 2005;
    transform: translateX(100%); transition: transform 0.3s ease-in-out;
    display: flex; flex-direction: column; overflow-y: auto;
}
.mobile-submenu.active { transform: translateX(0); }
.submenu-header { padding: 24px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(0,0,0,0.05); background: white; position: sticky; top: 0; z-index: 10; }
.submenu-back-btn { background: none; border: none; font-size: 18px; font-weight: 500; color: #050c26; display: flex; align-items: center; gap: 12px; cursor: pointer; }
.mobile-close-btn-sub { background: none; border: none; font-size: 24px; color: #050c26; cursor: pointer; }
.submenu-content { padding: 24px; flex: 1; }
.submenu-section { margin-bottom: 40px; }
.submenu-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(0,29,33,0.5); margin-bottom: 24px; display: block; }
.submenu-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px; }
.submenu-list li a { font-size: 18px; font-weight: 400; color: #050c26; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.beta-badge { font-size: 10px; background: #F3F4F6; padding: 4px 8px; border-radius: 4px; color: #6B7280; font-weight: 500; text-transform: uppercase; }
.product-suites-box { background: #F9FAFB; border-radius: 12px; padding: 24px; margin: 0 -12px 40px; }
.suite-card { display: flex; gap: 16px; margin-bottom: 24px; text-decoration: none; color: inherit; }
.suite-card:last-child { margin-bottom: 0; }
.suite-icon { width: 48px; height: 48px; background: #0C1618; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.suite-info h4 { font-size: 16px; font-weight: 500; margin: 0 0 4px; color: #111827; }
.suite-info p { font-size: 14px; color: #6B7280; margin: 0; line-height: 1.4; }
.submenu-btn-group { display: flex; flex-direction: column; gap: 12px; }
.btn-lavender { background: #BBBBEE; color: #000; border: none; padding: 16px; border-radius: 8px; font-weight: 500; text-align: center; text-decoration: none; display: block; }
.btn-gray-light { background: #E5E7EB; color: #1F2937; border: none; padding: 16px; border-radius: 8px; font-weight: 500; text-align: center; text-decoration: none; display: block; }

/* ============================================
   HERO SECTION (LANDING)
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-dark);
}
.hero::before {
    content: "";
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(0,99,65,0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 30%, rgba(163,230,53,0.08) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
    0% { transform: translate(0,0) rotate(0); }
    100% { transform: translate(2%,1%) rotate(1deg); }
}
.hero-inner {
    position: relative; z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 160px 32px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}
.hero-content { display: flex; flex-direction: column; gap: 28px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; width: fit-content;
    background: rgba(163,230,53,0.1);
    border: 1px solid rgba(163,230,53,0.25);
    border-radius: 100px; font-size: 13px; font-weight: 600;
    color: var(--green-accent); letter-spacing: 0.3px;
}
.hero-badge svg { flex-shrink: 0; }
.hero h1 {
    font-size: 52px; font-weight: 700; line-height: 1.1;
    color: var(--text-white); letter-spacing: -1.5px;
}
.hero h1 span { color: var(--green-accent); }
.hero-subtitle {
    font-size: 18px; color: var(--text-muted); line-height: 1.7; max-width: 500px;
}
.hero-actions { display: flex; gap: 16px; margin-top: 8px; }
.btn-primary-lg {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; font-size: 16px; font-weight: 600;
    color: var(--bg-dark); background: var(--green-accent);
    border-radius: 10px; transition: var(--transition);
}
.btn-primary-lg:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(163,230,53,0.25); }
.btn-outline-lg {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; font-size: 16px; font-weight: 600;
    color: var(--text-white); background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px; transition: var(--transition);
}
.btn-outline-lg:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.hero-visual {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    overflow: hidden;
}
.hero-visual::before {
    content: "";
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,99,65,0.05), rgba(163,230,53,0.03));
    pointer-events: none;
}

/* Ticker strip inside hero */
.mini-ticker { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.ticker-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 16px; background: rgba(255,255,255,0.03);
    border-radius: 8px; border: 1px solid var(--border-color);
    transition: var(--transition);
}
.ticker-row:hover { background: rgba(255,255,255,0.06); border-color: var(--border-hover); }
.ticker-pair { display: flex; align-items: center; gap: 10px; }
.ticker-pair .pair-icon {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
}
.pair-icon.elec { background: rgba(250,204,21,0.15); color: #facc15; }
.pair-icon.gas { background: rgba(59,130,246,0.15); color: #3b82f6; }
.pair-icon.carbon { background: rgba(34,197,94,0.15); color: #22c55e; }
.ticker-pair .pair-name { font-weight: 600; font-size: 14px; }
.ticker-pair .pair-label { font-size: 12px; color: var(--text-dim); }
.ticker-price { text-align: right; }
.ticker-price .price { font-weight: 700; font-size: 16px; }
.ticker-price .change { font-size: 12px; font-weight: 600; }
.change.up { color: var(--green-accent); }
.change.down { color: var(--red); }

@media (max-width: 768px) {
    .hero-inner { grid-template-columns: 1fr; padding: 120px 24px 60px; gap: 40px; }
    .hero h1 { font-size: 34px; }
    .hero-subtitle { font-size: 16px; }
    .hero-actions { flex-direction: column; }
    .btn-primary-lg, .btn-outline-lg { width: 100%; justify-content: center; }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 32px 20px;
}
.stats-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.stat-item { text-align: center; }
.stat-value {
    font-size: 32px; font-weight: 700; color: var(--text-white);
    font-family: var(--font-display);
}
.stat-value span { color: var(--green-accent); }
.stat-label { font-size: 14px; color: var(--text-dim); margin-top: 4px; }
@media (max-width: 768px) {
    .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-value { font-size: 24px; }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 100px 20px;
    background: var(--bg-dark);
}
.features-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}
.features-header .section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--green-accent);
    letter-spacing: 0.5px; text-transform: uppercase;
    margin-bottom: 20px;
}
.features-header h2 {
    font-size: 40px; font-weight: 700; color: var(--text-white);
    margin-bottom: 16px;
}
.features-header p { font-size: 17px; color: var(--text-muted); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--container-max);
    margin: 0 auto;
}
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: var(--transition);
}
.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.feature-icon {
    width: 56px; height: 56px;
    background: rgba(163,230,53,0.1);
    border: 1px solid rgba(163,230,53,0.2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    color: var(--green-accent);
}
.feature-card h3 {
    font-size: 20px; font-weight: 600;
    color: var(--text-white); margin-bottom: 12px;
}
.feature-card p {
    font-size: 15px; color: var(--text-muted); line-height: 1.7;
}
@media (max-width: 768px) {
    .features-grid { 
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 24px;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .features-grid::-webkit-scrollbar {
        display: none;
    }
    .feature-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
    .features-header h2 { font-size: 28px; }
    .features-section { padding: 60px 20px; }
}

/* ============================================
   ASSET CATEGORIES
   ============================================ */
.assets-section {
    padding: 100px 20px;
    background: var(--bg-darker);
}
.assets-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}
.assets-header .section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--green-accent);
    letter-spacing: 0.5px; text-transform: uppercase;
    margin-bottom: 20px;
}
.assets-header h2 { font-size: 40px; font-weight: 700; color: var(--text-white); margin-bottom: 16px; }
.assets-header p { font-size: 17px; color: var(--text-muted); }
.assets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--container-max);
    margin: 0 auto;
}
.asset-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.asset-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.asset-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.asset-card-body { padding: 28px 24px; }
.asset-card-body h3 { font-size: 22px; font-weight: 600; color: var(--text-white); margin-bottom: 10px; }
.asset-card-body p { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.asset-card-meta { display: flex; justify-content: space-between; align-items: center; }
.asset-card-meta .meta-price { font-size: 18px; font-weight: 700; color: var(--green-accent); }
.asset-card-meta .meta-vol { font-size: 13px; color: var(--text-dim); }
.asset-card-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--green-accent); font-size: 14px; font-weight: 600;
    margin-top: 16px;
}
.asset-card-link:hover { gap: 10px; }
@media (max-width: 768px) {
    .assets-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 24px;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .assets-grid::-webkit-scrollbar {
        display: none;
    }
    .asset-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
    .assets-header h2 { font-size: 28px; }
    .assets-section { padding: 60px 20px; }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section {
    padding: 100px 20px;
    background: var(--bg-dark);
}
.how-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}
.how-header .section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--green-accent);
    letter-spacing: 0.5px; text-transform: uppercase;
    margin-bottom: 20px;
}
.how-header h2 { font-size: 40px; font-weight: 700; color: var(--text-white); margin-bottom: 16px; }
.how-header p { font-size: 17px; color: var(--text-muted); }
.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: var(--container-max);
    margin: 0 auto;
}
.how-step {
    text-align: center;
    padding: 32px 20px;
    position: relative;
}
.how-step-num {
    width: 48px; height: 48px;
    background: rgba(163,230,53,0.1);
    border: 1px solid rgba(163,230,53,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 700;
    color: var(--green-accent);
    margin: 0 auto 20px;
}
.how-step h3 { font-size: 18px; font-weight: 600; color: var(--text-white); margin-bottom: 10px; }
.how-step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.how-step-icon {
    width: 64px; height: 64px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    color: var(--green-accent);
}
@media (max-width: 768px) {
    .how-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 24px;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .how-grid::-webkit-scrollbar {
        display: none;
    }
    .how-step {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
    .how-header h2 { font-size: 28px; }
    .how-section { padding: 60px 20px; }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-bright) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: "";
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(163,230,53,0.15) 0%, transparent 60%);
    pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-section h2 { font-size: 42px; font-weight: 700; color: #fff; margin-bottom: 20px; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 36px; }
.btn-cta-white {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px; font-size: 16px; font-weight: 600;
    color: var(--green-primary); background: #fff;
    border-radius: 10px; transition: var(--transition);
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
@media (max-width: 768px) {
    .cta-section h2 { font-size: 28px; }
    .cta-section p { font-size: 16px; }
    .cta-section { padding: 60px 20px; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--bg-darker);
    padding: 60px 20px 40px;
    border-top: 1px solid var(--border-color);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: var(--container-max);
    margin: 0 auto;
}
.footer-col h4 { color: var(--text-white); font-weight: 600; margin-bottom: 20px; font-size: 15px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: var(--text-dim); font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--text-white); }
.footer-bottom {
    max-width: var(--container-max);
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-dim);
    font-size: 13px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
