:root {
  --bg: #000;
  --bg-light: #f4f4f1;
  --fg: #ffffff;
  --fg-dark: #000;
  --blue: #2547ff;
  --blue-soft: rgba(37, 71, 255, 0.12);
  --green: #22c55e;
  --muted: rgba(255, 255, 255, 0.68);
  --muted-2: rgba(255, 255, 255, 0.48);
  --line: rgba(255, 255, 255, 0.07);
  --line-light: rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Space Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
  overflow-x: hidden;
}
body { max-width: 100%; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ───────────────────────────────────────────────────────────
   Intro overlay
   ─────────────────────────────────────────────────────────── */
#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}
.intro-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.intro-dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--blue);
  transform: scale(0);
  flex-shrink: 0;
}
.intro-dot.animate {
  animation: introDotIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.intro-text {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  opacity: 0;
  transform: translateX(-18px);
}
.intro-text.animate {
  animation: introTextIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
#intro-overlay.fade-out {
  animation: introFadeOut 0.4s ease forwards;
}
@keyframes introDotIn {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}
@keyframes introTextIn {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes introFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

/* ───────────────────────────────────────────────────────────
   Top promo bar
   ─────────────────────────────────────────────────────────── */
.promo {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 30;
  height: 44px;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
}
.promo .green-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}
.promo strong {
  color: var(--fg);
  font-weight: 500;
}
.promo .sep { color: var(--muted-2); }
.promo .link {
  color: var(--blue);
  font-weight: 500;
  position: absolute;
  right: 24px;
}
.promo .link:hover { text-decoration: underline; }

/* ───────────────────────────────────────────────────────────
   Nav
   ─────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 44px; left: 0; right: 0;
  z-index: 25;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.brand .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--blue);
}
.nav .menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 0;
  color: var(--fg);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 0;
}
.nav .menu-btn .bars {
  width: 28px; height: 1px;
  background: var(--fg);
  position: relative;
}
.nav .menu-btn .bars::before {
  content: ""; position: absolute;
  width: 100%; height: 1px;
  background: var(--fg);
  top: -6px; left: 0;
}

/* ───────────────────────────────────────────────────────────
   Section scaffolding
   ─────────────────────────────────────────────────────────── */
section {
  position: relative;
  padding: 120px 32px;
}
.container {
  max-width: 1440px;
  margin: 0 auto;
}
.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 56px;
}
.section-label .idx {
  color: var(--blue);
  font-weight: 500;
}
.section-label .dotted {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px rgba(37, 71, 255, 0.6);
}

h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  text-wrap: balance;
}
h2 { font-size: clamp(48px, 6.5vw, 104px); }
h3 { font-size: clamp(28px, 2.6vw, 40px); letter-spacing: -0.025em; line-height: 1.05; }
.body-text {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 640px;
}


/* ───────────────────────────────────────────────────────────
   STATEMENT
   ─────────────────────────────────────────────────────────── */
.statement {
  padding-top: 120px;
  padding-bottom: 160px;
}
.statement .lead {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.statement .lead::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
}
.statement h1 {
  font-size: clamp(56px, 8vw, 126px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.88;
}
.statement h1 .outline {
  -webkit-text-stroke: 2px var(--fg);
  color: transparent;
}
.statement h1 .blue { color: var(--fg); }

.statement .meta {
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 0;
  border-top: none;
}
.statement .meta-item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.statement .meta-item strong {
  color: var(--fg);
  font-weight: 500;
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  font-family: 'Space Grotesk', sans-serif;
}

/* ───────────────────────────────────────────────────────────
   STATS — Visste du at...
   ─────────────────────────────────────────────────────────── */
.stats h2 {
  margin-bottom: 96px;
}
.stat-grid {
  display: grid;
  gap: 96px;
}
.stat {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.4fr);
  gap: 48px;
  align-items: end;
}
.stat .big {
  font-size: clamp(120px, 18vw, 280px);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.06em;
  display: inline-flex;
  align-items: baseline;
}
.stat .big {
  color: var(--fg);
}
.stat .big .unit {
  font-size: 0.4em;
  color: var(--blue);
  margin-left: 0.08em;
  font-weight: 700;
}
.stat .copy {
  padding-bottom: 16px;
}
.stat .copy p {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
  color: var(--fg);
  margin-bottom: 12px;
  max-width: 480px;
}
.stat .copy .src {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ───────────────────────────────────────────────────────────
   NORGE — norsk AI-chatbot seksjon
   ─────────────────────────────────────────────────────────── */
.norge-section {
  padding-top: 140px;
  padding-bottom: 120px;
}
.norge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding-left: clamp(0px, 6vw, 120px);
}
.norge-text .eyebrow-sm {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.norge-text .eyebrow-sm::before {
  content: ""; width: 7px; height: 7px;
  border-radius: 50%; background: var(--blue);
}
.norge-text h2 {
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin-bottom: 28px;
}
.norge-text p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  max-width: 460px;
}
.norge-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.norge-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.norge-feat-check {
  color: var(--blue);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}
.norge-feat strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.norge-feat p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.5);
  margin: 0;
  max-width: none;
}
.norge-map-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  min-height: 580px;
}
.norge-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center center;
  border-radius: 20px;
  border: 1px solid var(--line);
  display: block;
}
@media (max-width: 980px) {
  .norge-section { padding-top: 120px; padding-bottom: 100px; }
  .norge-grid { grid-template-columns: 1fr; gap: 64px; }
  .norge-map-wrap { justify-content: flex-start; min-height: unset; }
  .norge-img {
    height: auto;
    object-fit: contain;
    object-position: center center;
  }
}
@media (max-width: 480px) {
  .norge-section { padding-top: 80px; padding-bottom: 80px; }
}

/* ───────────────────────────────────────────────────────────
   CHATBOT STATS — horisontal 3-kolonne
   ─────────────────────────────────────────────────────────── */
.chatbot-stats {
  padding-top: 120px;
  padding-bottom: 0;
}
.chatbot-stats h2 {
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.chatbot-stats h2::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.cbot-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.cbot-stat {
  padding: 56px 48px;
  border-right: 1px solid var(--line);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cbot-stat:last-child { border-right: none; }
.cbot-stat .cbot-num {
  font-size: clamp(72px, 9vw, 128px);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
}
.cbot-stat .cbot-unit {
  font-size: 0.45em;
  color: var(--blue);
  font-weight: 700;
}
.cbot-stat p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  max-width: 260px;
  text-align: center;
}
.cbot-stat .cbot-src {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 980px) {
  .chatbot-stats { padding-top: 80px; padding-bottom: 60px; }
  .cbot-stat-grid { grid-template-columns: repeat(3, 1fr); }
  .cbot-stat { padding: 40px 20px; }
}
@media (max-width: 680px) {
  .cbot-stat-grid { grid-template-columns: 1fr; }
  .cbot-stat { padding: 40px 0; border-right: none; border-bottom: 1px solid var(--line); }
  .cbot-stat:last-child { border-bottom: none; }
}

/* ───────────────────────────────────────────────────────────
   PITCH
   ─────────────────────────────────────────────────────────── */
.pitch {
  padding-top: 200px;
  padding-bottom: 160px;
}
.pitch-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}
.pitch-wrap h2 {
  font-size: clamp(40px, 5vw, 80px);
  margin-bottom: 40px;
}
.pitch-wrap h2 .blue { color: var(--blue); }
.pitch-wrap p {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin-bottom: 48px;
}

/* Pitch right — SEO graphic */
.pitch-img { border-radius: 20px; overflow: hidden; }
.seo-graphic { width: 100%; height: auto; display: block; border-radius: 20px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  background: var(--blue);
  color: var(--fg);
  border: 0;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: #1d3ce0; transform: translateY(-1px); }
.btn .arrow {
  display: inline-block;
  transition: transform 0.2s;
}
.btn:hover .arrow { transform: translateX(4px); }
.btn.ghost {
  background: transparent;
  border: 1px solid var(--muted-2);
  color: var(--fg);
}
.btn.ghost:hover { background: rgba(255,255,255,0.04); border-color: var(--fg); }

/* ───────────────────────────────────────────────────────────
   SERVICES
   ─────────────────────────────────────────────────────────── */
.services {
  padding-top: 160px;
  padding-bottom: 200px;
}
.services h2 {
  font-size: clamp(64px, 13vw, 220px);
  margin-bottom: 96px;
  letter-spacing: -0.06em;
  display: inline-flex;
  align-items: baseline;
  gap: 0.18em;
}
.services h2 .end-dot {
  width: 0.14em; height: 0.14em;
  border-radius: 50%;
  background: var(--blue);
  transform: translateY(-0.05em);
}
.services-layout {
  display: flex;
  flex-direction: column;
  gap: 200px;
}
.services-norge {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 20px;
  border: 1px solid var(--line);
  display: block;
}
@media (max-width: 980px) {
  .services-layout { gap: 48px; }
  .services-norge { height: 280px; border-radius: 14px; }
}
@media (max-width: 480px) {
  .services-layout { gap: 36px; }
  .services-norge { height: 200px; border-radius: 12px; }
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.service {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,0.015);
  padding: 64px 48px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.4s ease, background 0.4s ease, transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.service::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: radial-gradient(circle at 60% 110%, rgba(37,71,255,0.22), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.service:hover {
  border-color: var(--blue);
  background: rgba(37,71,255,0.04);
  transform: translateY(-6px);
}
.service:hover::after { opacity: 1; }

.service .s-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  position: absolute;
  top: 40px;
  left: 48px;
  z-index: 1;
  transition: color 0.35s ease;
}
.service:hover .s-num { color: var(--blue); }

.service h3 {
  font-size: clamp(34px, 4.4vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  position: relative; z-index: 1;
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), color 0.35s ease;
}
.service:hover h3 {
  transform: translateY(-10px);
  color: var(--blue);
}

.service .s-reveal {
  position: relative; z-index: 1;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22,1,0.36,1),
              opacity 0.35s ease 0.08s,
              margin-top 0.4s ease;
  margin-top: 0;
}
.service:hover .s-reveal {
  max-height: 200px;
  opacity: 1;
  margin-top: 16px;
}
.service .s-reveal p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
  max-width: 440px;
}

.service .s-arrow {
  position: absolute;
  bottom: 40px; right: 40px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 18px;
  color: var(--muted);
  transition: background 0.35s, border-color 0.35s, color 0.35s, transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.service:hover .s-arrow {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: rotate(-45deg) scale(1.08);
}

/* ───────────────────────────────────────────────────────────
   TESTIMONIAL
   ─────────────────────────────────────────────────────────── */
.testimonial {
  padding-top: 200px;
  padding-bottom: 200px;
  text-align: center;
}
.testi-wrap {
  max-width: 980px;
  margin: 0 auto;
}
.testi-mark {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 140px;
  line-height: 0.8;
  color: var(--blue);
  margin-bottom: 4px;
  letter-spacing: -0.06em;
}
.testi-wrap blockquote {
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.3;
  letter-spacing: -0.025em;
  font-weight: 500;
  color: var(--fg);
  text-wrap: balance;
  margin-bottom: 56px;
}
.testi-wrap blockquote .em { color: var(--blue); }
.testi-stars {
  display: inline-flex;
  gap: 4px;
  color: var(--blue);
  font-size: 18px;
  margin-bottom: 20px;
}
.testi-name {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: var(--blue);
}
.testi-role {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.testi-link { margin-top: 36px; }

/* ───────────────────────────────────────────────────────────
   PROJECT showcase
   ─────────────────────────────────────────────────────────── */
.project {
  background: var(--bg-light);
  color: var(--fg-dark);
  padding: 160px 32px;
}
.project .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.project-left .live-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #14803c;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.project-left .live-tag::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.project-left h2 {
  font-size: clamp(56px, 7vw, 120px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.88;
  margin-bottom: 32px;
  color: var(--fg-dark);
}
.project-left h2 .blue { color: var(--fg-dark); }
.project-left p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.65);
  max-width: 440px;
  margin-bottom: 36px;
}
.project-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-dark {
  background: var(--fg-dark);
  color: var(--fg);
  border: 0;
}
.btn-dark:hover { background: #1f1f1f; }
.btn-outline {
  background: transparent;
  color: var(--fg-dark);
  border: 1px solid var(--fg-dark);
}
.btn-outline:hover { background: var(--fg-dark); color: var(--fg); }

.project-right {
  position: relative;
}
.project-mock {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.15);
  aspect-ratio: 16 / 10;
  position: relative;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.85)),
    repeating-linear-gradient(135deg, #2a2a2a 0 12px, #1f1f1f 12px 24px);
}
.project-mock .mock-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(0,0,0,0.4);
}
.project-mock .mock-brand {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--fg);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.project-mock .mock-menu {
  display: flex; gap: 18px;
  font-size: 10px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
}
.project-mock .mock-content {
  position: absolute;
  inset: 50px 0 0 0;
  display: grid;
  place-items: center;
  color: var(--fg);
  text-align: center;
  padding: 0 32px;
}
.project-mock .mock-content .pre {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--blue);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.project-mock .mock-content h4 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.project-mock .mock-content h4 .light { color: rgba(255,255,255,0.85); }
.project-mock .mock-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(0,0,0,0.7);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.project-mock .mock-stats .cell {
  padding: 16px 12px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.04);
}
.project-mock .mock-stats .cell:last-child { border-right: 0; }
.project-mock .mock-stats .val {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.project-mock .mock-stats .lab {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-top: 4px;
  font-family: 'Space Grotesk', sans-serif;
}

/* ───────────────────────────────────────────────────────────
   PROMISE
   ─────────────────────────────────────────────────────────── */
.promise {
  padding: 200px 32px;
  text-align: center;
}
.promise .lead {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.promise .lead::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
}
.promise h2 {
  font-size: clamp(72px, 14vw, 240px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.88;
  margin-bottom: 48px;
}
.promise h2 .blue { color: var(--blue); }
.promise .btn { margin-top: 8px; }

/* ───────────────────────────────────────────────────────────
   CTA
   ─────────────────────────────────────────────────────────── */
.cta {
  padding: 200px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(37, 71, 255, 0.12), transparent 55%);
  pointer-events: none;
}
.cta .container { position: relative; }
.cta .lead {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cta .lead::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px rgba(37, 71, 255, 0.6);
}
.cta h2 {
  font-size: clamp(56px, 9vw, 140px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin-bottom: 28px;
}
.cta h2 .blue { color: var(--blue); }
.cta p {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 56px;
}
.cta-buttons {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-buttons .btn {
  padding: 22px 36px;
  font-size: 16px;
}
.trust-lines {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.01em;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.trust-sep {
  color: var(--muted-2);
  font-size: 14px;
}
.trust-link {
  margin-top: 8px;
  color: var(--blue);
  font-weight: 500;
  font-size: 16px;
}
.trust-link:hover { text-decoration: underline; }

/* ───────────────────────────────────────────────────────────
   FOOTER
   ─────────────────────────────────────────────────────────── */
footer {
  padding: 80px 32px 32px;
  background: var(--bg);
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.14) 25%, rgba(255,255,255,0.14) 75%, transparent 100%);
}
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 80px;
}
.foot-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.foot-brand .brand-big {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.025em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.foot-brand .brand-big .dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--blue);
}
.foot-brand .tag {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.5;
  max-width: 320px;
}
.foot-brand .org {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: auto;
}

.foot-col h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.foot-col li a {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.foot-col li a:hover { color: var(--blue); }
.foot-col.contact a { color: rgba(255,255,255,0.9); font-size: 16px; font-weight: 500; }
.foot-col.contact a:hover { text-decoration: underline; }

.foot-mark {
  padding: 80px 0 56px;
  text-align: center;
  overflow: hidden;
}
.foot-mark .big {
  font-size: clamp(80px, 18vw, 280px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.85;
  -webkit-text-stroke: 1.2px rgba(255,255,255,0.18);
  color: transparent;
  white-space: nowrap;
  user-select: none;
}

.foot-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.foot-base a:hover { color: var(--fg); }

/* ───────────────────────────────────────────────────────────
   Scroll reveal
   ─────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: perspective(900px) translateY(50px) rotateX(20deg);
  transform-origin: 50% 100%;
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: perspective(900px) translateY(0) rotateX(0);
}

/* ─── Desktop nav links ──────────────────────────────── */
/* ─── Full-screen menu overlay ───────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 22;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: clamp(70px, 12vh, 130px) 40px clamp(40px, 6vh, 80px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu-nav a {
  font-size: clamp(3.5rem, 8vh, 6rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.0;
  color: rgba(255,255,255,0.85);
  padding: clamp(4px, 0.7vh, 10px) 0;
  opacity: 0;
  transition: color 0.2s;
}
.mobile-menu.open .mobile-menu-nav a {
  animation: menuItemIn 0.55s cubic-bezier(0.22,1,0.36,1) forwards;
}
.mobile-menu.open .mobile-menu-nav a:nth-child(1) { animation-delay: 0.06s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(2) { animation-delay: 0.14s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(3) { animation-delay: 0.22s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(4) { animation-delay: 0.30s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(5) { animation-delay: 0.38s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(6) { animation-delay: 0.46s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(7) { animation-delay: 0.54s; }
.mobile-menu-nav a:hover { color: var(--blue); }
.mobile-menu-foot {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-style: normal;
  font-size: 14px;
  opacity: 0;
}
.mobile-menu.open .mobile-menu-foot {
  animation: menuItemIn 0.55s cubic-bezier(0.22,1,0.36,1) 0.62s forwards;
}
.mobile-menu-foot a { color: var(--blue); }
.mobile-menu-foot a:hover { color: var(--fg); }

@keyframes menuItemIn {
  from {
    opacity: 0;
    transform: perspective(700px) rotateX(-55deg) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: perspective(700px) rotateX(0deg) translateY(0);
  }
}

/* Skjul navbar og promo når meny er åpen */
body.menu-open .promo {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
body.menu-open .nav {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
  transition: background 0.25s, border-color 0.25s;
}
body.menu-open .nav .brand {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}


/* ─── Ticker ─────────────────────────────────────────── */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-track span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
}
.ticker-dot {
  width: 5px !important;
  height: 5px !important;
  border-radius: 50% !important;
  background: var(--blue) !important;
  flex-shrink: 0;
  display: inline-block;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ─── Skills / Kompetanse ────────────────────────────── */
.skills { padding: 140px 32px; }
.skills-heading {
  font-size: clamp(64px, 13vw, 220px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.88;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.18em;
  text-align: center;
  margin-bottom: 96px;
}
.skills-o {
  color: #fff;
  text-shadow: 6px 6px 0 var(--blue);
}

.skills-grid {
  display: flex;
  flex-direction: column;
}

.skill-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  transition: background 0.3s;
}

.skill-n {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  flex-shrink: 0;
}

.skill-body h3 {
  font-size: clamp(42px, 5.5vw, 88px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: var(--fg);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.skill-item:hover .skill-body h3 { color: var(--blue); }

.skill-body p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  transition: color 0.3s;
}
.skill-item:hover .skill-body p { color: rgba(255,255,255,0.75); }

.skill-tag {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 16px;
  white-space: nowrap;
  transition: border-color 0.3s, color 0.3s;
}
.skill-item:hover .skill-tag {
  border-color: var(--blue);
  color: var(--blue);
}

/* ───────────────────────────────────────────────────────────
   BLOG — seksjon og kortgrid
   ─────────────────────────────────────────────────────────── */
.blog { padding: 180px 32px; border-top: 1px solid var(--line); }

.blog .eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.blog .eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
}
.blog h2 {
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 64px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: none;
  border: none;
  border-radius: 0;
  overflow: visible;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-card:hover { transform: translateY(-4px); }

.blog-img-wrap {
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
}
.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-card:hover .blog-img-wrap img { transform: scale(1.04); }

.blog-body {
  padding: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.blog-body h3 {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.22;
  color: var(--fg);
  transition: color 0.25s;
}
.blog-card:hover .blog-body h3 { color: var(--blue); }
.blog-body p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
}
.blog-read {
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  margin-top: 16px;
  display: inline-block;
  transition: transform 0.2s ease;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(37, 71, 255, 0.4);
}
.blog-card:hover .blog-read {
  transform: translateX(4px);
  text-decoration-color: var(--blue);
}

/* ── Blog article page ───────────────────────────────────── */
.blog-article { padding-top: 104px; }

.blog-hero-wrap {
  width: 100%;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  max-height: 520px;
}
.blog-hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.blog-article-content {
  padding: 120px 32px 180px;
}
.blog-article-content .container {
  max-width: 760px;
}

.blog-date {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.blog-date::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.blog-article-content h1 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin-bottom: 56px;
}

.blog-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 17px;
  line-height: 1.72;
  color: rgba(255,255,255,0.76);
  margin-bottom: 80px;
}
.blog-text h2 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--fg);
  margin-top: 12px;
}
.blog-text strong { color: var(--fg); font-weight: 600; }
.blog-text ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.blog-cta-box {
  border-top: 1px solid var(--line);
  padding-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.blog-cta-box p {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.68);
  max-width: 520px;
}

@media (max-width: 980px) {
  .blog { padding: 120px 20px; }
  .blog-grid { grid-template-columns: 1fr; gap: 48px; }
  .blog-hero-img { height: 320px; }
  .blog-article-content { padding: 60px 20px 100px; }
}
@media (max-width: 480px) {
  .blog { padding: 80px 16px; }
  .blog-grid { gap: 40px; }
  .blog-img-wrap { height: 180px; }
  .blog-hero-img { height: 220px; }
  .blog-article-content { padding: 40px 16px 80px; }
}

/* ───────────────────────────────────────────────────────────
   Responsive
   ─────────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  section { padding: 80px 20px; }
  .pitch-grid, .testi-grid, .project .container, .foot-top {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .stat { grid-template-columns: 1fr; gap: 16px; }
  .service-grid { grid-template-columns: 1fr; }
  .pitch-grid { grid-template-columns: 1fr; gap: 48px; }
  .skill-item { grid-template-columns: 32px 1fr; gap: 20px; }
  .skill-tag { display: none; }
  .promo { font-size: 11px; padding: 0 16px; }
  .promo span:nth-child(n+4):not(.link) { display: none; }
  .statement { padding-top: 120px; }
  .project .container { grid-template-columns: 1fr; }
  .foot-mark .big { -webkit-text-stroke-width: 0.8px; }
  .service { padding: 44px 32px; min-height: 280px; }
  .service .s-num { top: 28px; left: 32px; }
  .service .s-arrow { bottom: 28px; right: 28px; width: 40px; height: 40px; }
  .service:hover .s-reveal { max-height: 240px; }
  .statement h1 { font-size: clamp(48px, 11vw, 126px); }
  .testi-mark { font-size: clamp(56px, 18vw, 140px); }
}

@media (max-width: 480px) {
  section { padding: 64px 16px; }
  .nav { padding: 12px 20px; }
  .statement { padding-top: 120px; padding-bottom: 40px; }
  .statement .meta { margin-top: 36px; }
  .stats h2 { margin-bottom: 48px; }
  .stat-grid { gap: 48px; }
  .pitch { padding-top: 80px; padding-bottom: 80px; }
  .testimonial { padding-top: 80px; padding-bottom: 80px; }
  .services { padding-top: 80px; padding-bottom: 100px; }
  .skills { padding: 80px 16px; }
  .promise { padding: 80px 16px; }
  .cta { padding: 80px 16px; }
  .statement h1 { font-size: clamp(44px, 13vw, 126px); }
  .service { padding: 36px 20px; min-height: 220px; }
  .skill-item { padding: 20px 0; }
  footer { padding: 60px 0 0; }
  .foot-top { padding: 0 16px 40px; gap: 40px; }
  .foot-mark { padding: 0 16px; }
  .foot-base { padding: 24px 16px 32px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
