    :root {
      color-scheme: light;
      --ground: #edf1f2;
      --light: #fafbfa;
      --ink: #24333b;
      --muted: #5a666d;
      --rule: #cbd4d8;
      --focus: #326d87;
      --body: 'Instrument Sans', 'Helvetica Neue', Arial, sans-serif;
      --display: 'Schibsted Grotesk', 'Helvetica Neue', Arial, sans-serif;
    }
    * { box-sizing: border-box; }
    html { min-height: 100%; background: var(--ground); }
    body {
      margin: 0; min-height: 100svh; color: var(--ink);
      font: 17px/1.5 var(--body); -webkit-font-smoothing: antialiased;
      background: linear-gradient(118deg, var(--light) 0%, #f3f5f5 38%, var(--ground) 76%);
    }
    /* Broad, stationary daylight: no noise, canvas or animation loop. */
    .daylight { position: fixed; inset: 0; pointer-events: none; overflow: hidden; }
    .daylight::before {
      content: ''; position: absolute; width: 68vw; height: 170vh; right: -39vw; top: -28vh;
      transform: rotate(29deg); background: #d4e0e5; opacity: .5; filter: blur(65px);
    }
    .daylight::after {
      content: ''; position: absolute; width: 20vw; height: 170vh; right: -3vw; top: -32vh;
      transform: rotate(29deg); background: var(--light); opacity: .64; filter: blur(36px);
    }
    a { color: inherit; text-decoration: none; }
    a:focus-visible { outline: 2px solid var(--focus); outline-offset: 5px; border-radius: 2px; }
    ::selection { background: #c7dce6; color: var(--ink); }
    .page {
      position: relative; width: 100%; max-width: 1600px; min-height: 100svh; margin: 0 auto;
      display: flex; flex-direction: column; padding: 52px clamp(28px, 6vw, 96px) 34px;
    }
    .wordmark { margin: 0; font: 500 21px/1.2 var(--display); letter-spacing: -.055em; }
    .wordmark span { margin-left: 0; color: var(--muted); font-weight: 400; letter-spacing: -.035em; }
    main { width: 100%; max-width: 1080px; margin-top: clamp(100px, 19vh, 190px); margin-bottom: 100px; }
    .shelf { border-top: 1px solid var(--rule); }
    .app {
      position: relative; display: grid; grid-template-columns: 76px minmax(0, 1fr) auto;
      column-gap: 30px; align-items: center; padding: 35px 0; border-bottom: 1px solid var(--rule);
    }
    .app-icon { width: 76px; height: 76px; display: block; border-radius: 18px; }
    .app h2 { margin: 0; font: 500 clamp(27px, 2.6vw, 36px)/1.2 var(--display); letter-spacing: -.045em; }
    .app .description { margin: 7px 0 0; color: var(--muted); }
    .app .name-link::after { content: ''; position: absolute; inset: 0; }
    .app:has(.name-link:focus-visible) { outline: 2px solid var(--focus); outline-offset: 7px; }
    .app .name-link:focus-visible { outline: none; }
    .app .details { display: flex; align-items: center; gap: 30px; padding-left: 24px; }
    .platform { margin: 0; color: var(--muted); font-size: 14px; text-align: right; }
    .platform span { display: block; }
    .status { margin-top: 6px; font-size: 12px; }
    .arrow { display: block; width: 23px; height: 23px; transition: transform 180ms ease; }
    .links { display: flex; gap: 20px; margin-top: 16px; }
    .links a { position: relative; padding: 5px 0; color: var(--muted); font-size: 13px; text-decoration: underline; text-decoration-color: var(--rule); text-underline-offset: 4px; }
    @media (hover: hover) {
      .app:hover .arrow { transform: translate(3px, -3px); }
      .links a:hover { color: var(--ink); text-decoration-color: var(--ink); }
      .name-link:hover { color: var(--focus); }
    }
    @media (max-width: 800px) {
      .app { grid-template-columns: 64px minmax(0, 1fr) auto; gap: 24px; }
      .app-icon { width: 64px; height: 64px; border-radius: 15px; }
      .app .details { padding: 0; gap: 20px; }
      .platform { font-size: 12px; }
      .app .description { max-width: 31ch; font-size: 15px; }
    }
    @media (max-width: 600px) {
      .page { padding: 32px 24px 26px; }
      .wordmark { font-size: 20px; }
      main { margin-top: 88px; margin-bottom: 72px; }
      .app { grid-template-columns: 56px minmax(0, 1fr); gap: 0 19px; align-items: start; padding: 28px 0; }
      .app-icon { width: 56px; height: 56px; border-radius: 13px; margin-top: 2px; }
      .app h2 { font-size: 27px; padding-right: 22px; }
      .app .description { margin-top: 8px; }
      .app .details { grid-column: 2; grid-row: 2; margin-top: 14px; }
      .platform { text-align: left; }
      .platform span { display: inline; }
      .platform .status::before { content: ' · '; white-space: pre; }
      .arrow { position: absolute; right: 0; top: 33px; width: 19px; height: 19px; }
      .links { margin-top: 10px; }
      .links a { min-height: 44px; display: inline-flex; align-items: center; }
      .daylight::before { width: 95vw; right: -60vw; opacity: .3; }
      .daylight::after { opacity: .35; }
    }
    @media (prefers-reduced-motion: reduce) { .arrow { transition: none; } }
    @media (forced-colors: active) { .daylight { display: none; } .shelf, .app { border-color: CanvasText; } }

/* Product and resource pages use the same surface and typography as the shelf. */
.resource-layout { display: grid; grid-template-columns: 180px minmax(0, 640px); gap: 72px; margin-top: 100px; }
.product-nav { align-self: start; position: sticky; top: 40px; }
.product-nav img { display: block; width: 48px; height: 48px; border-radius: 11px; margin-bottom: 16px; }
.product-nav p { margin: 0 0 20px; font-weight: 500; }
.product-nav nav { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.product-nav a { display: inline-flex; align-items: center; min-height: 44px; color: var(--muted); font-size: 14px; }
.product-nav a:hover, .product-nav a[aria-current="page"] { color: var(--ink); text-decoration: underline; text-underline-offset: 5px; }
.document { min-width: 0; }
.document h1 { margin: 0 0 20px; font: 500 clamp(36px, 4vw, 48px)/1.15 var(--display); letter-spacing: -.05em; }
.document h2 { margin: 36px 0 12px; font: 500 21px/1.3 var(--display); letter-spacing: -.025em; }
.document p { margin: 0 0 20px; color: var(--muted); line-height: 1.75; }
.document .intro { font-size: 21px; line-height: 1.55; color: var(--ink); }
.document a { text-decoration: underline; text-underline-offset: 4px; }
.document .availability { display: inline-block; font-size: 13px; margin-bottom: 24px; }
@media (max-width: 800px) { .resource-layout { grid-template-columns: 140px minmax(0, 1fr); gap: 36px; } }
@media (max-width: 600px) {
  .resource-layout { display: block; margin-top: 60px; }
  .product-nav { position: static; margin-bottom: 36px; padding-bottom: 16px; border-bottom: 1px solid var(--rule); }
  .product-nav img { float: left; margin: 0 14px 0 0; }
  .product-nav p { min-height: 48px; display: flex; align-items: center; margin: 0; }
  .product-nav nav { flex-direction: row; flex-wrap: wrap; gap: 0 22px; margin-top: 14px; }
  .document h1 { font-size: 36px; }
  .document .intro { font-size: 19px; }
}

/* Product overview: asymmetric, argument left, artefact right. Distinct from
   .resource-layout, which stays the template for privacy/terms/support. */
.product-lede img { display: block; width: 84px; height: 84px; border-radius: 20px; }
.product-lede h1 { margin: 30px 0 0; font: 500 clamp(40px, 4.6vw, 60px)/1.08 var(--display); letter-spacing: -.05em; }
.product-lede .intro { margin: 22px 0 0; max-width: 34ch; font-size: clamp(21px, 2.1vw, 25px); line-height: 1.45; color: var(--ink); }
.product-lede .body { margin-top: 32px; max-width: 46ch; }
.product-lede .body p { margin: 0 0 18px; color: var(--muted); line-height: 1.75; }
.product-lede .body p:last-child { margin-bottom: 0; }
.get { display: flex; align-items: center; gap: 22px; margin-top: 48px; flex-wrap: wrap; }
/* The only solid fill on the site: this is the one page with a single action. */
.get .store { display: inline-flex; align-items: center; min-height: 48px; padding: 0 26px; background: var(--ink); color: var(--light); font-size: 16px; font-weight: 500; border-radius: 3px; }
.get .store:hover { background: var(--focus); }
.get .availability { color: var(--muted); font-size: 14px; }
.product-links { display: flex; gap: 22px; margin-top: 58px; padding-top: 26px; border-top: 1px solid var(--rule); }
.product-links a { min-height: 44px; display: inline-flex; align-items: center; color: var(--muted); font-size: 14px; text-decoration: underline; text-decoration-color: var(--rule); text-underline-offset: 4px; }
.product-links a:hover { color: var(--ink); text-decoration-color: var(--ink); }

/* Legal: the plain answer sits above the clause text. */
.summary { margin-top: 40px; padding: 28px 32px; background: #fff; border: 1px solid #dde4e7; border-radius: 4px; }
.summary p { margin: 0; font-size: 21px; line-height: 1.5; color: var(--ink); }
.summary .caveat { margin-top: 14px; color: var(--muted); font-size: 15px; }
.document .updated { margin: 14px 0 0; color: var(--muted); font-size: 14px; }
.document .summary + section h2 { margin-top: 48px; }

@media (max-width: 600px) {
    .product-lede img { width: 68px; height: 68px; border-radius: 16px; }
  .product-lede h1 { margin-top: 24px; }
  .product-lede .intro { font-size: 20px; }
  .product-lede .body { margin-top: 32px; }
  .get { margin-top: 36px; gap: 16px; }
  .product-links { margin-top: 40px; flex-wrap: wrap; gap: 0 22px; }
    .summary { padding: 22px 20px; margin-top: 30px; }
  .summary p { font-size: 18px; }
}

/* Flat paper for documents: no daylight wash behind clause text. */
body.paper { background: #f6f8f8; }
body.paper .daylight { display: none; }

/* Drifting cloud band. The canvas replaces the two blurred .daylight
   pseudo-elements; the wash above it holds the field back far enough that the
   shelf rules and small muted text keep their contrast. */
.daylight.mesh::before, .daylight.mesh::after { display: none; }
.mesh-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.mesh-wash { position: fixed; inset: 0; pointer-events: none; background: var(--wash); }
/* No WebGL: mesh.js bails and the body gradient below shows through unchanged. */
@media (forced-colors: active) { .mesh-canvas, .mesh-wash { display: none; } }
