/* ============================================================
   Careers Landing — self-contained, page-scoped styles.
   Ported from the React/Tailwind source into collision-proof
   CSS. EVERYTHING is scoped under `.cl` so it never affects
   the site's Bootstrap header/footer.
   ============================================================ */

.cl {
  /* Design tokens (converted from source oklch theme) */
  --cl-primary: #2563eb;
  --cl-cyan: #5fb8e8;
  --cl-navy: #081a5a;
  --cl-fg: #14173a;
  --cl-surface: #f6f7fa;
  --cl-border: #e5e8ef;
  --cl-muted: #667085;
  --cl-white: #ffffff;

  --cl-grad-primary: linear-gradient(135deg, #2563eb, #5fb8e8);
  --cl-grad-navy: linear-gradient(160deg, #0a1338, #20317a);
  --cl-grad-hero:
    radial-gradient(circle at 15% 10%, rgba(95, 184, 232, 0.22), transparent 55%),
    radial-gradient(circle at 85% 90%, rgba(37, 99, 235, 0.18), transparent 60%),
    linear-gradient(180deg, #fbfcff, #f2f5fb);

  --cl-shadow-soft: 0 8px 24px -8px rgba(8, 26, 90, 0.12), 0 2px 4px -1px rgba(8, 26, 90, 0.06);
  --cl-shadow-elevated: 0 24px 60px -20px rgba(37, 99, 235, 0.28), 0 8px 20px -8px rgba(8, 26, 90, 0.12);
  --cl-grid-line: rgba(8, 26, 90, 0.08);
  --cl-grid-line-dark: rgba(255, 255, 255, 0.06);

  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--cl-fg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.cl *,
.cl *::before,
.cl *::after { box-sizing: border-box; }

/* Mirror Tailwind's preflight: zero paragraph margins so the site's
   global `p { margin-bottom }` can't stack onto our own spacing.
   All intended spacing is set explicitly via margin-top/gap below. */
.cl p { margin: 0; }

.cl ::selection { background: rgba(37, 99, 235, 0.3); }

/* ---------------- Layout helpers ---------------- */
.cl-section { position: relative; padding: 6rem 0; }
.cl-section--tall { padding: 7rem 0; }
.cl-section--dark { color: #fff; overflow: hidden; }
.cl-container { width: 100%; max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
.cl-narrow-5 { max-width: 64rem; margin-left: auto; margin-right: auto; }
.cl-narrow-4 { max-width: 56rem; margin-left: auto; margin-right: auto; }
.cl-narrow-3 { max-width: 48rem; }
.cl-narrow-3.cl-center { margin-left: auto; margin-right: auto; }

@media (min-width: 1024px) {
  .cl-section { padding: 8rem 0; }
  .cl-section--tall { padding: 9rem 0; }
}

/* ---------------- Surfaces / effects ---------------- */
.cl-glass {
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--cl-shadow-soft);
}
.cl-glass-dark {
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.cl-grid-bg {
  background-image:
    linear-gradient(to right, var(--cl-grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--cl-grid-line) 1px, transparent 1px);
  background-size: 56px 56px;
}
.cl-grid-bg-dark {
  background-image:
    linear-gradient(to right, var(--cl-grid-line-dark) 1px, transparent 1px),
    linear-gradient(to bottom, var(--cl-grid-line-dark) 1px, transparent 1px);
  background-size: 56px 56px;
}
.cl-mask-center { -webkit-mask-image: radial-gradient(ellipse at center, #000, transparent 75%); mask-image: radial-gradient(ellipse at center, #000, transparent 75%); }
.cl-text-gradient {
  background: var(--cl-grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cl-shadow-soft { box-shadow: var(--cl-shadow-soft); }
.cl-shadow-elevated { box-shadow: var(--cl-shadow-elevated); }

/* Decorative fill layers must never intercept clicks — otherwise they
   paint over content (e.g. the hero CTA buttons) and swallow taps. */
.cl-abs-fill { position: absolute; inset: 0; pointer-events: none; }
.cl-eyebrow {
  font-size: 0.875rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--cl-primary);
}

/* ---------------- Typography ---------------- */
/* Force Inter on headings so the site's global heading font doesn't
   apply. Colors are set explicitly per-class below (a class selector
   already outranks the site's bare `h2 { color }` rule). */
.cl h1, .cl h2, .cl h3, .cl h4 { margin: 0; font-family: inherit; }
.cl-h1 { font-size: 3rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.02; color: var(--cl-navy); margin: 0; }
.cl-h2 { font-size: 3rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; color: var(--cl-navy); }
.cl-section--dark .cl-h2 { color: #fff; }
.cl-lead { font-size: 1.125rem; color: var(--cl-muted); line-height: 1.7; }
@media (min-width: 768px) {
  .cl-h1 { font-size: 3.75rem; }
  .cl-h2 { font-size: 3.75rem; }
}
@media (min-width: 1024px) {
  .cl-h1 { font-size: 4.5rem; }
}

/* ---------------- Buttons ---------------- */
.cl-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 2rem; padding: 0.875rem 1.5rem;
  font-size: 0.875rem; font-weight: 600; text-decoration: none;
  cursor: pointer; border: 0; transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}
.cl-btn svg { width: 1rem; height: 1rem; }
.cl-btn--primary { color: #fff; background: var(--cl-grad-primary); box-shadow: var(--cl-shadow-elevated); }
.cl-btn--primary:hover { transform: translateY(-2px); color: #fff; }
.cl-btn--ghost { border: 1px solid var(--cl-border); background: #fff; color: var(--cl-navy); }
.cl-btn--ghost:hover { background: var(--cl-surface); color: var(--cl-navy); }
.cl-btn--white { background: #fff; color: var(--cl-navy); box-shadow: var(--cl-shadow-elevated); }
.cl-btn--white:hover { transform: translateY(-2px); color: var(--cl-navy); }
.cl-btn--outline-light { border: 1px solid rgba(255, 255, 255, 0.2); color: #fff; background: transparent; }
.cl-btn--outline-light:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.cl-btn:hover svg.cl-arrow { transform: translateX(4px); }
.cl-arrow { transition: transform 0.2s ease; }

/* ============================================================
   Scroll reveal (replaces framer-motion whileInView)
   ============================================================ */
.cl-reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.cl-reveal.is-visible { opacity: 1; transform: none; }
.cl-reveal--left { transform: translateX(-30px); }
.cl-reveal--right { transform: translateX(24px); }
@media (prefers-reduced-motion: reduce) {
  .cl-reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ============================================================
   Keyframe animations
   ============================================================ */
@keyframes cl-float-slow { 0%, 100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-14px) translateX(6px); } }
@keyframes cl-pulse-soft { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }
@keyframes cl-bp-draw { to { stroke-dashoffset: 0; } }
.cl-float { animation: cl-float-slow 7s ease-in-out infinite; }
.cl-pulse { animation: cl-pulse-soft 3s ease-in-out infinite; }
.cl-bp-path { stroke-dasharray: 1400; stroke-dashoffset: 1400; animation: cl-bp-draw 3s ease-out forwards; }
.cl-bp-path.delay { animation-duration: 3.5s; animation-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  .cl-float, .cl-pulse { animation: none; }
  .cl-bp-path { stroke-dashoffset: 0; animation: none; }
}

/* ============================================================
   01 · HERO
   ============================================================ */
.cl-hero { background: var(--cl-grad-hero); padding: 4rem 0 5rem; }
.cl-hero__grid-layout { display: grid; grid-template-columns: 1fr; gap: 3.5rem; align-items: center; }
.cl-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 9999px; padding: 0.375rem 1rem;
  font-size: 0.875rem; font-weight: 500; color: var(--cl-navy);
}
.cl-badge svg { width: 1rem; height: 1rem; color: var(--cl-primary); }
.cl-hero__sub { margin-top: 1.5rem; font-size: 1.125rem; font-weight: 500; color: var(--cl-muted); }
.cl-hero__body { margin-top: 1.25rem; max-width: 42rem; font-size: 1rem; color: var(--cl-muted); line-height: 1.7; }
.cl-hero__ctas { margin-top: 2.25rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.cl-hero__stats { margin-top: 3.5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.cl-stat { border-radius: 2rem; padding: 1rem; }
.cl-stat__num { font-size: 1.875rem; font-weight: 700; letter-spacing: -0.02em; color: var(--cl-navy); }
.cl-stat__label { margin-top: 0.25rem; font-size: 0.75rem; color: var(--cl-muted); font-weight: 500; }
.cl-hero__visual { display: none; }

@media (min-width: 768px) {
  .cl-hero__sub { font-size: 1.25rem; }
  .cl-hero__body { font-size: 1.125rem; }
  .cl-hero__stats { grid-template-columns: repeat(4, 1fr); }
  .cl-stat__num { font-size: 2.25rem; }
  .cl-stat__label { font-size: 0.875rem; }
}
@media (min-width: 1024px) {
  .cl-hero { padding: 6rem 0 7rem; }
  .cl-hero__grid-layout { grid-template-columns: 1.2fr 1fr; }
  .cl-hero__visual { display: block; position: relative; height: 680px; }
}

/* Floating dashboard cards */
.cl-fcard { position: absolute; border-radius: 2rem; padding: 1.25rem; box-shadow: var(--cl-shadow-elevated); }
.cl-fcard--1 { top: 0; left: 0.5rem; width: 20rem; }
.cl-fcard--2 { bottom: 0; right: 0; width: 22rem; }
.cl-fcard__head { display: flex; align-items: center; gap: 0.75rem; }
.cl-fcard__icon { width: 2.5rem; height: 2.5rem; border-radius: 1.75rem; display: grid; place-items: center; flex: none; }
.cl-fcard__icon svg { width: 1.25rem; height: 1.25rem; }
.cl-ic-primary { background: rgba(37, 99, 235, 0.1); color: var(--cl-primary); }
.cl-ic-cyan { background: rgba(95, 184, 232, 0.15); color: var(--cl-navy); }
.cl-fcard__title { font-size: 0.875rem; font-weight: 600; color: var(--cl-navy); }
.cl-fcard__desc { font-size: 0.75rem; color: var(--cl-muted); }
.cl-live { margin-left: auto; display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.625rem; color: #059669; font-weight: 600; }
.cl-live__dot { width: 0.375rem; height: 0.375rem; border-radius: 9999px; background: #10b981; }

.cl-viewport { margin-top: 0.75rem; position: relative; height: 6rem; border-radius: 1.75rem; overflow: hidden; background: linear-gradient(135deg, var(--cl-navy), rgba(8, 26, 90, 0.9) 45%, rgba(37, 99, 235, 0.4)); }
.cl-bbox { position: absolute; border-radius: 4px; }
.cl-bbox__tag { position: absolute; top: -7px; left: 0; font-size: 8px; font-weight: 700; background: var(--cl-navy); padding: 0 4px; border-radius: 3px; white-space: nowrap; }
.cl-bbox--ok { border: 2px solid #34d399; }
.cl-bbox--ok .cl-bbox__tag { color: #6ee7b7; }
.cl-bbox--alert { border: 2px solid #fb7185; }
.cl-bbox--alert .cl-bbox__tag { color: #fda4af; }
.cl-zone { position: absolute; top: 0.5rem; right: 0.5rem; bottom: 0.5rem; width: 4rem; border-radius: 1.375rem; border: 1px solid rgba(251, 191, 36, 0.7); background: rgba(251, 191, 36, 0.1); }
.cl-zone__tag { position: absolute; top: -7px; left: 0.25rem; font-size: 8px; font-weight: 700; color: #fcd34d; background: var(--cl-navy); padding: 0 4px; border-radius: 3px; }

.cl-metrics { margin-top: 0.75rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; font-size: 10px; }
.cl-metric { border-radius: 1.375rem; background: var(--cl-surface); padding: 0.375rem 0.5rem; }
.cl-metric__k { color: var(--cl-muted); }
.cl-metric__v { color: var(--cl-navy); font-weight: 700; font-size: 0.875rem; }
.cl-chips { margin-top: 0.5rem; display: flex; align-items: center; gap: 0.5rem; font-size: 10px; flex-wrap: wrap; }
.cl-chip { display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.125rem 0.5rem; border-radius: 1.375rem; font-weight: 500; }
.cl-chip svg { width: 0.75rem; height: 0.75rem; }
.cl-chip--green { background: #d1fae5; color: #047857; }
.cl-chip--primary { background: rgba(37, 99, 235, 0.1); color: var(--cl-primary); }
.cl-chip--amber { background: #fef3c7; color: #b45309; }

.cl-edge-row { margin-top: 0.75rem; display: grid; grid-template-columns: auto 1fr; gap: 0.75rem; align-items: center; }
.cl-edge-node { position: relative; width: 3.5rem; height: 4rem; border-radius: 1.5rem; background: linear-gradient(to bottom, var(--cl-navy), rgba(37, 99, 235, 0.7)); padding: 0.375rem; display: flex; flex-direction: column; justify-content: space-between; }
.cl-edge-node .bar { height: 4px; border-radius: 4px; }
.cl-edge-node .bar.g { background: #34d399; }
.cl-edge-node .bar.c1 { background: rgba(95, 184, 232, 0.8); }
.cl-edge-node .bar.c2 { background: rgba(95, 184, 232, 0.6); }
.cl-edge-node .dots { display: flex; gap: 2px; }
.cl-edge-node .dots span { width: 4px; height: 4px; border-radius: 9999px; background: #6ee7b7; }
.cl-edge-node .lbl { font-size: 7px; text-align: center; color: rgba(255, 255, 255, 0.7); font-family: ui-monospace, monospace; }
.cl-gpu__head { display: flex; align-items: flex-end; justify-content: space-between; font-size: 10px; color: var(--cl-muted); margin-bottom: 0.25rem; }
.cl-gpu__head b { color: var(--cl-navy); }
.cl-gpu__bars { display: flex; align-items: flex-end; gap: 2px; height: 2.5rem; }
.cl-gpu__bars i { flex: 1; border-radius: 2px; display: block; }
.cl-fcard__foot { margin-top: 0.5rem; display: flex; align-items: center; justify-content: space-between; font-size: 10px; color: var(--cl-muted); }
.cl-fcard__foot svg { width: 0.75rem; height: 0.75rem; display: inline; vertical-align: -1px; }
.cl-mono-primary { font-family: ui-monospace, monospace; color: var(--cl-primary); }

/* ============================================================
   02 · BUILDERS
   ============================================================ */
.cl-two-col { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; }
.cl-two-col--center { align-items: center; }
@media (min-width: 1024px) { .cl-two-col { grid-template-columns: repeat(2, 1fr); } }
.cl-copy-max { max-width: 28rem; }
.cl-stack { display: flex; flex-direction: column; gap: 1.25rem; }
.cl-card { border-radius: 2.25rem; padding: 1.75rem; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.cl-card:hover { transform: translateY(-4px); }
.cl-card--hover-elevate:hover { box-shadow: var(--cl-shadow-elevated); }
.cl-card__row { display: flex; align-items: flex-start; gap: 1.25rem; }
.cl-icon-box { width: 3rem; height: 3rem; border-radius: 2rem; display: grid; place-items: center; flex: none; }
.cl-icon-box svg { width: 1.25rem; height: 1.25rem; }
.cl-icon-box--grad { background: var(--cl-grad-primary); color: #fff; }
.cl-icon-box--soft { background: rgba(37, 99, 235, 0.1); color: var(--cl-primary); }
.cl-icon-box--cyan { background: rgba(95, 184, 232, 0.18); color: var(--cl-cyan); }
.cl-card__title { font-size: 1.25rem; font-weight: 700; color: var(--cl-navy); }
.cl-section--dark .cl-card__title { color: #fff; }
.cl-card__body { margin-top: 0.375rem; color: var(--cl-muted); }
.cl-section--dark .cl-card__body { color: rgba(255, 255, 255, 0.7); font-size: 0.875rem; line-height: 1.6; }
.cl-builders__closing { margin-top: 5rem; text-align: center; }
.cl-builders__closing p:first-child { font-size: 1.25rem; color: rgba(20, 23, 58, 0.8); line-height: 1.7; font-weight: 500; }
.cl-builders__closing p:last-child { margin-top: 1.25rem; font-size: 1.125rem; color: var(--cl-muted); }
@media (min-width: 768px) { .cl-builders__closing p:first-child { font-size: 1.5rem; } }

/* ============================================================
   03 · WORKON (dark) / grids of cards
   ============================================================ */
.cl-cards-grid { margin-top: 4rem; display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .cl-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cl-cards-grid { grid-template-columns: repeat(3, 1fr); } }
.cl-blob { position: absolute; border-radius: 9999px; pointer-events: none; }
.cl-blob--cyan-tr { top: -10rem; right: -10rem; width: 480px; height: 480px; background: radial-gradient(circle, rgba(95, 184, 232, 0.35), transparent 70%); }
.cl-workon__eyebrow { color: var(--cl-cyan); }
.cl-section--dark .cl-lead { color: rgba(255, 255, 255, 0.7); }
.cl-wcard__num { font-size: 0.75rem; font-family: ui-monospace, monospace; color: rgba(255, 255, 255, 0.4); }
.cl-wcard__icon { margin-top: 1rem; }
.cl-wcard__title { margin-top: 1.25rem; }

/* ============================================================
   05 · THRIVE
   ============================================================ */
.cl-thrive__imgwrap { position: relative; }
.cl-thrive__glow { position: absolute; inset: -1rem; border-radius: 2rem; background: var(--cl-grad-primary); filter: blur(60px); opacity: 0.25; }
.cl-thrive__frame { position: relative; border-radius: 2.25rem; padding: 1rem; }
.cl-thrive__frame img { border-radius: 2rem; width: 100%; height: auto; display: block; }
.cl-check-list { margin-top: 2.5rem; list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.cl-check-item { border-radius: 2rem; padding: 1rem; display: flex; align-items: center; gap: 1rem; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.cl-check-item:hover { transform: translateY(-2px); box-shadow: var(--cl-shadow-soft); }
.cl-check-item__ic { width: 2.25rem; height: 2.25rem; border-radius: 1.75rem; display: grid; place-items: center; flex: none; color: #fff; background: var(--cl-grad-primary); }
.cl-check-item__ic svg { width: 1rem; height: 1rem; }
.cl-check-item span { color: var(--cl-navy); font-weight: 500; }

/* ============================================================
   04 · CULTURE quote
   ============================================================ */
.cl-quote { margin-top: 4rem; max-width: 56rem; margin-left: auto; margin-right: auto; border-radius: 2.25rem; padding: 2.5rem; text-align: center; position: relative; overflow: hidden; }
@media (min-width: 768px) { .cl-quote { padding: 3.5rem; } }
.cl-quote__blob { position: absolute; top: -5rem; right: -5rem; width: 15rem; height: 15rem; border-radius: 9999px; opacity: 0.4; background: radial-gradient(circle, rgba(95, 184, 232, 0.4), transparent 70%); }
.cl-quote__mark { font-size: 3rem; color: var(--cl-primary); font-family: Georgia, "Times New Roman", serif; line-height: 1; }
.cl-quote__text { margin-top: 1rem; font-size: 1.5rem; font-weight: 600; color: var(--cl-navy); line-height: 1.35; letter-spacing: -0.01em; }
@media (min-width: 768px) { .cl-quote__text { font-size: 1.875rem; } }
/* `.cl-quote .cl-quote__by` (0,2,0) must outrank the `.cl p { margin:0 }`
   reset (0,1,1), otherwise the auto side-margins get zeroed and the
   block stops centering. */
.cl-quote .cl-quote__by { margin: 1rem auto 0; font-size: 1rem; color: var(--cl-muted); max-width: 40rem; text-align: center; }
.cl-center { text-align: center; }

/* ============================================================
   06 · MISSION ecosystem diagram
   ============================================================ */
.cl-mission__para { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.5rem; max-width: 60rem; margin-left: auto; margin-right: auto; }
.cl-eco { margin-top: 5rem; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.5rem; }
.cl-eco__node { border-radius: 2rem; padding: 1rem 1.25rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; min-width: 140px; }
.cl-eco__node .cl-icon-box { width: 2.5rem; height: 2.5rem; border-radius: 1.75rem; }
.cl-eco__label { font-size: 0.875rem; font-weight: 600; color: var(--cl-navy); text-align: center; }
.cl-eco__line { display: none; width: 1.5rem; height: 2px; margin: 0 0.25rem; background: linear-gradient(to right, var(--cl-primary), var(--cl-cyan)); }
@media (min-width: 768px) { .cl-eco__line { display: block; } }
/* Keep all five ecosystem nodes on a single row on desktop. */
@media (min-width: 1024px) {
  .cl-h2--mission { font-size: 4.5rem; }
  /* equal-width AND equal-height nodes on one row */
  .cl-eco { flex-wrap: nowrap; gap: 0.25rem; align-items: stretch; }
  .cl-eco__node { min-width: 0; flex: 1 1 0; justify-content: center; }
  .cl-eco__line { align-self: center; }
}

/* ============================================================
   07 · LIFE AT gallery
   ============================================================ */
.cl-gallery { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; grid-auto-rows: 220px; gap: 1rem; }
.cl-fig { position: relative; overflow: hidden; border-radius: 2.25rem; box-shadow: var(--cl-shadow-soft); margin: 0; }
.cl-fig img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.cl-fig:hover img { transform: scale(1.05); }
.cl-fig__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8, 26, 90, 0.85), rgba(8, 26, 90, 0.2) 55%, transparent); opacity: 0.9; }
.cl-fig figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.25rem; color: #fff; font-size: 0.875rem; font-weight: 500; transform: translateY(8px); transition: transform 0.3s ease; }
.cl-fig:hover figcaption { transform: translateY(0); }
@media (min-width: 768px) {
  .cl-gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; }
  .cl-fig--big { grid-column: span 2; grid-row: span 2; }
  .cl-fig--wide { grid-column: span 2; }
}

/* ============================================================
   08 · POSITIONS
   ============================================================ */
.cl-pos__head { display: flex; flex-direction: column; justify-content: space-between; gap: 1.5rem; }
.cl-pos__intro { color: var(--cl-muted); max-width: 24rem; }
.cl-tabs { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cl-tab { padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: all 0.2s ease; background: #fff; border: 1px solid var(--cl-border); color: var(--cl-muted); }
.cl-tab:hover { color: var(--cl-navy); border-color: rgba(8, 26, 90, 0.3); }
.cl-tab.is-active { background: var(--cl-navy); color: #fff; border-color: var(--cl-navy); box-shadow: var(--cl-shadow-soft); }
.cl-tab__count { margin-left: 0.5rem; font-size: 0.75rem; color: rgba(102, 112, 133, 0.6); }
.cl-tab.is-active .cl-tab__count { color: rgba(255, 255, 255, 0.6); }
.cl-jobs { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.cl-job { border-radius: 2rem; padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease; }
.cl-job:hover { transform: translateY(-2px); box-shadow: var(--cl-shadow-elevated); }
.cl-job.is-hidden { display: none; }
.cl-job__dept { font-size: 0.75rem; font-weight: 600; color: var(--cl-primary); text-transform: uppercase; letter-spacing: 0.05em; }
.cl-job__title { margin-top: 0.25rem; font-size: 1.125rem; font-weight: 700; color: var(--cl-navy); }
.cl-job__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 1.5rem; font-size: 0.875rem; color: var(--cl-muted); }
.cl-job__meta span { display: inline-flex; align-items: center; gap: 0.375rem; }
.cl-job__meta svg { width: 1rem; height: 1rem; }
.cl-job__apply { display: inline-flex; align-items: center; gap: 0.375rem; align-self: flex-start; border-radius: 1.75rem; background: var(--cl-navy); color: #fff; padding: 0.625rem 1rem; font-size: 0.875rem; font-weight: 600; text-decoration: none; transition: opacity 0.2s ease; }
.cl-job__apply:hover { opacity: 0.9; color: #fff; }
.cl-job__apply svg { width: 1rem; height: 1rem; }
@media (min-width: 768px) {
  .cl-pos__head { flex-direction: row; align-items: flex-end; }
  .cl-job { flex-direction: row; align-items: center; gap: 1.5rem; padding: 1.5rem; }
  .cl-job__main { width: 33.333%; }
  .cl-job__meta { flex: 1; }
}

/* ============================================================
   09 · FINAL CTA
   ============================================================ */
.cl-cta { position: relative; overflow: hidden; color: #fff; background: var(--cl-grad-navy); }
.cl-cta__blob { position: absolute; top: -10rem; left: 50%; transform: translateX(-50%); width: 700px; height: 400px; border-radius: 9999px; background: radial-gradient(ellipse, rgba(95, 184, 232, 0.3), transparent 70%); }
.cl-cta__inner { position: relative; max-width: 64rem; margin: 0 auto; padding: 7rem 1.5rem; text-align: center; }
.cl-cta__title { font-size: 3rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.02; color: #fff; }
.cl-cta__title .grad { background: linear-gradient(135deg, #fff, var(--cl-cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cl-cta__sub { margin-top: 1.5rem; font-size: 1.125rem; color: rgba(255, 255, 255, 0.7); }
.cl-cta__ctas { margin-top: 2.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
@media (min-width: 768px) {
  .cl-cta__title { font-size: 4.5rem; }
  .cl-cta__sub { font-size: 1.25rem; }
  .cl-cta__inner { padding: 9rem 1.5rem; }
}
