@font-face {
  font-family: Inter;
  src: url("/assets/fonts/inter.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Schibsted;
  src: url("/assets/fonts/schibsted.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --ink: #111;
  --blue: #075bea;
  --muted: #626262;
  --line: #dcdcdc;
  --paper: #fff;
  --soft: #f5f5f3;
  --display: Schibsted, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    16px/1.65 Inter,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
summary {
  cursor: pointer;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  text-wrap: balance;
}
h1,
h2 {
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1.02;
}
h3 {
  letter-spacing: -0.035em;
  line-height: 1.16;
}
p {
  text-wrap: pretty;
}
::selection {
  background: var(--blue);
  color: #fff;
}
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 6px;
}
.wrap {
  width: min(1280px, calc(100% - 96px));
  margin-inline: auto;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.6;
}
.muted {
  color: var(--muted);
}
.blue {
  color: var(--blue);
}
.skip {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  transform: translateY(-160%);
}
.skip:focus {
  transform: none;
}
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  z-index: 20;
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}
.wordmark {
  display: flex;
  align-items: baseline;
  gap: 9px;
  white-space: nowrap;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -1px;
}
.wordmark span {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
}
.nav-links > a {
  padding-block: 12px;
}
.nav-links > a:hover {
  color: var(--blue);
}
.nav-links .nav-cta {
  padding: 12px 17px;
  border: 1px solid var(--ink);
}
.nav-cta:hover {
  border-color: var(--blue);
}
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  padding: 9px 13px;
  min-height: 44px;
}
.arrow {
  display: inline-block;
  margin-left: 15px;
  transition: transform 0.18s ease;
}
.button:hover .arrow,
.text-link:hover .arrow {
  transform: translate(3px, -3px);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--ink);
  color: #fff;
  min-height: 52px;
  padding: 14px 23px;
  font-size: 12px;
  font-weight: 600;
}
.button:hover {
  background: var(--blue);
}
.button.secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.button.secondary:hover {
  border-color: var(--ink);
}
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero {
  padding: 85px 0 62px;
}
.hero > .eyebrow {
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(52px, 7.8vw, 110px);
  max-width: 1160px;
}
.hero h1 span {
  display: block;
}
.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 60px;
  margin-top: 44px;
}
.hero-note {
  align-self: end;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}
.hero-note span {
  display: block;
}
.hero-copy p {
  font-size: 18px;
  line-height: 1.65;
  max-width: 660px;
  margin-bottom: 25px;
}
.section {
  padding-block: 104px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  margin-bottom: 52px;
}
.section-heading > .eyebrow {
  padding-top: 7px;
}
.section-heading h2 {
  font-size: clamp(36px, 4.3vw, 60px);
  max-width: 850px;
}
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  max-width: 620px;
  margin-top: 22px;
}
.soft {
  background: var(--soft);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.service {
  border-top: 1px solid #bcbcbc;
  padding-top: 23px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.service-number {
  color: var(--blue);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  margin-bottom: 31px;
}
.service h3 {
  font-size: 31px;
  margin-bottom: 19px;
}
.service p {
  color: #505050;
  font-size: 15px;
  margin-bottom: 26px;
}
.tags {
  list-style: none;
  margin: auto 0 0;
  padding: 19px 0 0;
  border-top: 1px solid var(--line);
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: 11px;
  color: var(--muted);
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.work-card {
  display: block;
}
.work-image {
  overflow: hidden;
  background: #eaeaea;
  aspect-ratio: 4/3;
}
.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.work-card:hover img {
  transform: scale(1.025);
}
.work-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 21px 0 10px;
}
.work-card h3 {
  font-size: 32px;
  margin-bottom: 11px;
  display: flex;
  justify-content: space-between;
}
.work-card:hover h3 {
  color: var(--blue);
}
.work-card p {
  font-size: 15px;
  color: #505050;
  max-width: 480px;
}
.work-foot {
  margin-top: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-size: 12px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 600;
}
.text-link:hover {
  color: var(--blue);
  border-color: var(--blue);
}
.dark {
  background: #111;
  color: #fff;
}
.dark .muted {
  color: #b5b5b5;
}
.dark .section-heading p:not(.eyebrow) {
  color: #b5b5b5;
}
.process-list {
  list-style: none;
  margin: 0 0 0 33.333%;
  padding: 0;
}
.process-list li {
  display: grid;
  grid-template-columns: 50px 1fr 1.1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid #383838;
}
.process-list .number {
  font-size: 12px;
  color: #8dafff;
}
.process-list h3 {
  font-size: 24px;
  font-weight: 600;
}
.process-list p {
  font-size: 14px;
  color: #b5b5b5;
}
.process-note {
  margin: 36px 0 0 33.333%;
  font-size: 12px;
  color: #b5b5b5;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 100px;
  align-items: center;
}
.portrait {
  max-width: 390px;
}
.portrait img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.portrait figcaption {
  font-size: 11px;
  margin-top: 12px;
  color: var(--muted);
}
figure {
  margin: 0;
}
.about-copy h2 {
  font-size: clamp(40px, 4.5vw, 64px);
  margin: 22px 0 28px;
}
.about-copy > p:not(.eyebrow) {
  color: #505050;
  margin-bottom: 20px;
}
.about-copy .text-link {
  margin-top: 8px;
}
.facts {
  display: flex;
  gap: 30px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 28px;
}
.facts span {
  font-size: 12px;
  color: var(--muted);
}
.facts strong {
  font-family: var(--display);
  display: block;
  color: var(--ink);
  font-size: 25px;
  letter-spacing: -0.03em;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
}
.faq-grid h2 {
  font-size: 40px;
  margin-top: 18px;
}
.faq-list details {
  border-top: 1px solid var(--line);
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 0;
  font-size: 16px;
  font-weight: 600;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  font-size: 22px;
  color: var(--blue);
  line-height: 1;
}
details[open] summary::after {
  content: "−";
}
.faq-list details p {
  padding: 0 44px 25px 0;
  color: var(--muted);
  font-size: 15px;
}
.contact {
  padding: 100px 0 60px;
  background: var(--blue);
  color: #fff;
}
.contact .eyebrow {
  color: #d9e6ff;
}
.contact h2 {
  font-size: clamp(48px, 7.2vw, 100px);
  margin: 28px 0 42px;
  max-width: 1050px;
}
.contact-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-bottom p {
  max-width: 490px;
  color: #e0eaff;
  font-size: 16px;
}
.contact .button {
  background: #fff;
  color: var(--blue);
}
.contact .button:hover {
  background: #111;
  color: #fff;
}
.contact :focus-visible {
  outline-color: #fff;
}
.contact-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
  margin-top: 20px;
  font-size: 13px;
}
.copy-button {
  background: none;
  border: 0;
  border-bottom: 1px solid #b6ceff;
  color: #fff;
  padding: 7px 0;
  font-size: 12px;
  min-height: 44px;
}
.copy-status {
  display: block;
  min-height: 24px;
  font-size: 12px;
  color: #e0eaff;
  margin-top: 7px;
}
.footer {
  background: #111;
  color: #fff;
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer p {
  font-size: 11px;
  color: #aaa;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 11px;
  color: #ccc;
}
.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}
.case-hero {
  padding: 64px 0 48px;
}
.back {
  font-size: 12px;
  color: var(--muted);
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-bottom: 38px;
}
.back:hover {
  color: var(--blue);
}
.case-hero h1 {
  font-size: clamp(48px, 7vw, 90px);
  margin: 20px 0 28px;
}
.case-intro {
  font-size: 22px;
  max-width: 860px;
}
.case-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  margin-top: 45px;
  padding-top: 22px;
}
.case-meta dt {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.case-meta dd {
  margin: 0;
  font-size: 14px;
}
.case-cover img {
  width: 100%;
  height: auto;
}
.case-body {
  max-width: 850px;
  margin: auto;
  padding: 72px 0;
}
.case-body section + section {
  margin-top: 55px;
}
.case-body h2 {
  font-size: 36px;
  margin-bottom: 22px;
}
.case-body p {
  color: #505050;
  font-size: 17px;
}
.case-body ul {
  padding-left: 20px;
  color: #505050;
}
.case-body li + li {
  margin-top: 10px;
}
.case-gallery {
  display: grid;
  gap: 30px;
}
.case-gallery img {
  width: 100%;
  height: auto;
  background: var(--soft);
}
.case-gallery figcaption {
  font-size: 12px;
  color: var(--muted);
  max-width: 800px;
  margin-top: 12px;
}
.case-bottom {
  padding: 64px 0 90px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
.legal {
  max-width: 800px;
  padding: 70px 0 100px;
}
.legal h1 {
  font-size: clamp(40px, 6vw, 70px);
  margin-bottom: 44px;
  overflow-wrap: anywhere;
}
.legal h2 {
  font-size: 25px;
  line-height: 1.2;
  margin: 32px 0 12px;
  letter-spacing: -0.03em;
}
.legal p,
.legal ul {
  color: #505050;
  margin-bottom: 15px;
}
.legal a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal .eyebrow {
  margin-bottom: 20px;
}
.not-found {
  min-height: 60vh;
  padding: 100px 0;
}
.not-found h1 {
  font-size: clamp(48px, 8vw, 100px);
  margin: 20px 0;
}
.not-found p {
  margin-bottom: 30px;
}
@media (min-width: 1500px) {
  .hero {
    padding-top: 110px;
  }
  .hero-bottom {
    margin-top: 56px;
  }
}
@media (max-width: 1000px) {
  .wrap {
    width: calc(100% - 56px);
  }
  .nav-links {
    gap: 20px;
  }
  .hero-bottom {
    grid-template-columns: 1fr 1.7fr;
    gap: 30px;
  }
  .section {
    padding-block: 80px;
  }
  .section-heading {
    grid-template-columns: 1fr 2.3fr;
  }
  .service-grid {
    gap: 24px;
  }
  .service h3 {
    font-size: 26px;
  }
  .about-grid {
    gap: 50px;
  }
  .process-list {
    margin-left: 0;
  }
  .process-note {
    margin-left: 0;
  }
  .process-list li {
    grid-template-columns: 40px 1fr 1.3fr;
  }
  .work-card h3 {
    font-size: 27px;
  }
}
@media (max-width: 720px) {
  html {
    scroll-padding-top: 90px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .nav-wrap {
    min-height: 72px;
    flex-wrap: wrap;
    gap: 0;
  }
  .wordmark {
    font-size: 21px;
  }
  .js .menu-toggle {
    display: block;
  }
  .nav-links {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-bottom: 20px;
  }
  .nav-links a {
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }
  .nav-links .nav-cta {
    text-align: center;
    margin-top: 10px;
    padding: 12px;
  }
  .js .nav-links {
    display: none;
  }
  .js .nav-links.is-open {
    display: flex;
  }
  .hero {
    padding: 52px 0 34px;
  }
  .hero > .eyebrow {
    font-size: 10px;
    margin-bottom: 24px;
  }
  .hero h1 {
    font-size: clamp(43px, 10.8vw, 76px);
    letter-spacing: -0.055em;
  }
  .hero-bottom {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
    margin-top: 30px;
  }
  .hero-copy p {
    font-size: 16px;
  }
  .hero-note {
    align-self: start;
  }
  .hero-note span {
    display: inline;
  }
  .hero-note span + span::before {
    content: " · ";
  }
  .section {
    padding-block: 64px;
  }
  .section-heading {
    display: block;
    margin-bottom: 34px;
  }
  .section-heading > .eyebrow {
    margin-bottom: 20px;
  }
  .section-heading h2 {
    font-size: 38px;
  }
  .section-heading p:not(.eyebrow) {
    font-size: 15px;
    margin-top: 18px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .service-number {
    margin-bottom: 20px;
  }
  .service h3 {
    font-size: 31px;
  }
  .service p {
    max-width: 560px;
    margin-bottom: 20px;
  }
  .tags {
    padding-top: 15px;
  }
  .work-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .work-topline {
    font-size: 9px;
    margin-top: 16px;
  }
  .work-card h3 {
    font-size: 30px;
  }
  .work-foot {
    align-items: start;
    flex-direction: column;
    gap: 8px;
    margin-top: 28px;
  }
  .process-list li {
    grid-template-columns: 25px 1fr;
    gap: 8px 18px;
    padding-block: 24px;
  }
  .process-list p {
    grid-column: 2;
  }
  .process-list h3 {
    font-size: 24px;
  }
  .process-note {
    margin-top: 24px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .portrait {
    max-width: none;
  }
  .about-copy h2 {
    font-size: 42px;
    margin-block: 18px 24px;
  }
  .about-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .facts {
    gap: 24px;
  }
  .facts strong {
    font-size: 23px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-grid h2 {
    font-size: 38px;
  }
  .faq-list details p {
    padding-right: 15px;
  }
  .contact {
    padding: 64px 0 38px;
  }
  .contact h2 {
    font-size: clamp(44px, 10vw, 70px);
    margin: 24px 0 32px;
  }
  .contact-bottom {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-inner {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }
  .footer-links {
    gap: 20px;
  }
  .case-hero {
    padding-top: 30px;
  }
  .back {
    margin-bottom: 22px;
  }
  .case-hero h1 {
    font-size: clamp(39px, 12.5vw, 49px);
  }
  .case-intro {
    font-size: 18px;
  }
  .case-meta {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
  }
  .case-body {
    padding-block: 48px;
  }
  .case-body h2 {
    font-size: 31px;
  }
  .case-body p {
    font-size: 16px;
  }
  .case-bottom {
    flex-direction: column;
    align-items: start;
    padding-block: 40px 64px;
  }
  .legal {
    padding-top: 48px;
  }
  .legal h1 {
    font-size: 40px;
  }
  .button {
    padding-inline: 18px;
  }
  .contact-meta {
    gap: 7px 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

.work-image.screenshot {
  background: #080d1d;
  padding: 12px;
  display: flex;
  align-items: center;
}
.work-image.screenshot img {
  height: auto;
  object-fit: contain;
}
.work-topline span:last-child {
  white-space: nowrap;
}
