/* =============================================
   MAH VENTURES — SHARED STYLESHEET
   Clean, professional, Rocket Internet-inspired
   ============================================= */

/* ── TOKENS ────────────────────────────────── */
:root {
  --white:   #ffffff;
  --bg:      #fafafa;
  --text:    #0d0d0d;
  --muted:   #757575;
  --light:   #f0f0f0;
  --border:  #e0e0e0;
  --accent:  #0d0d0d;
  --green:   #1a7a4a;
  --nav-h:   72px;
  --max-w:   1200px;
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { background: var(--white); color: var(--text); font-family: 'Inter', sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
input, textarea, select, button { font-family: inherit; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--border); }

/* ── FONTS ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── UTILITY ───────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }
.divider { width: 100%; height: 1px; background: var(--border); }
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--muted);
}
.tag.built   { border-color: #1a7a4a; color: #1a7a4a; background: #f0faf5; }
.tag.invested{ border-color: #1a4a7a; color: #1a4a7a; background: #f0f5fa; }
.tag.open    { border-color: #1a7a4a; color: #1a7a4a; background: #f0faf5; }

/* ── NAVIGATION ────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) { .nav-inner { padding: 0 20px; } }
.nav-logo {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  flex-shrink: 0;
}
.nav-logo:hover { color: var(--muted); }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
@media (max-width: 900px) { .nav-links { display: none; } }
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); border-bottom-color: var(--text); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: 0.3s; }
@media (max-width: 900px) { .nav-hamburger { display: flex; } }

/* Mobile menu */
#mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 40px;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid var(--border);
}
#mobile-nav.open { display: flex; }
#mobile-nav a {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

/* ── PAGE WRAPPER ──────────────────────────── */
main { padding-top: var(--nav-h); min-height: 80vh; }

/* ── PAGE HEADER ───────────────────────────── */
.page-header {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
}
.page-header .eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-header .eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--muted);
}
.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 720px;
  margin-bottom: 20px;
}
.page-header .subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── BREADCRUMB ────────────────────────────── */
.breadcrumb {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb .sep { color: var(--border); }

/* ── HERO (Homepage) ───────────────────────── */
#hero {
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--border);
}
.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-label::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--muted);
}
.hero-headline {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  max-width: 860px;
  margin-bottom: 36px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
}
.btn-dark { background: var(--text); color: var(--white); border: 1px solid var(--text); }
.btn-dark:hover { background: #333; border-color: #333; }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--text); }

/* ── PILLARS ROW ───────────────────────────── */
.pillars-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 768px) { .pillars-row { grid-template-columns: 1fr; } }
.pillar-cell {
  padding: 44px 40px;
  border-right: 1px solid var(--border);
}
.pillar-cell:last-child { border-right: none; }
.pillar-num { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 14px; }
.pillar-title { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.03em; color: var(--text); margin-bottom: 14px; }
.pillar-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.pillar-link { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); text-decoration: none; border-bottom: 1px solid var(--text); padding-bottom: 1px; transition: opacity 0.2s; }
.pillar-link:hover { opacity: 0.6; }
@media (max-width: 768px) { .pillar-cell { border-right: none; border-bottom: 1px solid var(--border); } .pillar-cell:last-child { border-bottom: none; } }

/* ── STATS ROW (legacy) ────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 768px) { .stats-row { grid-template-columns: 1fr 1fr; } }
.stat-cell {
  padding: 36px 40px;
  border-right: 1px solid var(--border);
}
.stat-cell:last-child { border-right: none; }
@media (max-width: 768px) { .stat-cell:nth-child(2) { border-right: none; } }
.stat-cell .num {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-cell .lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── SECTION ───────────────────────────────── */
.section { padding: 80px 0; border-bottom: 1px solid var(--border); }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

/* ── TWO COL ───────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.three-col { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 768px) { .three-col { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .three-col { grid-template-columns: 1fr; } }

/* ── CARDS ─────────────────────────────────── */
.card {
  border: 1px solid var(--border);
  background: var(--white);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.07); border-color: #c0c0c0; }
.card-body { padding: 28px 32px; }
.card-img {
  height: 180px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border-bottom: 1px solid var(--border);
}

/* ── PORTFOLIO LIST ────────────────────────── */
.port-list { display: flex; flex-direction: column; }
.port-row {
  display: grid;
  grid-template-columns: 60px 1fr auto auto auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.port-row:first-child { border-top: 1px solid var(--border); }
.port-row:hover { background: var(--bg); }
@media (max-width: 768px) {
  .port-row { grid-template-columns: 1fr auto auto; }
  .port-num, .port-tags-cell { display: none; }
}
.port-num { font-size: 12px; color: var(--muted); font-weight: 600; }
.port-info {}
.port-name { font-size: 1rem; font-weight: 700; margin-bottom: 3px; }
.port-desc { font-size: 12px; color: var(--muted); }
.port-tags-cell { display: flex; gap: 6px; flex-wrap: wrap; }
.port-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: color 0.2s;
}
.port-link:hover { color: var(--text); }

/* ── JOB LIST ──────────────────────────────── */
.job-list { display: flex; flex-direction: column; }
.job-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  cursor: pointer;
}
.job-row:first-child { border-top: 1px solid var(--border); }
.job-row:hover { background: var(--bg); }
.job-row:hover .job-title { text-decoration: underline; }
@media (max-width: 768px) { .job-row { grid-template-columns: 1fr auto; } .job-location, .job-type { display: none; } }
.job-title { font-size: 0.95rem; font-weight: 600; margin-bottom: 3px; }
.job-dept { font-size: 12px; color: var(--muted); }
.job-location, .job-type {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}
.job-arrow { font-size: 1rem; color: var(--muted); transition: transform 0.2s; }
.job-row:hover .job-arrow { transform: translateX(4px); }

/* ── ARTICLE LIST ──────────────────────────── */
.article-list { display: flex; flex-direction: column; }
.article-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  cursor: pointer;
}
.article-row:first-child { border-top: 1px solid var(--border); }
.article-row:hover .article-title { text-decoration: underline; }
.article-meta { font-size: 12px; color: var(--muted); margin-bottom: 10px; display: flex; gap: 12px; align-items: center; }
.article-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; line-height: 1.35; }
.article-excerpt { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
.article-date { font-size: 12px; color: var(--muted); white-space: nowrap; padding-top: 4px; }

/* ── JOB DETAIL PAGE ───────────────────────── */
.job-detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
  padding: 64px 0;
}
@media (max-width: 900px) { .job-detail-grid { grid-template-columns: 1fr; } }
.job-body h2 { font-size: 1.2rem; font-weight: 700; margin: 32px 0 12px; }
.job-body h2:first-child { margin-top: 0; }
.job-body p { font-size: 0.92rem; color: #333; line-height: 1.75; margin-bottom: 14px; }
.job-body ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.job-body ul li {
  font-size: 0.92rem;
  color: #333;
  line-height: 1.65;
  padding-left: 16px;
  position: relative;
}
.job-body ul li::before { content: '—'; position: absolute; left: 0; color: var(--muted); }
.job-sidebar {}
.job-sidebar-card {
  border: 1px solid var(--border);
  padding: 28px;
  margin-bottom: 16px;
}
.job-sidebar-card h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.job-meta-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.job-meta-row:last-child { border-bottom: none; }
.job-meta-key { color: var(--muted); }
.job-meta-val { font-weight: 600; }

/* ── ARTICLE DETAIL ────────────────────────── */
.article-tag-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-top: 16px; }
.article-date-label { font-size: 12px; color: var(--muted); }
.article-headline { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1.15; margin-bottom: 20px; }
@media (max-width: 768px) { .article-headline { font-size: 1.8rem; } }
.article-deck { font-size: 1.1rem; color: var(--muted); line-height: 1.65; margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.article-detail-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 80px;
  padding: 64px 0;
  align-items: start;
}
@media (max-width: 900px) { .article-detail-grid { grid-template-columns: 1fr; gap: 40px; } }
.article-content h2 { font-size: 1.3rem; font-weight: 700; margin: 36px 0 14px; letter-spacing: -0.01em; }
.article-content p { font-size: 0.95rem; line-height: 1.8; color: #2a2a2a; margin-bottom: 20px; }
.article-content ul { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.article-content ul li { font-size: 0.95rem; line-height: 1.7; color: #2a2a2a; padding-left: 18px; position: relative; }
.article-content ul li::before { content: '→'; position: absolute; left: 0; color: var(--muted); font-size: 0.85rem; }
.article-sidebar {}
.article-sidebar-box { border: 1px solid var(--border); padding: 24px; margin-bottom: 16px; }
.article-sidebar-box h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.article-sidebar-box p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }

/* ── FORMS ─────────────────────────────────── */
.form-section { padding: 64px 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 768px) { .form-grid { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 12px 14px;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 1px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--text); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--text);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
  border-radius: 1px;
}
.form-submit:hover { background: #333; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 12px; line-height: 1.6; }

/* ── COMPANY DETAIL ────────────────────────── */
.company-header {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.company-logo-box {
  width: 80px; height: 80px;
  background: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.company-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  padding: 64px 0;
  align-items: start;
}
@media (max-width: 900px) { .company-grid { grid-template-columns: 1fr; gap: 40px; } }
.company-body p { font-size: 0.95rem; color: #2a2a2a; line-height: 1.8; margin-bottom: 20px; }
.company-body h2 { font-size: 1.15rem; font-weight: 700; margin: 32px 0 12px; }
.company-body ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.company-body ul li { font-size: 0.92rem; color: #333; line-height: 1.65; padding-left: 16px; position: relative; }
.company-body ul li::before { content: '—'; position: absolute; left: 0; color: var(--muted); }
.company-sidebar-box { border: 1px solid var(--border); padding: 28px; margin-bottom: 16px; }
.company-sidebar-box h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.company-meta-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.company-meta-row:last-child { border-bottom: none; }
.company-meta-key { color: var(--muted); }
.company-meta-val { font-weight: 600; }

/* ── CONTACT PAGE ──────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 64px 0;
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-info h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 20px; letter-spacing: -0.01em; }
.contact-info p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; margin-bottom: 32px; }
.contact-detail { display: flex; flex-direction: column; gap: 16px; }
.cd { display: flex; gap: 12px; align-items: flex-start; }
.cd-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); min-width: 80px; padding-top: 2px; }
.cd-val { font-size: 0.88rem; color: var(--text); line-height: 1.5; }

/* ── LEGAL PAGES ───────────────────────────── */
.legal-content, .legal-block { max-width: 720px; padding: 64px 0 100px; }
.legal-content h2, .legal-block h2 { font-size: 1.1rem; font-weight: 700; margin: 36px 0 12px; }
.legal-content h3, .legal-block h3 { font-size: 0.95rem; font-weight: 700; margin: 24px 0 8px; color: #333; }
.legal-content p, .legal-block p { font-size: 0.9rem; line-height: 1.8; color: #333; margin-bottom: 14px; }
.legal-content ul, .legal-block ul { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.legal-content ul li, .legal-block ul li { font-size: 0.9rem; color: #333; padding-left: 16px; position: relative; }
.legal-content ul li::before, .legal-block ul li::before { content: '·'; position: absolute; left: 0; }
.legal-block h2:first-child { margin-top: 0; }

/* ── FEATURED SECTION ──────────────────────── */
.feature-box {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 48px;
}
@media (max-width: 768px) { .feature-box { padding: 32px 24px; } }

/* ── FOOTER ────────────────────────────────── */
footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 580px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .nav-logo { margin-bottom: 14px; display: block; }
.footer-brand p { font-size: 0.84rem; color: var(--muted); line-height: 1.7; max-width: 260px; }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.84rem; color: var(--muted); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: var(--muted); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--text); }

/* ── RESPONSIVE MISC ───────────────────────── */
@media (max-width: 768px) {
  .page-header { padding: 48px 0 40px; }
  .section { padding: 56px 0; }
  #hero { padding: 64px 0 56px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  footer { padding: 48px 0 24px; }
}

/* ── FILTER TABS ───────────────────────────── */
.filter-row {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.filter-tab {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 20px;
  cursor: pointer;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: none;
  border-left: none;
  border-top: none;
  border-right: none;
  transition: color 0.2s;
}
.filter-tab:hover { color: var(--text); }
.filter-tab.on { color: var(--text); border-bottom-color: var(--text); }

/* ── TOAST ─────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--text);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 20px;
  z-index: 9999;
  transform: translateY(60px);
  opacity: 0;
  transition: all 0.35s var(--ease);
}
.toast.show { transform: translateY(0); opacity: 1; }
