﻿:root {
  color-scheme: light;
  --ink: #17171d;
  --muted: #606171;
  --line: #dddfe7;
  --paper: #f7f3ec;
  --white: #ffffff;
  --nav-bg: rgba(247, 243, 236, .9);
  --soft-panel: rgba(255, 255, 255, .7);
  --hero-bg:
    linear-gradient(115deg, rgba(22, 92, 125, .16) 0%, transparent 30%),
    linear-gradient(245deg, rgba(217, 79, 56, .16) 0%, transparent 34%),
    linear-gradient(145deg, #f8f5ef 0%, #eef4f1 48%, #fbefe8 100%);
  --footer-bg: #17171d;
  --button-bg: #17171d;
  --button-text: #ffffff;
  --glass: rgba(255, 255, 255, .58);
  --glass-strong: rgba(255, 255, 255, .82);
  --glow: rgba(22, 92, 125, .18);
  --brand: #165c7d;
  --brand-deep: #0f3341;
  --accent: #d94f38;
  --mint: #2b8b78;
  --gold: #c58b2c;
  --shadow: 0 24px 70px rgba(21, 28, 38, .14);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f3f0e8;
  --muted: #b8bfca;
  --line: rgba(255, 255, 255, .14);
  --paper: #101418;
  --white: #171d23;
  --nav-bg: rgba(16, 20, 24, .9);
  --soft-panel: rgba(23, 29, 35, .78);
  --hero-bg:
    linear-gradient(115deg, rgba(100, 182, 212, .16) 0%, transparent 32%),
    linear-gradient(245deg, rgba(240, 111, 86, .13) 0%, transparent 36%),
    linear-gradient(145deg, #0e1317 0%, #132124 48%, #1a1515 100%);
  --footer-bg: #0b0e11;
  --button-bg: #f3f0e8;
  --button-text: #101418;
  --glass: rgba(23, 29, 35, .64);
  --glass-strong: rgba(23, 29, 35, .88);
  --glow: rgba(100, 182, 212, .18);
  --brand: #64b6d4;
  --brand-deep: #123241;
  --accent: #f06f56;
  --mint: #55c4a8;
  --gold: #e2ad55;
  --shadow: 0 24px 70px rgba(0, 0, 0, .36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(127, 127, 127, .055) 1px, transparent 1px),
    linear-gradient(rgba(127, 127, 127, .055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .9), transparent 72%);
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: var(--nav-bg);
  backdrop-filter: blur(22px) saturate(1.25);
  box-shadow: 0 12px 42px rgba(0, 0, 0, .05);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  font-size: 1.08rem;
}

.brand.has-logo {
  gap: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .1)),
    var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(22, 92, 125, .28);
  flex: 0 0 auto;
}

.brand.has-logo .brand-mark {
  width: 178px;
  height: 48px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark::before {
  content: "A";
  position: absolute;
  color: white;
  font-weight: 900;
}

.brand.has-logo .brand-mark::before,
.brand.has-logo .brand-name {
  display: none;
}

.brand-mark img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 38px;
  max-height: 38px;
  object-fit: contain;
  display: block;
}

.brand.has-logo .brand-mark img {
  max-width: 178px;
  max-height: 48px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 650;
}

.nav-links a {
  border-radius: 999px;
  padding: 9px 13px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav-links a:hover {
  background: var(--soft-panel);
  color: var(--ink);
  transform: translateY(-1px);
}

.theme-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--glass);
  color: var(--ink);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .24);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  background: var(--glass-strong);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .12);
}

.theme-toggle-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(197, 139, 44, .18);
  position: relative;
}

html[data-theme="dark"] .theme-toggle-icon {
  background: transparent;
  box-shadow: inset -6px -4px 0 0 var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--glass);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .24);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 20px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.nav-cta,
.button.primary {
  background: var(--button-bg);
  color: var(--button-text);
  box-shadow: 0 14px 32px rgba(23, 23, 29, .18), 0 0 0 1px rgba(255, 255, 255, .08) inset;
}

.button.secondary {
  background: var(--glass);
  border-color: var(--line);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(23, 23, 29, .2);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--hero-bg);
}

.hero-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(127, 127, 127, .13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 127, 127, .13) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(100deg, transparent 0%, #000 24%, #000 72%, transparent 100%);
  opacity: .55;
}

.hero-canvas::after {
  content: "";
  position: absolute;
  right: clamp(24px, 9vw, 128px);
  top: 50%;
  width: clamp(280px, 38vw, 520px);
  aspect-ratio: 1.05;
  transform: translateY(-48%);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .16)),
    conic-gradient(from 230deg, var(--brand), var(--mint), var(--gold), var(--accent), var(--brand));
  box-shadow: var(--shadow);
  clip-path: polygon(14% 0, 100% 0, 100% 82%, 84% 100%, 0 100%, 0 18%);
  opacity: .82;
  animation: floatPanel 8s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 104px 0 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  gap: 68px;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.hero-copy > * {
  animation: riseIn .7s ease both;
}

.hero-copy > *:nth-child(2) {
  animation-delay: .08s;
}

.hero-copy > *:nth-child(3) {
  animation-delay: .16s;
}

.hero-copy > *:nth-child(4) {
  animation-delay: .23s;
}

.hero-copy > *:nth-child(5) {
  animation-delay: .3s;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--brand-deep);
  font-weight: 850;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .08em;
}

.kicker::before {
  content: "";
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(3.2rem, 7.4vw, 6.6rem);
  line-height: .94;
  letter-spacing: 0;
  text-wrap: balance;
}

.lead {
  margin: 30px 0 0;
  max-width: 650px;
  font-size: clamp(1.08rem, 1.75vw, 1.26rem);
  color: var(--muted);
  line-height: 1.72;
}

.lead + .lead {
  margin-top: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.visual-panel {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--glass-strong), var(--glass));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  transform-style: preserve-3d;
  animation: orbitFloat 7s ease-in-out infinite;
}

.orbit span {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 120px;
  min-height: 56px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--glass-strong);
  border: 1px solid var(--line);
  font-weight: 850;
  box-shadow: 0 16px 34px rgba(23, 23, 29, .12);
  backdrop-filter: blur(16px);
}

.orbit span:nth-child(1) {
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--brand);
}

.orbit span:nth-child(2) {
  top: 48%;
  right: -10px;
  color: var(--mint);
}

.orbit span:nth-child(3) {
  bottom: 38px;
  left: 14px;
  color: var(--accent);
}

.orbit strong {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 168px;
  height: 168px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--brand-deep);
  color: white;
  text-align: center;
  font-size: 1.18rem;
  line-height: 1.2;
  padding: 20px;
  box-shadow: 0 22px 46px rgba(15, 51, 65, .28);
  overflow: hidden;
}

.orbit strong::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, .18) 50%, transparent 90%);
  transform: translateX(-120%);
  animation: sheen 5.5s ease-in-out infinite;
}

.section {
  padding: 82px 0;
}

.section.alt {
  background: var(--white);
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--glass-strong), var(--white));
  padding: 26px;
  min-height: 220px;
  box-shadow: 0 12px 32px rgba(23, 23, 29, .06);
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--mint), var(--accent));
  opacity: .78;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--brand);
  box-shadow: 0 24px 54px rgba(23, 23, 29, .13);
}

.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: white;
  font-weight: 900;
  background: var(--brand);
}

.card:nth-child(2) .icon {
  background: var(--mint);
}

.card:nth-child(3) .icon {
  background: var(--accent);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.story {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 42px;
  align-items: start;
}

.bot-badge {
  position: sticky;
  top: 104px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .12), transparent),
    var(--brand-deep);
  color: white;
  padding: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.bot-badge::after {
  content: "";
  position: absolute;
  inset: auto -20% -35% 25%;
  height: 120px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .14), transparent);
  transform: rotate(-12deg);
}

.bot-badge p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .78);
}

.bot-face {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .28), rgba(255, 255, 255, 0)),
    var(--accent);
  font-size: 2rem;
  font-weight: 900;
}

.story-text {
  font-size: 1.08rem;
  color: var(--muted);
}

.story-text p {
  margin: 0 0 22px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: steps;
}

.step {
  counter-increment: steps;
  border-top: 4px solid var(--gold);
  background: linear-gradient(180deg, var(--glass), transparent);
  padding: 24px 0 0;
  transition: transform .22s ease;
}

.step:hover {
  transform: translateY(-4px);
}

.step::before {
  content: "0" counter(steps);
  display: block;
  color: var(--accent);
  font-weight: 900;
  margin-bottom: 10px;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.faq-section {
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 10% auto auto 58%;
  width: min(38vw, 460px);
  aspect-ratio: 1;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .22), transparent),
    conic-gradient(from 170deg, var(--brand), var(--mint), var(--gold), var(--accent), var(--brand));
  opacity: .18;
  filter: blur(2px);
  transform: rotate(10deg);
}

.faq-wrap {
  position: relative;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 42px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 112px;
  margin-bottom: 0;
}

.faq-panel {
  display: grid;
  gap: 14px;
  counter-reset: faq;
}

.faq-item {
  counter-increment: faq;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, var(--glass-strong), var(--glass));
  box-shadow: 0 16px 42px rgba(23, 23, 29, .08);
  overflow: hidden;
  backdrop-filter: blur(18px);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: var(--brand);
  box-shadow: 0 24px 58px rgba(23, 23, 29, .13);
  transform: translateY(-2px);
}

.faq-item summary {
  min-height: 76px;
  display: grid;
  grid-template-columns: 44px 1fr 32px;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
  font-weight: 850;
  list-style: none;
}

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

.faq-item summary::before {
  content: "0" counter(faq);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--button-bg);
  color: var(--button-text);
  font-size: .88rem;
  box-shadow: 0 12px 28px rgba(23, 23, 29, .14);
}

.faq-item summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--soft-panel);
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform .22s ease, background .22s ease;
}

.faq-item[open] summary::after {
  content: "-";
  transform: rotate(180deg);
  background: var(--brand);
  color: white;
}

.faq-answer {
  padding: 0 20px 22px 80px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.faq-answer a {
  color: var(--brand);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-hero {
  padding: 88px 0 44px;
  border-bottom: 1px solid var(--line);
  background: var(--hero-bg);
}

.legal-hero h1 {
  max-width: 900px;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
}

.legal-section {
  padding: 64px 0 88px;
}

.legal-document {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--glass-strong), var(--white));
  box-shadow: var(--shadow);
  padding: clamp(26px, 5vw, 54px);
}

.legal-document h2 {
  margin: 34px 0 10px;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.2;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
  font-size: 1.04rem;
}

.legal-document p {
  margin: 0 0 18px;
}

.legal-document ul {
  margin: 0 0 22px;
  padding-left: 24px;
}

.legal-document a {
  color: var(--brand);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-band {
  background: var(--footer-bg);
  color: white;
  padding: 64px 0;
}

.cta-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

.cta-inner p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .72);
  max-width: 700px;
}

footer {
  padding: 28px 0;
  background: var(--footer-bg);
  color: rgba(255, 255, 255, .62);
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .94rem;
}

.footer-legal {
  max-width: 760px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, .78);
}

.footer-links a:hover {
  color: white;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translateY(-48%) rotate(0deg);
  }

  50% {
    transform: translateY(-51%) rotate(1.4deg);
  }
}

@keyframes orbitFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes sheen {
  0%,
  62% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@keyframes serverBlink {
  0%,
  100% {
    opacity: .45;
    transform: scale(.9);
  }

  45% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes serverScan {
  0%,
  45% {
    transform: translateY(-110%);
    opacity: 0;
  }

  55% {
    opacity: 1;
  }

  100% {
    transform: translateY(110%);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .nav {
    position: relative;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 42px rgba(23, 23, 29, .14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 0 12px;
    color: var(--ink);
  }

  .nav-links a:hover {
    background: var(--soft-panel);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .story,
  .faq-wrap,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 70px;
    padding-bottom: 58px;
    gap: 36px;
  }

  .hero-canvas::after,
  .hero-canvas::before {
    opacity: .24;
  }

  .visual-panel {
    min-height: 340px;
  }

  .grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .bot-badge {
    position: static;
  }

  .faq-heading {
    position: static;
  }

  .cta-inner {
    display: grid;
  }
}

@media (max-width: 560px) {
  .nav {
    width: min(100% - 24px, 1120px);
    gap: 10px;
  }

  .brand {
    font-size: 1rem;
  }

  .brand.has-logo .brand-mark {
    width: 142px;
  }

  .brand.has-logo .brand-mark img {
    max-width: 142px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: .9rem;
  }

  .theme-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-inner,
  .wrap,
  .cta-inner,
  .footer-inner {
    width: min(100% - 24px, 1120px);
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .orbit {
    width: min(100%, 320px);
  }

  .orbit span {
    min-width: 104px;
    min-height: 48px;
    font-size: .88rem;
  }

  .orbit strong {
    width: 132px;
    height: 132px;
    font-size: .98rem;
  }

  .section {
    padding: 62px 0;
  }

  .faq-item summary {
    grid-template-columns: 38px 1fr 30px;
    gap: 12px;
    padding: 16px;
  }

  .faq-item summary::before {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .faq-answer {
    padding: 0 16px 20px;
  }

  h1 {
    font-size: clamp(2.9rem, 15vw, 4.4rem);
    line-height: .96;
  }

  .lead {
    margin-top: 24px;
    font-size: 1.04rem;
    line-height: 1.66;
  }

  .lead + .lead {
    margin-top: 14px;
  }
}

@media (max-width: 420px) {
  .brand.has-logo .brand-mark {
    width: 96px;
  }

  .brand.has-logo .brand-mark img {
    max-width: 96px;
  }

  .nav-cta {
    font-size: 0;
    padding: 0 14px;
  }

  .nav-cta::after {
    content: "Søk";
    font-size: .9rem;
  }

  .brand:not(.has-logo) .brand-name {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

/* Fresh 2026 direction */
:root {
  --ink: #102022;
  --muted: #607275;
  --line: #d8e4df;
  --paper: #f4f8f5;
  --white: #ffffff;
  --nav-bg: rgba(244, 248, 245, .88);
  --soft-panel: rgba(255, 255, 255, .78);
  --hero-bg:
    linear-gradient(120deg, rgba(19, 150, 134, .18) 0%, transparent 34%),
    linear-gradient(250deg, rgba(95, 111, 255, .13) 0%, transparent 34%),
    linear-gradient(180deg, #f8fbf8 0%, #eef8f3 54%, #f7fbff 100%);
  --footer-bg: #102022;
  --button-bg: #139686;
  --button-text: #ffffff;
  --glass: rgba(255, 255, 255, .78);
  --glass-strong: rgba(255, 255, 255, .94);
  --brand: #139686;
  --brand-deep: #123d3a;
  --accent: #5f6fff;
  --mint: #25b99f;
  --gold: #f4b942;
  --shadow: 0 22px 60px rgba(16, 32, 34, .11);
}

html[data-theme="dark"] {
  --ink: #effbf7;
  --muted: #a9bfba;
  --line: rgba(255, 255, 255, .13);
  --paper: #0c1415;
  --white: #121d1f;
  --nav-bg: rgba(12, 20, 21, .88);
  --soft-panel: rgba(18, 29, 31, .82);
  --hero-bg:
    linear-gradient(120deg, rgba(37, 185, 159, .16) 0%, transparent 36%),
    linear-gradient(250deg, rgba(95, 111, 255, .14) 0%, transparent 36%),
    linear-gradient(180deg, #0c1415 0%, #102022 56%, #111827 100%);
  --footer-bg: #071011;
  --button-bg: #25b99f;
  --button-text: #071011;
  --glass: rgba(18, 29, 31, .72);
  --glass-strong: rgba(18, 29, 31, .94);
  --brand: #25b99f;
  --brand-deep: #0e302d;
  --accent: #8d98ff;
  --mint: #44d1b8;
  --gold: #ffd166;
  --shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(37, 185, 159, .13), transparent 24%),
    radial-gradient(circle at 92% 20%, rgba(95, 111, 255, .11), transparent 24%),
    var(--paper);
}

body::before {
  background:
    linear-gradient(90deg, rgba(19, 150, 134, .055) 1px, transparent 1px),
    linear-gradient(rgba(19, 150, 134, .055) 1px, transparent 1px);
  background-size: 96px 96px;
}

.topbar {
  border-bottom: 1px solid rgba(19, 150, 134, .14);
  box-shadow: none;
}

.nav {
  height: 76px;
}

.nav-links {
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft-panel);
}

.nav-links a {
  padding: 8px 14px;
}

.nav-links a:hover {
  background: var(--brand);
  color: var(--button-text);
}

.theme-toggle,
.menu-toggle {
  background: var(--white);
}

.nav-cta,
.button.primary {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
  box-shadow: 0 16px 38px rgba(19, 150, 134, .24);
}

.button.secondary {
  background: var(--white);
  border-color: var(--line);
}

.hero {
  min-height: calc(100vh - 76px);
  border-bottom: 0;
}

.hero-canvas::before {
  background-image:
    linear-gradient(rgba(19, 150, 134, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 150, 134, .12) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .42;
}

.hero-canvas::after {
  display: none;
}

.hero-inner {
  width: min(1180px, calc(100% - 40px));
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: 58px;
  padding: 112px 0 88px;
}

.kicker {
  color: var(--brand);
  letter-spacing: .12em;
}

.kicker::before {
  background: var(--brand);
}

h1 {
  max-width: 850px;
  font-size: clamp(3.4rem, 7.2vw, 6.4rem);
  line-height: .96;
}

.lead {
  max-width: 680px;
  color: var(--muted);
}

.search-preview {
  width: min(100%, 500px);
  border: 1px solid rgba(19, 150, 134, .18);
  border-radius: 24px;
  background:
    linear-gradient(180deg, var(--glass-strong), var(--glass)),
    var(--white);
  box-shadow: var(--shadow);
  padding: 18px;
  position: relative;
  overflow: hidden;
  animation: orbitFloat 7s ease-in-out infinite;
}

.search-preview::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--brand), var(--accent), var(--mint));
}

.preview-top {
  display: flex;
  gap: 7px;
  padding: 8px 0 18px;
}

.preview-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--line);
}

.preview-top span:nth-child(1) {
  background: var(--accent);
}

.preview-top span:nth-child(2) {
  background: var(--gold);
}

.preview-top span:nth-child(3) {
  background: var(--brand);
}

.preview-search {
  min-height: 54px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  color: var(--muted);
  padding: 0 18px;
  font-weight: 750;
}

.preview-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.preview-filters span {
  border-radius: 999px;
  background: rgba(19, 150, 134, .11);
  color: var(--brand);
  padding: 7px 11px;
  font-size: .88rem;
  font-weight: 850;
}

.preview-list {
  display: grid;
  gap: 10px;
}

.preview-list div {
  display: grid;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  padding: 14px;
  box-shadow: 0 10px 24px rgba(16, 32, 34, .06);
}

.preview-list strong {
  color: var(--ink);
}

.preview-list span {
  color: var(--muted);
  font-size: .92rem;
}

.visual-panel {
  min-height: 460px;
}

.section {
  padding: 96px 0;
}

.section.alt {
  background: rgba(255, 255, 255, .56);
}

html[data-theme="dark"] .section.alt {
  background: rgba(18, 29, 31, .5);
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  text-wrap: balance;
}

.grid {
  gap: 22px;
}

.card,
.faq-item,
.legal-document {
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(16, 32, 34, .08);
}

.card {
  padding: 30px;
  min-height: 238px;
}

.card::before {
  height: 5px;
}

.card .icon {
  border-radius: 16px;
  width: 52px;
  height: 52px;
}

.bot-badge {
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(37, 185, 159, .34), transparent),
    #102022;
}

.bot-face {
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

.server-visual {
  margin-top: 26px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .03)),
    rgba(255, 255, 255, .06);
  padding: 14px;
  position: relative;
  overflow: hidden;
}

.server-visual::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -30%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(37, 185, 159, .28);
  filter: blur(22px);
}

.server-rack {
  position: relative;
  display: grid;
  gap: 10px;
}

.server-unit {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .12), transparent),
    rgba(8, 17, 19, .56);
  display: grid;
  grid-template-columns: 1fr 10px 10px 42px;
  gap: 10px;
  align-items: center;
  padding: 0 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}

.server-unit span {
  height: 9px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .28), rgba(255, 255, 255, .06));
}

.server-unit i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 14px var(--brand);
  animation: serverBlink 2.4s ease-in-out infinite;
}

.server-unit i:nth-of-type(2) {
  background: var(--gold);
  box-shadow: 0 0 14px var(--gold);
  animation-delay: .45s;
}

.server-unit b {
  height: 8px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .24) 0 3px, transparent 3px 7px);
}

.server-line {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, transparent, rgba(37, 185, 159, .28), transparent);
  transform: translateY(-110%);
  animation: serverScan 4s ease-in-out infinite;
  pointer-events: none;
}

.story-text {
  border-left: 3px solid var(--brand);
  padding-left: 28px;
}

.step {
  border-top: 0;
  border-left: 5px solid var(--brand);
  border-radius: 0 18px 18px 0;
  background: var(--white);
  padding: 24px;
  box-shadow: 0 14px 34px rgba(16, 32, 34, .07);
}

.team-section {
  position: relative;
  overflow: hidden;
}

.cleanup-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(19, 150, 134, .12), transparent 42%),
    var(--paper);
}

.cleanup-wrap {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(340px, 1.14fr);
  gap: 28px;
  align-items: start;
}

.cleanup-heading {
  position: sticky;
  top: 104px;
}

.cleanup-heading h2 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(2.1rem, 4.4vw, 4rem);
  line-height: 1;
}

.cleanup-heading p:last-child {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
}

.cleanup-board {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .84), rgba(255, 255, 255, .58)),
    var(--white);
  box-shadow: var(--shadow);
}

.cleanup-board::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--brand), var(--accent), var(--mint));
}

.cleanup-board-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.cleanup-pulse {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 7px rgba(43, 139, 120, .12);
}

#cleanupCount {
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand);
  font-size: .84rem;
  font-weight: 900;
}

.cleanup-list {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.cleanup-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .62);
}

.cleanup-index {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: var(--button-bg);
  color: var(--button-text);
  font-size: .78rem;
  font-weight: 950;
}

.cleanup-item strong,
.cleanup-item span,
.cleanup-item p {
  display: block;
}

.cleanup-item strong {
  color: var(--ink);
  line-height: 1.25;
}

.cleanup-item span {
  margin-top: 4px;
  color: var(--brand);
  font-size: .9rem;
  font-weight: 850;
}

.cleanup-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .94rem;
}

.cleanup-empty {
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px dashed var(--line);
  border-radius: 16px;
  color: var(--muted);
}

.cleanup-empty strong {
  color: var(--ink);
}

.cleanup-loader {
  width: 22px;
  height: 22px;
  border: 3px solid rgba(19, 150, 134, .16);
  border-top-color: var(--brand);
  border-radius: 999px;
  animation: spin 1s linear infinite;
}

html[data-theme="dark"] .cleanup-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(37, 185, 159, .18), transparent 34%),
    linear-gradient(135deg, rgba(141, 152, 255, .10), transparent 45%),
    var(--paper);
}

html[data-theme="dark"] .cleanup-board {
  border-color: rgba(255, 255, 255, .16);
  background:
    linear-gradient(135deg, rgba(23, 39, 42, .96), rgba(14, 24, 27, .88)),
    var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
}

html[data-theme="dark"] .cleanup-board-top {
  border-bottom-color: rgba(255, 255, 255, .14);
}

html[data-theme="dark"] #cleanupCount {
  border-color: rgba(37, 185, 159, .34);
  background: rgba(37, 185, 159, .12);
  color: #9af5df;
}

html[data-theme="dark"] .cleanup-item {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .045);
}

html[data-theme="dark"] .cleanup-index {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #071011;
}

html[data-theme="dark"] .cleanup-item span {
  color: #9af5df;
}

html[data-theme="dark"] .cleanup-empty {
  border-color: rgba(37, 185, 159, .30);
  background: rgba(255, 255, 255, .04);
}

html[data-theme="dark"] .cleanup-loader {
  border-color: rgba(154, 245, 223, .18);
  border-top-color: #9af5df;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.team-section::before {
  content: "";
  position: absolute;
  inset: 12% -18% auto auto;
  width: min(44vw, 560px);
  aspect-ratio: 1;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .18), transparent),
    conic-gradient(from 210deg, var(--brand), var(--accent), var(--mint), var(--gold), var(--brand));
  opacity: .12;
  transform: rotate(-10deg);
}

.team-wrap {
  position: relative;
  display: grid;
  gap: 22px;
}

.team-card {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(19, 150, 134, .08), transparent 34%),
    var(--white);
  box-shadow: var(--shadow);
  padding: clamp(26px, 5vw, 52px);
  overflow: hidden;
}

.team-profile {
  position: relative;
}

.profile-orb {
  width: 92px;
  height: 92px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
  font-size: 2.4rem;
  font-weight: 900;
  box-shadow: 0 20px 50px rgba(19, 150, 134, .26);
}

.team-profile h2 {
  margin: 0;
  max-width: 420px;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1;
  text-wrap: balance;
}

.team-role {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 850;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.team-tags span {
  border: 1px solid rgba(19, 150, 134, .18);
  border-radius: 999px;
  background: rgba(19, 150, 134, .1);
  color: var(--brand);
  padding: 7px 11px;
  font-size: .88rem;
  font-weight: 850;
}

.team-story {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.76;
}

.team-story p {
  margin: 0;
}

.team-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.team-timeline div {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  padding: 20px;
  box-shadow: 0 14px 34px rgba(16, 32, 34, .06);
  transition: transform .22s ease, border-color .22s ease;
}

.team-timeline div:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
}

.team-timeline span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  margin-bottom: 14px;
  background: var(--button-bg);
  color: var(--button-text);
  font-size: .78rem;
  font-weight: 900;
}

.team-timeline strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
}

.team-timeline p {
  margin: 8px 0 0;
  color: var(--muted);
}

.faq-section::before {
  opacity: .1;
  border-radius: 50%;
}

.faq-wrap {
  grid-template-columns: .82fr 1.18fr;
}

.faq-item summary::before {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white;
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(19, 150, 134, .24), transparent 42%),
    var(--footer-bg);
}

footer {
  background: var(--footer-bg);
}

@media (max-width: 900px) {
  .nav-links {
    border-radius: 18px;
    padding: 10px;
  }

  .hero-inner {
    width: min(100% - 28px, 1180px);
    padding-top: 76px;
  }

  .visual-panel {
    min-height: auto;
  }

  .search-preview {
    width: 100%;
  }

  .story-text {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 560px) {
  .hero-inner,
  .wrap,
  .cta-inner,
  .footer-inner {
    width: min(100% - 24px, 1180px);
  }

  .search-preview {
    border-radius: 18px;
    padding: 14px;
  }

  .preview-search {
    min-height: 48px;
    font-size: .92rem;
  }
}

/* Mobile polish */
@media (max-width: 760px) {
  .topbar {
    position: sticky;
  }

  .nav {
    width: min(100% - 20px, 1180px);
    height: 64px;
    gap: 8px;
  }

  .brand.has-logo .brand-mark {
    width: 128px;
    height: 40px;
  }

  .brand.has-logo .brand-mark img {
    max-width: 128px;
    max-height: 40px;
  }

  .theme-toggle,
  .menu-toggle {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 13px;
    font-size: .86rem;
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .nav-links {
    top: calc(100% + 8px);
    border-radius: 16px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: min(100% - 22px, 1180px);
    padding: 54px 0 46px;
    gap: 28px;
  }

  .kicker {
    margin-bottom: 14px;
    font-size: .72rem;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
    line-height: 1;
  }

  .lead {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.62;
  }

  .lead + .lead {
    margin-top: 12px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .search-preview {
    max-width: 100%;
    border-radius: 16px;
    padding: 12px;
    animation: none;
  }

  .preview-top {
    padding-bottom: 12px;
  }

  .preview-search {
    min-height: auto;
    padding: 13px 14px;
    font-size: .9rem;
    line-height: 1.35;
  }

  .preview-filters {
    gap: 6px;
    margin: 12px 0;
  }

  .preview-filters span {
    padding: 6px 9px;
    font-size: .8rem;
  }

  .preview-list {
    gap: 8px;
  }

  .preview-list div {
    min-width: 0;
    border-radius: 13px;
    padding: 12px;
  }

  .preview-list strong,
  .preview-list span {
    overflow-wrap: anywhere;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
    line-height: 1.06;
  }

  .section-heading p {
    font-size: 1rem;
  }

  .card {
    min-height: auto;
    padding: 22px;
    border-radius: 16px;
  }

  .story {
    gap: 24px;
  }

  .bot-badge {
    padding: 24px;
  }

  .bot-badge::after,
  .team-section::before {
    display: none !important;
    content: none !important;
  }

  .server-visual {
    margin-top: 20px;
    padding: 12px;
  }

  .server-rack {
    gap: 8px;
  }

  .server-unit {
    min-height: 40px;
    grid-template-columns: 1fr 8px 8px 34px;
    gap: 8px;
    padding: 0 10px;
  }

  .steps {
    gap: 12px;
  }

  .step {
    padding: 20px;
  }

  .team-card {
    grid-template-columns: 1fr;
    gap: 24px;
    border-radius: 20px;
    padding: 24px;
  }

  .profile-orb {
    width: 74px;
    height: 74px;
    border-radius: 20px;
    font-size: 2rem;
    margin-bottom: 18px;
  }

  .team-profile h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .team-story {
    font-size: .98rem;
    line-height: 1.66;
  }

  .cleanup-wrap {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .cleanup-heading {
    position: static;
  }

  .cleanup-board {
    border-radius: 18px;
  }

  .cleanup-board-top {
    grid-template-columns: auto minmax(0, 1fr);
  }

  #cleanupCount {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .cleanup-item {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
  }

  .cleanup-index {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .team-timeline {
    grid-template-columns: 1fr;
  }

  .faq-wrap {
    gap: 24px;
  }

  .faq-section::before {
    display: none;
  }

  .faq-item {
    border-radius: 16px;
  }

  .faq-item summary {
    min-height: auto;
    grid-template-columns: 34px minmax(0, 1fr) 28px;
    gap: 10px;
    padding: 14px;
    font-size: .98rem;
    line-height: 1.28;
  }

  .faq-item summary::before {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    font-size: .76rem;
  }

  .faq-item summary::after {
    width: 28px;
    height: 28px;
  }

  .faq-answer {
    padding: 0 14px 18px;
  }

  .faq-answer p {
    font-size: .96rem;
    line-height: 1.6;
  }

  .cta-band {
    padding: 48px 0;
  }

  .cta-inner {
    gap: 20px;
  }

  footer {
    padding: 24px 0;
  }

  .footer-legal {
    font-size: .88rem;
    line-height: 1.55;
  }
}

@media (max-width: 430px) {
  .brand.has-logo .brand-mark {
    width: 88px;
  }

  .brand.has-logo .brand-mark img {
    max-width: 88px;
  }

  .nav {
    width: min(100% - 16px, 1180px);
    gap: 6px;
  }

  .nav-cta {
    font-size: 0;
    padding: 0 12px;
  }

  .nav-cta::after {
    content: "Søk";
    font-size: .84rem;
  }

  .theme-toggle,
  .menu-toggle {
    width: 36px;
    height: 36px;
  }

  .hero-inner,
  .wrap,
  .cta-inner,
  .footer-inner {
    width: min(100% - 18px, 1180px);
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 2.9rem);
  }

  .preview-filters span:nth-child(2) {
    order: 3;
  }
}

/* Front page mobile layout reset */
@media (max-width: 900px) {
  html,
  body {
    max-width: 100%;
  }

  main,
  footer,
  .hero,
  .section,
  .cta-band {
    max-width: 100%;
  }

  .hero-inner,
  .story,
  .faq-wrap,
  .cta-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy,
  .visual-panel,
  .search-preview,
  .story-text,
  .faq-panel,
  .cta-inner > *,
  .footer-inner > * {
    min-width: 0;
  }

  .visual-panel {
    justify-content: stretch;
    width: 100%;
  }

  .search-preview {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-inner {
    display: block;
  }

  .hero-copy {
    max-width: none;
  }

  .visual-panel {
    margin-top: 28px;
  }

  .search-preview {
    box-shadow: 0 14px 34px rgba(16, 32, 34, .1);
  }

  .preview-list div:nth-child(3) {
    display: none;
  }

  .nav {
    justify-content: flex-start;
  }

  .brand {
    margin-right: auto;
  }

  .nav-links {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .brand.has-logo .brand-mark {
    width: 74px;
  }

  .brand.has-logo .brand-mark img {
    max-width: 74px;
  }

  .theme-toggle {
    display: none;
  }

  .nav-cta {
    padding: 0 10px;
  }

  h1 {
    font-size: 2rem;
  }
}

/* Mobile overflow guard */
@media (max-width: 900px) {
  .topbar,
  .nav {
    overflow: visible;
  }

  .nav-links {
    z-index: 30;
  }

  .bot-badge::after,
  .team-section::before {
    content: none !important;
    display: none !important;
  }
}

/* Legal pages should never depend on scroll reveal */
.legal-hero,
.legal-section,
.legal-hero.reveal-ready,
.legal-section.reveal-ready {
  opacity: 1;
  transform: none;
  visibility: visible;
}
