@charset "UTF-8";

:root {
  --background: #FFFFFF;
  --foreground: #14171C;
  --surface: #FFFFFF;
  --ink: #14171C;
  --ink-muted: #5B6470;
  --hairline: #E4E8EE;
  --rule: #E4E8EE;
  --blue: #2351D1;
  --blue-hover: #1A3FA8;
  --navy: #0E2A52;
  --coral: #F0533A;
  --coral-hover: #D9402A;
  --amber: #F6B23C;
  --spruce: #2E7D5B;
  --cream: #FBF3E8;
  --sky: #EAF0FB;
  --mint: #E3F1E8;
  --font-sans: "Familjen Grotesk", ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Bricolage Grotesque", "Familjen Grotesk", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; border-color: var(--hairline); }
html { font-family: var(--font-sans); scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.075rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}
h1 { font-size: clamp(2rem, 6vw, 4rem); font-weight: 700; overflow-wrap: break-word; hyphens: auto; }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 600; letter-spacing: -0.018em; line-height: 1.1; }
h3 { font-size: 1.3rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1.25; }
p, ul, ol { margin-top: 0; margin-bottom: 0; }
ul, ol { padding-left: 0; list-style: none; }
article ul { padding-left: 1.25rem; list-style: disc; }
a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: color-mix(in oklab, var(--blue) 35%, transparent);
}
a:hover { color: var(--coral); text-decoration-color: var(--coral); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 2px; }

.container-page { max-width: 1180px; margin-inline: auto; padding-inline: 24px; }
.eyebrow { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--blue); }
.eyebrow-coral { color: var(--coral); }
.eyebrow-amber { color: var(--amber); }
.tabular { font-variant-numeric: tabular-nums; }
.hairline-t { border-top: 1px solid var(--hairline); }
.hairline-b { border-bottom: 1px solid var(--hairline); }
.prose-measure { max-width: 70ch; }
.band-navy { background: var(--navy); color: #fff; }
.band-cream { background: var(--cream); }
.band-sky { background: var(--sky); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--coral);
  color: #fff;
  padding: 0.78rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  transition: background 150ms ease, transform 150ms ease;
}
.btn-primary:hover { background: var(--coral-hover); color: #fff; transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ink);
  padding: 0.7rem 1.1rem;
  border-radius: 8px;
  border: 1px solid var(--hairline);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: border-color 150ms ease, background 150ms ease;
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.card-surface {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}
.card-surface:hover { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue); transform: translateY(-1px); }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  border: 1px solid transparent;
}
.pill-blue { background: color-mix(in oklab, var(--blue) 12%, white); color: var(--blue); }
.pill-coral { background: color-mix(in oklab, var(--coral) 14%, white); color: #B33420; }
.pill-spruce { background: color-mix(in oklab, var(--spruce) 14%, white); color: var(--spruce); }
.pill-amber { background: color-mix(in oklab, var(--amber) 22%, white); color: #8A5A00; }
.pill-ink { background: #F0F2F5; color: var(--ink); }
.rating-meter { position: relative; width: 84px; height: 6px; background: color-mix(in oklab, var(--amber) 18%, white); border-radius: 999px; overflow: hidden; }
.rating-meter-fill { position: absolute; inset: 0; background: var(--amber); border-radius: 999px; }
.footer-heading {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: linear-gradient(95deg, #FFFFFF 0%, #F6B23C 55%, #F0533A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 0 rgba(255,255,255,0.04);
}

.site-header { background: var(--navy); color: #fff; border-bottom: 3px solid var(--amber); }
.site-logo-text { font-family: var(--font-display); letter-spacing: -0.02em; color: #fff; }
.site-nav-link { position: relative; padding-block: .25rem; color: #CDD8EA; }
.site-nav-link.is-active { color: #fff; font-weight: 700; border-bottom: 2px solid var(--amber); }
.site-menu-toggle { color: #fff; background: transparent; border: 0; font-size: 1.5rem; line-height: 1; }
.site-menu-close { display: none; font-size: 2rem; }
.site-menu-toggle.is-open .site-menu-open { display: none; }
.site-menu-toggle.is-open .site-menu-close { display: inline; }
.site-mobile-menu { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.1); }
.sv-logo { background: transparent; border: 1px solid var(--hairline); border-radius: 10px; color: var(--navy); font-weight: 700; letter-spacing: -0.02em; font-family: var(--font-display); font-size: .85rem; }
.sv-logo img { width: 100%; height: 100%; object-fit: contain; }
.sv-thumb-image img { width: 100%; height: 100%; object-fit: cover; }
.sv-toc { background: var(--cream); border: 1px solid var(--hairline); border-radius: 10px; }
.sv-toc a { color: var(--ink-muted); font-weight: 500; border-left: 2px solid transparent; padding-left: 10px; }
.sv-toc a.is-active { color: var(--navy); font-weight: 700; border-left-color: var(--coral); }
.author-box { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); border: 1px solid color-mix(in oklab, var(--blue) 45%, white); border-radius: 10px; box-shadow: 0 18px 40px rgba(14,42,82,.18); }
.author-box-photo, .author-box-initials { width: 76px; height: 76px; border-radius: 10px; border: 3px solid var(--amber); object-fit: cover; }
.author-box-initials { display: flex; align-items: center; justify-content: center; background: #fff; color: var(--blue); font-family: var(--font-display); font-weight: 800; font-size: 1.45rem; }
.hero-author-initials { width: 40px; height: 40px; border-radius: 999px; background: var(--amber); color: var(--navy); font-family: var(--font-display); font-weight: 700; font-size: .95rem; }
.author-profile-card { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); color: #fff; }
.author-expertise { background: color-mix(in oklab, var(--blue) 6%, white); border: 1px solid var(--hairline); color: var(--navy); }
.team-card, .sv-contact-form, .info-card { background: #fff; border: 1px solid var(--hairline); box-shadow: 0 8px 24px rgba(14,42,82,.06); }
.info-card { border-radius: 8px; padding: 1.25rem; box-shadow: 0 4px 14px rgba(14,42,82,.05); }
.callout { background: var(--cream); border-left: 3px solid var(--coral); border-radius: 0 8px 8px 0; }
.input { width: 100%; padding: 10px 12px; border-radius: 8px; border: 1px solid var(--hairline); background: #fff; color: var(--ink); font-size: 14px; font-family: inherit; outline: none; transition: border-color .15s ease, box-shadow .15s ease; }
.input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px color-mix(in oklab, var(--blue) 18%, transparent); }
.sv-topic { display: flex; cursor: pointer; align-items: flex-start; gap: .75rem; border: 1px solid var(--hairline); border-radius: 6px; padding: .75rem; background: #fff; }
.sv-topic.is-active { border: 2px solid var(--blue); background: color-mix(in oklab, var(--blue) 6%, white); }
.sv-topic strong { display: block; color: var(--navy); font-size: .875rem; }
.sv-topic small { display: block; margin-top: .125rem; color: var(--ink-muted); font-size: .75rem; line-height: 1.35; }
.sv-pagination { margin-top: 2rem; }
.sv-pagination ul { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; }
.sv-pagination a, .sv-pagination span { display: inline-flex; padding: .5rem .75rem; border: 1px solid var(--hairline); border-radius: 6px; text-decoration: none; }
.sv-pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.top-24 { top: 6rem; }
.-right-16 { right: -4rem; }
.-top-10 { top: -2.5rem; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-3 { bottom: .75rem; }
.left-4 { left: 1rem; }
.z-40 { z-index: 40; }
.pointer-events-none { pointer-events: none; }
.overflow-hidden { overflow: hidden; }
.cursor-pointer { cursor: pointer; }
.list-none { list-style: none; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.min-h-screen { min-height: 100vh; }
.h-full { height: 100%; }
.w-full { width: 100%; }
.h-10 { height: 2.5rem; }
.w-10 { width: 2.5rem; }
.h-16 { height: 4rem; }
.w-16 { width: 4rem; }
.h-24 { height: 6rem; }
.w-24 { width: 6rem; }
.h-32 { height: 8rem; }
.w-32 { width: 8rem; }
.max-w-sm { max-width: 24rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-inline: auto; }
.mt-auto { margin-top: auto; }
.mb-1 { margin-bottom: .25rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-1 { margin-top: .25rem; }
.mt-2 { margin-top: .5rem; }
.mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mt-24 { margin-top: 6rem; }
.mb-12 { margin-bottom: 3rem; }
.my-6 { margin-block: 1.5rem; }
.p-3 { padding: .75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.px-2 { padding-inline: .5rem; }
.px-2-5 { padding-inline: .625rem; }
.px-3 { padding-inline: .75rem; }
.px-5 { padding-inline: 1.25rem; }
.py-0-5 { padding-block: .125rem; }
.py-1 { padding-block: .25rem; }
.py-1-5 { padding-block: .375rem; }
.py-2 { padding-block: .5rem; }
.py-3 { padding-block: .75rem; }
.py-4 { padding-block: 1rem; }
.py-6 { padding-block: 1.5rem; }
.py-16 { padding-block: 4rem; }
.py-24 { padding-block: 6rem; }
.pt-3 { padding-top: .75rem; }
.pt-4 { padding-top: 1rem; }
.pt-5 { padding-top: 1.25rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-12 { padding-top: 3rem; }
.pt-16 { padding-top: 4rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-24 { padding-bottom: 6rem; }
.pl-4 { padding-left: 1rem; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1 1 0%; }
.self-start { align-self: flex-start; }
.gap-1 { gap: .25rem; }
.gap-1-5 { gap: .375rem; }
.gap-2 { gap: .5rem; }
.gap-2-5 { gap: .625rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-7 { gap: 1.75rem; }
.gap-10 { gap: 2.5rem; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.min-w-0 { min-width: 0; }
.text-center { text-align: center; }
.text-xxs { font-size: .55rem; }
.text-xs { font-size: .75rem; line-height: 1rem; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: .1em; }
.tracking-tight { letter-spacing: -.025em; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.leading-snug { line-height: 1.375; }
.leading-none { line-height: 1; }
.no-underline { text-decoration: none; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rounded-md { border-radius: .375rem; }
.rounded-lg { border-radius: .5rem; }
.rounded-full { border-radius: 999px; }
.border-t { border-top: 1px solid var(--hairline); }
.border-l-2 { border-left: 2px solid var(--hairline); }
.divide-y > * + * { border-top: 1px solid var(--hairline); }
.scroll-mt-28 { scroll-margin-top: 7rem; }
.transition-colors { transition: color .15s ease, border-color .15s ease; }
.transition-transform { transition: transform .15s ease; }
details[open] .group-open\:rotate-45 { transform: rotate(45deg); }
.space-y-1 > * + * { margin-top: .25rem; }
.space-y-2 > * + * { margin-top: .5rem; }
.space-y-3 > * + * { margin-top: .75rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

@media (min-width: 640px) {
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:h-20 { height: 5rem; }
  .sm\:w-20 { width: 5rem; }
  .sm\:h-28 { height: 7rem; }
  .sm\:w-28 { width: 7rem; }
  .sm\:h-40 { height: 10rem; }
  .sm\:w-40 { width: 10rem; }
  .sm\:items-center { align-items: center; }
  .sm\:items-start { align-items: flex-start; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:gap-3 { gap: .75rem; }
  .sm\:gap-4 { gap: 1rem; }
  .sm\:gap-5 { gap: 1.25rem; }
  .sm\:p-5 { padding: 1.25rem; }
  .sm\:p-6 { padding: 1.5rem; }
  .sm\:p-7 { padding: 1.75rem; }
  .sm\:p-8 { padding: 2rem; }
  .sm\:px-6 { padding-inline: 1.5rem; }
  .sm\:pt-5 { padding-top: 1.25rem; }
  .sm\:text-xs { font-size: .75rem; line-height: 1rem; }
  .sm\:text-sm { font-size: .875rem; line-height: 1.25rem; }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\:justify-between { justify-content: space-between; }
}

@media (min-width: 768px) {
  .md\:hidden { display: none; }
  .md\:flex { display: flex; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
  .lg\:col-span-4 { grid-column: span 4 / span 4; }
  .lg\:col-span-8 { grid-column: span 8 / span 8; }
  .lg\:col-span-12 { grid-column: span 12 / span 12; }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:sticky { position: sticky; }
  .lg\:top-24 { top: 6rem; }
  [class~="lg:grid-cols-[1fr_320px]"] { grid-template-columns: 1fr 320px; }
  [class~="lg:grid-cols-[240px_1fr]"] { grid-template-columns: 240px 1fr; }
}

