/* ============================================================
   DATAbanks.asia — Stylesheet
   Brand: Teal-to-Mint gradient (from logo)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=DM+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ─── VARIABLES ──────────────────────────────────────────── */
:root {
    --teal:        #1A8C8C;
    --teal-dark:   #14706F;
    --teal-deep:   #0E5555;
    --mint:        #3DBB91;
    --mint-light:  #58D4A8;
    --green:       #4CC9A2;
    --gradient:    linear-gradient(135deg, #1A8C8C 0%, #2BA88F 50%, #4CC9A2 100%);
    --gradient-h:  linear-gradient(90deg, #1A8C8C 0%, #2BA88F 50%, #4CC9A2 100%);
    --gradient-soft: linear-gradient(135deg, rgba(26,140,140,0.08) 0%, rgba(76,201,162,0.08) 100%);

    --bg:          #FAFCFB;
    --white:       #FFFFFF;
    --surface:     #FFFFFF;
    --surface2:    #F4F8F6;
    --surface3:    #EDF2EF;
    --border:      #DDE8E2;
    --border2:     #C5D5CC;

    --text:        #1A2B23;
    --text2:       #3D5549;
    --text3:       #6B8577;
    --text4:       #94ADA1;

    --red:         #D4574E;
    --amber:       #D4963C;
    --blue:        #4A8FBF;

    --serif:       'Playfair Display', Georgia, serif;
    --sans:        'DM Sans', system-ui, sans-serif;
    --mono:        'JetBrains Mono', monospace;

    --shadow-sm:   0 1px 3px rgba(26,140,140,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md:   0 4px 16px rgba(26,140,140,0.08), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-lg:   0 12px 40px rgba(26,140,140,0.10), 0 4px 12px rgba(0,0,0,0.05);

    --ease:        cubic-bezier(0.22, 1, 0.36, 1);
    --radius:      12px;
    --radius-sm:   8px;
    --radius-lg:   16px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--teal-dark); }

img { max-width: 100%; display: block; }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes slideRight {
    from { opacity: 0; transform: translateX(-16px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

.fade-up {
    animation: fadeUp 0.7s var(--ease) both;
}
.fade-up-1 { animation-delay: 0.08s; }
.fade-up-2 { animation-delay: 0.16s; }
.fade-up-3 { animation-delay: 0.24s; }
.fade-up-4 { animation-delay: 0.32s; }
.fade-up-5 { animation-delay: 0.40s; }

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 22px;
    width: auto;
}

.logo-text {
    font-family: var(--sans);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-data {
    background: var(--gradient-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-banks {
    color: var(--mint);
}

.logo-tld {
    color: var(--text4);
    font-size: 14px;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--text3);
    transition: all 0.25s var(--ease);
}

.nav-links a:hover {
    background: var(--gradient-soft);
    color: var(--teal);
}

.nav-links a.active {
    background: var(--gradient-soft);
    color: var(--teal);
    font-weight: 600;
}

.nav-links a svg {
    width: 16px;
    height: 16px;
    stroke-width: 1.8;
}

/* Mobile hamburger */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text2);
    padding: 8px;
}

@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 68px; left: 0; right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 12px 24px;
    }
    .nav-links.open { display: flex; }
    .navbar-inner { padding: 0 20px; }
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
    position: relative;
    overflow: hidden;
    padding: 80px 32px 64px;
    background: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 10% 20%, rgba(26,140,140,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 500px 500px at 80% 80%, rgba(76,201,162,0.06) 0%, transparent 70%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(var(--teal) 1px, transparent 1px),
        linear-gradient(90deg, var(--teal) 1px, transparent 1px);
    background-size: 70px 70px;
}

.hero-inner {
    max-width: 1260px;
    margin: 0 auto;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 24px;
    background: var(--gradient-soft);
    border: 1px solid rgba(26,140,140,0.15);
    font-size: 12px;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text);
    max-width: 640px;
    margin-bottom: 20px;
}

.hero h1 .highlight {
    background: var(--gradient-h);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    color: var(--text3);
    font-size: 17px;
    max-width: 520px;
    line-height: 1.65;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    text-decoration: none;
}

.btn svg {
    width: 16px;
    height: 16px;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 14px rgba(26,140,140,0.25);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26,140,140,0.35);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--text2);
    border: 1px solid var(--border2);
}

.btn-outline:hover {
    border-color: var(--teal);
    color: var(--teal);
    background: var(--gradient-soft);
}

.btn-sm {
    padding: 7px 16px;
    font-size: 13px;
    border-radius: 6px;
}

/* ─── STAT CARDS ─────────────────────────────────────────── */
.stats-row {
    max-width: 1260px;
    margin: -28px auto 0;
    padding: 0 32px;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 22px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
}

.stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gradient);
}

.stat-card.teal::before   { background: var(--teal); }
.stat-card.mint::before   { background: var(--mint); }
.stat-card.green::before  { background: var(--green); }
.stat-card.blue::before   { background: var(--blue); }

.stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.stat-value {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.stat-value.c-teal  { color: var(--teal); }
.stat-value.c-mint  { color: var(--mint); }
.stat-value.c-green { color: var(--green); }
.stat-value.c-blue  { color: var(--blue); }

.stat-sub {
    font-size: 12px;
    color: var(--text4);
    margin-top: 4px;
}

/* ─── SECTION ────────────────────────────────────────────── */
.section {
    max-width: 1260px;
    margin: 0 auto;
    padding: 56px 32px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 12px;
}

.section-title {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text4);
    margin-top: 4px;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
}

.section-link:hover {
    gap: 8px;
}

/* ─── FILTER BAR ─────────────────────────────────────────── */
.filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 28px;
}

.filter-btn {
    padding: 7px 18px;
    border-radius: 24px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text3);
    cursor: pointer;
    transition: all 0.2s var(--ease);
}

.filter-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.filter-btn.active {
    background: var(--gradient-soft);
    border-color: var(--teal);
    color: var(--teal);
    font-weight: 600;
}

.filter-select {
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text2);
    font-family: var(--sans);
    font-size: 13px;
    cursor: pointer;
}

.search-input {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    flex: 1;
    max-width: 360px;
    transition: border-color 0.2s;
}

.search-input:focus-within {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(26,140,140,0.08);
}

.search-input input {
    border: none;
    outline: none;
    background: none;
    font-family: var(--sans);
    font-size: 13px;
    color: var(--text);
    width: 100%;
}

.search-input input::placeholder { color: var(--text4); }

.search-input svg {
    width: 16px; height: 16px;
    color: var(--text4);
    flex-shrink: 0;
}

/* ─── DISTRICT CARDS ─────────────────────────────────────── */
.district-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.district-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: all 0.3s var(--ease);
    text-decoration: none;
    color: inherit;
    display: block;
}

.district-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    color: inherit;
}

.district-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.district-code {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
}

.district-card h3 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 3px;
}

.district-card .area-name {
    font-size: 12px;
    color: var(--text4);
    line-height: 1.35;
    margin-bottom: 14px;
    min-height: 32px;
}

.district-psf {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text3);
    margin-bottom: 8px;
}

.district-psf .val {
    font-family: var(--mono);
    font-weight: 600;
    color: var(--teal);
}

.psf-bar {
    width: 100%;
    height: 4px;
    background: var(--surface3);
    border-radius: 2px;
    overflow: hidden;
}

.psf-bar-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 2px;
    transition: width 0.8s var(--ease);
}

.district-meta {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    font-size: 11px;
    color: var(--text4);
}

/* ─── BADGE ──────────────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.badge-teal    { background: rgba(26,140,140,0.10);  color: var(--teal); }
.badge-mint    { background: rgba(61,187,145,0.10);   color: var(--mint); }
.badge-green   { background: rgba(76,201,162,0.10);   color: var(--green); }
.badge-blue    { background: rgba(74,143,191,0.10);    color: var(--blue); }
.badge-amber   { background: rgba(212,150,60,0.10);    color: var(--amber); }
.badge-red     { background: rgba(212,87,78,0.10);     color: var(--red); }
.badge-region  { background: rgba(26,140,140,0.08);    color: var(--teal-dark); }

/* ─── PROPERTY CARDS ─────────────────────────────────────── */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.property-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s var(--ease);
}

.property-card:hover {
    border-color: var(--border2);
    box-shadow: var(--shadow-md);
}

.property-card-bar {
    height: 4px;
    background: var(--gradient);
}

.property-card-bar.hotel  { background: var(--blue); }
.property-card-bar.hdb    { background: var(--mint); }

.property-card-body {
    padding: 22px 24px;
}

.property-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
    gap: 12px;
}

.property-card h3 {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.property-card .address {
    font-size: 12px;
    color: var(--text4);
    margin-top: 3px;
}

.property-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    background: var(--surface2);
    border-radius: var(--radius-sm);
    padding: 12px;
    margin-bottom: 14px;
}

.property-info-grid .label {
    font-size: 10px;
    color: var(--text4);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.property-info-grid .value {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-top: 2px;
}

.property-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text4);
}

.property-psf {
    font-family: var(--mono);
    font-weight: 600;
    color: var(--teal);
}

.facility-tags {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.facility-tag {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    background: var(--surface3);
    color: var(--text3);
}

.property-agent-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text3);
}

.property-agent-row svg {
    width: 14px;
    height: 14px;
}

/* ─── AGENT CARDS ────────────────────────────────────────── */
.agent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
    gap: 20px;
}

.agent-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.3s var(--ease);
}

.agent-card:hover {
    border-color: var(--border2);
    box-shadow: var(--shadow-md);
}

.agent-card-top {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.agent-avatar {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: var(--gradient-soft);
    border: 1px solid rgba(26,140,140,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--teal);
    flex-shrink: 0;
}

.agent-name { font-size: 17px; font-weight: 600; }
.agent-agency { font-size: 12px; color: var(--text4); margin-top: 2px; }
.agent-cea { font-family: var(--mono); font-size: 11px; color: var(--text4); margin-top: 4px; }

.agent-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 18px;
    background: var(--surface2);
    border-radius: var(--radius-sm);
    padding: 12px;
}

.agent-stats-grid .label {
    font-size: 10px; color: var(--text4); text-transform: uppercase;
}

.agent-stats-grid .value {
    font-family: var(--mono); font-size: 15px; font-weight: 600;
    color: var(--teal); margin-top: 2px;
}

.agent-badges {
    display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px;
}

.agent-contact {
    display: flex; gap: 20px; margin-top: 16px; padding-top: 14px;
    border-top: 1px solid var(--border); font-size: 12px; color: var(--text3);
}

.agent-contact span {
    display: flex; align-items: center; gap: 5px;
}

.agent-contact svg { width: 13px; height: 13px; }

/* ─── TABLE ──────────────────────────────────────────────── */
.data-table-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.data-table-wrap .scroll { overflow-x: auto; }

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.data-table thead th {
    padding: 14px 18px;
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    color: var(--text4);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
    background: var(--surface2);
}

.data-table tbody td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.data-table tbody tr {
    transition: background 0.15s;
}

.data-table tbody tr:hover {
    background: var(--surface2);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.td-property { font-weight: 600; }
.td-code { font-family: var(--mono); font-size: 12px; color: var(--teal); }
.td-price { font-family: var(--mono); font-weight: 600; color: var(--teal); }
.td-mono { font-family: var(--mono); font-size: 12px; }
.td-muted { color: var(--text4); }

/* ─── DISTRICT DETAIL ────────────────────────────────────── */
.detail-hero {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 48px 32px;
}

.detail-hero-inner {
    max-width: 1260px; margin: 0 auto;
}

.breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--text4); margin-bottom: 20px;
}

.breadcrumb a { color: var(--teal); font-weight: 500; }
.breadcrumb .sep { color: var(--border2); }

.detail-stats {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px; margin-top: 28px;
}

.detail-stat {
    background: var(--surface2); border-radius: var(--radius-sm); padding: 14px 16px;
}

.detail-stat .label {
    font-size: 10px; color: var(--text4); text-transform: uppercase;
    letter-spacing: 0.06em; margin-bottom: 4px;
}

.detail-stat .value {
    font-family: var(--mono); font-size: 18px; font-weight: 600; color: var(--teal);
}

.postal-chips {
    display: flex; gap: 4px; flex-wrap: wrap; margin-top: 20px;
}

.postal-chip {
    font-family: var(--mono); font-size: 11px;
    background: var(--surface3); padding: 3px 10px;
    border-radius: 4px; color: var(--text3);
}

/* ─── SCHEMA BOX ─────────────────────────────────────────── */
.schema-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}

.schema-pre {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text3);
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    line-height: 1.7;
    white-space: pre;
    overflow: auto;
}

@media (max-width: 768px) {
    .schema-section { grid-template-columns: 1fr; }
    .property-grid { grid-template-columns: 1fr; }
    .agent-grid { grid-template-columns: 1fr; }
    .hero { padding: 48px 20px 40px; }
    .section { padding: 36px 20px; }
    .stats-row { padding: 0 20px; margin-top: -16px; }
    .detail-hero { padding: 32px 20px; }
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
    border-top: 1px solid var(--border);
    background: var(--white);
    padding: 44px 32px;
}

.footer-inner {
    max-width: 1260px; margin: 0 auto;
    display: flex; justify-content: space-between;
    align-items: flex-start; flex-wrap: wrap; gap: 24px;
}

.footer-desc {
    color: var(--text4); font-size: 12px;
    max-width: 380px; line-height: 1.6; margin-top: 10px;
}

.footer-col-title {
    font-weight: 600; color: var(--text3);
    font-size: 10px; text-transform: uppercase;
    letter-spacing: 0.08em; margin-bottom: 10px;
}

.footer-col a, .footer-col span {
    display: block; font-size: 13px;
    color: var(--text4); margin-bottom: 4px;
}

.footer-col a:hover { color: var(--teal); }

.footer-bottom {
    max-width: 1260px; margin: 20px auto 0;
    padding-top: 16px; border-top: 1px solid var(--border);
    font-size: 11px; color: var(--text4); text-align: center;
}

/* ─── EMPTY STATE ────────────────────────────────────────── */
.empty-state {
    text-align: center; padding: 60px 20px; color: var(--text4);
}

.empty-state svg { width: 48px; height: 48px; margin-bottom: 16px; opacity: 0.4; }
.empty-state p { font-size: 14px; }
