:root {
  --bg: #0c0b0a;
  --bg-1: #131110;
  --bg-2: #1a1715;
  --line: #26221f;
  --line-2: #352f2a;
  --ink: #f4efe9;
  --ink-2: #b3aaa0;
  --ink-3: #766e65;
  --accent: #f0853a;
  --accent-2: #ffb169;
  --accent-soft: rgba(240, 133, 58, 0.14);
  --font: "Schibsted Grotesk", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --maxw: 1280px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
}
.mono {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.kicker {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.ph {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.022) 0 11px,
      transparent 11px 22px
    ),
    var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph::after {
  content: attr(data-label);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 6px 11px;
  border: 1px solid var(--line-2);
  background: rgba(12, 11, 10, 0.55);
}

header.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: 0.3s;
}
header.nav.scrolled {
  background: rgba(12, 11, 10, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  font-family: var(--font);
  font-weight: 800;
  font-size: 23px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 15px;
  color: var(--ink-2);
  transition: 0.2s;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-cta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 20px;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 40px;
  transition: 0.2s;
}
.nav-cta:hover {
  background: var(--accent);
  color: var(--bg);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  width: 23px;
  height: 2px;
  background: var(--ink);
}

.hero {
  padding: 172px 0 70px;
  position: relative;
}
.hero-mark {
  position: absolute;
  top: 130px;
  right: -30px;
  font-family: var(--font);
  font-weight: 900;
  font-size: 30vw;
  line-height: 0.8;
  color: #fff;
  opacity: 0.022;
  pointer-events: none;
  letter-spacing: -0.04em;
}
.hero h1 {
  font-weight: 800;
  font-size: clamp(48px, 9vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  max-width: 14ch;
}
.hero h1 .out {
  color: transparent;
  -webkit-text-stroke: 1.4px var(--ink-3);
}
.hero h1 .acc {
  color: var(--accent);
}
.hero-sub {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 42px;
  flex-wrap: wrap;
  align-items: flex-end;
}
.hero-sub p {
  font-size: 20px;
  color: var(--ink-2);
  max-width: 46ch;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: 40px;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
  font-weight: 500;
}
.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
}
.btn-ghost {
  border: 1px solid var(--line-2);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--ink-2);
}
.hero-img {
  margin-top: 58px;
}
.hero-img .ph {
  aspect-ratio: 21 / 8;
  width: 100%;
}

.marq {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
}
.marq-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  align-items: center;
  width: max-content;
  animation: scrollx 28s linear infinite;
}
@keyframes scrollx {
  to {
    transform: translateX(-50%);
  }
}
.marq .item {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 64px;
}
.marq .item::after {
  content: "◆";
  color: var(--accent);
  font-size: 9px;
}

section.block {
  padding: 120px 0;
}
.lead-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}
.lead-row h2 {
  font-weight: 700;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 16ch;
}
.lead-row .meta {
  text-align: right;
  color: var(--ink-3);
  font-size: 14px;
  max-width: 24ch;
  justify-self: end;
}

.bigfeat {
  border-top: 1px solid var(--line);
}
.bf-row {
  display: grid;
  grid-template-columns: 0.5fr 1.4fr 1.1fr;
  gap: 40px;
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding 0.3s;
}
.bf-row:hover {
  padding-left: 14px;
}
.bf-row .n {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 86px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--line-2);
  transition: 0.3s;
}
.bf-row:hover .n {
  -webkit-text-stroke-color: var(--accent);
  color: var(--accent-soft);
}
.bf-row h3 {
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.bf-row p {
  color: var(--ink-2);
  max-width: 44ch;
}
.bf-row .side {
  color: var(--ink-3);
  font-size: 14.5px;
  border-left: 1px solid var(--line-2);
  padding-left: 22px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.split-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-1);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.3s;
}
.split-card .ph {
  position: absolute;
  inset: 0;
  border: 0;
}
.split-card .ph::after {
  align-self: flex-start;
  margin: 16px;
}
.split-card .ov {
  position: relative;
  padding: 28px;
  background: linear-gradient(0deg, rgba(12, 11, 10, 0.94) 20%, transparent);
}
.split-card h4 {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.split-card p {
  color: var(--ink-2);
  font-size: 15px;
  max-width: 40ch;
}
.split-card .num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
}
.split-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
}

.quote {
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.quote-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 50% 70% at 50% 50%,
    var(--accent-soft),
    transparent 70%
  );
}
.quote blockquote {
  position: relative;
  font-weight: 600;
  font-size: clamp(28px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 20ch;
  margin: 0 auto 28px;
}
.quote blockquote .acc {
  color: var(--accent);
}
.quote .who {
  position: relative;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.statline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.statline .s {
  padding: 40px 28px;
  border-right: 1px solid var(--line);
}
.statline .s:last-child {
  border-right: 0;
}
.statline .num {
  font-weight: 800;
  font-size: clamp(40px, 5vw, 70px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
}
.statline .lab {
  color: var(--ink-2);
  margin-top: 12px;
  font-size: 14.5px;
  max-width: 22ch;
}

.zig {
  display: grid;
  gap: 0;
}
.zig-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
.zig-step:nth-child(even) .zig-txt {
  order: 2;
}
.zig-step .ph {
  aspect-ratio: 16 / 10;
}
.zig-step .step-n {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.16em;
}
.zig-step h4 {
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.02em;
  margin: 14px 0 12px;
}
.zig-step p {
  color: var(--ink-2);
  max-width: 42ch;
}

.cta {
  padding: 140px 0;
  text-align: center;
  position: relative;
}
.cta h2 {
  font-weight: 800;
  font-size: clamp(40px, 7vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  max-width: 16ch;
  margin: 0 auto 26px;
}
.cta h2 .acc {
  color: var(--accent);
}
.cta p {
  color: var(--ink-2);
  max-width: 46ch;
  margin: 0 auto 36px;
  font-size: 19px;
}
.cta .hero-cta {
  justify-content: center;
}

footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}
.foot-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 36px;
  padding-bottom: 50px;
}
.foot-brand p {
  color: var(--ink-3);
  max-width: 32ch;
  margin-top: 16px;
  font-size: 14.5px;
}
.foot-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.foot-col a {
  display: block;
  color: var(--ink-2);
  font-size: 14.5px;
  margin-bottom: 11px;
  transition: 0.2s;
}
.foot-col a:hover {
  color: var(--accent);
}
.foot-bot {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 12px;
}
.foot-bot p {
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 920px) {
  .bf-row {
    grid-template-columns: auto 1fr;
    gap: 24px;
  }
  .bf-row .side {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid var(--line-2);
    padding: 16px 0 0;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .statline {
    grid-template-columns: repeat(2, 1fr);
  }
  .statline .s:nth-child(2) {
    border-right: 0;
  }
  .zig-step {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .zig-step:nth-child(even) .zig-txt {
    order: 0;
  }
  .lead-row {
    grid-template-columns: 1fr;
  }
  .lead-row .meta {
    text-align: left;
    justify-self: start;
  }
}
@media (max-width: 640px) {
  .wrap {
    padding: 0 24px;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .burger {
    display: flex;
  }
  .statline {
    grid-template-columns: 1fr;
  }
  .statline .s {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .foot-top {
    grid-template-columns: 1fr 1fr;
  }
}

.mmenu {
  position: fixed;
  inset: 78px 0 auto 0;
  background: var(--bg-1);
  border-bottom: 1px solid var(--line);
  z-index: 49;
  transform: translateY(-130%);
  transition: 0.35s;
  padding: 18px 24px 26px;
}
.mmenu.open {
  transform: none;
}
.mmenu a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}
.mmenu .btn {
  margin-top: 18px;
  width: 100%;
  justify-content: center;
}
