/* ============================================================
   Joblogic onboarding microsite
   Brand stylesheet. Built on the Joblogic 2026 visual identity.
   Core Four: JL Blue #0d3443, JL Teal #0eb6bd, JL Red #f5544b, JL Yellow #ffc000
   Type: Open Sans. ExtraBold (800) headers, Medium (500) body.
   ============================================================ */

/* ---- Fonts ---- */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ---- Tokens ---- */
:root {
  --jl-blue:    #0d3443;
  --jl-teal:    #0eb6bd;
  --jl-red:     #f5544b;
  --jl-yellow:  #ffc000;

  --jl-pastel-blue:   #3a5967;
  --jl-blue-grey:     #475055;
  --jl-pastel-teal:   #71c1c7;
  --jl-muddy-teal:    #76c3c6;
  --jl-pastel-yellow: #ffcb31;
  --jl-muted-yellow:  #fed991;
  --jl-pastel-red:    #f7766d;
  --jl-blush-red:     #f5b6b4;
  --jl-dark-grey:     #5f5f5e;
  --jl-light-grey:    #a2a29d;

  --jl-grad-blue-teal:  linear-gradient(135deg, #0d3443, #0eb6bd);
  --jl-grad-red-yellow: linear-gradient(135deg, #f5544b, #ffc000);

  --surface:      #ffffff;
  --surface-soft: #f4f8f9;
  --border:       #dce6e9;
  --ink:          #0d3443;
  --ink-soft:     #475055;

  --jl-font: "Open Sans", Arial, sans-serif;

  --maxw: 1080px;
  --radius: 14px;
  --shadow: 0 18px 40px -24px rgba(13, 52, 67, 0.45);
  --shadow-sm: 0 8px 20px -14px rgba(13, 52, 67, 0.4);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--jl-font);
  font-weight: 500;
  color: var(--ink);
  background: var(--surface);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 { font-weight: 800; color: var(--ink); line-height: 1.15; letter-spacing: -0.01em; }

a { color: var(--jl-teal); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--jl-teal);
  margin-bottom: 14px;
}
.eyebrow.on-dark { color: var(--jl-yellow); }

/* ============================================================
   Top nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 52, 67, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-logo img { height: 26px; width: auto; }
.nav-links {
  display: flex;
  gap: 6px;
  margin-left: auto;
  list-style: none;
  align-items: center;
}
.nav-links a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  font-size: 14.5px;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { color: #fff; background: rgba(255, 255, 255, 0.08); text-decoration: none; }
.nav-links a.active { color: var(--jl-blue); background: var(--jl-yellow); }
.nav-cta {
  margin-left: 8px;
  background: var(--jl-teal) !important;
  color: #fff !important;
  font-weight: 800 !important;
}
.nav-cta:hover { background: #0ca0a6 !important; }
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--jl-font);
  font-weight: 800;
  font-size: 15.5px;
  padding: 14px 26px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--jl-teal); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #0ca0a6; }
.btn-blue { background: var(--jl-blue); color: #fff; }
.btn-blue:hover { background: #14485c; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }
.btn-outline { background: #fff; color: var(--jl-blue); border-color: var(--jl-blue); }
.btn-outline:hover { background: var(--surface-soft); }
.btn-arrow::after { content: "\2192"; font-weight: 800; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background: var(--jl-blue);
  color: #fff;
  overflow: hidden;
  padding: 86px 0 96px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 500px at 78% -10%, rgba(14, 182, 189, 0.28), transparent 60%);
  pointer-events: none;
}
.hero-squiggle {
  position: absolute;
  right: -180px;
  top: -120px;
  width: 760px;
  max-width: 70vw;
  pointer-events: none;
  opacity: 0.92;
}
.hero .wrap { position: relative; z-index: 2; }
.hero h1 {
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  max-width: 16ch;
  margin-bottom: 20px;
}
.hero .lead {
  font-size: clamp(17px, 2.1vw, 21px);
  color: rgba(255, 255, 255, 0.86);
  max-width: 56ch;
  margin-bottom: 34px;
}
.hero .btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 44px;
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-stat .n { font-size: 30px; font-weight: 800; color: var(--jl-yellow); line-height: 1; }
.hero-stat .l { font-size: 13.5px; color: rgba(255, 255, 255, 0.74); margin-top: 6px; }

/* ============================================================
   Page header (interior pages)
   ============================================================ */
.page-head {
  background: var(--jl-blue);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 64px 0 60px;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 400px at 88% 0%, rgba(14, 182, 189, 0.26), transparent 60%);
}
.page-head .wrap { position: relative; z-index: 2; }
.page-head h1 { color: #fff; font-size: clamp(30px, 4vw, 44px); max-width: 20ch; margin-bottom: 14px; }
.page-head p { color: rgba(255, 255, 255, 0.85); max-width: 60ch; font-size: 18px; }
.page-head .squiggle-foot {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 520px;
  opacity: 0.7;
  pointer-events: none;
}

/* ============================================================
   Sections
   ============================================================ */
section { padding: 64px 0; }
section.tight { padding: 44px 0; }
.section-soft { background: var(--surface-soft); }
.section-blue { background: var(--jl-blue); color: #fff; }
.section-blue h2, .section-blue h3 { color: #fff; }

.section-head { max-width: 60ch; margin-bottom: 36px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
h2.section-title { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 18px; }
.section-blue .section-head p { color: rgba(255, 255, 255, 0.82); }

.lead-para { font-size: 19px; color: var(--ink-soft); max-width: 62ch; }

/* ============================================================
   Cards & grids
   ============================================================ */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 26px 28px;
  position: relative;
}
.card .num {
  font-size: 13px;
  font-weight: 800;
  color: var(--jl-teal);
  letter-spacing: 0.05em;
}
.card h3 { font-size: 19px; margin: 8px 0 8px; }
.card p { color: var(--ink-soft); font-size: 15.5px; }
.card .meta { font-size: 13px; color: var(--jl-light-grey); margin-top: 10px; font-weight: 600; }
.card-top-bar { border-top: 4px solid var(--jl-teal); }
.card-top-bar.red { border-top-color: var(--jl-red); }
.card-top-bar.yellow { border-top-color: var(--jl-yellow); }
.card-top-bar.blue { border-top-color: var(--jl-blue); }

/* First value callout */
.value-band {
  background: var(--jl-grad-blue-teal);
  color: #fff;
  border-radius: 18px;
  padding: 38px 40px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  box-shadow: var(--shadow);
}
.value-band .icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
  display: grid; place-items: center;
  font-size: 30px;
}
.value-band h3 { color: #fff; font-size: 22px; margin-bottom: 8px; }
.value-band p { color: rgba(255, 255, 255, 0.92); font-size: 16.5px; margin: 0; }
.value-band strong { color: var(--jl-yellow); }

/* Highlight / note boxes */
.note {
  border-left: 4px solid var(--jl-teal);
  background: var(--surface-soft);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
}
.note .label {
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--jl-teal); margin-bottom: 6px;
}
.note p { margin: 0; color: var(--ink); }
.note strong { color: var(--jl-blue); }
.note.warm { border-left-color: var(--jl-red); }
.note.warm .label { color: var(--jl-red); }

/* ============================================================
   Timeline (How it works)
   ============================================================ */
.timeline { margin-top: 12px; }
.tl-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 26px;
}
.tl-step {
  text-align: left;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 16px 16px 18px;
  cursor: pointer;
  font-family: var(--jl-font);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.12s;
  position: relative;
}
.tl-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.tl-step .dot {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--surface-soft); color: var(--jl-blue);
  display: grid; place-items: center; font-weight: 800; font-size: 14px;
  margin-bottom: 10px; border: 2px solid var(--border);
}
.tl-step .tl-name { font-weight: 800; font-size: 15.5px; color: var(--jl-blue); }
.tl-step .tl-days { font-size: 12.5px; color: var(--jl-light-grey); font-weight: 600; margin-top: 3px; }
.tl-step.active { border-color: var(--jl-teal); background: var(--jl-blue); }
.tl-step.active .tl-name { color: #fff; }
.tl-step.active .tl-days { color: rgba(255,255,255,0.7); }
.tl-step.active .dot { background: var(--jl-teal); color: #fff; border-color: var(--jl-teal); }

.tl-progress { height: 6px; background: var(--border); border-radius: 99px; overflow: hidden; margin-bottom: 26px; }
.tl-progress > span { display: block; height: 100%; background: var(--jl-grad-blue-teal); transition: width 0.4s ease; }

.tl-panel {
  display: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 32px;
  box-shadow: var(--shadow-sm);
}
.tl-panel.active { display: grid; grid-template-columns: 1fr 1.1fr; gap: 30px; }
.tl-panel .num { color: var(--jl-teal); font-weight: 800; font-size: 13px; letter-spacing: 0.06em; }
.tl-panel h3 { font-size: 24px; margin: 6px 0 10px; }
.tl-panel .outcome {
  display: inline-block; margin-top: 14px; font-size: 13.5px; font-weight: 700;
  color: var(--jl-blue); background: var(--jl-muted-yellow); padding: 7px 13px; border-radius: 8px;
}
.tl-panel ul { list-style: none; }
.tl-panel li {
  position: relative; padding-left: 28px; margin-bottom: 12px; font-size: 15.5px; color: var(--ink-soft);
}
.tl-panel li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--jl-teal); box-shadow: 0 0 0 4px rgba(14,182,189,0.16);
}

/* ============================================================
   Roles
   ============================================================ */
.role-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 24px 26px; background: #fff; }
.role-card .owner {
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 6px;
}
.role-card.jl { border-top: 4px solid var(--jl-teal); }
.role-card.jl .owner { color: var(--jl-teal); }
.role-card.cust { border-top: 4px solid var(--jl-red); }
.role-card.cust .owner { color: var(--jl-red); }
.role-card h3 { font-size: 18px; margin-bottom: 10px; }
.role-card ul { list-style: none; }
.role-card li { position: relative; padding-left: 22px; margin-bottom: 7px; font-size: 15px; color: var(--ink-soft); }
.role-card li::before { content: "\2713"; position: absolute; left: 0; color: var(--jl-teal); font-weight: 800; }
.role-card.cust li::before { color: var(--jl-red); }
.role-card .tag { font-size: 11px; font-weight: 700; color: var(--jl-light-grey); }

.spotlight {
  background: var(--jl-blue); color: #fff; border-radius: 18px; padding: 36px 40px;
  position: relative; overflow: hidden;
}
.spotlight::after {
  content: ""; position: absolute; right: -60px; bottom: -80px; width: 260px; height: 260px;
  border-radius: 50%; background: radial-gradient(circle, rgba(255,192,0,0.22), transparent 70%);
}
.spotlight .eyebrow { color: var(--jl-yellow); }
.spotlight h3 { color: #fff; font-size: 24px; margin-bottom: 10px; }
.spotlight p { color: rgba(255,255,255,0.86); max-width: 60ch; }

/* RACI */
.raci-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.raci-filters button {
  font-family: var(--jl-font); font-weight: 700; font-size: 14px;
  padding: 9px 16px; border-radius: 99px; border: 2px solid var(--border);
  background: #fff; color: var(--jl-blue); cursor: pointer; transition: all 0.15s;
}
.raci-filters button:hover { border-color: var(--jl-teal); }
.raci-filters button.active { background: var(--jl-blue); color: #fff; border-color: var(--jl-blue); }

.raci-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
table.raci { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 560px; }
table.raci thead th {
  background: var(--jl-blue); color: #fff; text-align: left; font-weight: 700; font-size: 14px; padding: 13px 18px;
}
table.raci td { padding: 13px 18px; border-bottom: 1px solid var(--border); vertical-align: top; color: var(--ink-soft); }
table.raci tbody tr:nth-child(even) td { background: var(--surface-soft); }
table.raci td:first-child { font-weight: 700; color: var(--jl-blue); }
table.raci tr.dim { display: none; }
.pill { display: inline-block; font-size: 12.5px; font-weight: 700; padding: 4px 11px; border-radius: 99px; }
.pill.jl { background: rgba(14,182,189,0.14); color: #0a7f84; }
.pill.cust { background: rgba(245,84,75,0.13); color: #c43a32; }
.pill.both { background: rgba(255,192,0,0.18); color: #946c00; }

/* ============================================================
   Options (tiers)
   ============================================================ */
.tier { border: 2px solid var(--border); border-radius: var(--radius); padding: 28px 28px 30px; background: #fff; position: relative; }
.tier.featured { border-color: var(--jl-teal); box-shadow: var(--shadow); }
.tier .ribbon {
  position: absolute; top: -13px; left: 28px; background: var(--jl-teal); color: #fff;
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 8px;
}
.tier .badge { font-size: 11.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--jl-teal); }
.tier h3 { font-size: 21px; margin: 8px 0 8px; }
.tier .who { font-size: 15px; color: var(--ink-soft); margin-bottom: 16px; }
.tier ul { list-style: none; }
.tier li { position: relative; padding-left: 24px; margin-bottom: 9px; font-size: 15px; color: var(--ink-soft); }
.tier li::before { content: "\2713"; position: absolute; left: 0; color: var(--jl-teal); font-weight: 800; }

/* ============================================================
   Commitments (Your part)
   ============================================================ */
.ask-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.ask {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px 24px; display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start;
}
.ask .ico {
  width: 44px; height: 44px; border-radius: 11px; background: var(--surface-soft);
  display: grid; place-items: center; font-size: 21px;
}
.ask h3 { font-size: 16.5px; margin-bottom: 4px; }
.ask p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

/* ============================================================
   Readiness check
   ============================================================ */
.checker {
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  box-shadow: var(--shadow); overflow: hidden;
}
.checker-head { background: var(--jl-blue); color: #fff; padding: 26px 32px; }
.checker-head .eyebrow { color: var(--jl-yellow); margin-bottom: 8px; }
.checker-head h3 { color: #fff; font-size: 23px; margin-bottom: 6px; }
.checker-head p { color: rgba(255,255,255,0.82); font-size: 15px; margin: 0; }
.checker-progress { height: 5px; background: rgba(255,255,255,0.18); border-radius: 99px; margin-top: 18px; overflow: hidden; }
.checker-progress > span { display: block; height: 100%; width: 0; background: var(--jl-teal); transition: width 0.3s; }

.checker-body { padding: 30px 32px; }
.q { display: none; }
.q.active { display: block; animation: fade 0.25s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px);} to { opacity: 1; transform: none; } }
.q .q-count { font-size: 13px; font-weight: 800; color: var(--jl-teal); letter-spacing: 0.05em; }
.q h4 { font-size: 21px; margin: 8px 0 20px; color: var(--jl-blue); }
.opts { display: grid; gap: 12px; }
.opt {
  text-align: left; font-family: var(--jl-font); font-size: 16px; font-weight: 600; color: var(--jl-blue);
  background: #fff; border: 2px solid var(--border); border-radius: 12px; padding: 16px 18px; cursor: pointer;
  transition: all 0.14s; display: flex; align-items: center; gap: 13px;
}
.opt:hover { border-color: var(--jl-teal); background: var(--surface-soft); }
.opt .mark {
  width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0;
  display: grid; place-items: center; font-size: 13px; color: #fff;
}
.opt.sel { border-color: var(--jl-teal); background: rgba(14,182,189,0.07); }
.opt.sel .mark { background: var(--jl-teal); border-color: var(--jl-teal); }

.checker-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 26px; }
.link-btn { background: none; border: 0; color: var(--jl-blue); font-family: var(--jl-font); font-weight: 700; font-size: 14.5px; cursor: pointer; opacity: 0.7; }
.link-btn:hover { opacity: 1; text-decoration: underline; }
.link-btn[disabled] { visibility: hidden; }

/* result */
.result { display: none; }
.result.active { display: block; animation: fade 0.3s ease; }
.score-ring { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-bottom: 22px; }
.ring {
  --p: 0; width: 132px; height: 132px; border-radius: 50%; flex-shrink: 0;
  background: conic-gradient(var(--jl-teal) calc(var(--p) * 1%), var(--border) 0);
  display: grid; place-items: center; position: relative;
}
.ring::before { content: ""; position: absolute; inset: 12px; border-radius: 50%; background: #fff; }
.ring .ring-num { position: relative; font-size: 34px; font-weight: 800; color: var(--jl-blue); }
.ring .ring-num span { font-size: 16px; }
.result h3 { font-size: 24px; margin-bottom: 8px; }
.result .verdict { font-size: 17px; color: var(--ink-soft); max-width: 52ch; }
.result-actions { margin-top: 22px; background: var(--surface-soft); border-radius: 12px; padding: 22px 24px; }
.result-actions h4 { font-size: 15px; margin-bottom: 12px; color: var(--jl-blue); }
.result-actions ul { list-style: none; }
.result-actions li { position: relative; padding-left: 26px; margin-bottom: 9px; font-size: 15px; color: var(--ink-soft); }
.result-actions li::before { content: "\2192"; position: absolute; left: 0; color: var(--jl-teal); font-weight: 800; }
.result-cta { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ============================================================
   Checklist
   ============================================================ */
.cl-progress-wrap { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.cl-bar { flex: 1; height: 10px; background: var(--border); border-radius: 99px; overflow: hidden; }
.cl-bar > span { display: block; height: 100%; width: 0; background: var(--jl-grad-blue-teal); transition: width 0.3s; }
.cl-count { font-weight: 800; color: var(--jl-blue); font-size: 15px; white-space: nowrap; }

.cl-group { margin-bottom: 26px; }
.cl-group h3 { font-size: 16px; color: var(--jl-teal); margin-bottom: 12px; letter-spacing: 0.02em; }
.cl-item {
  display: flex; gap: 14px; align-items: flex-start; padding: 15px 18px; border: 1px solid var(--border);
  border-radius: 11px; margin-bottom: 10px; cursor: pointer; background: #fff; transition: background 0.14s, border-color 0.14s;
}
.cl-item:hover { border-color: var(--jl-teal); }
.cl-box {
  width: 24px; height: 24px; border-radius: 7px; border: 2px solid var(--jl-light-grey); flex-shrink: 0;
  display: grid; place-items: center; color: #fff; font-size: 14px; margin-top: 1px; transition: all 0.14s;
}
.cl-item.done .cl-box { background: var(--jl-teal); border-color: var(--jl-teal); }
.cl-item.done .cl-text { color: var(--jl-light-grey); text-decoration: line-through; }
.cl-text { font-size: 15.5px; font-weight: 600; color: var(--jl-blue); }
.cl-text small { display: block; font-weight: 500; font-size: 13.5px; color: var(--ink-soft); text-decoration: none; margin-top: 2px; }
.cl-reset { background: none; border: 0; color: var(--jl-light-grey); font-family: var(--jl-font); font-weight: 700; font-size: 13.5px; cursor: pointer; }
.cl-reset:hover { color: var(--jl-red); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: var(--jl-blue); color: #fff; border-radius: 20px; padding: 48px 48px;
  position: relative; overflow: hidden; text-align: center;
}
.cta-band .squig { position: absolute; left: -120px; bottom: -150px; width: 460px; opacity: 0.55; pointer-events: none; }
.cta-band .squig.r { left: auto; right: -120px; top: -150px; bottom: auto; }
.cta-band h2 { color: #fff; font-size: clamp(24px, 3.2vw, 34px); margin-bottom: 12px; position: relative; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 56ch; margin: 0 auto 26px; position: relative; font-size: 18px; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============================================================
   Quotes / proof
   ============================================================ */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 26px 24px;
  position: relative;
}
.quote::before {
  content: "\201C"; font-family: Georgia, serif; font-size: 70px; line-height: 1; color: var(--jl-teal);
  position: absolute; top: 6px; right: 18px; opacity: 0.22;
}
.quote p { font-size: 15.5px; color: var(--ink); font-style: italic; }
.quote .by { margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--jl-light-grey); font-style: normal; }
.section-blue .quote { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.section-blue .quote p { color: rgba(255,255,255,0.92); }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: #07232d; color: rgba(255,255,255,0.62); padding: 48px 0 40px; font-size: 14.5px; }
.footer .wrap { display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; align-items: flex-start; }
.footer img { height: 24px; margin-bottom: 14px; }
.footer a { color: var(--jl-teal); }
.footer .foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer .foot-links a { color: rgba(255,255,255,0.78); font-weight: 600; }
.footer strong { color: #fff; }
.footer .fine { width: 100%; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 26px; padding-top: 22px; font-size: 13px; color: rgba(255,255,255,0.45); }

/* ============================================================
   Helpers
   ============================================================ */
.mt-s { margin-top: 16px; }
.mt-m { margin-top: 28px; }
.mt-l { margin-top: 44px; }
.center { text-align: center; }
.fade-up { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 880px) {
  .grid-2, .grid-3, .grid-4, .quotes, .ask-grid { grid-template-columns: 1fr; }
  .tl-track { grid-template-columns: repeat(2, 1fr); }
  .tl-panel.active { grid-template-columns: 1fr; }
  .value-band { grid-template-columns: 1fr; }
  .value-band .icon { margin-bottom: 4px; }
  .nav-links {
    position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: var(--jl-blue); padding: 12px 20px 20px; gap: 4px; display: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; }
  .nav-cta { margin-left: 0; text-align: center; }
  .nav-toggle { display: block; }
  .cta-band, .spotlight { padding: 34px 26px; }
  section { padding: 48px 0; }
}
@media (max-width: 520px) {
  .tl-track { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}
