/* ==========================================================================
   JOB PORTAL — MAIN STYLESHEET
   Design concept: "Boarding pass for your career" — job listings are styled
   as ticket stubs (perforated divider + barcode strip) to give the familiar
   job-board layout a distinct, original identity.
   ========================================================================== */

/* -------------------- Design tokens -------------------- */
:root {
  /* Color */
  --bg: #ffffff;
  --bg-soft: #f4f7fd;
  --bg-navy: #0b1730;
  --ink: #10192e;
  --ink-soft: #5b6b85;
  --ink-faint: #93a1b8;
  --blue-100: #e3ecfc;
  --blue-300: #a9c2f2;
  --blue-600: #1656d8;
  --blue-700: #0e3fa3;
  --amber: #f2a93b;
  --amber-soft: #fdf1de;
  --line: #dfe6f4;
  --line-strong: #c4d1ea;
  --success: #1c9a6c;

  /* Type */
  --font-display: Georgia, "Iowan Old Style", "Palatino Linotype", "URW Palladio L", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Code", Menlo, Consolas, monospace;

  /* Layout */
  --container: 1180px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 3px rgba(16, 25, 46, 0.06), 0 1px 2px rgba(16, 25, 46, 0.04);
  --shadow-md: 0 8px 24px rgba(16, 25, 46, 0.08);
  --shadow-lg: 0 20px 48px rgba(16, 25, 46, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* -------------------- Reset -------------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--blue-600); outline-offset: 2px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

section { padding: 72px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.section-sub { color: var(--ink-soft); font-size: 15px; max-width: 46ch; }
.link-more {
  font-weight: 600;
  color: var(--blue-600);
  font-size: 14px;
  white-space: nowrap;
  transition: gap .2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.link-more:hover { gap: 8px; }

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--blue-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--blue-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--blue-600); border: 1.5px solid var(--blue-300); }
.btn-outline:hover { border-color: var(--blue-600); background: var(--blue-100); }
.btn-ghost { color: var(--ink-soft); }
.btn-ghost:hover { color: var(--blue-600); }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-block { width: 100%; }

/* -------------------- Header -------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.brand small { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; color: var(--ink-faint); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: background .18s var(--ease), color .18s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--blue-700); background: var(--blue-100); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-search-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-soft);
  color: var(--ink-soft);
  transition: background .18s var(--ease), color .18s var(--ease);
}
.nav-search-toggle:hover { background: var(--blue-100); color: var(--blue-700); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  align-items: center; justify-content: center;
  background: var(--bg-soft);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; position: relative; transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* header inline search panel */
.header-search {
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  transition: max-height .28s var(--ease), border-color .28s var(--ease);
}
.header-search.is-open { max-height: 90px; border-top-color: var(--line); }
.header-search-inner { display: flex; gap: 10px; padding: 16px 0; }
.header-search-inner input {
  flex: 1; padding: 12px 16px; border: 1.5px solid var(--line); border-radius: 999px; background: var(--bg-soft);
}
.header-search-inner input:focus { border-color: var(--blue-600); background: #fff; }

/* -------------------- Hero -------------------- */
.hero {
  position: relative;
  padding: 88px 0 96px;
  background:
    radial-gradient(680px 340px at 82% -10%, var(--blue-100), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue-700); background: var(--blue-100); padding: 7px 14px; border-radius: 999px; font-weight: 600;
  margin-bottom: 22px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--blue-600); position: relative; }
.hero-sub { font-size: 17px; color: var(--ink-soft); max-width: 46ch; margin-bottom: 34px; }

.search-panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 10px; display: flex; gap: 8px; flex-wrap: wrap;
}
.search-field { flex: 1; min-width: 180px; display: flex; align-items: center; gap: 10px; padding: 10px 14px; }
.search-field svg { flex-shrink: 0; color: var(--ink-faint); }
.search-field input { border: none; outline: none; width: 100%; font-size: 15px; background: transparent; }
.search-divider { width: 1px; background: var(--line); margin: 8px 0; }
.search-panel .btn-primary { flex-shrink: 0; }

.hero-stats { display: flex; gap: 32px; margin-top: 30px; }
.hero-stats div strong { display: block; font-family: var(--font-display); font-size: 24px; color: var(--ink); }
.hero-stats div span { font-size: 12.5px; color: var(--ink-soft); }

.hero-quick { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.chip {
  font-size: 12.5px; font-weight: 600; padding: 7px 13px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--ink-soft); transition: all .18s var(--ease);
}
.chip:hover { border-color: var(--blue-600); color: var(--blue-700); background: var(--blue-100); }

/* Hero visual: a stack of boarding-pass tickets, purely decorative */
.hero-visual { position: relative; height: 420px; }
.ticket-stack { position: absolute; inset: 0; }
.mini-ticket {
  position: absolute; width: 88%; left: 6%;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 20px 22px; display: flex; gap: 14px; align-items: center;
  animation: floatY 6s ease-in-out infinite;
}
.mini-ticket .badge { width: 46px; height: 46px; border-radius: 10px; flex-shrink: 0; }
.mini-ticket .lines { flex: 1; }
.mini-ticket .lines b { display: block; font-size: 14.5px; margin-bottom: 4px; }
.mini-ticket .lines span { font-size: 12.5px; color: var(--ink-soft); font-family: var(--font-mono); }
.mini-ticket.t1 { top: 0; z-index: 3; animation-delay: 0s; }
.mini-ticket.t2 { top: 150px; z-index: 2; opacity: .9; animation-delay: .6s; }
.mini-ticket.t3 { top: 300px; z-index: 1; opacity: .75; animation-delay: 1.2s; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* -------------------- Marquee (top companies strip) -------------------- */
.marquee-wrap { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); overflow: hidden; padding: 20px 0; }
.marquee-track { display: flex; gap: 64px; width: max-content; animation: scrollX 28s linear infinite; align-items: center; }
.marquee-track span { font-family: var(--font-mono); font-size: 13px; letter-spacing: .05em; color: var(--ink-faint); font-weight: 600; text-transform: uppercase; }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* -------------------- Category pills grid -------------------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cat-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 24px; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  display: flex; flex-direction: column; gap: 14px;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-300); }
.cat-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--blue-100); color: var(--blue-700);
  display: flex; align-items: center; justify-content: center;
}
.cat-card h3 { font-size: 16px; font-weight: 700; }
.cat-card p { font-size: 13px; color: var(--ink-soft); }
.cat-count { font-family: var(--font-mono); font-size: 12px; color: var(--blue-600); font-weight: 600; }

/* -------------------- Job Ticket Card (signature element) -------------------- */
.job-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.job-grid.list-view { grid-template-columns: 1fr; }

.ticket {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr auto;
  overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
  opacity: 0; transform: translateY(14px);
  animation: rise .5s var(--ease) forwards;
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
.ticket:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--blue-300); }

.ticket-main { padding: 22px; display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.ticket-top { display: flex; gap: 12px; align-items: flex-start; }
.ticket-logo { width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0; border: 1px solid var(--line); }
.ticket-title { min-width: 0; }
.ticket-title .job-title { font-weight: 700; font-size: 15.5px; line-height: 1.35; display: block; }
.ticket-title .job-company { font-size: 13px; color: var(--ink-soft); margin-top: 2px; display: block; }

.ticket-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: 12.5px; color: var(--ink-soft); font-family: var(--font-mono); }
.ticket-meta span { display: inline-flex; align-items: center; gap: 5px; }
.ticket-meta svg { flex-shrink: 0; color: var(--ink-faint); }

.ticket-desc { font-size: 13px; color: var(--ink-soft); overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }

.ticket-actions { display: flex; gap: 8px; margin-top: 4px; }

/* Right-hand ticket stub — perforated + barcode */
.ticket-stub {
  width: 118px;
  border-left: 2px dashed var(--line-strong);
  background: var(--bg-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  padding: 18px 10px;
  position: relative;
}
.ticket-stub::before, .ticket-stub::after {
  content: ""; position: absolute; left: -8px; width: 16px; height: 16px; background: var(--bg); border-radius: 50%; border: 1px solid var(--line);
}
.ticket-stub::before { top: -8px; }
.ticket-stub::after { bottom: -8px; }
.stub-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue-700); background: var(--blue-100); padding: 4px 8px; border-radius: 999px; font-weight: 700;
}
.stub-label.featured { color: #92600d; background: var(--amber-soft); }
.stub-date { font-family: var(--font-mono); font-size: 11px; color: var(--ink-faint); text-align: center; }


/* Job list-view row (jobs.html) tweaks */
.list-view .ticket { grid-template-columns: 1fr auto; }

/* -------------------- Companies -------------------- */
.company-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.company-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 26px 20px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.company-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.company-card img { width: 56px; height: 56px; border-radius: 14px; }
.company-card h3 { font-size: 15px; font-weight: 700; }
.company-card .open-count { font-family: var(--font-mono); font-size: 12px; color: var(--blue-600); font-weight: 700; background: var(--blue-100); padding: 4px 10px; border-radius: 999px; }
.company-card p { font-size: 12.5px; color: var(--ink-soft); }

/* -------------------- Filters bar (jobs & categories pages) -------------------- */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 16px; margin-bottom: 28px;
}
.filter-group { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-select {
  padding: 10px 14px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; font-size: 13.5px; font-weight: 500;
}
.filter-select:focus { border-color: var(--blue-600); }
.result-count { font-size: 13.5px; color: var(--ink-soft); }
.result-count b { color: var(--ink); }
.view-toggle { display: flex; gap: 4px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.view-toggle button { padding: 7px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 600; color: var(--ink-soft); }
.view-toggle button.active { background: var(--blue-600); color: #fff; }

.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-soft); }
.empty-state h3 { font-family: var(--font-display); font-size: 20px; color: var(--ink); margin-bottom: 8px; }

/* -------------------- Category page hero band -------------------- */
.page-band { background: var(--bg-soft); border-bottom: 1px solid var(--line); padding: 52px 0; }
.page-band .eyebrow { margin-bottom: 10px; }
.page-band h1 { font-family: var(--font-display); font-size: 36px; margin-bottom: 10px; }
.page-band p { color: var(--ink-soft); max-width: 60ch; }
.breadcrumb { font-size: 13px; color: var(--ink-soft); margin-bottom: 14px; font-family: var(--font-mono); }
.breadcrumb a { color: var(--blue-600); font-weight: 600; }

/* -------------------- Job details page -------------------- */
.details-grid { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.details-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 32px; }
.details-header { display: flex; gap: 18px; align-items: flex-start; padding-bottom: 24px; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.details-header img { width: 68px; height: 68px; border-radius: 14px; border: 1px solid var(--line); }
.details-header h1 { font-family: var(--font-display); font-size: 26px; margin-bottom: 6px; line-height: 1.25; }
.details-header .company-name { color: var(--blue-700); font-weight: 700; font-size: 15px; }

.details-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
.fact { background: var(--bg-soft); border-radius: var(--radius-sm); padding: 14px; }
.fact span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); margin-bottom: 4px; font-family: var(--font-mono); }
.fact b { font-size: 14.5px; }

.details-card h2.block-title { font-family: var(--font-display); font-size: 19px; margin: 28px 0 12px; }
.details-card p { color: var(--ink-soft); font-size: 14.5px; }
.details-card ul.tick-list { margin-top: 6px; }
.details-card ul.tick-list li { padding-left: 22px; position: relative; font-size: 14.5px; color: var(--ink-soft); margin-bottom: 8px; }
.details-card ul.tick-list li::before { content: "→"; position: absolute; left: 0; color: var(--blue-600); font-weight: 700; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.skill-tags span { background: var(--blue-100); color: var(--blue-700); font-size: 12.5px; font-weight: 600; padding: 6px 12px; border-radius: 999px; }

.apply-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 26px; position: sticky; top: 96px; }
.apply-card .salary-big { font-family: var(--font-display); font-size: 26px; color: var(--blue-700); margin-bottom: 4px; }
.apply-card .salary-label { font-size: 12px; color: var(--ink-soft); margin-bottom: 18px; }
.apply-card .btn { margin-bottom: 10px; }
.apply-card .share-row { display: flex; gap: 8px; margin-top: 16px; }
.share-btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--ink-soft); transition: all .18s var(--ease); }
.share-btn:hover { border-color: var(--blue-600); color: var(--blue-600); background: var(--blue-100); }

/* -------------------- About / Contact -------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.stat-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.stat-tile { background: var(--bg-soft); border-radius: var(--radius-md); padding: 20px; text-align: center; }
.stat-tile strong { display: block; font-family: var(--font-display); font-size: 26px; color: var(--blue-700); }
.stat-tile span { font-size: 12px; color: var(--ink-soft); }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; }
.value-card { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px; }
.value-card .cat-icon { margin-bottom: 14px; }
.value-card h3 { font-size: 16px; margin-bottom: 8px; }
.value-card p { font-size: 13.5px; color: var(--ink-soft); }

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; }
.contact-info-card { background: var(--bg-navy); color: #fff; border-radius: var(--radius-lg); padding: 34px; }
.contact-info-card h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 10px; }
.contact-info-card p { color: #b9c4dc; font-size: 14px; margin-bottom: 26px; }
.contact-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; }
.contact-row .ic { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-row b { display: block; font-size: 14px; }
.contact-row span { font-size: 13px; color: #b9c4dc; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-soft);
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-600); background: #fff; }
.field { margin-bottom: 16px; }
.form-note { font-size: 12.5px; color: var(--ink-soft); margin-top: 10px; }
.form-success { display: none; background: #eafaf3; border: 1px solid #b6e9d3; color: #0f6b45; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 16px; }
.form-success.show { display: block; }

/* -------------------- Footer -------------------- */
.site-footer { background: var(--bg-navy); color: #cfd8ec; padding: 64px 0 28px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 13.5px; color: #9aa8c4; max-width: 34ch; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: background .18s var(--ease); }
.footer-social a:hover { background: var(--blue-600); }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: #fff; margin-bottom: 16px; font-family: var(--font-mono); }
.footer-col a, .footer-col li { display: block; font-size: 13.5px; color: #9aa8c4; margin-bottom: 11px; transition: color .18s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; font-size: 12.5px; color: #7f8db0; flex-wrap: wrap; gap: 10px; }

/* -------------------- Misc / utility -------------------- */
.badge-new { background: var(--amber-soft); color: #92600d; font-size: 10.5px; font-weight: 700; padding: 3px 8px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; }
.skeleton { background: linear-gradient(90deg, var(--bg-soft) 25%, var(--line) 37%, var(--bg-soft) 63%); background-size: 400% 100%; animation: shimmer 1.4s ease infinite; border-radius: var(--radius-md); }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }
.skeleton-card { height: 168px; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
