/* =====================================================================
   SkyHighJob — main stylesheet
   Design tokens → base → layout → components → sections → pages → utils
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --navy: #0B1F3A;
  --navy-800: #12305A;
  --navy-700: #1B3F73;
  --blue: #0A66C2;
  --blue-600: #0857A8;
  --blue-50: #EAF2FB;
  --sky: #38BDF8;
  --sky-100: #E0F2FE;
  --sky-50: #F0F9FF;
  --amber: #F5A524;
  --amber-600: #D98C0B;
  --amber-50: #FFF6E5;
  --green: #16A34A;
  --green-50: #ECFDF3;
  --red: #DC2626;
  --red-50: #FEF2F2;

  --ink: #0F172A;
  --text: #334155;
  --muted: #64748B;
  --line: #E2E8F0;
  --line-soft: #EEF2F7;
  --line-input: #7C8BA3;   /* 3.4:1 on white — WCAG 1.4.11 for form boundaries */
  --bg: #FFFFFF;
  --bg-soft: #F6F9FC;

  --font-head: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'DM Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .04);
  --shadow: 0 6px 20px -6px rgba(11, 31, 58, .14), 0 2px 6px rgba(11, 31, 58, .05);
  --shadow-lg: 0 24px 50px -20px rgba(11, 31, 58, .28), 0 8px 18px -8px rgba(11, 31, 58, .12);

  --container: 1180px;
  --gutter: 24px;
  --header-h: 76px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -.015em;
  font-weight: 800;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p { margin: 0 0 1em; }
a { color: var(--blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--blue-600); }
img, svg { max-width: 100%; display: block; }
ul, ol { padding-left: 1.25em; }
strong { color: var(--ink); font-weight: 600; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px; }
.hero :focus-visible, .page-hero :focus-visible, .section-navy :focus-visible, .site-footer :focus-visible, .cta-band :focus-visible, .audience-card :focus-visible, .visual-panel :focus-visible, .topbar :focus-visible, .search-bar :focus-visible { outline-color: #fff; }
.search-bar :focus-visible { outline-color: var(--blue); }
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 1000;
  background: var(--navy); color: #fff; padding: 10px 14px; border-radius: 8px;
}
.skip-link:focus { top: 12px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: 820px; }
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-sm { padding: clamp(40px, 5vw, 64px) 0; }
.section-soft { background: var(--bg-soft); }
.section-navy { background: var(--navy); color: #C7D2E1; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 52px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.1rem; color: var(--muted); }
.section-navy .section-head p { color: #A9B8CF; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 22px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--blue), var(--sky)); }
.section-navy .eyebrow { color: var(--sky); }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split.reverse > :first-child { order: 2; }
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--radius-pill);
  font-family: var(--font-head); font-weight: 700; font-size: .95rem; line-height: 1.2;
  border: 2px solid transparent; transition: transform .2s var(--ease), box-shadow .2s, background .2s, color .2s, border-color .2s;
  white-space: nowrap; text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 18px -8px rgba(10, 102, 194, .7); }
.btn-primary:hover { background: var(--blue-600); color: #fff; }
.btn-amber { background: var(--amber); color: var(--navy); box-shadow: 0 8px 18px -8px rgba(245, 165, 36, .7); }
.btn-amber:hover { background: #FFB43A; color: var(--navy); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--navy); color: var(--navy); background: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--sky-50); color: var(--navy); }
.btn-ghost-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.25); }
.btn-ghost-light:hover { background: rgba(255,255,255,.16); color: #fff; }
.btn-lg { padding: 15px 28px; font-size: 1.02rem; }
.btn-sm { padding: 8px 14px; font-size: .85rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .6; pointer-events: none; }
.link-arrow { font-weight: 700; font-family: var(--font-head); display: inline-flex; align-items: center; gap: 6px; }
.link-arrow::after { content: '→'; transition: transform .2s; }
.link-arrow:hover::after { transform: translateX(3px); }

/* ---------- Header ---------- */
.topbar {
  background: var(--navy); color: #C7D2E1; font-size: .84rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; min-height: 38px; gap: 16px; flex-wrap: wrap; }
.topbar a { color: #E2E8F0; display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--sky); }
.topbar svg { width: 14px; height: 14px; }
.topbar-left, .topbar-right { display: flex; gap: 18px; align-items: center; }
.topbar[hidden] { display: none; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .25s;
}
.site-header.scrolled { box-shadow: var(--shadow); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }
.brand img { height: 40px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav > li { list-style: none; position: relative; }
.nav { margin: 0; padding: 0; }
.nav a, .nav button.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px; border-radius: 10px; color: var(--ink); font-weight: 600; font-size: .95rem; background: none; border: 0;
}
.nav a:hover, .nav button.nav-link:hover, .nav a.active { color: var(--blue); background: var(--blue-50); }
.nav .caret { width: 14px; height: 14px; transition: transform .2s; }
.nav li.open > .nav-link .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 260px;
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 8px; margin: 0; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .2s var(--ease);
}
.nav li.open > .dropdown, .nav li:hover > .dropdown, .nav li:focus-within > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: flex; flex-direction: column; gap: 2px; padding: 10px 12px; border-radius: 10px; font-weight: 600; }
.dropdown a small { font-weight: 400; color: var(--muted); font-size: .8rem; }
.header-cta { display: flex; gap: 10px; align-items: center; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line); background: #fff; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }
.mobile-nav {
  display: none; position: fixed; inset: var(--header-h) 0 0 0; background: #fff; z-index: 49; overflow-y: auto; padding: 16px var(--gutter) 40px;
}
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 14px 8px; border-bottom: 1px solid var(--line-soft); color: var(--ink); font-weight: 600; font-size: 1.05rem; }
.mobile-nav .sub a { padding-left: 24px; font-weight: 500; color: var(--text); font-size: .98rem; }
.mobile-nav .mobile-cta { display: grid; gap: 10px; margin-top: 20px; }
@media (max-width: 1024px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .topbar { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1200px 600px at 85% -10%, rgba(56,189,248,.35), transparent 60%),
              radial-gradient(800px 500px at -10% 110%, rgba(245,165,36,.18), transparent 60%),
              linear-gradient(180deg, #0B1F3A 0%, #10305C 100%);
  color: #DCE6F5;
  padding: clamp(64px, 9vw, 120px) 0 clamp(64px, 8vw, 100px);
}
.hero::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 60px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.12));
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 em { font-style: normal; background: linear-gradient(90deg, #7DD3FC, #F5A524); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { font-size: 1.18rem; color: #C7D6EA; max-width: 560px; margin-bottom: 28px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px 6px 6px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: #E2EEFF; font-size: .82rem; font-weight: 600; margin-bottom: 22px;
}
.hero-badge span { background: var(--amber); color: var(--navy); padding: 2px 8px; border-radius: 999px; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 800; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.hero-meta { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 30px; color: #A9B8CF; font-size: .9rem; }
.hero-meta li { list-style: none; display: flex; align-items: center; gap: 8px; }
.hero-meta ul { display: contents; }
.hero-meta svg { width: 18px; height: 18px; color: var(--sky); }
.search-bar {
  display: grid; grid-template-columns: 1.3fr 1fr auto; gap: 8px; padding: 8px;
  background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg);
}
.search-bar .field { display: flex; align-items: center; gap: 10px; padding: 0 14px; border-radius: 12px; background: var(--bg-soft); }
.search-bar .field svg { width: 18px; height: 18px; color: var(--muted); flex: none; }
.search-bar input, .search-bar select { width: 100%; border: 0; background: transparent; padding: 14px 0; color: var(--ink); outline: none; }
.search-bar select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.search-bar .btn { border-radius: 12px; }
.hero-popular { margin-top: 14px; font-size: .88rem; color: #A9B8CF; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.hero-popular a { color: #E2EEFF; background: rgba(255,255,255,.08); padding: 4px 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,.12); }
.hero-popular a:hover { background: rgba(255,255,255,.16); color: #fff; }

/* Hero visual */
.hero-visual { position: relative; min-height: 420px; }
.hero-visual .cloud { position: absolute; border-radius: 999px; background: rgba(255,255,255,.06); filter: blur(1px); }
.hero-card {
  position: absolute; background: #fff; color: var(--ink); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 14px 16px;
  display: flex; gap: 12px; align-items: center; animation: float 6s ease-in-out infinite;
}
.hero-card .ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.hero-card strong { display: block; font-family: var(--font-head); font-size: .95rem; }
.hero-card span { font-size: .8rem; color: var(--muted); }
.hero-card.c1 { top: 8%; left: 6%; animation-delay: 0s; }
.hero-card.c2 { top: 40%; right: 0; animation-delay: -2s; }
.hero-card.c3 { bottom: 6%; left: 14%; animation-delay: -4s; }
.hero-plane { position: absolute; inset: 0; margin: auto; width: 78%; opacity: .95; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}
@media (max-width: 720px) {
  .search-bar { grid-template-columns: 1fr; }
  .search-bar .btn { width: 100%; }
}

/* Page hero (inner pages) */
.page-hero {
  background: radial-gradient(900px 400px at 90% -20%, rgba(56,189,248,.28), transparent 60%), linear-gradient(180deg, #0B1F3A, #12305A);
  color: #C7D6EA; padding: clamp(48px, 7vw, 84px) 0;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { font-size: 1.12rem; max-width: 640px; margin: 0; }
.breadcrumb { display: flex; gap: 8px; list-style: none; padding: 0; margin: 0 0 18px; font-size: .85rem; color: #93A5C2; }
.breadcrumb a { color: #BFD3F0; }
.breadcrumb li + li::before { content: '/'; margin-right: 8px; color: #58698A; }
.page-hero .hero-actions { margin-top: 24px; }

/* ---------- Trust strip ---------- */
.trust-strip { background: #fff; border-bottom: 1px solid var(--line-soft); }
.trust-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; gap: 14px; align-items: flex-start; padding: 26px 20px; border-right: 1px solid var(--line-soft); }
.trust-item:last-child { border-right: 0; }
.trust-item .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--sky-50); color: var(--blue); display: grid; place-items: center; flex: none; }
.trust-item .ic svg { width: 22px; height: 22px; }
.trust-item strong { display: block; font-family: var(--font-head); color: var(--ink); font-size: 1rem; }
.trust-item span { font-size: .86rem; color: var(--muted); }
@media (max-width: 1024px) { .trust-strip .container { grid-template-columns: repeat(2, 1fr); } .trust-item:nth-child(2) { border-right: 0; } .trust-item { border-bottom: 1px solid var(--line-soft); } }
@media (max-width: 560px) { .trust-strip .container { grid-template-columns: 1fr; } .trust-item { border-right: 0; } }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
  position: relative;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #D6E4F5; }
.card .ic {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--sky-100), var(--blue-50)); color: var(--blue);
}
.card .ic svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin-bottom: 12px; }
.card p:last-child { margin-bottom: 0; }
.card ul { margin: 0 0 12px; padding-left: 18px; color: var(--text); font-size: .95rem; }
.card ul li { margin-bottom: 4px; }
.card-link::after { content: ''; position: absolute; inset: 0; border-radius: inherit; }
.card-feature { background: linear-gradient(160deg, #fff, var(--sky-50)); }

/* Audience cards */
.audience-card {
  border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); color: #fff; position: relative; overflow: hidden; min-height: 320px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.audience-card.employers { background: radial-gradient(500px 300px at 100% 0%, rgba(56,189,248,.45), transparent 60%), linear-gradient(160deg, var(--navy), var(--blue)); }
.audience-card.seekers { background: radial-gradient(500px 300px at 100% 0%, rgba(255,255,255,.35), transparent 60%), linear-gradient(160deg, #D98C0B, #F5A524); color: var(--navy); }
.audience-card h3 { color: inherit; font-size: 1.6rem; margin-bottom: 8px; }
.audience-card p { opacity: .9; max-width: 420px; margin-bottom: 20px; }
.audience-card .tag { position: absolute; top: 22px; left: 22px; font-family: var(--font-head); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .74rem; opacity: .85; }
.audience-card .deco { position: absolute; right: -30px; top: -30px; width: 200px; height: 200px; border-radius: 50%; border: 28px solid rgba(255,255,255,.12); }
.audience-card ul { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 6px; font-size: .95rem; }
.audience-card ul li::before { content: '✓  '; font-weight: 800; }
.audience-card .btn { align-self: flex-start; }

/* ---------- Chips / badges ---------- */
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; background: var(--bg-soft); border: 1px solid var(--line-soft); font-size: .84rem; font-weight: 600; color: var(--text); }
.chip-blue { background: var(--blue-50); color: var(--blue); border-color: #CFE1F6; }
.chip-amber { background: var(--amber-50); color: var(--amber-600); border-color: #FBE4B8; }
.chip-green { background: var(--green-50); color: var(--green); border-color: #BBF7D0; }
.badge { display: inline-block; padding: 3px 9px; border-radius: 6px; font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.badge-new { background: var(--amber); color: var(--navy); }
.badge-hot { background: #FEE2E2; color: #991B1B; }
.badge-remote { background: #DCFCE7; color: #166534; }

/* ---------- Industries ---------- */
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.industry-tile {
  display: flex; flex-direction: column; gap: 10px; padding: 22px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line-soft);
  transition: all .25s var(--ease); color: var(--ink);
}
.industry-tile:hover { border-color: var(--sky); box-shadow: var(--shadow); transform: translateY(-3px); color: var(--ink); }
.industry-tile .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--sky-50); color: var(--blue); display: grid; place-items: center; }
.industry-tile .ic svg { width: 22px; height: 22px; }
.industry-tile strong { font-family: var(--font-head); font-size: 1rem; }
.industry-tile span { font-size: .84rem; color: var(--muted); }
@media (max-width: 1024px) { .industry-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .industry-grid { grid-template-columns: 1fr; } }

/* ---------- Steps / process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; position: relative; }
.step { position: relative; padding: 26px 22px 22px; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); }
.step .num {
  width: 44px; height: 44px; border-radius: 12px; background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 800; display: grid; place-items: center; margin-bottom: 16px; font-size: 1.05rem;
}
.step h3 { font-size: 1.1rem; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }
.section-navy .step { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); }
.section-navy .step .num { background: var(--sky); color: var(--navy); }
.section-navy .step p { color: #A9B8CF; }
@media (max-width: 1024px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* Tabs */
.tabs { display: inline-flex; padding: 5px; background: var(--bg-soft); border: 1px solid var(--line-soft); border-radius: 999px; margin-bottom: 32px; }
.section-navy .tabs { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }
.tab-btn { padding: 9px 20px; border-radius: 999px; border: 0; background: transparent; font-family: var(--font-head); font-weight: 700; color: var(--muted); }
.section-navy .tab-btn { color: #A9B8CF; }
.tab-btn.active { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn .3s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { padding: 24px; border-radius: var(--radius-lg); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.stat strong { display: block; font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1.1; }
.stat strong small { font-size: 1.2rem; color: var(--sky); margin-left: 2px; }
.stat span { color: #A9B8CF; font-size: .92rem; }
@media (max-width: 1024px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats { grid-template-columns: 1fr; } }

/* ---------- Job cards ---------- */
.job-card {
  display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center;
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 20px 22px; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.job-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #D6E4F5; }
.job-card .logo {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}
.job-card h3 { margin: 0 0 4px; font-size: 1.08rem; }
.job-card h3 a { color: var(--ink); }
.job-card h3 a:hover { color: var(--blue); }
.job-card .company { color: var(--muted); font-size: .9rem; margin: 0 0 8px; }
.job-card .meta { display: flex; flex-wrap: wrap; gap: 8px; }
.job-card .meta span { display: inline-flex; align-items: center; gap: 5px; font-size: .82rem; color: var(--text); background: var(--bg-soft); padding: 4px 9px; border-radius: 6px; }
.job-card .meta svg { width: 14px; height: 14px; color: var(--muted); }
.job-card .side { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; text-align: right; }
.job-card .posted { font-size: .8rem; color: var(--muted); }
.job-card .salary { font-family: var(--font-head); font-weight: 800; color: var(--ink); }
@media (max-width: 640px) {
  .job-card { grid-template-columns: auto 1fr; }
  .job-card .side { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; text-align: left; }
}

/* Jobs page layout */
.jobs-layout { display: grid; grid-template-columns: 290px 1fr; gap: 32px; align-items: start; }
.filters { position: sticky; top: calc(var(--header-h) + 20px); background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 22px; }
.filters h2 { font-size: 1rem; display: flex; justify-content: space-between; align-items: center; margin-bottom: .5em; }
.filters h2 button { background: none; border: 0; color: var(--blue); font-size: .82rem; font-weight: 600; }
.filter-group { padding: 14px 0; border-top: 1px solid var(--line-soft); }
.filter-group label.title { display: block; font-weight: 700; font-family: var(--font-head); font-size: .88rem; margin-bottom: 8px; color: var(--ink); }
.filter-group .check { display: flex; align-items: center; gap: 8px; font-size: .9rem; padding: 4px 0; cursor: pointer; }
.filter-group input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--blue); }
.jobs-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.jobs-toolbar .count { color: var(--muted); font-size: .95rem; }
.jobs-toolbar .count strong { color: var(--ink); }
.jobs-list { display: grid; gap: 14px; }
.filters-toggle { display: none; margin-bottom: 16px; }
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
.pagination button { min-width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); background: #fff; font-weight: 600; }
.pagination button.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.pagination button[disabled] { opacity: .45; cursor: default; }
.empty { text-align: center; padding: 60px 20px; color: var(--muted); background: #fff; border: 1px dashed var(--line); border-radius: var(--radius-lg); }
.empty svg { width: 48px; height: 48px; margin: 0 auto 12px; color: var(--sky); }
@media (max-width: 900px) {
  .jobs-layout { grid-template-columns: 1fr; }
  .filters { position: static; display: none; }
  .filters.open { display: block; }
  .filters-toggle { display: inline-flex; }
}

/* Job detail */
.job-detail-head { display: flex; gap: 22px; align-items: flex-start; flex-wrap: wrap; }
.job-detail-head .logo { width: 72px; height: 72px; border-radius: 18px; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: #fff; background: linear-gradient(135deg, var(--sky), var(--blue)); flex: none; }
.job-detail-head h1 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 6px; }
.job-detail-head .company { color: #BFD3F0; font-size: 1.05rem; margin-bottom: 14px; }
.job-detail-head .meta { display: flex; flex-wrap: wrap; gap: 8px; }
.job-detail-head .meta span { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); padding: 6px 11px; border-radius: 8px; font-size: .86rem; color: #E2EEFF; }
.job-detail-head .meta svg { width: 15px; height: 15px; color: var(--sky); }
.job-detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.job-content h2 { font-size: 1.35rem; margin-top: 30px; }
.job-content h2:first-child { margin-top: 0; }
.job-content ul li { margin-bottom: 6px; }
.job-side { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 18px; }
.job-summary { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 22px; }
.job-summary dl { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 0 0 18px; }
.job-summary dt { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; }
.job-summary dd { margin: 2px 0 0; font-weight: 600; color: var(--ink); }
.skills { display: flex; flex-wrap: wrap; gap: 6px; }
@media (max-width: 900px) { .job-detail-layout { grid-template-columns: 1fr; } .job-side { position: static; } }

/* ---------- Testimonials ---------- */
.testimonials { position: relative; }
.t-track { display: grid; grid-auto-flow: column; grid-auto-columns: 100%; overflow: hidden; }
.t-slide { display: none; }
.t-slide.active { display: block; animation: fadeIn .4s var(--ease); }
.t-card { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-sm); position: relative; }
.t-card .quote { font-family: var(--font-head); font-size: clamp(1.1rem, 1.8vw, 1.35rem); font-weight: 600; color: var(--ink); line-height: 1.5; margin-bottom: 22px; }
.t-card .who { display: flex; align-items: center; gap: 14px; }
.t-card .avatar { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--amber), #F97316); font-family: var(--font-head); }
.t-card .who strong { display: block; color: var(--ink); }
.t-card .who span { color: var(--muted); font-size: .9rem; }
.t-card .stars { color: var(--amber); letter-spacing: 2px; margin-bottom: 14px; font-size: .95rem; }
.t-nav { display: flex; gap: 10px; justify-content: center; margin-top: 22px; align-items: center; }
.t-nav button { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: #fff; display: grid; place-items: center; }
.t-nav button svg { width: 18px; height: 18px; }
.t-dots { display: flex; gap: 6px; }
.t-dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--line); cursor: pointer; border: 0; padding: 0; }
.t-dots button.active { background: var(--blue); width: 22px; border-radius: 4px; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(24px, 3.5vw, 40px); box-shadow: var(--shadow); }
.form-card h2, .form-card h3 { font-size: 1.25rem; margin-bottom: 4px; }
.form-card > p { color: var(--muted); margin-bottom: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.field-block label { display: block; font-weight: 600; font-size: .88rem; color: var(--ink); margin-bottom: 6px; }
.field-block label .req { color: var(--red); }
.field-block input, .field-block select, .field-block textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line-input); border-radius: 10px; background: #fff; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.field-block input:focus, .field-block select:focus, .field-block textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(10,102,194,.18); }
.field-block textarea { min-height: 120px; resize: vertical; }
.field-block .hint { font-size: .8rem; color: var(--muted); margin-top: 6px; }
.field-block.error input, .field-block.error select, .field-block.error textarea { border-color: var(--red); }
.field-block .err { display: none; font-size: .8rem; color: var(--red); margin-top: 6px; }
.field-block.error .err { display: block; }
.file-drop { position: relative; border: 2px dashed var(--line-input); border-radius: 12px; padding: 20px; text-align: center; color: var(--muted); font-size: .9rem; background: var(--bg-soft); cursor: pointer; transition: border-color .2s, background .2s; }
.file-drop:hover, .file-drop.drag { border-color: var(--sky); background: var(--sky-50); }
.file-drop input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.file-drop:focus-within { border-color: var(--blue); background: var(--sky-50); box-shadow: 0 0 0 4px rgba(10,102,194,.18); }
.file-drop strong { color: var(--blue); }
.file-drop .file-name { display: block; margin-top: 8px; color: var(--ink); font-weight: 600; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .86rem; color: var(--muted); }
.consent input { margin-top: 4px; accent-color: var(--blue); width: 16px; height: 16px; flex: none; }
.form-status { display: none; padding: 14px 16px; border-radius: 10px; font-size: .95rem; margin-top: 16px; }
.form-status.ok { display: block; background: var(--green-50); color: #166534; border: 1px solid #BBF7D0; }
.form-status.bad { display: block; background: var(--red-50); color: #991B1B; border: 1px solid #FECACA; }
.form-status.info { display: block; background: var(--sky-50); color: var(--navy-700); border: 1px solid #BAE6FD; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- Accordion (FAQ) ---------- */
.accordion { display: grid; gap: 10px; }
.acc-item { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; }
.acc-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; text-align: left; padding: 18px 20px; background: none; border: 0; font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--ink); }
.acc-btn svg { width: 20px; height: 20px; flex: none; transition: transform .25s; color: var(--blue); }
.acc-item.open .acc-btn svg { transform: rotate(45deg); }
.acc-body { display: none; padding: 0 20px 20px; color: var(--text); }
.acc-item.open .acc-body { display: block; }
.acc-body p:last-child { margin-bottom: 0; }

/* ---------- Feature list ---------- */
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.feature-list li { display: flex; gap: 14px; }
.feature-list .ic { width: 40px; height: 40px; border-radius: 10px; background: var(--sky-50); color: var(--blue); display: grid; place-items: center; flex: none; }
.feature-list .ic svg { width: 20px; height: 20px; }
.feature-list strong { display: block; color: var(--ink); font-family: var(--font-head); }
.feature-list span { color: var(--muted); font-size: .95rem; }
.checklist { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 10px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; }
.checklist li::before { content: ''; width: 22px; height: 22px; flex: none; border-radius: 50%; background: var(--green-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316A34A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat; margin-top: 2px; }

/* Visual panel used on About / Services */
.visual-panel { border-radius: var(--radius-lg); padding: 32px; background: linear-gradient(160deg, var(--navy), var(--blue)); color: #fff; position: relative; overflow: hidden; min-height: 360px; box-shadow: var(--shadow-lg); }
.visual-panel .orb { position: absolute; border-radius: 50%; background: rgba(255,255,255,.08); }
.visual-panel .stack { position: relative; z-index: 1; display: grid; gap: 14px; }
.visual-panel .mini { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); border-radius: 14px; padding: 16px 18px; backdrop-filter: blur(6px); }
.visual-panel strong, .visual-panel .mini strong { display: block; font-family: var(--font-head); font-size: 1.05rem; color: #fff; }
.visual-panel .mini span { color: #C7D6EA; font-size: .88rem; }
.visual-panel .mini .bar { height: 8px; border-radius: 4px; background: rgba(255,255,255,.15); margin-top: 10px; overflow: hidden; }
.visual-panel .mini .bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--sky), var(--amber)); border-radius: 4px; }

/* ---------- Values / team ---------- */
.value-tile { padding: 24px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line-soft); }
.value-tile .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--amber-50); color: var(--amber-600); display: grid; place-items: center; margin-bottom: 14px; }
.value-tile .ic svg { width: 22px; height: 22px; }
.value-tile h3 { font-size: 1.05rem; }
.value-tile p { color: var(--muted); margin: 0; font-size: .95rem; }
.team-card { text-align: center; padding: 28px 22px; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); }
.team-card .avatar { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 14px; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: #fff; background: linear-gradient(135deg, var(--navy), var(--sky)); }
.team-card h3 { font-size: 1.05rem; margin-bottom: 2px; }
.team-card .role { color: var(--blue); font-weight: 600; font-size: .88rem; margin-bottom: 8px; }
.team-card p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ---------- Insights / articles ---------- */
.post-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card .cover { aspect-ratio: 16 / 9; display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; position: relative; }
.post-card .cover .cat { position: absolute; left: 14px; top: 14px; }
.post-card .body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-card h3 { font-size: 1.1rem; margin: 0; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--blue); }
.post-card p { color: var(--muted); font-size: .93rem; margin: 0; flex: 1; }
.post-card .meta { font-size: .8rem; color: var(--muted); display: flex; gap: 10px; }
.article-body { font-size: 1.06rem; }
.article-body h2 { font-size: 1.5rem; margin-top: 36px; }
.article-body h3 { font-size: 1.2rem; margin-top: 26px; }
.article-body blockquote { margin: 24px 0; padding: 18px 22px; border-left: 4px solid var(--amber); background: var(--amber-50); border-radius: 0 12px 12px 0; color: var(--ink); font-weight: 500; }
.article-body ul li, .article-body ol li { margin-bottom: 8px; }
.article-cover { aspect-ratio: 21 / 9; border-radius: var(--radius-lg); display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 4rem; margin-bottom: 32px; }
.share-row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line-soft); }

/* ---------- CTA band ---------- */
.cta-band { background: radial-gradient(700px 300px at 10% 0%, rgba(56,189,248,.35), transparent 60%), radial-gradient(600px 300px at 100% 100%, rgba(245,165,36,.25), transparent 60%), var(--navy); color: #fff; border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 56px); display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center; }
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band .eyebrow { color: var(--sky); }
.cta-band p { color: #C7D6EA; margin: 0; font-size: 1.08rem; }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 860px) { .cta-band { grid-template-columns: 1fr; } .cta-band .actions { justify-content: flex-start; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; align-items: start; }
.contact-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.contact-list li { display: flex; gap: 14px; padding: 18px; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius); }
.contact-list .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--sky-50); color: var(--blue); display: grid; place-items: center; flex: none; }
.contact-list .ic svg { width: 22px; height: 22px; }
.contact-list strong { display: block; font-family: var(--font-head); color: var(--ink); margin-bottom: 2px; }
.contact-list span, .contact-list a { font-size: .95rem; }
.placeholder { color: var(--muted); font-style: italic; }
.office-card { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; }
.office-card .map { aspect-ratio: 16 / 9; background: repeating-linear-gradient(45deg, #F1F5F9 0 12px, #E9EEF5 12px 24px); display: grid; place-items: center; color: var(--muted); font-size: .9rem; text-align: center; padding: 16px; }
.office-card .map iframe { width: 100%; height: 100%; border: 0; }
.office-card .body { padding: 20px 22px; }
.office-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Legal / prose ---------- */
.prose h2 { font-size: 1.4rem; margin-top: 32px; }
.prose h3 { font-size: 1.1rem; margin-top: 22px; }
.prose p, .prose li { color: var(--text); }
.prose .updated { color: var(--muted); font-size: .9rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #A9B8CF; padding: 64px 0 0; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 32px; }
.site-footer h3 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.site-footer a { color: #C7D2E1; font-size: .94rem; }
.site-footer a:hover { color: var(--sky); }
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: .94rem; max-width: 320px; }
.social { display: flex; gap: 8px; margin-top: 18px; }
.social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); display: grid; place-items: center; }
.social a:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.social svg { width: 18px; height: 18px; }
.social a[hidden] { display: none; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; }
.footer-contact svg { width: 16px; height: 16px; color: var(--sky); flex: none; margin-top: 4px; }
.site-footer .placeholder { color: #A9B8CF; }
.footer-bottom { margin-top: 48px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.08); font-size: .84rem; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; }
.footer-bottom .legal { display: flex; gap: 16px; }
.footer-note { font-size: .82rem; color: #7F91AE; margin-top: 10px; }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Floating WhatsApp + toast ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60; width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px -8px rgba(37,211,102,.8);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.06); color: #fff; }
.wa-float svg { width: 28px; height: 28px; }
.wa-float[hidden] { display: none; }
.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%) translateY(20px); background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 12px; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transition: all .3s var(--ease); z-index: 100; font-size: .95rem; max-width: 92vw; }
.toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 90; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(11,31,58,.55); backdrop-filter: blur(4px); }
.modal.open { display: flex; }
.modal-box { background: #fff; border-radius: var(--radius-lg); width: 100%; max-width: 640px; max-height: 90vh; overflow-y: auto; padding: clamp(22px, 3vw, 34px); position: relative; animation: fadeIn .25s var(--ease); }
.modal-close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: #fff; display: grid; place-items: center; }
.modal-close svg { width: 18px; height: 18px; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; gap: 12px; width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .hero-card, .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; } .mt-5 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.lead { font-size: 1.12rem; color: var(--muted); }
.row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.between { justify-content: space-between; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.notfound { text-align: center; padding: clamp(64px, 10vw, 120px) 0; }
.notfound .big { font-family: var(--font-head); font-size: clamp(5rem, 14vw, 9rem); font-weight: 800; line-height: 1; background: linear-gradient(90deg, var(--blue), var(--sky)); -webkit-background-clip: text; background-clip: text; color: transparent; }
