@font-face {
  font-family: 'Schibsted Grotesk';
  font-style: normal;
  font-weight: 400 900;
  font-display: fallback;
  src: url('/fonts/schibsted-latin.woff2') format('woff2');
  unicode-range: U+00??, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
    U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF,
    U+FFFD;
}

@font-face {
  font-family: 'Schibsted Grotesk';
  font-style: normal;
  font-weight: 400 900;
  font-display: fallback;
  src: url('/fonts/schibsted-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --canvas: #f7f8fa;
  --surface: #ffffff;
  --line: rgba(18, 20, 26, 0.11);
  --line-soft: rgba(18, 20, 26, 0.06);
  --text-primary: #12141a;
  --text-secondary: #4b5160;
  --text-tertiary: #5a606e;
  --accent: #1f5fd8;
  --accent-strong: #1a4fb4;
  --font: 'Schibsted Grotesk', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--canvas);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--accent-strong);
  text-decoration: underline;
}

.shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  padding: 28px 24px;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}

.wordmark {
  font-family: var(--font);
  font-size: 1.3125rem;
  font-weight: 600;
  letter-spacing: -0.026em;
  color: var(--text-primary);
}

.wordmark:hover {
  text-decoration: none;
  color: var(--text-primary);
}

main {
  flex: 1;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.home main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 12vh;
  padding-bottom: 12vh;
}

h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 20px;
}

.lede {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin: 0 0 14px;
  max-width: 52ch;
}

.note {
  font-size: 0.9375rem;
  color: var(--text-tertiary);
  margin: 28px 0 0;
}

footer {
  border-top: 1px solid var(--line);
  padding: 20px 24px;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-tertiary);
}

/* Privacy page */
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 28px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  flex: none;
}

.meta {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 24px 0 40px;
  background: var(--surface);
}

.meta-row {
  display: flex;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.9375rem;
}

.meta-row:last-child {
  border-bottom: none;
}

.meta-term {
  color: var(--text-tertiary);
  flex: 0 0 130px;
}

.meta-value {
  color: var(--text-primary);
}

.facts {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}

.fact {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.fact:first-child {
  border-top: none;
}

.fact h2 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 8px;
}

.fact p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9688rem;
}

.closing {
  color: var(--text-secondary);
  font-size: 0.9688rem;
}
