/* Solidans. One stylesheet for every page. No JavaScript, no build step. */

/* Fonts: self-hosted, Latin subset only. Google Fonts is not contacted at runtime. */

@font-face {
  font-family: "Schibsted Grotesk";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/fonts/schibsted-grotesk-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, 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: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/ibm-plex-mono-400-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, 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: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/ibm-plex-mono-500-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, 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;
}

/* Palette and scale */

:root {
  --paper: #FBFAF8;
  --paper-2: #F3F1EC;
  --ink: #14110F;
  --ink-muted: #6B645C;
  --rule: #D9D4CC;
  --accent: #1F4E3D;
  --accent-ink: #FBFAF8;
  --flag: #8C3A2B;

  --sans: "Schibsted Grotesk", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --gutter: 24px;
  --section: 48px;
}

@media (min-width: 760px) {
  :root {
    --gutter: 40px;
    --section: 72px;
  }
}

/* Base */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
}

main {
  flex: 1 0 auto;
}

h1,
h2,
p,
dl,
dd,
ul,
ol {
  margin: 0;
}

h1 {
  font-size: clamp(2.25rem, 1.5rem + 2.8vw, 3.25rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

h2 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

p {
  max-width: 68ch;
  text-wrap: pretty;
}

strong {
  font-weight: 600;
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 120ms;
}

a:hover {
  color: color-mix(in srgb, var(--accent), #000 8%);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.muted {
  color: var(--ink-muted);
}

.num {
  font-family: var(--mono);
  font-size: 0.94em;
  font-variant-numeric: tabular-nums;
}

/* Layout */

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
}

.section {
  border-top: 1px solid var(--rule);
  padding-block: var(--section);
  scroll-margin-top: 56px;
}

@media (min-width: 760px) {
  .grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 0;
  }

  .grid > .label {
    grid-column: 1 / 4;
  }

  .grid > .body {
    grid-column: 4 / -1;
  }
}

/* Nav */

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 56px;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.wordmark {
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.wordmark:hover {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-block;
  padding: 8px 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--accent);
}

@media (max-width: 759px) {
  .nav-links li:not(.nav-audit) {
    display: none;
  }
}

/* Hero */

.hero,
.page {
  padding-block: 40px 48px;
}

.lede {
  margin-top: 20px;
  max-width: 56ch;
  color: var(--ink-muted);
  font-size: 20px;
  line-height: 1.45;
}

.hero-cta {
  margin-top: 32px;
}

.hero-note {
  margin-top: 12px;
  color: var(--ink-muted);
  font-size: 14px;
}

.spec {
  padding: 4px 16px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
}

.spec > div {
  display: grid;
  grid-template-columns: 6rem 1fr;
  column-gap: 12px;
  align-items: baseline;
  padding: 10px 0;
}

.spec > div + div {
  border-top: 1px solid var(--rule);
}

.spec dt {
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
}

.spec dd {
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.6;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 760px) {
  .hero,
  .page {
    padding-block: 56px 72px;
  }

  .hero-text {
    grid-column: 1 / 8;
  }

  .hero-spec {
    grid-column: 8 / -1;
  }

  .spec {
    padding: 6px 16px;
  }

  .spec > div {
    grid-template-columns: 6rem 1fr;
    column-gap: 16px;
  }
}

/* Button: the only button style on the site */

.button {
  display: inline-block;
  padding: 14px 20px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  border: 0;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 120ms;
}

.button:hover {
  background: color-mix(in srgb, var(--accent), #000 8%);
  color: var(--accent-ink);
}

/* Services: price tables */

.intro {
  margin-bottom: 24px;
}

.prices {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.prices caption {
  padding: 0 0 10px;
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}

.prices thead th {
  padding: 11px 12px;
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}

.prices .c-turn {
  width: 16.5rem;
}

.prices .c-plan {
  width: 14rem;
}

.prices .c-price {
  width: 6.5rem;
}

.prices .c-price,
.prices .price {
  text-align: right;
}

.prices tbody th,
.prices tbody td {
  padding: 18px 12px 16px;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
  text-align: left;
  vertical-align: baseline;
}

.prices tbody th {
  font-size: 17px;
  font-weight: 600;
}

.prices .turn {
  font-family: var(--mono);
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}

.prices .price {
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.prices tr.pkg th,
.prices tr.pkg td {
  padding-bottom: 2px;
  border-bottom: 0;
}

.prices tr.pkg-detail td {
  padding-top: 0;
  padding-bottom: 20px;
}

.line {
  max-width: none;
  color: var(--ink-muted);
  font-size: 15px;
}

.prices details {
  margin-top: 6px;
}

.prices summary {
  display: inline-block;
  padding: 4px 0;
  color: var(--accent);
  font-size: 15px;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
  transition: color 120ms;
}

.prices summary::-webkit-details-marker {
  display: none;
}

.prices summary::after {
  content: " +";
  font-family: var(--mono);
  font-weight: 400;
}

.prices details[open] > summary::after {
  content: " \2212";
}

.prices summary:hover {
  color: color-mix(in srgb, var(--accent), #000 8%);
}

.scope {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 32px;
  margin-top: 10px;
  color: var(--ink);
}

.scope-label {
  margin-bottom: 4px;
  font-weight: 600;
}

.scope ul {
  padding-left: 1.2em;
}

.scope li + li {
  margin-top: 2px;
}

.ongoing {
  margin-top: 40px;
}

.bundles {
  margin-top: 24px;
  color: var(--ink-muted);
  font-size: 15px;
}

@media (min-width: 760px) {
  .scope {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 759px) {
  .prices,
  .prices tbody,
  .prices tr,
  .prices th,
  .prices td {
    display: block;
  }

  .prices thead {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .prices caption {
    display: block;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--rule);
  }

  .prices tbody th,
  .prices tbody td {
    padding: 0;
    border-bottom: 0;
  }

  .prices tr.pkg,
  .prices tr.plan {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 16px;
    padding-top: 16px;
  }

  .prices tr.pkg th,
  .prices tr.plan th {
    grid-column: 1;
    grid-row: 1;
  }

  .prices tr.pkg .price,
  .prices tr.plan .price {
    grid-column: 2;
    grid-row: 1;
  }

  .prices tr.pkg .turn {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-top: 2px;
    color: var(--ink-muted);
    font-size: 14px;
  }

  .prices tr.pkg-detail td {
    padding: 6px 0 16px;
    border-bottom: 1px solid var(--rule);
  }

  .prices tr.plan {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--rule);
  }

  .prices tr.plan .what {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-top: 4px;
  }
}

.billing {
  display: block;
  margin-top: 6px;
  color: var(--ink-muted);
  font-size: 14px;
}

.fn-mark {
  font-size: 0.7em;
  line-height: 0;
  vertical-align: super;
}

.fn-mark a {
  text-decoration: none;
  padding: 0 1px;
}

.footnote {
  margin-top: 24px;
  max-width: 68ch;
  color: var(--ink-muted);
  font-size: 14px;
}

.hero .footnote {
  grid-column: 1 / -1;
  margin-top: 32px;
}

.footnote + .footnote {
  margin-top: 8px;
}

.footnote sup {
  font-size: 0.75em;
  line-height: 0;
  vertical-align: super;
}

/* Guarantee */

.statement {
  margin-bottom: 20px;
  color: var(--flag);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

/* How it works */

.steps {
  list-style: none;
  padding: 0;
}

.steps li {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2px;
  padding: 14px 0 16px;
}

.steps li:first-child {
  padding-top: 0;
}

.steps li + li {
  border-top: 1px solid var(--rule);
}

.steps .day {
  font-family: var(--mono);
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 760px) {
  .steps li {
    grid-template-columns: 11rem 1fr;
    column-gap: 24px;
  }
}

/* Questions */

.faq > div {
  padding: 18px 0;
}

.faq > div:first-child {
  padding-top: 0;
}

.faq > div + div {
  border-top: 1px solid var(--rule);
}

.faq dt {
  font-weight: 600;
}

.faq dd {
  margin-top: 6px;
  max-width: 68ch;
}

/* Free audit */

.founder {
  margin-top: 24px;
  color: var(--ink-muted);
  font-size: 15px;
}

.audit-form {
  margin-top: 40px;
}

.field + .field {
  margin-top: 20px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 600;
}

.field input,
.field select {
  display: block;
  width: 100%;
  height: 44px;
  padding: 0 12px;
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 2px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
}

.audit-form .button {
  margin-top: 28px;
}

.consent {
  margin-top: 12px;
  color: var(--ink-muted);
  font-size: 14px;
}

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Secondary pages */

.page-title {
  font-size: 1.75rem;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

/* Legal pages: h1 and table of contents in the label column, text in the body column */

.legal-meta {
  margin-top: 8px;
  color: var(--ink-muted);
  font-size: 14px;
}

.toc {
  margin-top: 24px;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.5;
}

.toc li + li {
  margin-top: 6px;
}

.toc a {
  color: var(--ink);
  text-decoration: none;
}

.toc a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.legal h2 {
  margin-top: 40px;
  scroll-margin-top: 72px;
  font-size: 1.35rem;
}

.legal h2:first-child {
  margin-top: 0;
}

.legal p {
  margin-top: 14px;
}

.legal ul,
.legal ol {
  margin-top: 10px;
  padding-left: 1.4em;
  max-width: 68ch;
}

.legal li + li {
  margin-top: 6px;
}

.legal .clauses {
  list-style: none;
  padding-left: 2.2em;
}

@media (min-width: 760px) {
  .legal-side {
    position: sticky;
    top: 72px;
    align-self: start;
  }
}

/* Footer */

.footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--rule);
  color: var(--ink-muted);
  font-size: 13px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
}

.footer a {
  display: inline-block;
  padding: 6px 0;
}

.footer-links a + a {
  margin-left: 20px;
}

.copyright {
  margin-top: 12px;
}

/* Motion: the only transitions on the site are 120ms color changes, and they go away here. */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
