/* Recruit You — marketing site styles. Mirrors the app's live design system.
   Light, friendly, rounded, optimistic. Recruit Blue + a pinch of Sunny Amber. */

:root {
  /* Brand */
  --primary:        #2563EB;  /* Recruit Blue */
  --primary-deep:   #1D4ED8;  /* hover / pressed */
  --primary-sky:    #3B82F6;  /* gradients */
  --highlight:      #FBBF24;  /* Sunny Amber — accents/fills only, never text on light */
  --highlight-soft: rgba(251, 191, 36, 0.16);
  --on-primary:     #FFFFFF;

  /* Accent alias — kept so existing markup that uses `--accent` maps to Recruit Blue */
  --accent:      #2563EB;
  --accent-soft: rgba(37, 99, 235, 0.10);
  --accent-on:   #FFFFFF;

  /* Neutrals */
  --bg:        #F8FAFC;  /* Cool White — page */
  --surface:   #FFFFFF;  /* cards / surfaces */
  --surface-2: #F1F5F9;  /* Cloud 100 — input fills, chips, raised */
  --surface-3: #E2E8F0;  /* Cloud 200 — higher surfaces, dividers */
  --border:    #E7EBF0;  /* Hairline — default borders */
  --border-2:  #CBD5E1;  /* hover borders, stronger dividers */
  --text:      #0F172A;  /* Ink — primary text & headings */
  --text-2:    #334155;  /* Slate — secondary text */
  --muted:     #64748B;  /* captions, helper text, labels */
  --muted2:    #94A3B8;  /* Mist — faint text, placeholders */

  /* Semantic */
  --ok:   #16A34A;  /* success */
  --warn: #D97706;  /* warning (text-safe amber) */
  --neg:  #DC2626;  /* error */

  --max: 1180px;
  --gutter: 32px;

  --sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mono: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  /* Radius */
  --radius-sm: 10px;   /* buttons, inputs */
  --radius-md: 16px;   /* cards */
  --radius-pill: 999px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(15,23,42,.04), 0 1px 3px rgba(15,23,42,.06);
  --shadow-md: 0 4px 12px rgba(15,23,42,.06), 0 2px 4px rgba(15,23,42,.04);
  --shadow-lg: 0 8px 24px rgba(15,23,42,.10);
  --shadow-primary: 0 1px 2px rgba(37,99,235,.20), 0 4px 12px rgba(37,99,235,.18);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background-image:
    radial-gradient(1100px 520px at 50% -260px, rgba(37, 99, 235, 0.06), transparent 70%);
  background-repeat: no-repeat;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; }

/* ===== type ===== */
.mono { font-family: var(--mono); }
.muted { color: var(--muted); }
.muted2 { color: var(--muted2); }
.accent { color: var(--primary); }
.tiny {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.br { display: none; } /* legacy bracket glyphs from the old wordmark/eyebrows */

h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; color: var(--text); }
h3, h4 { font-weight: 600; }
p { margin: 0; }

/* ===== wordmark ===== */
.wm {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: var(--text);
}
.wm-logo {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
  border-radius: 8px;
}
.wm .name { color: var(--text); }
.wm .you  { color: var(--primary); }

/* ===== container ===== */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ===== AU banner ===== */
.au-banner {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}
.au-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 36px;
  padding: 6px var(--gutter);
  text-align: center;
}
.au-banner .au-flag { display: inline-flex; align-items: center; height: 14px; }
.au-banner .au-flag svg {
  display: block;
  height: 14px;
  width: auto;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
}
.au-banner strong { color: var(--text-2); font-weight: 600; }
@media (max-width: 540px) {
  .au-banner { font-size: 12px; }
}

/* ===== nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 252, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 20px;
}
.nav-links {
  display: flex;
  gap: 22px;
  margin-left: 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
}
.nav-links a { transition: color 120ms; white-space: nowrap; }
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--primary); }
.nav-link-plain { font-size: 15px; font-weight: 500; color: var(--text-2); white-space: nowrap; }
.nav-link-plain:hover { color: var(--primary); }
.nav-cta {
  margin-left: auto;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.nav-cta .btn { white-space: nowrap; }
@media (max-width: 1240px) {
  .nav-links { gap: 16px; margin-left: 12px; font-size: 14px; }
  .nav-link-plain { font-size: 14px; }
}
@media (max-width: 1140px) {
  .nav-link-plain { display: none; }
}
@media (max-width: 1000px) {
  .nav-links { display: none; }
}

/* ===== buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid var(--border-2);
  background: var(--surface);
  color: var(--text-2);
  transition: border-color 120ms, background 120ms, color 120ms, box-shadow 120ms, transform 80ms;
  white-space: nowrap;
}
.btn:hover { border-color: var(--border-2); background: var(--surface-2); color: var(--text); }
.btn:active { transform: translateY(1px); }
.btn.primary {
  background: var(--primary);
  color: var(--on-primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}
.btn.primary:hover { background: var(--primary-deep); border-color: var(--primary-deep); color: #fff; }
.btn.ghost { background: transparent; border-color: transparent; color: var(--text-2); box-shadow: none; }
.btn.ghost:hover { color: var(--primary); background: var(--surface-2); }
.btn.lg { height: 52px; padding: 0 26px; font-size: 16px; }

/* ===== hero ===== */
.hero { padding: 88px 0 72px; position: relative; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px 7px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text-2);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow .spark {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--highlight);
  box-shadow: 0 0 0 4px var(--highlight-soft);
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-top: 24px;
  max-width: 14ch;
}
.hero h1 .you { color: var(--primary); }
.hero-sub {
  margin-top: 22px;
  max-width: 52ch;
  color: var(--text-2);
  font-size: 18px;
  line-height: 1.6;
}
.hero-sub-aux {
  margin-top: 16px;
  font-size: 15px;
  color: var(--muted);
  max-width: 52ch;
}
.hero-sub-aux a {
  color: var(--primary);
  font-weight: 600;
  border-bottom: 1px solid rgba(37, 99, 235, 0.3);
  transition: border-color 0.15s;
}
.hero-sub-aux a:hover { border-bottom-color: var(--primary); }
.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-trust .ok { color: var(--ok); }

/* hero product card */
.hero-visual { display: flex; justify-content: center; }
.product-card {
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.product-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}
.product-card-head .pc-title { font-size: 14px; font-weight: 600; color: var(--text); }
.product-card-head .pc-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.product-card-body { padding: 8px 8px 12px; }

/* ===== hero meta strip ===== */
.hero-meta {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hero-meta .cell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 20px 22px;
}
.hero-meta .k {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta .v {
  margin-top: 8px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.hero-meta .v .accent { color: var(--primary); }

/* ===== section header ===== */
section { padding: 88px 0; }
section + section,
section.bordered { border-top: 1px solid var(--border); }
.sec-head { margin-bottom: 48px; max-width: 760px; }
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}
.sec-title {
  margin-top: 14px;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 700;
  max-width: 22ch;
}
.sec-sub {
  margin-top: 16px;
  max-width: 60ch;
  color: var(--text-2);
  font-size: 17px;
  line-height: 1.6;
}

/* ===== how it works ===== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.step {
  display: grid;
  grid-template-columns: 56px 1fr 1fr;
  padding: 26px 28px;
  gap: 28px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.step .num {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.step h3 { font-size: 20px; line-height: 1.25; letter-spacing: -0.02em; }
.step .body { color: var(--text-2); font-size: 15px; margin-top: 6px; }

/* ===== demo cards (how it works) ===== */
.demo-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.demo-upload-row,
.demo-pref-row,
.demo-progress-row,
.demo-inbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.demo-file-icon { font-size: 15px; display: inline-flex; }
.demo-file-name {
  flex: 1;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
}
.demo-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-width: 72px;
}
.demo-tags-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 2px;
}
.demo-next-run {
  font-size: 14px;
  color: var(--text-2);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 2px;
}
.demo-step-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.12);
  color: var(--ok);
  display: grid;
  place-items: center;
  font-size: 11px;
  flex-shrink: 0;
}
.demo-step-label { flex: 1; color: var(--text); }
.demo-step-count { font-size: 12px; color: var(--muted); }
.demo-inbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.demo-score-bar {
  flex: 1;
  height: 6px;
  background: var(--surface-3);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.demo-score-bar i {
  display: block;
  height: 100%;
  border-radius: var(--radius-pill);
}
.demo-score-num {
  font-size: 13px;
  font-weight: 700;
  min-width: 24px;
  text-align: right;
}
.demo-score-num.ok { color: var(--primary); }
.demo-score-num.warn { color: var(--warn); }
.demo-company { font-size: 13px; color: var(--text-2); min-width: 160px; }

/* ===== brief showcase ===== */
.brief {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}
.brief .panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.panel-head {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
}
.panel-head .title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.panel-head .pills { display: flex; gap: 6px; flex-shrink: 0; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 24px;
  padding: 0 11px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid transparent;
}
.pill.ok    { color: var(--ok);   background: rgba(22, 163, 74, 0.10); }
.pill.warn  { color: var(--warn); background: rgba(217, 119, 6, 0.10); }
.pill.neg   { color: var(--neg);  background: rgba(220, 38, 38, 0.10); }
.pill.accent{ color: var(--primary); background: var(--accent-soft); }
.pill.spark { color: #92590a; background: var(--highlight-soft); }

/* Matches list */
.matches { padding: 6px; }
.match-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 120ms;
  position: relative;
}
.match-row:hover { background: var(--surface-2); }
.match-row.active { background: var(--accent-soft); }

.score {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.score.high { color: var(--primary); }
.score.mid  { color: var(--warn); }
.score.low  { color: var(--muted); }

.match-meta .title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.match-meta .sub {
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted);
}
.match-meta .sub .sep { padding: 0 6px; color: var(--border-2); }

.logo-sq {
  width: 40px; height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

/* Job detail panel */
.jd-head {
  padding: 22px 22px 18px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  align-items: start;
}
.jd-head .logo-sq { width: 56px; height: 56px; font-size: 20px; border-radius: 14px; }
.jd-head .title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.jd-head .company {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}
.jd-score { text-align: right; }
.jd-score .n {
  font-size: 34px;
  font-weight: 700;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.02em;
}
.jd-score .l {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.bar {
  margin-top: 10px;
  height: 6px;
  width: 80px;
  background: var(--surface-3);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-left: auto;
}
.bar > i { display: block; height: 100%; background: var(--primary); border-radius: var(--radius-pill); }

.jd-tabs {
  display: flex;
  gap: 4px;
  padding: 10px 16px 0;
  border-bottom: 1px solid var(--border);
}
.jd-tabs .tab {
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 120ms;
}
.jd-tabs .tab:hover { color: var(--text-2); }
.jd-tabs .tab.active { color: var(--primary); border-bottom-color: var(--primary); }

.jd-body { padding: 22px; }
.kv-list { display: grid; gap: 12px; }
.kv {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: baseline;
  font-size: 14px;
}
.kv .k {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.kv .v { color: var(--text-2); }

.reasons { display: grid; gap: 12px; margin-top: 12px; }
.reason {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}
.reason .check {
  color: var(--ok);
  font-weight: 700;
}

.flags { margin-top: 18px; display: flex; gap: 8px; flex-wrap: wrap; }

.section-mini {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

/* ===== features grid ===== */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  transition: box-shadow 160ms, transform 160ms;
}
.feature:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.feature .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.feature .ic svg { width: 22px; height: 22px; }
.feature h3 { font-size: 18px; letter-spacing: -0.01em; line-height: 1.3; }
.feature p { margin-top: 10px; color: var(--text-2); font-size: 15px; line-height: 1.6; }
.feature .tag {
  margin-top: auto;
  padding-top: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted2);
}

/* ===== feature wide card ===== */
.feature--wide { grid-column: 1 / -1; min-height: auto; }
.feature-wide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.feature-wide-text { display: flex; flex-direction: column; gap: 14px; }
.feature-wide-visual { display: flex; justify-content: center; }
.recruiter-toggle-card {
  width: 100%;
  max-width: 360px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rt-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.rt-label { flex: 1; }
.rt-title { font-size: 14px; color: var(--text); font-weight: 600; }
.rt-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.rt-toggle {
  width: 40px;
  height: 22px;
  border-radius: var(--radius-pill);
  background: var(--surface-3);
  flex-shrink: 0;
  position: relative;
  transition: background 0.2s;
}
.rt-toggle::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
  top: 3px;
  left: 3px;
  transition: left 0.2s;
}
.rt-toggle.on { background: var(--primary); }
.rt-toggle.on::after { left: 21px; }
.rt-divider { height: 1px; background: var(--border); margin: 0 -6px; }

/* ===== pricing ===== */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .pricing { grid-template-columns: repeat(2, minmax(0, 380px)); max-width: none; }
}
.plan {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.plan.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), var(--shadow-lg);
}
.plan .name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.plan.featured .name { color: var(--primary); }
.plan .price {
  font-size: 46px;
  letter-spacing: -0.03em;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
}
.plan .price .per { font-size: 14px; font-weight: 500; color: var(--muted); margin-left: 6px; }
.plan .desc { color: var(--text-2); font-size: 15px; min-height: 44px; line-height: 1.55; }
.plan ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.plan li {
  font-size: 15px;
  color: var(--text-2);
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}
.plan li::before {
  content: "";
  width: 18px; height: 18px;
  margin-top: 2px;
  background: var(--accent-soft);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232563EB' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.plan .ribbon {
  position: absolute;
  top: -13px;
  right: 24px;
  background: var(--highlight);
  color: #3d2c00;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.plan .ribbon.alt { background: var(--primary); color: #fff; }

/* free-tier transparency note */
.pricing-note {
  max-width: 1140px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--accent-soft);
}
.pricing-note-icon {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 15px; font-weight: 700; font-style: normal;
}
.pricing-note-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.pricing-note-body { font-size: 15px; line-height: 1.6; color: var(--text-2); }
.pricing-note-body p { margin: 0; }
.pricing-note-body strong { color: var(--text); font-weight: 600; }

/* ===== faq ===== */
.faq {
  display: grid;
  gap: 12px;
}
details.qa {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
details.qa > summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 16px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
details.qa > summary::-webkit-details-marker { display: none; }
details.qa > summary::after {
  content: "+";
  color: var(--muted);
  font-size: 20px;
  font-weight: 400;
  justify-self: end;
  transition: transform 200ms;
}
details.qa[open] > summary::after { content: "−"; color: var(--primary); }
details.qa .ans {
  padding: 0 24px 22px;
  color: var(--text-2);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 75ch;
}
details.qa .ans a { color: var(--primary); font-weight: 500; }
details.qa .ans a:hover { text-decoration: underline; }

/* ===== cta band ===== */
.cta-band {
  padding: 88px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta-band-inner {
  background: linear-gradient(135deg, var(--primary), var(--primary-sky));
  border-radius: 24px;
  padding: 64px 40px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 18ch;
  margin: 0 auto;
  color: #fff;
}
.cta-band .sub {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 50ch;
  margin-left: auto; margin-right: auto;
}
.cta-band .actions { margin-top: 32px; display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.cta-band .btn.primary { background: #fff; color: var(--primary); border-color: #fff; box-shadow: var(--shadow-md); }
.cta-band .btn.primary:hover { background: rgba(255,255,255,.92); color: var(--primary-deep); }
.cta-band .btn.ghost { color: #fff; border-color: rgba(255,255,255,.5); background: transparent; }
.cta-band .btn.ghost:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ===== footer ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
  background: var(--surface);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(2, 1fr);
  gap: 32px;
}
.footer h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer a { color: var(--text-2); font-size: 15px; transition: color 120ms; }
.footer a:hover { color: var(--primary); }
.footer .blurb { color: var(--muted); font-size: 14px; line-height: 1.6; margin-top: 16px; max-width: 30ch; }

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}

/* ===== legal pages ===== */
.legal-body {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.legal-body h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  letter-spacing: -0.01em;
}
.legal-body p { margin: 0; }
.legal-body ul { padding-left: 22px; display: flex; flex-direction: column; gap: 10px; }
.legal-body a { color: var(--primary); font-weight: 500; }
.legal-body a:hover { text-decoration: underline; }

/* ===== schedule widget ===== */
.schedule-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}
.schedule-card .cal-ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--primary);
  display: grid; place-items: center;
}
.schedule-card .cal-ic svg { width: 22px; height: 22px; }
.schedule-card .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.schedule-card .when {
  margin-top: 4px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
}
.schedule-card .countdown {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

/* ===== instant runs ===== */
.instant-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.instant-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.instant-step .num {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.instant-step-body h3 { font-size: 18px; line-height: 1.3; letter-spacing: -0.01em; }
.instant-step-body p { margin-top: 6px; color: var(--text-2); font-size: 15px; line-height: 1.55; }

.instant-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.instant-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px 26px 30px;
}
.instant-card ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.instant-card li {
  font-size: 15px;
  color: var(--text-2);
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  line-height: 1.55;
  align-items: start;
}
.instant-card li::before {
  content: "";
  width: 18px; height: 18px;
  margin-top: 2px;
  background: var(--accent-soft);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232563EB' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== pricing add-on ===== */
.pricing-addon {
  margin-top: 24px;
  max-width: 776px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.pricing-addon-text { display: flex; flex-direction: column; gap: 4px; }
.pricing-addon .addon-eyebrow,
.post-cta .addon-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}
.pricing-addon .addon-title { font-size: 18px; font-weight: 600; color: var(--text); letter-spacing: -0.01em; }
.pricing-addon .addon-desc { font-size: 15px; color: var(--text-2); }

/* ===== blog: shared ===== */
.breadcrumbs {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 28px;
}
.breadcrumbs a { color: var(--muted); transition: color 0.15s; }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs span.muted2 { padding: 0 8px; color: var(--border-2); }

/* ===== blog: index ===== */
.blog-index { padding: 72px 0 96px; }
.blog-list-head { margin-bottom: 48px; max-width: 720px; }
.blog-list { display: grid; grid-template-columns: 1fr; gap: 16px; }
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 160ms, transform 160ms;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.blog-card h2 { font-size: 24px; font-weight: 700; line-height: 1.25; letter-spacing: -0.02em; color: var(--text); }
.blog-card p { font-size: 16px; color: var(--text-2); line-height: 1.6; max-width: 64ch; }
.blog-card .read-more { margin-top: 6px; font-size: 14px; font-weight: 600; color: var(--primary); }
.post-meta { font-size: 13px; font-weight: 500; letter-spacing: 0.02em; color: var(--muted); }
.post-meta .sep { padding: 0 8px; color: var(--border-2); }

/* ===== blog: single post ===== */
.post-wrap { padding: 64px 0 96px; }
.post-container { max-width: 720px; }
.post-header { margin-bottom: 40px; }
.post-header h1 {
  margin-top: 14px;
  font-size: clamp(30px, 4.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.post-dek { margin-top: 18px; font-size: 19px; line-height: 1.55; color: var(--text-2); max-width: 60ch; }

.post-body { font-size: 17px; line-height: 1.75; color: var(--text-2); }
.post-body p { margin: 0 0 22px; max-width: 66ch; }
.post-body p:last-child { margin-bottom: 0; }
.post-body strong { color: var(--text); font-weight: 600; }
.post-body em { color: var(--text-2); font-style: italic; }
.post-body a { color: var(--primary); font-weight: 500; border-bottom: 1px solid rgba(37,99,235,0.3); transition: border-color 0.15s; }
.post-body a:hover { border-bottom-color: var(--primary); }
.post-body h2 { margin: 48px 0 18px; font-size: 26px; line-height: 1.25; letter-spacing: -0.02em; color: var(--text); font-weight: 700; }
.post-body h3 { margin: 32px 0 12px; font-size: 20px; letter-spacing: -0.01em; color: var(--text); font-weight: 600; }
.post-body ul { margin: 0 0 22px; padding: 0; list-style: none; max-width: 66ch; }
.post-body ul li { position: relative; padding-left: 24px; margin-bottom: 10px; }
.post-body ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

/* end-of-post CTA card */
.post-cta {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(59,130,246,0.03));
  box-shadow: var(--shadow-sm);
}
.post-cta-text { display: flex; flex-direction: column; gap: 4px; }
.post-cta .addon-title { font-size: 19px; font-weight: 600; color: var(--text); letter-spacing: -0.01em; }
.post-cta .addon-desc { font-size: 15px; color: var(--text-2); max-width: 56ch; line-height: 1.55; }

/* post nav */
.post-footer-nav {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.post-back { font-size: 14px; font-weight: 600; color: var(--muted); transition: color 0.15s; }
.post-back:hover { color: var(--primary); }
.post-next { display: flex; flex-direction: column; gap: 4px; text-align: right; }
.post-next .muted { font-size: 13px; font-weight: 600; color: var(--muted); }
.post-next .post-next-title { font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.4; transition: color 0.15s; }
.post-next:hover .post-next-title { color: var(--primary); }
.post-footer-nav .post-next:first-child { text-align: left; }
.post-footer-nav .post-back:last-child { text-align: right; }

/* ===== density ===== */
body[data-density="compact"] { font-size: 15px; }
body[data-density="compact"] section { padding: 60px 0; }
body[data-density="compact"] .hero { padding: 56px 0; }
body[data-density="compact"] .step { padding: 20px 22px; gap: 22px; }
body[data-density="compact"] .feature { padding: 22px 20px 24px; min-height: 0; }
body[data-density="compact"] .plan { padding: 24px 22px; }
body[data-density="compact"] details.qa > summary { padding: 18px 22px; }
body[data-density="compact"] .sec-head { margin-bottom: 40px; }

/* ===== responsive ===== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { justify-content: flex-start; }
  .product-card { max-width: 480px; }
}
@media (max-width: 900px) {
  :root { --gutter: 20px; }
  .nav-links { display: none; }
  .nav-link-plain { display: none; }
  .hero { padding: 56px 0; }
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
  .brief { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .feature-wide-inner { grid-template-columns: 1fr; }
  .recruiter-toggle-card { max-width: 100%; }
  .pricing { grid-template-columns: 1fr; }
  .instant-flow { grid-template-columns: 1fr; }
  .instant-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 44px 1fr; gap: 18px; }
  .step .demo-card { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 64px 0; }
  .cta-band-inner { padding: 48px 28px; }
  .jd-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .jd-tabs .tab { white-space: nowrap; flex-shrink: 0; }
}

@media (max-width: 600px) {
  :root { --gutter: 16px; }
  section { padding: 48px 0; }
  .hero { padding: 40px 0; }
  .hero h1 { margin-top: 20px; }
  .hero-sub { font-size: 16px; }
  .sec-head { margin-bottom: 36px; }

  .schedule-card { grid-template-columns: auto 1fr; gap: 14px; }
  .schedule-card .countdown { grid-column: 1 / -1; font-size: 22px; }

  .step { grid-template-columns: 1fr; gap: 16px; }
  .jd-head { grid-template-columns: 44px 1fr; }
  .jd-head .logo-sq { width: 44px; height: 44px; font-size: 15px; border-radius: 12px; }
  .jd-head .title { font-size: 16px; }
  .jd-score { display: none; }
  .jd-body { padding: 18px; }
  .jd-actions { flex-wrap: wrap; }
  .kv { grid-template-columns: 110px 1fr; }
  .demo-company { min-width: 0; flex: 1; }

  .footer-grid { grid-template-columns: 1fr; }
  .pricing-addon { grid-template-columns: 1fr; text-align: left; }
  .pricing-addon .btn { justify-self: start; }
  .pricing-note { padding: 16px 18px; gap: 12px; }
  .post-cta { grid-template-columns: 1fr; text-align: left; }
  .post-cta .btn { justify-self: start; }
  .post-footer-nav { grid-template-columns: 1fr; }
  .post-footer-nav .post-next,
  .post-footer-nav .post-back { text-align: left; }
  .post-footer-nav .post-back:last-child { text-align: left; }

  details.qa > summary { padding: 18px 20px; font-size: 16px; }
  details.qa .ans { padding: 0 20px 20px; }
  .blog-card { padding: 24px 22px; }
  .blog-card h2 { font-size: 21px; }
  .post-wrap { padding: 44px 0 72px; }
  .post-body { font-size: 16.5px; }
  .post-body h2 { font-size: 22px; margin-top: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
