/* ==========================================================================
   PLACEHOLDER BRAND STYLESHEET
   Swap the color variables below for your real brand colors, and swap the
   font links in index.html <head> if you want different typefaces.
   ========================================================================== */

:root {
  --bg: #0b0d10;
  --bg-alt: #0f1216;
  --card: #12151b;
  --border: #232830;
  --border-soft: #1a1e26;
  --text: #e9eaed;
  --text-dim: #9aa0ac;
  --text-mute: #6b7280;
  --accent: #3b82f6;
  --accent-bright: #60a5fa;
  --accent-contrast: #ffffff;
  --danger-bg: #1a0e0e;
  --danger-border: #4a2a2a;
  --danger-text: #e08a8a;
  --success-text: #8fd6ab;
  --radius: 8px;
  --radius-sm: 4px;
  --max: 1200px;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-head: 'Barlow Condensed', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
::selection { background: var(--accent); color: var(--accent-contrast); }

[x-cloak] { display: none !important; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px); }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin: 0;
  color: #fff;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: box-shadow .15s, background .15s, border-color .15s, color .15s;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-contrast);
  box-shadow: 0 0 26px rgba(59, 130, 246, .28);
}
.btn-primary:hover { box-shadow: 0 0 38px rgba(59, 130, 246, .55); }
.btn-primary:disabled { opacity: .6; cursor: default; }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ---------------------------------------------------------------- NAV --- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 13, 16, .78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #fff;
}
.brand span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 30px); font-size: 14px; }
.nav-links a { text-decoration: none; color: var(--text-dim); transition: color .15s; }
.nav-links a:hover { color: var(--text); }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border); border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: var(--text);
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--text);
  transition: transform .2s;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-bottom: 1px solid var(--border-soft);
}
.mobile-menu a {
  text-decoration: none; color: var(--text); font-size: 16px;
  padding: 14px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid var(--border-soft);
}

@media (max-width: 760px) {
  .nav-links, .nav-cta-desktop { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu.is-open { display: flex; }
}

/* --------------------------------------------------------------- HERO --- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 12vw, 130px) 0 clamp(60px, 9vw, 110px);
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(59,130,246,.10) 0%, transparent 60%),
    linear-gradient(180deg, #0d1014 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border-soft);
}
.hero .wrap { text-align: center; max-width: 780px; }
.hero h1 {
  font-size: clamp(38px, 6.4vw, 76px);
  line-height: .95;
}
.hero h1 mark {
  background: var(--accent);
  color: var(--accent-contrast);
  padding: 0 .16em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hero p {
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 52ch;
  margin: 22px auto 0;
}
.hero .cta-row { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------------------------- STATS --- */
.stats {
  border-bottom: 1px solid var(--border-soft);
  padding: clamp(48px, 7vw, 84px) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(22px, 2.6vw, 30px);
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 46px);
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 10px;
}

/* ---------------------------------------------------------- HOW IT WORKS */
.how {
  padding: clamp(56px, 8vw, 100px) 0;
  border-bottom: 1px solid var(--border-soft);
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(36px, 4vw, 54px); }
.section-head h2 { font-size: clamp(32px, 5vw, 54px); }
.section-head p { color: var(--text-dim); font-size: 15px; line-height: 1.6; margin-top: 14px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 2.6vw, 32px);
}
.step-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 42px;
  color: var(--accent);
  line-height: 1;
}
.step-card h3 {
  font-size: 19px;
  font-weight: 600;
  text-transform: none;
  margin: 16px 0 10px;
  font-family: var(--font-body);
  color: #fff;
}
.step-card p { font-size: 14px; line-height: 1.6; color: var(--text-dim); margin: 0; }

/* ----------------------------------------------------------- BEFORE/AFTER */
.compare {
  padding: clamp(56px, 8vw, 100px) 0;
  border-bottom: 1px solid var(--border-soft);
}
.compare-wrap {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
}
.compare-layer {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 15px;
}
.compare-after {
  background: repeating-linear-gradient(135deg, #1c2029 0 18px, #171b23 18px 36px);
  color: var(--text-mute);
}
.compare-before {
  background: repeating-linear-gradient(135deg, #23180f 0 18px, #1c150e 18px 36px);
  color: #b98a4f;
}
.compare-tag {
  position: absolute; top: 14px; font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 5px 11px; border-radius: 20px;
  background: rgba(0,0,0,.5); color: #fff;
}
.compare-tag.tag-before { left: 14px; }
.compare-tag.tag-after { right: 14px; }
.compare-handle {
  position: absolute; top: 0; bottom: 0;
  width: 3px; background: var(--accent);
  transform: translateX(-50%);
  box-shadow: 0 0 14px rgba(59,130,246,.6);
}
.compare-grip {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-contrast); font-size: 14px; font-weight: 700;
  box-shadow: 0 0 20px rgba(59,130,246,.5);
}
.compare-caption {
  text-align: center; color: var(--text-mute); font-size: 13px; margin-top: 16px;
}

/* --------------------------------------------------------------- GALLERY */
.gallery {
  padding: clamp(56px, 8vw, 100px) 0;
  border-bottom: 1px solid var(--border-soft);
}
.carousel { position: relative; max-width: 900px; margin: 0 auto; }
.carousel-viewport { overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); }
.carousel-track { display: flex; transition: transform .4s ease; }
.carousel-slide {
  flex: 0 0 100%;
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px;
  background: repeating-linear-gradient(135deg, #181c24 0 18px, #131620 18px 36px);
  color: var(--text-mute);
}
.carousel-slide strong {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .06em;
  color: var(--text-dim); font-size: 15px;
}
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(11,13,16,.7); border: 1px solid var(--border);
  color: #fff; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.carousel-arrow.prev { left: -14px; }
.carousel-arrow.next { right: -14px; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.carousel-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0;
  background: var(--border); cursor: pointer;
}
.carousel-dots button.is-active { background: var(--accent); }

/* --------------------------------------------------------------- SOCIAL */
.social-feed { padding: clamp(48px, 7vw, 90px) 0; border-bottom: 1px solid var(--border-soft); }
.social-block { margin-bottom: clamp(40px, 6vw, 64px); }
.social-block:last-child { margin-bottom: 0; }
.social-block-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.social-block-head h2 { font-size: clamp(26px, 3.2vw, 36px); margin-top: 6px; }
.reel-row, .video-row { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 4px; }
.reel-card, .video-card {
  flex: 0 0 auto; position: relative; border-radius: var(--radius); overflow: hidden;
  background: repeating-linear-gradient(135deg, #181c24 0 18px, #131620 18px 36px);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px;
  text-decoration: none; color: var(--text-mute); border: 1px solid var(--border);
}
.reel-card { width: clamp(140px, 22vw, 190px); aspect-ratio: 9/16; }
.video-card { width: clamp(220px, 32vw, 320px); aspect-ratio: 16/9; }
.play-icon {
  width: 44px; height: 44px; border-radius: 50%; background: rgba(59,130,246,.9); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 15px; padding-left: 3px;
}
.reel-label { font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }
.reel-card:hover, .video-card:hover { border-color: var(--accent); }

/* ------------------------------------------------------------ COMPLIANCE */
.compliance {
  padding: clamp(56px, 8vw, 100px) 0;
  border-bottom: 1px solid var(--border-soft);
}
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.map-col { display: flex; flex-direction: column; align-items: center; }
.map-col svg { width: 100%; max-width: 420px; overflow: visible; }
.map-col path { cursor: pointer; transition: fill .15s, stroke .15s; stroke-width: 1.6; }
.map-col text { font-family: var(--font-body); font-size: 20px; font-weight: 600; text-anchor: middle; text-transform: uppercase; pointer-events: none; }
.map-hint { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-mute); margin-top: 18px; }
.compliance-panel {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
}
.compliance-panel .name-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 6px; }
.compliance-panel .name-row .code { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.compliance-panel h3 { font-size: clamp(26px, 3.4vw, 38px); }
.compliance-panel .scheme {
  font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-mute); margin-bottom: 20px;
}
.compliance-panel p { font-size: 14.5px; line-height: 1.65; color: var(--text-dim); margin: 0 0 14px; }
.compliance-disclaimer {
  font-size: 12px; line-height: 1.6; color: var(--text-mute);
  border-left: 2px solid var(--accent); padding-left: 14px; margin-top: 30px; max-width: 70ch;
}

/* ---------------------------------------------------------------- STOCK */
.stock {
  padding: clamp(56px, 8vw, 100px) 0;
  border-bottom: 1px solid var(--border-soft);
}
.stock-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: clamp(24px, 3vw, 34px); }
.stock-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.stock-filters button {
  font-size: 13px; font-weight: 500; padding: 8px 15px; border-radius: 20px;
  border: 1px solid var(--border); background: transparent; color: var(--text-dim); cursor: pointer;
}
.stock-filters button.is-active { background: var(--accent); border-color: var(--accent); color: var(--accent-contrast); }
.stock-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.car-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.car-photo {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: repeating-linear-gradient(135deg, #181c24 0 18px, #131620 18px 36px);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mute); font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none;
}
.car-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.car-title-link { text-decoration: none; }
.car-title-link:hover h3 { color: var(--accent); }
.car-badge {
  position: absolute; top: 10px; left: 10px; font-size: 10.5px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 5px 10px; border-radius: 20px; background: rgba(11,13,16,.75);
}
.car-badge.available { color: var(--accent); }
.car-badge.on-hold { color: #f2d9a0; }
.car-badge.sold { color: var(--text-mute); }
.car-price {
  position: absolute; bottom: 10px; left: 12px; font-family: var(--font-head); font-weight: 700;
  font-size: 22px; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,.6);
}
.car-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.car-body h3 { font-size: 17px; font-weight: 600; text-transform: none; font-family: var(--font-body); color: #fff; }
.car-meta { font-size: 12px; color: var(--text-mute); }
.car-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.car-tags span {
  font-size: 11px; color: var(--text-dim); background: #161a24; border: 1px solid #232838;
  padding: 4px 8px; border-radius: 4px;
}
.car-body p.blurb { font-size: 13px; line-height: 1.55; color: var(--text-dim); flex: 1; margin: 0; }
.car-body .btn-outline { text-align: center; margin-top: 4px; }
.stock-empty { text-align: center; padding: 50px 20px; color: var(--text-mute); font-size: 14px; }

/* ---------------------------------------------------------- STOCK PAGE */
.stock-page-hero {
  padding: clamp(48px, 8vw, 90px) 0 clamp(32px, 5vw, 48px);
  border-bottom: 1px solid var(--border-soft);
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(59,130,246,.10) 0%, transparent 60%), linear-gradient(180deg, #0d1014 0%, var(--bg) 100%);
}
.stock-page-hero h1 { font-size: clamp(36px, 6vw, 62px); margin: 12px 0 16px; }
.stock-page-hero p { font-size: 15px; line-height: 1.6; color: var(--text-dim); max-width: 60ch; }
.stock-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.stock-toolbar .stock-filters { margin-bottom: 0; }
.stock-sort { display: flex; align-items: center; gap: 10px; }
.stock-sort label { font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mute); }
.stock-sort select {
  font-family: var(--font-body); font-size: 13px; color: var(--text);
  padding: 9px 12px; border: 1px solid var(--border); background: var(--card); border-radius: var(--radius-sm); outline: none;
}

/* --------------------------------------------------------- CAR DETAIL PAGE */
.car-detail-loading { text-align: center; padding: 90px 20px; color: var(--text-dim); font-size: 14.5px; display: flex; flex-direction: column; gap: 16px; align-items: center; }
.car-detail { padding: clamp(32px, 5vw, 56px) 0 clamp(56px, 8vw, 100px); }
.back-link { display: inline-block; font-size: 13px; color: var(--text-dim); text-decoration: none; margin-bottom: 22px; }
.back-link:hover { color: var(--accent); }
.car-detail-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(28px, 4vw, 48px); align-items: start; }
.car-gallery { position: relative; }
.car-gallery-viewport { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); }
.car-gallery-track { display: flex; transition: transform .35s ease; }
.car-gallery-slide {
  flex: 0 0 100%; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(135deg, #181c24 0 18px, #131620 18px 36px);
  color: var(--text-mute); font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
}
.car-gallery-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.car-detail-info h1 { font-size: clamp(30px, 4vw, 46px); line-height: 1; margin: 8px 0 16px; }
.car-detail-price { font-family: var(--font-head); font-weight: 700; font-size: clamp(26px, 3vw, 34px); color: #fff; margin-bottom: 16px; }
.feature-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.feature-chip {
  font-size: 12px; font-weight: 500; color: var(--text-dim); background: var(--card);
  border: 1px solid var(--border); border-radius: 20px; padding: 6px 13px;
}
.car-spec-table { margin-top: clamp(40px, 6vw, 56px); max-width: 70ch; }
.car-spec-table h2 { font-size: 22px; margin-bottom: 18px; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 40px; border-top: 1px solid var(--border-soft); }
.spec-row {
  display: flex; justify-content: space-between; gap: 16px; padding: 12px 0;
  border-bottom: 1px solid var(--border-soft); font-size: 14px;
}
@media (max-width: 560px) {
  .spec-grid { grid-template-columns: 1fr; }
}
.spec-row span { color: var(--text-mute); }
.spec-row strong { color: var(--text); font-weight: 500; text-align: right; }
.car-detail-description { max-width: 70ch; margin-top: clamp(40px, 6vw, 64px); }
.car-detail-description h2 { font-size: 22px; margin-bottom: 16px; }
.car-detail-description p { font-size: 15px; line-height: 1.7; color: var(--text-dim); margin: 0 0 14px; }
@media (max-width: 760px) {
  .car-detail-grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------- ENQUIRE */
.enquire, .careers-teaser {
  padding: clamp(56px, 8vw, 110px) 0;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
}
.enquire-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(40px, 8vw, 110px); align-items: start; }
.enquire-copy h2 { font-size: clamp(34px, 5vw, 56px); line-height: .95; }
.enquire-copy p { font-size: 15.5px; line-height: 1.7; color: var(--text-dim); max-width: 46ch; margin-top: 22px; }
.form-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: clamp(26px, 3.2vw, 38px);
  box-shadow: 0 30px 70px rgba(0,0,0,.4);
  max-width: 520px;
  width: 100%;
}
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 15px; }
.field label { font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--text);
  padding: 12px 13px; border: 1px solid var(--border); background: var(--bg); border-radius: var(--radius-sm);
  outline: none; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.field-row { display: flex; gap: 12px; flex-wrap: wrap; }
.field-row .field { flex: 1; min-width: 140px; }
.form-error {
  font-size: 12.5px; color: var(--danger-text); border: 1px solid var(--danger-border);
  background: var(--danger-bg); border-radius: var(--radius-sm); padding: 10px 12px; margin-bottom: 14px;
}
.success-tag { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--success-text); margin-bottom: 14px; }
.success-block h3 { font-size: 26px; margin-bottom: 12px; }
.success-block p { font-size: 14px; line-height: 1.6; color: var(--text-dim); margin-bottom: 16px; }

/* --------------------------------------------------------------- CAREERS (homepage teaser) */
.careers-teaser-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.careers-teaser-inner h2 { font-size: clamp(28px, 3.6vw, 42px); }
.careers-teaser-inner p.lead { font-size: 15px; line-height: 1.65; color: var(--text-dim); max-width: 54ch; margin: 16px auto 24px; }

/* ---------------------------------------------------------------- FOOTER */
footer { background: var(--bg-alt); }
footer .wrap { padding: clamp(44px, 5vw, 68px) clamp(16px, 4vw, 48px); }
.footer-top { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: clamp(28px, 5vw, 48px); }
.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); transition: color .15s, border-color .15s;
}
.footer-social a:hover { color: var(--accent); border-color: var(--accent); }
.footer-col h4 { font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--text-mute); margin: 0 0 14px; }
.footer-col a, .footer-col span { display: block; text-decoration: none; color: var(--text-dim); font-size: 14px; margin-bottom: 10px; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border-soft); margin-top: 36px; padding-top: 20px;
  font-size: 12.5px; color: var(--text-mute); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}

/* ---------------------------------------------------------- CAREERS PAGE */
.careers-hero {
  padding: clamp(56px, 9vw, 100px) 0 clamp(40px, 6vw, 64px);
  text-align: center;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(59,130,246,.10) 0%, transparent 60%), linear-gradient(180deg, #0d1014 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border-soft);
}
.careers-hero .wrap { max-width: 720px; }
.careers-hero h1 { font-size: clamp(40px, 7vw, 80px); line-height: .95; margin: 14px 0 0; }
.careers-hero p { font-size: 15.5px; line-height: 1.6; color: var(--text-dim); max-width: 56ch; margin: 20px auto 0; }
.careers-hero-note { font-size: 12.5px; color: var(--text-mute); margin-top: 16px; }

.positions { padding: clamp(48px, 7vw, 90px) 0; border-bottom: 1px solid var(--border-soft); }
.position-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px);
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: clamp(26px, 3.4vw, 44px);
  margin-bottom: 22px;
}
.position-card:last-child { margin-bottom: 0; }
.position-badge {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--accent); border-radius: 20px; padding: 5px 12px; margin-bottom: 16px;
}
.position-main h2 { font-size: clamp(28px, 3.4vw, 40px); margin: 6px 0 14px; }
.position-main p { font-size: 14.5px; line-height: 1.65; color: var(--text-dim); margin: 0 0 14px; }
.position-main p a { color: var(--accent); text-decoration: underline; }
.position-main .btn { margin-top: 6px; }
.position-details h3 {
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-mute);
  margin: 0 0 18px; font-family: var(--font-body);
}
.role-checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.role-checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; line-height: 1.6; color: var(--text-dim); }
.role-checklist .check {
  flex: 0 0 auto; width: 20px; height: 20px; border-radius: 5px; background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; margin-top: 1px;
}
.role-checklist strong { color: var(--text); }
@media (max-width: 760px) {
  .position-card, .position-card--reverse { grid-template-columns: 1fr; }
}

.apply-section { padding: clamp(48px, 7vw, 90px) 0; }
.apply-card {
  background: #f3f6fb; color: #0f1424; border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px); max-width: 620px; margin: 0 auto;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.apply-card .eyebrow { color: var(--accent); }
.apply-card h2 { color: #0f1424; font-size: clamp(30px, 4vw, 44px); }
.apply-card .apply-lead { font-size: 14.5px; line-height: 1.6; color: #4b5468; margin: 12px 0 26px; }
.apply-card .field label { color: #4b5468; }
.apply-card .field input, .apply-card .field select, .apply-card .field textarea {
  background: #fff; border-color: #d7deea; color: #0f1424;
}
.apply-card .field input:focus, .apply-card .field select:focus { border-color: var(--accent); }
.apply-card .optional { text-transform: none; font-weight: 400; color: #8a92a3; }
.apply-card .success-block h3 { color: #0f1424; }
.apply-card .success-block p { color: #4b5468; }

/* ----------------------------------------------------------- LEGAL PAGES */
.legal-page { padding: clamp(48px, 7vw, 90px) 0 clamp(64px, 9vw, 110px); }
.legal-page .wrap { max-width: 760px; }
.legal-page h1 { font-size: clamp(34px, 5vw, 52px); margin: 10px 0 18px; }
.legal-updated { font-size: 13px; color: var(--text-mute); margin: 0 0 40px; padding-bottom: 24px; border-bottom: 1px solid var(--border-soft); }
.legal-page h2 {
  font-size: 18px; font-weight: 600; text-transform: none; font-family: var(--font-body);
  color: #fff; margin: 36px 0 12px;
}
.legal-page h2:first-of-type { margin-top: 0; }
.legal-page p { font-size: 14.5px; line-height: 1.7; color: var(--text-dim); margin: 0 0 14px; }
.legal-page a { color: var(--accent); text-decoration: underline; }
