/* CamSharks — HR Pro layout language, CamSharks palette */
:root {
  --red: #e10600;
  --red-deep: #b80500;
  --blue: #1898e8;
  --blue-deep: #0d6fb3;
  --ink: #0b0b0c;
  --ink-soft: #2c2c2e;
  --paper: #fffffb;
  --paper-2: #f4f4ef;
  --soft: #eaeae2;
  --white: #ffffff;
  --muted: #6f6b6b;
  --muted-2: #8a8686;
  --line: rgba(11, 11, 12, 0.08);
  --line-strong: rgba(11, 11, 12, 0.14);
  --max: 1200px;
  --header-h: 84px;
  --font-display: "Parkinsans", "Helvetica Neue", sans-serif;
  --font-body: "Inter", "Helvetica Neue", sans-serif;
  --radius: 24px;
  --radius-sm: 16px;
  --pill: 60px;
  --focus: 0 0 0 2px #fffffb, 0 0 0 4px var(--red);
  --shadow: 0 18px 50px rgba(11, 11, 12, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--red); color: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--red); }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 0 0 0.5em;
  font-weight: 400;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 3.55rem); font-weight: 300; letter-spacing: -0.045em; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.85rem); font-weight: 400; }
h3 { font-size: 1.2rem; font-weight: 500; letter-spacing: -0.02em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.15em; }
em.accent, .accent { font-style: normal; color: var(--red); }
.accent-blue { color: var(--blue); }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 10000;
  background: var(--ink); color: #fff; padding: 8px 16px; font-weight: 500;
  border-radius: var(--pill);
}
.skip-link:focus { left: 12px; }
.container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.section { padding: 96px 0; position: relative; }
.section-dark {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-muted { background: var(--paper-2); }
.has-grid { position: relative; overflow: hidden; }
.has-grid::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(11,11,12,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,11,12,0.045) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 20%, #000 30%, transparent 75%);
  pointer-events: none;
}
.section-dark.has-grid::before {
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse 80% 90% at 70% 40%, #000 20%, transparent 80%);
}
.blob {
  position: absolute; pointer-events: none; border-radius: 50%;
  filter: blur(8px);
}
.blob-tr {
  top: -120px; right: -80px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(24,152,232,0.16), transparent 68%);
}
.blob-bl {
  bottom: -160px; left: -120px; width: 520px; height: 380px;
  background: radial-gradient(circle, rgba(225,6,0,0.08), transparent 70%);
}
.blob-wave {
  position: absolute; left: -10%; bottom: -40%; width: 80%; height: 70%;
  background: radial-gradient(ellipse at 30% 80%, rgba(24,152,232,0.08), transparent 60%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex; align-items: center;
  background: var(--soft);
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  padding: 6px 14px;
  border-radius: var(--pill);
  margin-bottom: 18px;
}
.section-dark .eyebrow { background: rgba(255,255,255,0.12); color: #fff; }
.lede { font-size: 1.05rem; color: var(--muted); max-width: 40rem; }
.section-dark .lede { color: rgba(255,255,255,0.7); }
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.section-dark .btn-outline { color: #fff !important; border-color: rgba(255,255,255,0.22); }
.section-dark .btn-outline:hover { background: #fff; color: var(--ink) !important; }
.grid-6 { grid-template-columns: repeat(3, 1fr); }
.center { text-align: center; }
.center .lede, .center h1, .center h2 { margin-left: auto; margin-right: auto; }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: #fff;
  border-bottom: 1px solid transparent;
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-h);
  gap: 16px;
}
.logo { display: flex; align-items: center; justify-self: start; }
.logo img { width: 148px; height: auto; }
.nav-desktop {
  display: flex; align-items: center; gap: 4px;
  justify-self: center;
}
.nav-desktop > a,
.nav-more > button {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  padding: 8px 14px;
  white-space: nowrap;
  border-radius: var(--pill);
  background: none; border: 0; cursor: pointer;
  text-decoration: none;
}
.nav-desktop > a:hover,
.nav-more > button:hover { color: var(--ink); }
.nav-desktop > a[aria-current="page"] { color: var(--ink); }
.nav-more { position: relative; }
.nav-dropdown {
  display: none; position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%);
  min-width: 230px; background: #fff;
  padding: 10px; border-radius: 18px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.nav-more.open .nav-dropdown,
.nav-more:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block; color: var(--ink); padding: 10px 12px; font-size: 0.95rem;
  text-decoration: none; font-weight: 500; border-radius: 12px;
  font-family: var(--font-display);
}
.nav-dropdown a:hover { background: var(--paper-2); color: var(--red); }
.header-ctas { display: flex; align-items: center; justify-self: end; }
.nav-toggle {
  display: none; justify-self: end;
  width: 44px; height: 44px;
  border: 0; background: transparent; color: var(--ink); cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--ink); margin: 5px auto; border-radius: 2px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 50px; padding: 12px 28px;
  font-family: var(--font-display);
  font-weight: 500; font-size: 0.98rem;
  letter-spacing: 0; text-transform: none;
  border: 1px solid transparent; border-radius: var(--pill);
  cursor: pointer; text-decoration: none !important;
  transition: background .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: #fff !important; }
.btn-primary:hover { background: #1c1c1e; }
.btn-secondary {
  background: var(--soft); color: var(--ink) !important;
}
.btn-secondary:hover { background: #e0e0d8; }
.btn-ghost {
  background: transparent; color: var(--ink) !important;
  border: 0; min-height: 44px; padding: 8px 14px;
}
.btn-ghost:hover { color: var(--red) !important; }
.btn-light { background: var(--ink); color: #fff !important; }
.btn-light:hover { background: #1c1c1e; }
.btn-outline {
  background: transparent; color: var(--ink) !important; border-color: var(--line-strong);
}
.btn-outline:hover { background: var(--ink); color: #fff !important; }
.btn-red { background: var(--red); color: #fff !important; }
.btn-red:hover { background: var(--red-deep); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn-ico {
  display: inline-flex; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,0.16); align-items: center; justify-content: center;
  font-size: 0.75rem;
}
.btn-secondary .btn-ico { background: rgba(11,11,12,0.08); }

/* Hero */
.hero {
  background: var(--paper);
  color: var(--ink);
  padding: 28px 0 8px;
  overflow: hidden;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 48px 0 36px;
  position: relative; z-index: 1;
}
.hero h1 { color: var(--ink); max-width: 14ch; margin-bottom: 18px; }
.hero p { color: var(--muted); max-width: 36rem; }
.trust-line {
  display: flex; flex-wrap: wrap; gap: 10px 18px;
  color: var(--muted); font-size: 0.9rem;
  margin: 22px 0 4px; font-weight: 400;
}
.trust-line span { display: inline-flex; align-items: center; gap: 8px; }
.trust-line span::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red);
}
.hero-note { font-size: 0.86rem; color: var(--muted-2); margin-top: 16px; }
.hero-compose {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  min-height: 0;
}
.hero-stat {
  position: relative;
  z-index: 1;
  margin-top: 56px;
  margin-right: 0;
  background: var(--ink); color: #fff;
  border-radius: 28px;
  padding: 32px 88px 36px 28px;
  min-height: 320px;
}
.hero-stat p { color: rgba(255,255,255,0.92); font-family: var(--font-display); font-size: 1.4rem; line-height: 1.25; letter-spacing: -0.03em; margin: 0 0 16px; }
.hero-stat-note { font-family: var(--font-body) !important; font-size: 0.9rem !important; color: rgba(255,255,255,0.62) !important; max-width: 16ch; }
.hero-portrait {
  position: relative;
  z-index: 2;
  margin-left: -64px;
  background: #fff;
  border-radius: 28px;
  padding: 10px 10px 16px;
  box-shadow: var(--shadow);
}
.hero-portrait img {
  width: 100%; height: 340px; object-fit: cover; border-radius: 20px;
}
.hero-portrait-tag {
  position: absolute; top: 22px; left: 22px;
  background: #fff; color: var(--ink);
  font-size: 0.78rem; font-weight: 500;
  padding: 6px 12px; border-radius: var(--pill);
  font-family: var(--font-display);
}
.hero-portrait-cap { padding: 12px 10px 4px; }
.hero-portrait-cap strong { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.hero-portrait-cap span { color: var(--muted); font-size: 0.88rem; }

/* Logo / trust strip */
.trust-strip {
  background: transparent;
  padding: 12px 0 48px;
  position: relative; z-index: 1;
}
.trust-strip .grid { gap: 0; align-items: center; }
.trust-item {
  color: var(--muted-2);
  padding: 12px 18px;
  text-align: center;
  border: 0;
}
.trust-item strong {
  display: block; color: #b8b4b0;
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 500;
  letter-spacing: -0.02em; margin-bottom: 0;
}
.trust-item span { display: none; }

/* Feature cards */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-card, .card {
  background: #fff;
  border: 0;
  border-radius: var(--radius);
  padding: 28px 24px 30px;
  box-shadow: none;
  text-decoration: none;
  color: inherit;
}
.feature-card { background: rgba(255,255,255,0.72); }
.card:hover { transform: none; }
.card.dark { background: var(--ink); color: rgba(255,255,255,0.78); }
.card.dark h3 { color: #fff; }
.icon-box {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--ink); color: #fff; margin-bottom: 18px;
}
.icon-box.red { background: var(--red); }
.icon-box.blue { background: var(--blue); }
.icon-dot {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: var(--ink); color: #fff;
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 500;
}
.section-dark .icon-dot { background: rgba(255,255,255,0.12); color: #fff; }
.num {
  font-family: var(--font-display);
  font-size: 1.6rem; color: var(--red); font-weight: 400; margin-bottom: 10px;
}
.mark {
  width: 44px; height: 44px; border-radius: 14px;
  display: grid; place-items: center; margin: 0 auto 22px;
  background: var(--ink); color: #fff;
  box-shadow: 0 10px 24px rgba(11,11,12,0.12);
}

.disclosure {
  border: 0; background: var(--paper-2);
  border-radius: var(--radius-sm); padding: 18px 20px; margin: 28px 0;
}
.disclosure strong { display: block; color: var(--ink); margin-bottom: 6px; font-size: 0.92rem; font-family: var(--font-display); }
.review-note {
  border: 0; background: #fff6d8; color: #5c4708;
  border-radius: var(--radius-sm); padding: 12px 14px; margin: 16px 0; font-size: 0.9rem;
}
.review-note::before { content: "Internal review: "; font-weight: 600; }

.breadcrumb { padding: 0 0 10px; font-size: 0.82rem; color: var(--muted-2); }
.breadcrumb a { color: var(--muted-2); text-decoration: none; }
.breadcrumb a:hover { color: var(--blue); }
.page-hero {
  background: var(--paper);
  color: var(--ink);
  padding: 56px 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--ink); max-width: 16ch; margin: 0 auto 14px; }
.page-hero p { color: var(--muted); max-width: 36rem; font-size: 1.05rem; margin-left: auto; margin-right: auto; }
.page-hero .eyebrow { color: var(--ink-soft); }
.page-hero .breadcrumb { justify-content: center; }
.page-hero .breadcrumb ol { justify-content: center; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.faq-item {
  border: 0; border-radius: 16px; background: #fff;
  overflow: hidden; box-shadow: 0 1px 0 var(--line);
}
.faq-item + .faq-item { margin-top: 0; }
.faq-item button {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 18px 20px; font: 500 1rem var(--font-display); color: var(--ink);
  display: flex; justify-content: space-between; gap: 12px; min-height: 56px; align-items: center;
}
.faq-item button::after {
  content: ""; width: 10px; height: 10px; flex-shrink: 0;
  border-right: 1.5px solid var(--muted); border-bottom: 1.5px solid var(--muted);
  transform: rotate(45deg); margin-top: -4px;
  transition: transform .2s ease;
}
.faq-item.is-open button::after { transform: rotate(225deg); margin-top: 4px; }
.faq-item .faq-body { display: none; padding: 0 20px 18px; color: var(--muted); }
.faq-item.is-open .faq-body { display: block; }
.faq-search {
  width: 100%; min-height: 52px; border-radius: var(--pill); border: 1px solid var(--line);
  padding: 12px 20px; font: inherit; margin-bottom: 18px; background: #fff;
}
.faq-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; justify-content: center; }
.faq-cats button {
  border: 0; background: var(--soft); border-radius: var(--pill);
  padding: 8px 16px; min-height: 40px; cursor: pointer; font-weight: 500;
  font-size: 0.88rem; color: var(--ink); font-family: var(--font-display);
}
.faq-cats button[aria-pressed="true"] { background: var(--ink); color: #fff; }

label { display: block; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.field { margin-bottom: 18px; }
.hint { display: block; font-weight: 400; color: var(--muted); font-size: 0.86rem; margin-top: 6px; }
input[type="text"], input[type="email"], input[type="tel"], input[type="search"], select, textarea {
  width: 100%; min-height: 50px; border-radius: 0; border: 0; border-bottom: 1px solid var(--line-strong);
  padding: 12px 0; font: inherit; background: transparent; color: var(--ink);
}
textarea { min-height: 140px; resize: vertical; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.choice {
  border: 1px solid var(--line-strong); border-radius: 14px; padding: 12px 14px;
  display: flex; gap: 10px; align-items: center; min-height: 48px; cursor: pointer; background: #fff;
}
.choice:has(input:checked) { border-color: var(--red); background: rgba(225, 6, 0, 0.04); }
.checkbox { display: flex; gap: 10px; align-items: flex-start; font-weight: 400; }
.error { color: var(--red); font-size: 0.88rem; margin-top: 6px; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--red); }
.field.has-error .error { display: block; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.progress { height: 4px; background: var(--line); border-radius: var(--pill); overflow: hidden; margin: 8px 0 18px; }
.progress span { display: block; height: 100%; width: 20%; background: var(--red); border-radius: var(--pill); }
.apply-steps { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; color: var(--muted); font-size: 0.82rem; font-weight: 500; padding: 0; }
.apply-steps li { list-style: none; padding: 6px 12px; border-radius: var(--pill); background: var(--soft); }
.apply-steps li.is-active { color: #fff; background: var(--ink); }
.apply-panel { display: none; }
.apply-panel.is-active { display: block; }
.apply-wrap { max-width: 880px; }
.apply-form { padding: 32px 28px 36px; }
.apply-toolbar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; }
.form-section {
  border: 0; margin: 0 0 28px; padding: 0 0 8px;
  border-bottom: 1px solid var(--line);
}
.form-section legend {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 500;
  color: var(--ink); padding: 0; margin: 0 0 14px;
}
.section-note, .form-section .hint { margin-bottom: 12px; }
.req { color: var(--red); font-weight: 600; }
#state-wrap.is-emphasized label::after { content: " (recommended for USA)"; color: var(--muted); font-weight: 400; }
input[type="date"] { min-height: 50px; }

.panel-card {
  background: var(--paper-2);
  border-radius: 32px;
  padding: 40px 36px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}
.contact-meta a { display: block; color: var(--ink); text-decoration: none; margin: 8px 0; font-weight: 500; }
.contact-meta a:hover { color: var(--red); }

.site-footer { background: var(--paper); color: var(--muted); padding: 72px 0 28px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 48px; }
.site-footer h3 {
  color: var(--ink); font-family: var(--font-display); font-size: 1.05rem;
  letter-spacing: -0.02em; font-weight: 500; margin-bottom: 14px;
}
.site-footer a { color: var(--muted); display: block; padding: 5px 0; text-decoration: none; }
.site-footer a:hover { color: var(--ink); }
.footer-brand .logo { background: transparent; padding: 0; display: inline-flex; margin-bottom: 16px; }
.footer-brand p { max-width: 260px; }
.footer-disclaimer { font-size: 0.82rem; border-top: 1px solid var(--line); padding-top: 18px; color: var(--muted-2); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; margin-top: 12px;
}
.footer-copy { font-size: 0.8rem; }
.footer-credit { font-size: 0.8rem; margin-left: auto; text-align: right; }
.footer-credit a { color: var(--ink); text-decoration: none; display: inline; padding: 0; }
.footer-credit a:hover { color: var(--red); }

.cookie-banner {
  position: fixed; left: 24px; bottom: 24px; z-index: 1200;
  width: min(420px, calc(100% - 32px));
  background: var(--ink); color: #fff; border: 0; border-radius: 22px;
  padding: 22px; display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner .btn-secondary { color: var(--ink) !important; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.cookie-prefs { margin-top: 12px; display: none; }
.cookie-prefs.is-open { display: block; }

.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.media-frame { border-radius: 28px; overflow: hidden; min-height: 280px; background: #111; position: relative; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; }
.final-cta { text-align: center; padding: 100px 0; }
.final-cta .container { display: block; max-width: 720px; }
.final-cta .cta-row { justify-content: center; }
.final-cta .trust-line { justify-content: center; }
.final-cta h2 { color: #fff; max-width: 18ch; margin-left: auto; margin-right: auto; }
.cta-banner {
  position: relative; border-radius: 28px; overflow: hidden; min-height: 280px;
  display: grid; place-items: center; text-align: center; color: #fff;
  padding: 48px 24px;
}
.cta-banner img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.45);
}
.cta-banner .cta-banner-inner { position: relative; z-index: 1; max-width: 640px; }
.cta-banner h2 { color: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.step-card h3 { color: #fff; }
.step-n {
  font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: var(--blue); margin-bottom: 10px;
}
.blog-list { display: grid; gap: 0; }
.resource-card, .blog-row {
  text-decoration: none; color: inherit;
  display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: center;
  padding: 28px 0; border-bottom: 1px solid var(--line);
  background: transparent; border-radius: 0; box-shadow: none;
}
.resource-card img, .blog-row img { width: 100%; height: 180px; object-fit: cover; border-radius: 22px; margin: 0; }
.resource-card h3, .blog-row h3 { margin-bottom: 6px; }
.resource-card:hover h3, .blog-row:hover h3 { color: var(--red); }
.read-more { color: var(--ink); font-weight: 500; text-decoration: underline; text-underline-offset: 4px; font-family: var(--font-display); }
.timeline { display: grid; gap: 16px; }
.timeline-item { display: grid; grid-template-columns: 72px 1fr; gap: 16px; padding: 0; border: 0; }
.timeline-num {
  width: 56px; height: 56px; border-radius: 16px; background: var(--ink); color: #fff;
  display: grid; place-items: center; font-family: var(--font-display); font-size: 1.35rem; font-weight: 400;
}
.list-clean { list-style: none; padding: 0; columns: 2; gap: 32px; }
.list-clean li { padding: 8px 0 8px 28px; position: relative; break-inside: avoid; }
.list-clean li::before {
  content: ""; position: absolute; left: 0; top: 12px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--ink);
}
.article { max-width: 760px; }
.article h2 { margin-top: 1.5em; }
figure { margin: 0 0 24px; }
figcaption { font-size: 0.82rem; color: var(--muted); margin-top: 8px; }
.site-header a:focus-visible,
.btn:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible { outline: none; box-shadow: var(--focus); }

.mobile-drawer { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(11,11,12,0.45); }
.mobile-drawer.is-open { display: block; }
.drawer-panel {
  position: absolute; right: 0; top: 0; bottom: 0; width: min(420px, 92vw);
  background: #fff; padding: 22px; overflow: auto;
}
.drawer-panel a, .drawer-panel button.drawer-link {
  display: block; color: var(--ink); padding: 12px 8px; min-height: 44px; font-weight: 500;
  background: none; border: 0; width: 100%; text-align: left; font-size: 1.05rem;
  font-family: var(--font-display); text-decoration: none;
}
.drawer-close { width: 44px; height: 44px; border: 0; background: none; color: var(--ink); cursor: pointer; }
.drawer-ctas { display: grid; gap: 10px; margin: 18px 0 24px; }

.quote {
  background: #fff; border-radius: var(--radius); padding: 28px 26px;
}
.quote-media {
  width: 72px; height: 72px; border-radius: 50%; overflow: hidden;
  margin-bottom: 14px; background: var(--soft);
}
.quote-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.quote p { font-family: var(--font-display); font-size: 1.2rem; line-height: 1.4; color: var(--ink); }
.quote h3 { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0; text-transform: none; color: var(--ink); margin-bottom: 8px; }

.error-hero h1 { font-size: clamp(5rem, 16vw, 10rem); font-weight: 300; letter-spacing: -0.06em; margin-bottom: 8px; }

@media (max-width: 1100px) {
  .nav-desktop, .header-ctas { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .hero-grid, .split, .footer-grid, .feature-grid, .steps-grid, .faq-grid, .panel-card { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .trust-strip .grid-5 { gap: 8px; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .list-clean { columns: 1; }
  .hero-compose { min-height: 0; display: block; }
  .hero-stat { margin: 0 0 -40px; padding: 28px 24px 56px; }
  .hero-portrait { margin-left: 0; }
  .resource-card, .blog-row { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .section { padding: 72px 0; }
  .grid-2, .grid-3, .grid-4, .grid-6, .choice-grid, .grid-5 { grid-template-columns: 1fr; }
  .hero-stat { margin: 0 0 -40px; width: auto; padding: 28px 24px 48px; min-height: 0; }
  .hero-portrait { margin-top: 0; width: auto; }
  .hero-compose { min-height: 0; }
  .hero-portrait img { height: 280px; }
  h1 { font-size: clamp(2.1rem, 10vw, 2.8rem); }
  .page-hero { padding: 36px 0 28px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
