/* ─── RESET + ROOT ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #09090f;
  --surface:   #0f0f1a;
  --surface2:  #141424;
  --border:    #1e1e36;
  --border2:   #252540;
  --text:      #e2e2f0;
  --muted:     #606082;
  --muted2:    #3d3d5c;
  --accent:    #00d4aa;
  --accent-dim:rgba(0,212,170,.12);
  --blue:      #3b82f6;
  --yellow:    #f59e0b;
  --red:       #ef4444;
  --green:     #22c55e;
  --mono:      'JetBrains Mono', monospace;
  --sans:      'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Grid background */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,170,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,170,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0;
}

/* ─── NAV ───────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(9,9,15,.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center;
  padding: 0 2rem; height: 62px; gap: 1rem;
}
.logo {
  font-family: var(--mono); font-size: 1rem; font-weight: 700;
  color: var(--accent); text-decoration: none;
  display: flex; align-items: center; gap: 6px;
  flex-shrink: 0;
}
.logo-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.4;} }
.logo-bracket { color: var(--muted); }
.logo-white   { color: #fff; }
.nav-links {
  display: flex; list-style: none; gap: .15rem;
  margin-left: 1.5rem;
}
.nav-link {
  padding: .4rem .8rem; border-radius: 7px;
  font-size: .83rem; font-weight: 500;
  color: var(--muted); text-decoration: none; transition: all .18s;
}
.nav-link:hover, .nav-link.active {
  color: var(--text); background: var(--surface2);
}
.nav-right { margin-left: auto; display: flex; align-items: center; gap: .75rem; }
.live-badge {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--mono); font-size: .68rem; color: var(--accent);
  background: rgba(0,212,170,.08); border: 1px solid rgba(0,212,170,.18);
  padding: 4px 10px; border-radius: 6px;
}
.live-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); animation: pulse 1.5s infinite;
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative; z-index: 1;
  padding: 4.5rem 2rem 3.5rem;
  background: linear-gradient(180deg, #0d0d20 0%, var(--bg) 100%);
}
.hero-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: .72rem; color: var(--accent);
  background: rgba(0,212,170,.07); border: 1px solid rgba(0,212,170,.2);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 1.75rem;
  letter-spacing: .5px;
}
h1 {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08; letter-spacing: -1.5px;
  color: #fff; margin-bottom: 1.1rem;
}
.h1-green { color: var(--accent); text-shadow: 0 0 40px rgba(0,212,170,.3); }
.h1-blue  { color: var(--blue); }
.hero-sub {
  font-size: 1rem; color: var(--muted); max-width: 520px;
  margin: 0 auto 2.25rem; line-height: 1.75; font-weight: 300;
}

/* TERMINAL SEARCH */
.terminal-search {
  max-width: 700px; margin: 0 auto .85rem;
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 13px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,212,170,.06), 0 20px 60px rgba(0,0,0,.5);
}
.terminal-bar {
  display: flex; align-items: center; gap: 6px;
  padding: .65rem 1rem; background: var(--surface2);
  border-bottom: 1px solid var(--border);
}
.t-dot { width: 10px; height: 10px; border-radius: 50%; }
.t-dot.r { background: #ef4444; }
.t-dot.y { background: #f59e0b; }
.t-dot.g { background: #22c55e; }
.terminal-title {
  font-family: var(--mono); font-size: .68rem;
  color: var(--muted2); margin-left: auto;
}
.search-row {
  display: flex; align-items: center; padding: .2rem; gap: 0;
}
.search-field {
  flex: 1; display: flex; align-items: center;
  gap: 8px; padding: .8rem 1.1rem;
}
.prompt {
  font-family: var(--mono); color: var(--accent);
  font-size: .9rem; font-weight: 700; flex-shrink: 0;
}
.search-input {
  flex: 1; background: none; border: none; outline: none;
  font-family: var(--mono); font-size: .85rem; color: var(--text);
  caret-color: var(--accent);
}
.search-input::placeholder { color: var(--muted2); }
.search-divider { width: 1px; height: 34px; background: var(--border2); }
.mode-field {
  padding: .8rem 1rem; display: flex; align-items: center;
}
.mode-select {
  background: none; border: none; outline: none;
  font-family: var(--mono); font-size: .8rem; color: var(--muted);
  cursor: pointer; width: 110px;
}
.mode-select option { background: var(--surface2); }
.search-btn {
  margin: .3rem; padding: .65rem 1.35rem;
  background: var(--accent); color: #09090f; border: none;
  border-radius: 9px; font-family: var(--mono); font-size: .82rem;
  font-weight: 700; cursor: pointer; transition: all .2s;
  white-space: nowrap;
}
.search-btn:hover { background: #00f0c0; box-shadow: 0 0 20px rgba(0,212,170,.25); }

/* ROLE CHIPS */
.role-chips {
  display: flex; align-items: center; gap: .4rem;
  flex-wrap: wrap; justify-content: center; max-width: 700px; margin: 0 auto;
}
.chip-label { font-family: var(--mono); font-size: .72rem; color: var(--muted2); }
.role-chip {
  padding: 4px 12px; border-radius: 100px;
  border: 1px solid var(--border2); font-size: .78rem; font-weight: 500;
  color: var(--muted); background: var(--surface);
  text-decoration: none; transition: all .18s; font-family: var(--mono);
}
.role-chip:hover, .role-chip.active {
  border-color: var(--accent); color: var(--accent);
  background: rgba(0,212,170,.07);
}

/* ─── STATS STRIP ───────────────────────────────────────── */
.stats-strip {
  position: relative; z-index: 1;
  display: flex; justify-content: center;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.stat-item {
  flex: 1; max-width: 220px;
  padding: 1.35rem 2rem; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--mono); font-size: 1.6rem; font-weight: 700;
  color: var(--accent); letter-spacing: -1px;
}
.stat-label { font-size: .75rem; color: var(--muted); margin-top: 3px; }

/* ─── PAGE WRAP (sidebar + main) ────────────────────────── */
.page-wrap {
  position: relative; z-index: 1;
  max-width: 1180px; margin: 0 auto;
  padding: 2rem 2rem;
  display: grid; grid-template-columns: 240px 1fr; gap: 1.5rem;
}

/* ─── FILTER SIDEBAR ────────────────────────────────────── */
.filter-sidebar { position: sticky; top: 80px; height: fit-content; }
.filter-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.1rem; margin-bottom: 1rem;
}
.filter-card-title {
  font-family: var(--mono); font-size: .65rem; font-weight: 700;
  color: var(--muted2); letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 1rem; padding-bottom: .65rem;
  border-bottom: 1px solid var(--border);
}
.filter-group { margin-bottom: 1.1rem; }
.filter-group:last-of-type { margin-bottom: .5rem; }
.filter-group-label {
  font-size: .78rem; font-weight: 600; color: var(--text);
  margin-bottom: .55rem; display: flex; align-items: center; gap: 6px;
}
.fg-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.check-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: .35rem 0; cursor: pointer;
}
.check-item input[type=radio] {
  accent-color: var(--accent); width: 13px; height: 13px; flex-shrink: 0;
}
.check-label {
  font-size: .8rem; color: var(--muted); flex: 1; margin-left: 7px;
  cursor: pointer;
}
.check-item:hover .check-label { color: var(--text); }
.check-count {
  font-family: var(--mono); font-size: .65rem; color: var(--muted2);
  background: var(--surface2); padding: 1px 6px; border-radius: 4px;
}
.btn-clear-filters {
  display: block; text-align: center; font-size: .75rem;
  color: var(--red); text-decoration: none; margin-top: .75rem;
  font-family: var(--mono); padding: .4rem;
  border: 1px solid rgba(239,68,68,.2); border-radius: 7px;
  background: rgba(239,68,68,.04); transition: all .18s;
}
.btn-clear-filters:hover { background: rgba(239,68,68,.08); }

/* ALERT SIGNUP */
.alert-signup {
  background: var(--surface); border: 1px solid rgba(0,212,170,.2);
  border-radius: 12px; padding: 1.1rem; text-align: center;
}
.alert-signup-icon { font-size: 1.5rem; margin-bottom: .4rem; }
.alert-signup-title {
  font-weight: 700; font-size: .88rem; color: #fff; margin-bottom: .25rem;
}
.alert-signup-sub {
  font-size: .75rem; color: var(--muted); margin-bottom: .85rem; line-height: 1.5;
}
.alert-email {
  width: 100%; background: var(--surface2); border: 1px solid var(--border2);
  border-radius: 7px; padding: .55rem .75rem;
  font-family: var(--mono); font-size: .75rem; color: var(--text);
  outline: none; margin-bottom: .5rem; transition: border-color .2s;
}
.alert-email:focus { border-color: var(--accent); }
.alert-email::placeholder { color: var(--muted2); }
.alert-btn {
  width: 100%; padding: .6rem;
  background: var(--accent); color: #09090f; border: none;
  border-radius: 7px; font-family: var(--sans); font-size: .82rem;
  font-weight: 700; cursor: pointer; transition: all .2s;
}
.alert-btn:hover { background: #00f0c0; }

/* ─── RESULTS HEADER ────────────────────────────────────── */
.results-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}
.results-info { font-size: .83rem; color: var(--muted); }
.results-info strong { font-weight: 600; }
.results-sort { display: flex; align-items: center; gap: 6px; }
.sort-label { font-size: .75rem; color: var(--muted2); }
.sort-active {
  font-family: var(--mono); font-size: .72rem; color: var(--muted);
  background: var(--surface); border: 1px solid var(--border2);
  padding: 3px 9px; border-radius: 5px;
}

/* ─── JOB CARDS ─────────────────────────────────────────── */
.job-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.3rem; margin-bottom: .85rem;
  cursor: pointer; transition: all .22s; position: relative; overflow: hidden;
}
.job-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity .3s;
}
.job-card:hover {
  border-color: var(--border2);
  box-shadow: 0 0 0 1px rgba(0,212,170,.08), 0 8px 32px rgba(0,0,0,.3);
  transform: translateY(-1px);
}
.job-card:hover::before { opacity: 1; }
.job-card.featured {
  border-color: rgba(0,212,170,.2);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(0,212,170,.03) 100%);
}
.featured-ribbon {
  position: absolute; top: 1rem; right: 1rem;
  font-family: var(--mono); font-size: .62rem; font-weight: 700;
  padding: 3px 9px; border-radius: 100px;
  background: rgba(245,158,11,.12); color: var(--yellow);
  border: 1px solid rgba(245,158,11,.25);
}
.job-card-top {
  display: flex; align-items: flex-start;
  gap: 12px; margin-bottom: .85rem;
}
.company-logo {
  width: 48px; height: 48px; border-radius: 10px;
  border: 1px solid var(--border2); background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.company-logo img { width: 100%; height: 100%; object-fit: cover; }
.logo-fallback {
  font-family: var(--mono); font-size: .75rem; font-weight: 700;
  color: var(--muted); background: var(--surface2);
  width: 100%; height: 100%; display: flex;
  align-items: center; justify-content: center;
}
.logo-fallback.lg {
  width: 64px; height: 64px; border-radius: 14px;
  border: 1px solid var(--border2); font-size: 1rem;
}
.job-info { flex: 1; min-width: 0; }
.job-company {
  font-size: .75rem; color: var(--muted); margin-bottom: 2px;
  font-weight: 500;
}
.job-title {
  font-family: var(--sans); font-weight: 700; font-size: 1rem;
  color: #fff; letter-spacing: -.3px; margin-bottom: .4rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.job-meta {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: .3rem; font-size: .75rem; color: var(--muted);
}
.meta-sep { color: var(--muted2); }
.save-btn {
  width: 32px; height: 32px; border: 1px solid var(--border2);
  border-radius: 8px; background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted2); transition: all .2s; flex-shrink: 0;
}
.save-btn:hover, .save-btn.saved {
  border-color: var(--yellow); color: var(--yellow);
}
.save-btn.saved svg { fill: var(--yellow); }

/* TECH TAGS */
.tech-tags { display: flex; gap: .35rem; flex-wrap: wrap; margin-bottom: .85rem; }
.tech-tag {
  padding: 3px 9px; border-radius: 5px;
  font-family: var(--mono); font-size: .7rem; font-weight: 500;
  border: 1px solid var(--border2); color: var(--muted);
  background: var(--surface2); text-decoration: none;
  transition: all .15s;
}
.tech-tag:hover { border-color: var(--blue); color: var(--blue); }
.tech-tag-more {
  padding: 3px 9px; border-radius: 5px;
  font-family: var(--mono); font-size: .7rem;
  color: var(--muted2); background: var(--surface2);
}

/* CARD FOOTER */
.job-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: .85rem; border-top: 1px solid var(--border);
}
.salary-block {}
.salary-range {
  font-family: var(--mono); font-size: .95rem;
  font-weight: 700; color: #fff; letter-spacing: -.3px;
}
.salary-period { font-size: .7rem; color: var(--muted); margin-top: 1px; }
.card-actions { display: flex; align-items: center; gap: .5rem; }
.posted-time {
  font-family: var(--mono); font-size: .68rem; color: var(--muted2);
}
.btn-details {
  padding: .45rem .9rem; border: 1px solid var(--border2);
  border-radius: 7px; font-size: .78rem; font-weight: 500;
  color: var(--muted); text-decoration: none; transition: all .18s;
}
.btn-details:hover { border-color: var(--text); color: var(--text); }
.btn-apply {
  padding: .45rem 1.1rem; background: var(--accent); color: #09090f;
  border: none; border-radius: 7px; font-size: .78rem; font-weight: 700;
  cursor: pointer; text-decoration: none; transition: all .2s;
}
.btn-apply:hover { background: #00f0c0; box-shadow: 0 0 15px rgba(0,212,170,.25); }

/* EMPTY STATE */
.empty-state {
  padding: 4rem; text-align: center;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px;
}
.empty-icon  { font-size: 2.5rem; margin-bottom: .75rem; }
.empty-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .35rem; }
.empty-sub   { font-size: .83rem; color: var(--muted); }

/* ─── JOB DETAIL PAGE ───────────────────────────────────── */
.detail-wrap {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
  padding: 2rem 2rem;
  display: grid; grid-template-columns: 1fr 300px; gap: 1.5rem;
  align-items: start;
}
.detail-main {}
.detail-header {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.75rem; margin-bottom: 1rem;
}
.detail-company-row {
  display: flex; align-items: center; gap: 12px; margin-bottom: 1rem;
}
.detail-logo {
  width: 64px; height: 64px; border-radius: 14px;
  border: 1px solid var(--border2); overflow: hidden;
  background: var(--surface2); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.detail-logo img { width: 100%; height: 100%; object-fit: cover; }
.detail-company-name {
  font-size: .88rem; font-weight: 600; color: var(--muted); margin-bottom: 4px;
}
.featured-badge {
  font-family: var(--mono); font-size: .65rem; font-weight: 700;
  padding: 3px 9px; border-radius: 100px;
  background: rgba(245,158,11,.12); color: var(--yellow);
  border: 1px solid rgba(245,158,11,.25);
}
.detail-title {
  font-family: var(--sans); font-weight: 800; font-size: 1.65rem;
  color: #fff; letter-spacing: -.5px; margin-bottom: 1rem; line-height: 1.2;
}
.detail-meta-row {
  display: flex; flex-wrap: wrap; gap: .5rem 1rem;
  margin-bottom: .75rem;
}
.detail-meta-item {
  display: flex; align-items: center; gap: 5px;
  font-size: .8rem; color: var(--muted);
}
.dmi-icon { font-size: .85rem; }

/* DETAIL SECTIONS */
.detail-section {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.5rem; margin-bottom: 1rem;
}
.detail-section-title {
  font-family: var(--mono); font-size: .72rem; font-weight: 700;
  color: var(--muted); letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 1rem; padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 7px;
}
.ds-prefix { color: var(--accent); }
.detail-body {
  font-size: .88rem; color: var(--muted); line-height: 1.85;
  white-space: pre-wrap;
}

/* STACK GRID */
.stack-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: .5rem;
}
.stack-item {
  display: flex; align-items: center; gap: 7px;
  padding: .6rem .85rem; background: var(--surface2);
  border: 1px solid var(--border2); border-radius: 8px;
  font-family: var(--mono); font-size: .75rem; color: var(--text);
}
.stack-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}

/* RELATED JOBS */
.related-jobs { display: flex; flex-direction: column; gap: .6rem; }
.related-card {
  display: flex; align-items: center; gap: 10px;
  padding: .85rem; background: var(--surface2);
  border: 1px solid var(--border2); border-radius: 10px;
  text-decoration: none; transition: all .18s;
}
.related-card:hover { border-color: var(--accent); }
.rel-logo {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid var(--border2); background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0; font-family: var(--mono);
  font-size: .65rem; font-weight: 700; color: var(--muted);
}
.rel-logo img { width: 100%; height: 100%; object-fit: cover; }
.rel-info { flex: 1; min-width: 0; }
.rel-title { font-size: .83rem; font-weight: 600; color: #fff; margin-bottom: 2px; }
.rel-company { font-size: .72rem; color: var(--muted); }
.rel-tags { display: flex; gap: .3rem; margin-top: 4px; flex-wrap: wrap; }
.rel-tag {
  font-family: var(--mono); font-size: .62rem;
  padding: 1px 6px; border-radius: 4px;
  background: var(--surface); border: 1px solid var(--border2); color: var(--muted);
}
.rel-salary {
  font-family: var(--mono); font-size: .73rem;
  color: var(--accent); white-space: nowrap; flex-shrink: 0;
}

/* DETAIL SIDEBAR CARDS */
.detail-sidebar { position: sticky; top: 80px; }
.sidebar-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.25rem; margin-bottom: .85rem;
}
.sidebar-card-title {
  font-family: var(--mono); font-size: .65rem; font-weight: 700;
  color: var(--muted2); letter-spacing: 1.3px; text-transform: uppercase;
  margin-bottom: .85rem; padding-bottom: .6rem;
  border-bottom: 1px solid var(--border);
}
.salary-label-sm {
  font-family: var(--mono); font-size: .65rem; color: var(--muted2);
  margin-bottom: .35rem; text-transform: uppercase; letter-spacing: 1px;
}
.salary-big {
  font-family: var(--mono); font-size: 1.5rem; font-weight: 700;
  color: var(--accent); letter-spacing: -1px;
}
.salary-note {
  font-family: var(--mono); font-size: .65rem; color: var(--muted2);
  margin-top: .25rem;
}
.apply-card { text-align: center; }
.btn-apply-big {
  display: block; width: 100%;
  padding: .9rem; background: var(--accent); color: #09090f;
  border: none; border-radius: 10px; font-family: var(--sans);
  font-size: .95rem; font-weight: 700; cursor: pointer;
  text-decoration: none; transition: all .2s; margin-bottom: .75rem;
}
.btn-apply-big:hover { background: #00f0c0; box-shadow: 0 0 25px rgba(0,212,170,.25); }
.apply-note {
  font-size: .75rem; color: var(--muted); margin-bottom: .85rem; line-height: 1.5;
}
.share-row {
  display: flex; align-items: center; gap: .4rem;
  padding-top: .75rem; border-top: 1px solid var(--border);
}
.share-label { font-size: .72rem; color: var(--muted2); margin-right: .25rem; }
.share-btn {
  width: 30px; height: 30px; border: 1px solid var(--border2);
  border-radius: 7px; background: var(--surface2); cursor: pointer;
  font-size: .72rem; font-weight: 700; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all .18s;
}
.share-btn:hover { border-color: var(--accent); color: var(--accent); }
.detail-list {}
.detail-list-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: .5rem 0; border-bottom: 1px solid var(--border);
}
.detail-list-row:last-child { border-bottom: none; }
.dl-key { font-family: var(--mono); font-size: .68rem; color: var(--muted2); }
.dl-val { font-family: var(--mono); font-size: .72rem; color: var(--text); text-align: right; }
.btn-back-all {
  display: block; text-align: center; padding: .65rem;
  border: 1px solid var(--border2); border-radius: 9px;
  font-size: .82rem; color: var(--muted); text-decoration: none;
  background: var(--surface); transition: all .18s;
}
.btn-back-all:hover { border-color: var(--text); color: var(--text); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  position: relative; z-index: 1;
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 2.5rem 2rem 1.5rem; margin-top: 2rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 2rem;
}
.footer-tagline {
  font-size: .8rem; color: var(--muted); line-height: 1.7;
  max-width: 260px; font-weight: 300; margin-top: .6rem;
}
.footer-col-title {
  font-family: var(--mono); font-size: .62rem; font-weight: 700;
  color: var(--muted2); letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: .85rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
  font-size: .8rem; color: var(--muted); text-decoration: none; transition: color .18s;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.25rem; border-top: 1px solid var(--border);
  font-family: var(--mono); font-size: .68rem; color: var(--muted2);
}
.seo-footer {
  font-family: var(--mono); font-size: .63rem; color: var(--muted2);
  line-height: 1.8; padding-top: .85rem; margin-top: .85rem;
  border-top: 1px solid var(--border);
}