@font-face {
  font-family: Inter;
  src: url("assets/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("assets/space-grotesk-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}
:root {
  color-scheme: dark;
  interpolate-size: allow-keywords;
  --bg: #0a1520;
  --surface: #111f2c;
  --text: #f3f6f9;
  --muted: #a9b6c2;
  --line: #273846;
  --accent: #f3f6f9;
  --focus: #7fb0ff;
  --mark: #7fb0ff;
  --blue: #1560e6;
  --blue-deep: #1458d0;
  --radius: 3px;
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --gutter: clamp(1.25rem, 4.5vw, 4rem);
  --font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --display: "Space Grotesk", Inter, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 1.5rem;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 1rem/1.7 var(--font);
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
}
a,
button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition:
    color 0.2s,
    background 0.2s,
    border-color 0.2s,
    text-decoration-color 0.2s;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--accent);
}
button {
  cursor: pointer;
}
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}
::selection {
  background: var(--blue);
  color: #fff;
}
p,
h1,
h2,
h3,
figure,
dl,
dd {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  text-wrap: balance;
}
h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 15ch;
}
h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}
h3 {
  font-size: 1.375rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

/* Bands run the full width; .wrap holds the content column. */
.band {
  --bg: #ffffff;
  --text: #101c28;
  --muted: #56636f;
  --line: #d9dfe5;
  --accent: #101c28;
  --focus: #1458d0;
  --mark: #1458d0;
  background: var(--bg);
  color: var(--text);
  color-scheme: light;
}
.band-light {
  --bg: #edf0f3;
}
.band-dark {
  --bg: #0a1520;
  --surface: #111f2c;
  --text: #f3f6f9;
  --muted: #a9b6c2;
  --line: #273846;
  --accent: #f3f6f9;
  --focus: #7fb0ff;
  --mark: #7fb0ff;
  color-scheme: dark;
}
.wrap {
  width: min(100% - 2 * var(--gutter), 1280px);
  margin-inline: auto;
}
main > .band > .wrap {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.page-shell {
  max-width: 1440px;
  padding: 0 var(--gutter);
  margin: auto;
}

/* Header */
.site-header {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand img {
  display: block;
  width: 150px;
  height: auto;
}
.site-header nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
}
.site-header nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
.site-header nav a:not(.header-contact) {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.5em;
}
.site-header nav a:not(.header-contact):hover {
  text-decoration-color: currentColor;
}
.site-header nav .header-contact {
  padding: 0 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.site-header nav .header-contact:hover {
  border-color: #fff;
  background: #fff;
  color: #0a1520;
}

/* Shared pieces */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
}
/* Primary button: quiet at rest, it fills on hover while the arrow slides
   out to the right and a new one arrives from the left. On dark surfaces and
   the photo it is a frosted outline; on light surfaces a fine ink outline. */
:root,
.band-dark {
  --btn-bg: rgba(255, 255, 255, 0.08);
  --btn-line: rgba(255, 255, 255, 0.32);
  --btn-fg: #f3f6f9;
  --btn-fill: #f3f6f9;
  --btn-fill-fg: #0a1520;
}
.band {
  --btn-bg: rgba(16, 28, 40, 0.03);
  --btn-line: rgba(16, 28, 40, 0.6);
  --btn-fg: #101c28;
  --btn-fill: #101c28;
  --btn-fill-fg: #f3f6f9;
}
.band-dark {
  --btn-bg: rgba(255, 255, 255, 0.08);
  --btn-line: rgba(255, 255, 255, 0.32);
  --btn-fg: #f3f6f9;
  --btn-fill: #f3f6f9;
  --btn-fill-fg: #0a1520;
}
.button-primary {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  gap: 0.9rem;
  min-height: 54px;
  padding: 0.85rem 1.35rem 0.85rem 1.5rem;
  border: 1px solid var(--btn-line);
  border-radius: 4px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 500;
  letter-spacing: 0;
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  transition:
    color 0.45s var(--ease-out),
    border-color 0.45s var(--ease-out),
    scale 0.2s var(--ease-out);
}
/* The fill rises from the bottom edge. */
.button-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--btn-fill);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s var(--ease-out);
}
.button-primary:hover,
.button-primary:focus-visible {
  color: var(--btn-fill-fg);
  border-color: var(--btn-fill);
}
.button-primary:hover::before,
.button-primary:focus-visible::before {
  transform: scaleY(1);
}
.button-primary:active {
  scale: 0.985;
}
.button-primary > span:first-child {
  white-space: nowrap;
  text-align: left;
  overflow: clip;
  overflow-clip-margin: 0.25em;
}
.button-primary .is-shuffling {
  opacity: 0.5;
}
.btn-arrow {
  position: relative;
  z-index: 1;
  display: inline-block;
  flex: none;
  width: 16px;
  height: 16px;
}
.btn-arrow svg {
  position: absolute;
  inset: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: translate 0.55s var(--ease-out);
}
.btn-arrow svg + svg {
  display: none;
}
.button-secondary {
  min-height: 54px;
  border-radius: 4px;
  background: transparent;
  color: var(--text);
  border-color: #6b7c8b;
}
.button-secondary:hover {
  border-color: var(--text);
}
.inline-link,
.text-link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--muted);
  text-underline-offset: 0.35em;
}
.inline-link {
  display: inline-block;
  padding: 0.7rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}
.inline-link:hover,
.text-link:hover {
  text-decoration-color: currentColor;
}
.eyebrow {
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.5;
  font-weight: 500;
}
.section-intro > p,
.section-head > p {
  color: var(--muted);
  max-width: 48ch;
  margin-top: 1.5rem;
}
.section-intro > p + p {
  margin-top: 1rem;
}
.section-head {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.section-head > p {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  max-width: 60ch;
}

/* Header floats over the hero photo on the home page. */
.site-band {
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  background: transparent;
}

/* Hero: a full-bleed photo, darkened where the text sits. It settles in
   slowly on load and drifts a little slower than the page as you scroll. */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: min(100svh, 920px);
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% 55%;
  animation: hero-settle 16s var(--ease-out) both;
}
@supports (animation-timeline: scroll()) {
  .hero-image {
    animation:
      hero-settle 16s var(--ease-out) both,
      hero-drift linear both;
    animation-timeline: auto, scroll(root);
    animation-range: normal, 0 100vh;
  }
}
@keyframes hero-settle {
  from {
    scale: 1.1;
  }
}
@keyframes hero-drift {
  to {
    translate: 0 14%;
  }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      to top,
      rgba(10, 21, 32, 0.92) 0%,
      rgba(10, 21, 32, 0.55) 32%,
      rgba(10, 21, 32, 0.05) 62%,
      rgba(10, 21, 32, 0.4) 100%
    ),
    linear-gradient(to right, rgba(10, 21, 32, 0.62), rgba(10, 21, 32, 0) 55%),
    radial-gradient(
      ellipse 60% 55% at 18% 45%,
      rgba(10, 21, 32, 0.5),
      rgba(10, 21, 32, 0) 70%
    );
}
main > .hero > .hero-content {
  padding-block: 9rem clamp(3.5rem, 7vw, 6rem);
}
.hero h1 {
  max-width: 13ch;
  text-shadow: 0 2px 30px rgba(10, 21, 32, 0.35);
}
.hero-description {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  color: #d4dde5;
  font-size: 1.1875rem;
  line-height: 1.65;
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.75rem;
  margin-top: 2.25rem;
}
.hero .inline-link {
  text-decoration-color: rgba(243, 246, 249, 0.6);
}
.hero-assurance {
  margin-top: 1.5rem;
  color: #c3cdd6;
  font-size: 0.875rem;
}

/* The focal moment: loose words sort themselves into three groups. */
.token-field {
  position: relative;
}
.groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2.5rem);
}
/* Category headings sit on a strong rule; the items under them are lighter. */
.group-title {
  padding-bottom: 0.75rem;
  font-family: var(--display);
  font-size: 1.1875rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  transition: opacity 0.6s var(--ease-out) 0.2s;
}
.groups ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--text);
}
.groups li {
  position: relative;
  padding: 0.55rem 0;
}
.groups li::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
  transform-origin: left;
  transition: transform 0.9s var(--ease-out) calc(var(--i) * 35ms);
}
.word {
  display: inline-block;
  color: var(--muted);
  font-size: 0.9375rem;
  white-space: nowrap;
}
/* The three groups converge into one line: the overview a kartlegging gives. */
.token-field figcaption {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  margin-top: 1.75rem;
  padding-top: 1rem;
}
.token-field figcaption::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--blue);
  transform-origin: left;
  transition: transform 0.9s var(--ease-out) 0.45s;
}
.overview {
  font-family: var(--display);
  font-size: 1.1875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: opacity 0.6s var(--ease-out) 0.8s;
}
.replay {
  min-height: 44px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--muted);
  text-underline-offset: 0.35em;
}
.replay:hover {
  text-decoration-color: currentColor;
}
/* Once the script takes over, the words wait until the field scrolls into view. */
.token-field.js-sort:not(.is-scattered) .word,
.token-field.js-sort:not(.is-sorted) .group-title {
  opacity: 0;
}
.token-field.js-sort:not(.is-sorted) li::after,
.token-field.js-sort:not(.is-sorted) figcaption::before {
  transform: scaleX(0);
}
.token-field.js-sort:not(.is-sorted) .overview {
  opacity: 0;
}

/* Problem and the three ways to solve it */
.problem-body {
  align-items: start;
}
.lead {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  max-width: 26ch;
  text-wrap: pretty;
}
.options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.options > div {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.options dt {
  font-family: var(--display);
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.options dd {
  margin-top: 0.75rem;
  color: var(--muted);
  max-width: 40ch;
}
.options .options-pick {
  border-top: 2px solid var(--blue);
  padding-top: calc(1.5rem - 1px);
}
.options-pick dd {
  color: var(--text);
}

/* Services: an editorial list. What it is on the left, what you get on the right. */
.service {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 1.5rem clamp(2.5rem, 6vw, 6rem);
  padding-block: clamp(1.75rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
  scroll-margin-top: 1.5rem;
}
.service:last-child {
  border-bottom: 1px solid var(--line);
}
.service h3 {
  font-size: clamp(1.5rem, 2.2vw, 1.875rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.service-intro > p {
  color: var(--muted);
  margin-top: 0.85rem;
  max-width: 48ch;
}
.service-intro > .service-note {
  margin-top: 0.5rem;
  color: var(--mark);
  font-size: 0.875rem;
  font-weight: 600;
}
.service-lead {
  border-top: 2px solid var(--blue);
  padding-block: clamp(2.25rem, 4vw, 3.25rem);
}
.service-lead h3 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
}
.service-lead .button {
  margin-top: 0.75rem;
}
/* The three other services, side by side under the lead service. */
.service-more {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.75rem, 4vw, 3.5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}
.service-card {
  display: flex;
  flex-direction: column;
  scroll-margin-top: 1.5rem;
}
.service-card h3 {
  font-size: clamp(1.3rem, 1.8vw, 1.5rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.service-card > p {
  margin-top: 0.75rem;
  color: var(--muted);
}
.service-card .deliverable {
  margin-top: 1.1rem;
}
.service-card .inline-link {
  margin-top: auto;
  align-self: flex-start;
}
.deliverable-label {
  font-size: 0.875rem;
  font-weight: 600;
}
.deliverable {
  margin: 0.5rem 0 0.5rem;
  padding: 0;
  list-style: none;
}
.deliverable li {
  position: relative;
  padding-left: 1.35rem;
  margin-top: 0.35rem;
  max-width: 56ch;
}
.deliverable li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 0.6rem;
  height: 1px;
  background: currentColor;
}
.deliverable a {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

/* Example: a desk seen from a little distance. Three windows, an e-mail,
   a report and a spreadsheet, drawn at a fixed scale that follows the
   stage width (1cqi = 1% of the stage), so the scene keeps its composition. */
.desk {
  --ink: #101c28;
  --ink-2: #56636f;
  --rule: #e3e8ee;
  --soft: #c9d5e6;
}
.desk-stage {
  container-type: inline-size;
  position: relative;
  aspect-ratio: 16 / 10;
}
.win {
  position: absolute;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: "Segoe UI", var(--font);
  font-size: 1.02cqi;
  line-height: 1.4;
  color: var(--ink);
  background: #fff;
  border-radius: 0.5em;
  box-shadow:
    0 0.1em 0.3em rgba(16, 28, 40, 0.08),
    0 1.6em 3.2em -1em rgba(16, 28, 40, 0.28);
}
.win-report {
  --w: 0;
  left: 23%;
  top: 0;
  width: 77%;
  height: 70%;
}
.win-mail {
  --w: 1;
  left: 0;
  top: 30%;
  width: 42%;
  height: 70%;
}
.win-sheet {
  --w: 2;
  left: 47%;
  top: 58%;
  width: 53%;
  height: 42%;
}
/* Motion: the scene assembles once it scrolls into view. Each window is
   uncovered from the top and comes into focus, then its contents answer:
   numbers count up (in app.js), bars grow, the progress line draws, the
   e-mail fills in and the rows to cancel light up. None of this moves an
   object across the screen, so it also plays with reduced motion. */
.desk.js-reveal .win {
  clip-path: inset(0 0 100% 0 round 0.5em);
  filter: blur(10px);
  transition:
    clip-path 1.1s var(--ease-out) calc(var(--w) * 200ms),
    filter 1.1s var(--ease-out) calc(var(--w) * 200ms);
}
.desk.js-reveal.is-visible .win {
  clip-path: inset(-4em -4em -6em -4em round 0.5em);
  filter: blur(0);
}
.desk.js-reveal .rp-card .rp-line {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.6s var(--ease-out) 0.7s;
}
.desk.js-reveal.is-visible .rp-card .rp-line {
  stroke-dashoffset: 0;
}
.desk.js-reveal .ml-list li.on {
  background: transparent;
  box-shadow: inset 0 0 0 #1560e6;
  transition:
    background-color 0.6s var(--ease-out) 0.7s,
    box-shadow 0.6s var(--ease-out) 0.7s;
}
.desk.js-reveal.is-visible .ml-list li.on {
  background: #e3ecfb;
  box-shadow: inset 0.25em 0 0 #1560e6;
}
.desk.js-reveal .ml-body > * {
  opacity: 0;
  transition: opacity 0.6s var(--ease-out) calc(0.8s + var(--l) * 110ms);
}
.desk.js-reveal.is-visible .ml-body > * {
  opacity: 1;
}
.desk.js-reveal .sh tr.cut td,
.desk.js-reveal .sh tr.change td:last-child {
  transition:
    background-color 0.5s var(--ease-out) calc(1.3s + var(--r) * 160ms),
    color 0.5s var(--ease-out) calc(1.3s + var(--r) * 160ms);
}
.desk.js-reveal:not(.is-visible) .sh tr.cut td {
  background-color: transparent;
}
.desk.js-reveal:not(.is-visible) .sh tr td:last-child {
  color: var(--ink);
  font-weight: 400;
}
/* With motion allowed, the windows also drift at different depths while you scroll. */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .desk .win {
      animation: desk-drift linear both;
      animation-timeline: view();
      animation-range: cover 0% cover 100%;
    }
    .win-report {
      --drift: 2%;
    }
    .win-mail {
      --drift: 6%;
    }
    .win-sheet {
      --drift: 11%;
    }
  }
}
@keyframes desk-drift {
  from {
    translate: 0 var(--drift, 4%);
  }
  to {
    translate: 0 calc(var(--drift, 4%) * -1);
  }
}
.win-bar {
  flex: none;
  display: flex;
  align-items: center;
  gap: 1.5em;
  height: 2.6em;
  padding: 0 0 0 1em;
  font-size: 0.95em;
  color: #fff;
}
.win-bar > span:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
  white-space: nowrap;
}
.ctl {
  flex: none;
}
.ctl {
  display: flex;
  margin-left: auto;
  height: 100%;
}
.ctl i {
  position: relative;
  width: 3.2em;
  height: 100%;
}
.ctl i::before,
.ctl i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.8em;
  translate: -50% -50%;
}
.ctl i:nth-child(1)::before {
  height: 1px;
  background: currentColor;
}
.ctl i:nth-child(2)::before {
  height: 0.8em;
  border: 1px solid currentColor;
}
.ctl i:nth-child(3)::before,
.ctl i:nth-child(3)::after {
  height: 1px;
  background: currentColor;
  rotate: 45deg;
}
.ctl i:nth-child(3)::after {
  rotate: -45deg;
}

/* E-mail client */
.win-mail .win-bar {
  background: #1560e6;
}
.win-mail .search {
  flex: 1;
  max-width: 14em;
  padding: 0.25em 0.8em;
  border-radius: 0.3em;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9em;
}
.ml {
  flex: 1;
  display: grid;
  grid-template-columns: 36% 1fr;
  min-height: 0;
}
.ml-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-right: 1px solid var(--rule);
  background: #f7f9fb;
}
.ml-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 0.8em 0.9em;
  border-bottom: 1px solid var(--rule);
}
.ml-list li.on {
  background: #e3ecfb;
  box-shadow: inset 0.25em 0 0 #1560e6;
}
.ml-list b {
  font-weight: 600;
  font-size: 0.95em;
}
.ml-list span {
  grid-column: 1 / -1;
  color: var(--ink-2);
  font-size: 0.9em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ml-list em,
.ml-from em {
  color: var(--ink-2);
  font-size: 0.8em;
  font-style: normal;
}
.ml-read {
  padding: 1.2em 1.4em;
  min-width: 0;
}
.ml-subject {
  font-size: 1.35em;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.ml-from {
  display: flex;
  align-items: center;
  gap: 0.7em;
  margin: 0.9em 0 1em;
  padding-bottom: 0.9em;
  border-bottom: 1px solid var(--rule);
}
.ml-from div {
  display: flex;
  flex-direction: column;
  margin-right: auto;
}
.ml-from span:not(.ml-avatar) {
  color: var(--ink-2);
  font-size: 0.85em;
}
.ml-avatar {
  display: grid;
  place-items: center;
  width: 2.4em;
  height: 2.4em;
  border-radius: 0.3em;
  background: #0a1520;
}
.ml-avatar img {
  width: 60%;
  height: auto;
}
.ml-body p + p,
.ml-body ul {
  margin-top: 0.7em;
}
.ml-body ul {
  padding-left: 1.2em;
}
.ml-files {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6em;
  margin-top: 1.2em;
}
.ml-files span {
  padding: 0.4em 0.8em;
  border: 1px solid var(--rule);
  border-radius: 0.3em;
  font-size: 0.85em;
}

/* Report */
.win-report .win-bar {
  background: #0a1520;
}
.rp {
  flex: 1;
  display: grid;
  grid-template-columns: 3.4em 1fr;
  min-height: 0;
  background: #f3f5f8;
}
.rp-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1em;
  padding-top: 1.2em;
  background: #fff;
  border-right: 1px solid var(--rule);
}
.rp-rail i {
  width: 1.3em;
  height: 1.1em;
  border: 1px solid var(--soft);
  border-radius: 0.2em;
}
.rp-rail i:first-child {
  border-color: #1458d0;
  background: #1458d0;
}
.rp-page {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 1.1em 1.3em;
  min-width: 0;
}
.rp-head {
  display: flex;
  align-items: baseline;
  gap: 1.6em;
  font-size: 0.9em;
  color: var(--ink-2);
}
.rp-head b {
  margin-right: auto;
  color: var(--ink);
  font-size: 1.4em;
  font-weight: 600;
}
.rp-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8em;
}
.rp-kpis > div,
.rp-card {
  padding: 0.8em 1em;
  background: #fff;
  border-radius: 0.3em;
  box-shadow: 0 0.05em 0.2em rgba(16, 28, 40, 0.08);
}
.rp-kpis > div > span {
  display: block;
  color: var(--ink-2);
  font-size: 0.85em;
}
.rp-kpis b {
  font-family: var(--display);
  font-size: 2.1em;
  font-weight: 500;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.rp-kpis small {
  color: var(--ink-2);
  font-family: var(--font);
  font-size: 0.4em;
  letter-spacing: 0;
}
.rp-charts {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0.8em;
  min-height: 0;
}
.rp-card > p {
  margin-bottom: 0.8em;
  font-size: 0.9em;
  font-weight: 600;
}
.rp-bars {
  margin: 0;
  padding: 0;
  list-style: none;
}
.rp-bars li {
  display: grid;
  grid-template-columns: 7em 1fr;
  align-items: center;
  gap: 0.6em;
  font-size: 0.85em;
}
.rp-bars li + li {
  margin-top: 0.7em;
}
.rb {
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.rb-bar {
  height: 1.1em;
  width: calc(var(--v) / 6 * 78%);
  background: #1458d0;
  transform-origin: left;
  transition: transform 1s var(--ease-out) calc(0.6s + var(--i) * 90ms);
}
.rb b {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.desk.js-reveal:not(.is-visible) .rb-bar {
  transform: scaleX(0);
}
.rp-card svg {
  display: block;
  width: 100%;
  height: auto;
}
.rp-card .grid line {
  stroke: var(--rule);
}
.rp-card text {
  fill: var(--ink-2);
  font-size: 10px;
  font-family: var(--font);
}
.rp-card .grid text {
  text-anchor: end;
}
.rp-card .rp-line {
  fill: none;
  stroke: #1458d0;
  stroke-width: 2.5;
}
.rp-tabs,
.sh-tabs {
  flex: none;
  display: flex;
  padding: 0 1em;
  border-top: 1px solid var(--rule);
  background: #fff;
  font-size: 0.85em;
  color: var(--ink-2);
}
.rp-tabs span,
.sh-tabs span {
  padding: 0.55em 1em;
}
.rp-tabs .on {
  color: var(--ink);
  font-weight: 600;
  box-shadow: inset 0 0.2em 0 #1458d0;
}

/* Spreadsheet */
.win-sheet .win-bar {
  background: #2d6a4f;
}
.sh-formula {
  flex: none;
  display: flex;
  gap: 1em;
  padding: 0.45em 0.9em;
  border-bottom: 1px solid var(--rule);
  font-size: 0.85em;
}
.sh-formula b {
  color: var(--ink-2);
  font-style: italic;
  font-weight: 500;
}
.sh {
  flex: 1;
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85em;
}
.sh th,
.sh td {
  padding: 0.3em 0.6em;
  border: 1px solid var(--rule);
  text-align: left;
  white-space: nowrap;
}
.sh thead th,
.sh tbody th {
  background: #f3f5f8;
  color: var(--ink-2);
  font-weight: 400;
  text-align: center;
}
.sh tbody th {
  width: 2.2em;
}
.sh tr.head td {
  font-weight: 600;
}
.sh tr.cut td {
  background: #fdecea;
}
.sh tr.cut td:last-child {
  color: #a1261b;
  font-weight: 600;
}
.sh tr.change td:last-child {
  color: #8a5a00;
  font-weight: 600;
}
.sh-tabs .on {
  color: #2d6a4f;
  font-weight: 600;
  box-shadow: inset 0 -0.2em 0 #2d6a4f;
}
.desk-legend {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin: clamp(3rem, 5vw, 4.5rem) 0 0;
  padding: 0;
  list-style: none;
}
.desk-legend li {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.desk-legend b {
  display: block;
  font-family: var(--display);
  font-size: 1.1875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.desk-legend span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
}

/* Process: the rule above the steps draws itself as the section scrolls in. */
.process-steps {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
}
.process-steps::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  transform-origin: left;
}
@supports (animation-timeline: view()) {
  .process-steps::before {
    animation: draw-rule linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 50%;
  }
}
@keyframes draw-rule {
  from {
    transform: scaleX(0);
  }
}
.process-steps li {
  padding-top: 1.75rem;
}
.step {
  display: block;
  color: var(--mark);
  font-family: var(--display);
  font-size: clamp(2.25rem, 3.4vw, 3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.process-steps h3 {
  font-size: 1.25rem;
  margin: 1.25rem 0 0.6rem;
}
.process-steps p {
  color: var(--muted);
  max-width: 34ch;
}

/* About: photo and name on the left, story and facts on the right. */
.founder {
  max-width: 360px;
}
.founder-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 3px;
  background: #e3e8ed;
  margin-bottom: 1.5rem;
}
.founder-name {
  padding-top: 1.25rem;
  border-top: 2px solid var(--blue);
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.founder-role {
  margin-top: 0.5rem;
  color: var(--muted);
}
.founder-facts {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  max-width: 48ch;
}
.founder-facts > div {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.founder-facts dt {
  color: var(--muted);
  font-size: 0.875rem;
}
.about-lead {
  color: var(--text) !important;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
}
/* Unfinished text that must be replaced before launch; a test blocks it shipping. */
.todo {
  padding: 0 0.3rem;
  border-radius: 2px;
  background: #fff1b3;
  color: #574400;
  font-weight: 600;
}

/* FAQ: answers open smoothly where the browser supports animating details. */
.faq-list details {
  border-top: 1px solid var(--line);
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 68px;
  padding: 1rem 0;
  list-style: none;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.1875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
/* A drawn plus that turns into a cross when the answer is open. */
.faq-list summary::after {
  content: "";
  flex: none;
  width: 14px;
  height: 14px;
  background:
    linear-gradient(currentColor, currentColor) center / 14px 1.5px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1.5px 14px no-repeat;
  color: var(--muted);
  transition: rotate 0.35s var(--ease-out);
}
.faq-list summary:hover::after {
  color: var(--text);
}
.faq-list details[open] summary::after {
  rotate: 45deg;
}
.faq-list details::details-content {
  block-size: 0;
  overflow: hidden;
  transition:
    block-size 0.45s var(--ease-out),
    content-visibility 0.45s allow-discrete;
}
.faq-list details[open]::details-content {
  block-size: auto;
}
.faq-list details p {
  color: var(--muted);
  max-width: 60ch;
  padding-bottom: 1.4rem;
}

/* Contact */
.contact-person {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.75rem;
}
.contact-mark {
  flex: none;
  width: 44px;
  height: auto;
}
.contact-email {
  display: inline-block;
  padding: 0.2rem 0;
  font-family: var(--display);
  font-size: 1.375rem;
  letter-spacing: -0.01em;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: #5d7081;
  text-underline-offset: 0.3em;
}
.contact-email:hover {
  text-decoration-color: currentColor;
}
.section-intro > .next-title {
  margin-top: 2.75rem;
  color: var(--text) !important;
  font-weight: 600;
}
.next-steps {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: next;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.next-steps li {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  counter-increment: next;
}
.next-steps li::before {
  content: counter(next);
  flex: none;
  width: 1rem;
  color: var(--mark);
  font-family: var(--display);
  font-weight: 500;
}
form {
  min-width: 0;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
label {
  font-size: 0.875rem;
  font-weight: 500;
}
label span {
  color: var(--muted);
  font-weight: 400;
}
input,
select,
textarea {
  border: 1px solid #4a5d6d;
  border-radius: var(--radius);
  padding: 0.75rem;
  min-width: 0;
  width: 100%;
  background: var(--surface);
  color: var(--text);
  font-size: 1rem;
  transition: border-color 0.2s;
}
input,
select {
  min-height: 48px;
}
input:hover,
select:hover,
textarea:hover {
  border-color: #6b7f90;
}
/* A drawn chevron; the CSP blocks data: images. */
select {
  appearance: none;
  padding-right: 2.75rem;
  background:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%)
      calc(100% - 22px) 55% / 6px 6px no-repeat,
    linear-gradient(135deg, var(--muted) 50%, transparent 50%)
      calc(100% - 16px) 55% / 6px 6px no-repeat,
    var(--surface);
}
textarea {
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--focus);
}
.field-help {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 400;
}
.form-explain {
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: 0.9375rem;
  max-width: 56ch;
}
.privacy-link {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.email-draft {
  border: 1px solid #45586a;
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.5rem;
  margin-top: 2rem;
}
.email-draft h3 {
  font-size: 1.25rem;
}
.email-draft p {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0.8rem 0;
}
.email-draft p a {
  text-decoration: underline;
}
.draft-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0;
}
.email-draft textarea {
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.75rem;
  padding: 1.75rem 0 2rem;
  color: var(--muted);
  font-size: 0.8125rem;
}
.site-footer a {
  display: flex;
  align-items: center;
  min-height: 44px;
}
.footer-wordmark {
  color: var(--text);
  letter-spacing: 0.12em;
  margin-right: auto;
}
.footer-about {
  margin-right: auto;
  max-width: 52ch;
}
.footer-about .footer-wordmark {
  display: block;
  margin-bottom: 0.25rem;
}

.skip-link,
.skip-link:hover {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  transform: translateY(-200%);
  padding: 0.75rem 1rem;
  background: #fff;
  color: #101c28;
}
.skip-link:focus {
  transform: translateY(0);
}
[hidden] {
  display: none !important;
}
.prose {
  max-width: 720px;
  margin: 4rem 0 6rem;
}
.prose h1 {
  max-width: none;
  font-size: 3rem;
}
.prose h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
}
.prose p {
  margin-top: 1rem;
  color: var(--muted);
}
.prose a {
  text-decoration: underline;
  color: var(--text);
}

@media (max-width: 1000px) {
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 3rem;
  }
}
@media (max-width: 860px) {
  .split,
  .service,
  .options,
  .service-more {
    grid-template-columns: minmax(0, 1fr);
  }
  .desk-legend {
    grid-template-columns: minmax(0, 1fr);
  }
  .desk-stage {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
  }
  .desk .win {
    position: relative;
    inset: auto;
    width: 94%;
    height: auto;
    font-size: 11px;
    animation: none;
  }
  .win-mail {
    order: -1;
  }
  .win-report {
    margin: -0.5rem 0 0 6%;
  }
  .win-sheet {
    margin: -1.5rem 0 0 3%;
  }
  .ml {
    grid-template-columns: minmax(0, 1fr);
  }
  .ml-list,
  .rp-rail,
  .rp-head span:last-child,
  .sh td:nth-child(4),
  .sh thead th:nth-child(4) {
    display: none;
  }
  .rp {
    grid-template-columns: minmax(0, 1fr);
  }
  .rp-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .rp-charts {
    grid-template-columns: minmax(0, 1fr);
  }
  .about .section-intro {
    order: -1;
  }
  .hero {
    min-height: min(100svh, 760px);
  }
  .hero-image {
    object-position: 30% 50%;
  }
  .options {
    gap: 2rem;
  }
  .founder-photo {
    max-width: 300px;
  }
}
@media (max-width: 700px) {
  .site-header {
    min-height: 84px;
    gap: 1rem;
  }
  .brand img {
    width: 128px;
  }
  .site-header nav {
    gap: 1.25rem;
    font-size: 0.8125rem;
  }
  .site-header .nav-secondary {
    display: none;
  }
  .hero-description {
    font-size: 1.0625rem;
  }
  .process-steps {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 0;
    border-top: 0;
  }
  .process-steps::before {
    display: none;
  }
  .process-steps li {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    column-gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--line);
  }
  .step {
    grid-row: span 2;
    font-size: 2rem;
  }
  .process-steps h3 {
    margin: 0 0 0.4rem;
  }
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
  .site-footer {
    gap: 0 1.25rem;
  }
  .footer-about {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 380px) {
  .site-header nav a:first-child:not(:last-child) {
    display: none;
  }
  .hero-actions {
    gap: 0.5rem 1rem;
  }
  .button-primary {
    gap: 0.6rem;
    padding-inline: 1rem;
    font-size: 0.875rem;
  }
  .contact-email {
    font-size: 1.125rem;
    overflow-wrap: anywhere;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .desk.js-reveal .win {
    transition:
      clip-path 1.1s var(--ease-out) calc(var(--w) * 200ms),
      filter 1.1s var(--ease-out) calc(var(--w) * 200ms) !important;
  }
  .desk.js-reveal .rp-card .rp-line {
    transition: stroke-dashoffset 1.6s var(--ease-out) 0.7s !important;
  }
  .desk.js-reveal .rb-bar {
    transition: transform 1s var(--ease-out) calc(0.6s + var(--i) * 90ms) !important;
  }
  .desk.js-reveal .ml-body > * {
    transition: opacity 0.6s var(--ease-out) calc(0.8s + var(--l) * 110ms) !important;
  }
  .desk.js-reveal .sh tr.cut td,
  .desk.js-reveal .sh tr.change td:last-child {
    transition:
      background-color 0.5s var(--ease-out) calc(1.3s + var(--r) * 160ms),
      color 0.5s var(--ease-out) calc(1.3s + var(--r) * 160ms) !important;
  }
}
@media print {
  body,
  .band {
    background: white;
    color: #111;
  }
  .page-shell {
    padding: 0;
  }
  main > .band > .wrap {
    padding-block: 1.5rem;
  }
  .split,
  .service,
  .section-head,
  .options {
    display: block;
  }
  h1,
  .hero-copy {
    max-width: none;
  }
  p,
  dd,
  li,
  .eyebrow,
  .section-intro > .next-title,
  .about-lead {
    color: #333 !important;
  }
  .site-header nav,
  .token-field,
  .site-footer,
  form,
  .hero-actions,
  .inline-link {
    display: none;
  }
  .brand {
    background: #0a1520;
  }
  .service,
  .desk {
    break-inside: avoid;
    margin-bottom: 1.5rem;
  }
  .process-steps {
    display: block;
  }
  .process-steps li {
    margin-bottom: 1rem;
  }
}

/* Hindrer horisontal rulling fra dekorative flater. */
html {
  overflow-x: clip;
}
