:root {
  --bg: #fff;
  --bg-soft: #f5f7fa;
  --ink: #15171c;
  --muted: #5b6370;
  --line: #e3e7ee;
  --accent: #1e4fc2;
  --accent-soft: #e7eefb;
  --max: 1080px;
  --display: "Schibsted Grotesk", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--bg); color: var(--ink); font-family: var(--body);
  font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.wrap { width: min(100% - 48px, var(--max)); margin-inline: auto; }
header {
  position: sticky; top: 0; z-index: 10; border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.93); backdrop-filter: blur(8px);
}
.nav { min-height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-name { font-family: var(--display); font-size: 15px; font-weight: 700; white-space: nowrap; }
.nav-name span { color: var(--muted); font-weight: 500; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--muted); font-size: 13.5px; font-weight: 500; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.hero { padding: 88px 0 70px; border-bottom: 1px solid var(--line); }
.eyebrow, .section-kicker, .card-kind, .card-meta {
  font-family: var(--mono); letter-spacing: .1em; text-transform: uppercase;
}
.eyebrow { color: var(--accent); font-size: 12px; margin-bottom: 18px; }
h1 {
  max-width: 12ch; margin-bottom: 22px; font-family: var(--display); font-size: clamp(44px, 7vw, 72px);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.02;
}
.hero-copy { max-width: 62ch; color: var(--muted); font-size: 17px; }
.hero-path { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.hero-path span { border: 1px solid var(--line); border-radius: 999px; padding: 6px 11px; color: var(--muted); font-size: 12px; }
main section { padding: 70px 0; }
.section-head { display: flex; justify-content: space-between; gap: 32px; align-items: end; margin-bottom: 30px; }
.section-kicker { color: var(--accent); font-size: 11px; margin-bottom: 8px; }
h2 { font-family: var(--display); font-size: clamp(28px, 4vw, 40px); letter-spacing: -.02em; line-height: 1.1; }
.section-note { max-width: 40ch; color: var(--muted); font-size: 14px; text-align: right; }
.grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.card {
  position: relative; display: flex; min-height: 265px; flex-direction: column; padding: 28px;
  border: 1px solid var(--line); border-radius: 14px; background: var(--bg);
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-2px); border-color: #b7c5e6; box-shadow: 0 14px 34px rgba(22,39,76,.08); }
.card.primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.card.primary .card-copy, .card.primary .card-meta { color: #c8ced8; }
.card-kind { color: var(--accent); font-size: 10.5px; }
.card.primary .card-kind { color: #a9c3ff; }
.card h3 { margin: 18px 0 10px; font-family: var(--display); font-size: 25px; line-height: 1.18; letter-spacing: -.015em; }
.card-copy { max-width: 56ch; color: var(--muted); font-size: 14px; }
.card-bottom { display: flex; justify-content: space-between; gap: 16px; align-items: end; margin-top: auto; padding-top: 28px; }
.card-meta { color: var(--muted); font-size: 9.5px; line-height: 1.7; }
.card-arrow { font-family: var(--mono); font-size: 20px; }
.browse { background: var(--bg-soft); border-block: 1px solid var(--line); }
.topic-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.topic { padding: 20px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.topic strong { display: block; margin-bottom: 6px; font-family: var(--display); font-size: 16px; }
.topic span { color: var(--muted); font-size: 12.5px; }
.elsewhere-list { border-top: 1px solid var(--line); }
.elsewhere-item { display: grid; grid-template-columns: 150px 1fr auto; gap: 28px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--line); }
.elsewhere-item .card-kind { color: var(--muted); }
.elsewhere-item h3 { font-family: var(--display); font-size: 19px; line-height: 1.3; }
.elsewhere-item p { color: var(--muted); font-size: 13.5px; }
.elsewhere-arrow { color: var(--accent); font-family: var(--mono); }
footer { padding: 48px 0; border-top: 1px solid var(--line); }
.foot { display: flex; justify-content: space-between; gap: 28px; flex-wrap: wrap; align-items: baseline; }
.foot-name { font-family: var(--display); font-weight: 700; }
.foot-links { display: flex; flex-wrap: wrap; gap: 20px; }
.foot-links a { color: var(--muted); font-size: 13.5px; }
.foot-links a:hover { color: var(--accent); }
@media (max-width: 760px) {
  .wrap { width: min(100% - 32px, var(--max)); }
  .nav-links { gap: 15px; }
  .nav-links a:nth-child(1) { display: none; }
  .hero { padding: 64px 0 54px; }
  .section-head { display: block; }
  .section-note { margin-top: 12px; text-align: left; }
  .grid { grid-template-columns: 1fr; }
  .topic-grid { grid-template-columns: 1fr 1fr; }
  .elsewhere-item { grid-template-columns: 1fr auto; gap: 8px 20px; }
  .elsewhere-item .card-kind { grid-column: 1 / -1; }
}
@media (max-width: 430px) {
  .nav-name span { display: none; }
  .nav-links a:nth-child(3) { display: none; }
  .topic-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { .card { transition: none; } }
