/* =========================================================
   meil.no — modern product landing
   ========================================================= */

/* -----------------------------
   1. Tokens
   ----------------------------- */
:root {
  /* Neutrals */
  --bg:           #FAFAF9;
  --bg-2:         #F4F4F5;
  --surface:      #FFFFFF;
  --surface-2:    #FAFAFA;
  --surface-3:    #F4F4F5;
  --surface-4:    #E4E4E7;

  --text:         #09090B;
  --text-2:       #27272A;
  --text-soft:    #3F3F46;
  --text-muted:   #71717A;
  --text-faint:   #A1A1AA;

  --border:       rgba(9, 9, 11, 0.08);
  --border-2:     rgba(9, 9, 11, 0.14);
  --border-strong:rgba(9, 9, 11, 0.28);

  /* Accent — cobalt blue */
  --accent:       #1D4ED8;
  --accent-2:     #3B82F6;
  --accent-soft:  #DBEAFE;
  --accent-softer:#EFF6FF;
  --accent-deep:  #1E3A8A;
  --accent-glow:  rgba(29, 78, 216, 0.22);

  /* Functional */
  --ok:           #059669;
  --ok-soft:      #D1FAE5;
  --info:         #2563EB;
  --info-soft:    #DBEAFE;
  --warn:         #F59E0B;
  --warn-soft:    #FEF3C7;
  --rose:         #F43F5E;
  --rose-soft:    #FFE4E6;
  --violet:       #8B5CF6;
  --violet-soft:  #EDE9FE;

  /* Dark mode surface (for manifest & dark mockups) */
  --dark:         #0A0A0B;
  --dark-2:       #18181B;
  --dark-3:       #27272A;
  --on-dark:      #FAFAFA;
  --on-dark-2:    #A1A1AA;

  /* Typography */
  --font-sans:    "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-mono:    "Geist Mono", "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Radii */
  --r-xs:  6px;
  --r-sm:  10px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-2xl: 36px;
  --r-full: 999px;

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(9,9,11,0.04);
  --sh-sm: 0 1px 2px rgba(9,9,11,0.05), 0 2px 6px rgba(9,9,11,0.05);
  --sh:    0 1px 3px rgba(9,9,11,0.04), 0 8px 16px -4px rgba(9,9,11,0.06);
  --sh-md: 0 2px 4px rgba(9,9,11,0.04), 0 16px 32px -8px rgba(9,9,11,0.10);
  --sh-lg: 0 4px 10px rgba(9,9,11,0.06), 0 32px 60px -16px rgba(9,9,11,0.16);
  --sh-xl: 0 8px 16px rgba(9,9,11,0.06), 0 48px 100px -24px rgba(9,9,11,0.22);
  --sh-focus: 0 0 0 4px var(--accent-glow);

  /* Motion */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Rhythm */
  --container: 1280px;
  --gutter:    clamp(1.25rem, 4vw, 2.5rem);
}

/* -----------------------------
   2. Reset & base
   ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { min-height: 100%; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: -0.005em;
}
::selection { background: var(--accent); color: #fff; }

/* Subtle dot grid in background */
.dot-grid {
  position: fixed; inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(9,9,11,0.045) 1px, transparent 1px);
  background-size: 22px 22px;
  background-position: 0 0;
  opacity: 1;
  mask-image: linear-gradient(180deg, #000 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 80%);
}

/* -----------------------------
   3. Layout primitives
   ----------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 2;
}

.section { padding-block: clamp(5rem, 9vw, 8rem); position: relative; scroll-margin-top: 90px; }
section[id], .section[id], .hero[id] { scroll-margin-top: 90px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  box-shadow: var(--sh-xs);
}
.eyebrow .accent {
  color: var(--accent);
}

.section-head { max-width: 820px; margin-bottom: clamp(3rem, 5vw, 4rem); }
.section-head .eyebrow { margin-bottom: 1.25rem; }
.section-title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(2.25rem, 4.8vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--text);
  max-width: 20ch;
  font-feature-settings: "ss01", "cv11";
}
.section-title .accent { color: var(--accent); }

.section-lede {
  margin-top: 1.25rem;
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 58ch;
  letter-spacing: -0.005em;
}

/* -----------------------------
   4. Buttons
   ----------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 10px 18px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: var(--r-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 180ms var(--ease-soft), color 180ms var(--ease-soft),
              transform 180ms var(--ease-out), border-color 180ms, box-shadow 180ms;
  white-space: nowrap;
  position: relative;
  isolation: isolate;
}
.btn svg { transition: transform 280ms var(--ease-out); flex: 0 0 auto; }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--text);
  color: var(--surface);
  border-color: var(--text);
  box-shadow: var(--sh-sm);
}
.btn--primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--sh-md), 0 0 0 3px var(--accent-glow);
}

.btn--accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 1px 2px rgba(29,78,216,0.20), 0 6px 16px -4px rgba(29,78,216,0.35);
}
.btn--accent:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  transform: translateY(-1px);
}

.btn--ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-2);
  box-shadow: var(--sh-xs);
}
.btn--ghost:hover {
  border-color: var(--text);
  transform: translateY(-1px);
}

.btn--lg { padding: 14px 22px; font-size: 15.5px; }
.btn--sm { padding: 7px 12px; font-size: 13px; }

/* -----------------------------
   5. Nav
   ----------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  padding-top: 14px;
  pointer-events: none;
}
.nav > * { pointer-events: auto; }
body { padding-top: 76px; }
.nav-inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 8px 10px 8px 18px;
  margin-inline: var(--gutter);
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: saturate(1.4) blur(20px);
  backdrop-filter: saturate(1.4) blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  box-shadow: 0 1px 2px rgba(9,9,11,0.04), 0 6px 20px -8px rgba(9,9,11,0.08);
}
@media (min-width: 1320px) {
  .nav-inner { margin-inline: auto; }
}

.brand {
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.brand .accent { color: var(--accent); }

.nav-mid {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-inline: auto;
}
.nav-mid a {
  padding: 7px 12px;
  font-size: 14px;
  color: var(--text-soft);
  border-radius: var(--r-full);
  transition: background 180ms, color 180ms;
}
.nav-mid a:hover { background: var(--surface-3); color: var(--text); }

/* Segmented Personlig/Bedrift toggle — shared between pages */
.nav-toggle {
  display: inline-flex;
  background: var(--surface-3);
  padding: 3px;
  border-radius: var(--r-full);
  border: 1px solid var(--border);
  margin-right: 0.5rem;
}
.nav-toggle a {
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--r-full);
  letter-spacing: -0.005em;
  transition: color 180ms, background 180ms;
}
.nav-toggle a:hover { color: var(--text); background: transparent; }
.nav-toggle a.on {
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 1px 2px rgba(9,9,11,0.06);
}

.nav-end { display: flex; align-items: center; gap: 6px; }
.nav-login {
  font-size: 14px;
  padding: 7px 12px;
  color: var(--text);
  border-radius: var(--r-full);
  transition: background 180ms;
}
.nav-login:hover { background: var(--surface-3); }

@media (max-width: 860px) {
  .nav-mid { display: none; }
}

/* -----------------------------
   6. Hero
   ----------------------------- */
.hero {
  position: relative;
  padding-block: clamp(3.5rem, 6vw, 5rem) clamp(4rem, 7vw, 6rem);
  overflow: hidden;
}
.aurora {
  position: absolute;
  inset: -10% -10% 20% -10%;
  z-index: 0;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.75;
}
.aurora::before,
.aurora::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.aurora::before {
  width: 550px; height: 550px;
  top: -10%; left: -10%;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.55), rgba(59, 130, 246, 0) 65%);
}
.aurora::after {
  width: 650px; height: 650px;
  top: 20%; right: -15%;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.30), rgba(139, 92, 246, 0) 65%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}
@media (min-width: 1040px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.55fr);
  }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 6px 12px 6px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.01em;
  color: var(--text-soft);
  box-shadow: var(--sh-xs);
}
.hero-pill .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent);
  animation: pulse 2.4s infinite var(--ease-out);
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(29, 78, 216, 0.55); }
  80%  { box-shadow: 0 0 0 8px rgba(29, 78, 216, 0); }
  100% { box-shadow: 0 0 0 0 rgba(29, 78, 216, 0); }
}

.hero-headline {
  margin-top: 1.75rem;
  font-weight: 500;
  font-size: clamp(2.75rem, 6.5vw, 5.75rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--text);
  font-feature-settings: "ss01", "cv11", "ss04";
}
.hero-headline .accent { color: var(--accent); }

.hero-sub {
  margin-top: 1.5rem;
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.5;
  color: var(--text-soft);
  max-width: 44ch;
  letter-spacing: -0.01em;
}

/* -----------------------------
   7. Claim form
   ----------------------------- */
.claim { margin-top: 2rem; max-width: 520px; }

.claim-field {
  display: flex;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-full);
  padding: 6px;
  transition: border-color 200ms, box-shadow 200ms;
}
.claim-field:focus-within {
  border-color: var(--text);
  box-shadow: var(--sh-focus);
}

.claim-input-wrap {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 0 6px 0 16px;
}
.claim-input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0; background: transparent;
  padding: 10px 4px;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
}
.claim-input:focus { outline: none; }
.claim-input::placeholder {
  color: var(--text-faint);
  font-weight: 400;
}
.claim-suffix {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--text-muted);
  align-self: center;
  padding-right: 8px;
  white-space: nowrap;
}
.claim-submit {
  background: var(--text);
  color: var(--surface);
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-size: 14.5px;
  font-weight: 500;
  border-radius: var(--r-full);
  transition: background 200ms var(--ease-soft), transform 180ms;
  white-space: nowrap;
}
.claim-submit:hover { background: var(--accent); transform: translateY(-1px); }
.claim-submit svg { transition: transform 280ms var(--ease-out); }
.claim-submit:hover svg { transform: translateX(3px); }

.claim-status {
  margin-top: 0.75rem;
  min-height: 22px;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-muted);
  letter-spacing: 0.005em;
  transition: color 180ms;
}
.claim-status .dot {
  flex: 0 0 8px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--text-faint);
}
.claim-status.is-available { color: var(--ok); }
.claim-status.is-available .dot { background: var(--ok); }
.claim-status.is-taken, .claim-status.is-invalid { color: var(--accent); }
.claim-status.is-taken .dot, .claim-status.is-invalid .dot { background: var(--accent); }

.claim-foot {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--text-muted);
  max-width: 48ch;
}
.claim-foot a {
  color: var(--text);
  border-bottom: 1px solid var(--border-2);
}
.claim-foot a:hover { border-color: var(--accent); color: var(--accent); }

.claim-input.is-shake { animation: shake 520ms var(--ease-out); }
@keyframes shake {
  10%,90% { transform: translateX(-1px); }
  20%,80% { transform: translateX(2px); }
  30%,50%,70% { transform: translateX(-4px); }
  40%,60% { transform: translateX(4px); }
}
.claim-input:disabled, .claim-submit:disabled { opacity: 0.72; cursor: default; }

code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: var(--surface-3);
  border: 1px solid var(--border);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--text);
  letter-spacing: 0;
}

@media (max-width: 600px) {
  .claim-field { flex-direction: column; padding: 4px; border-radius: var(--r-lg); }
  .claim-input-wrap { padding: 4px 14px 0 14px; }
  .claim-input { font-size: 16px; padding: 8px 0; }
  .claim-suffix { padding: 0 14px 8px; }
  .claim-submit {
    width: 100%; padding: 12px;
    border-radius: var(--r-md);
    justify-content: center;
  }
}

/* -----------------------------
   8. Hero visual (inbox + float card)
   ----------------------------- */
.hero-visual {
  position: relative;
  perspective: 1600px;
}

/* App frame shared */
.app {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xl);
  overflow: hidden;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text);
  position: relative;
  isolation: isolate;
}
.app-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.app-chrome .dots { display: inline-flex; gap: 5px; }
.app-chrome .dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--surface-4);
}
.app-chrome .addr {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 4px 10px;
  max-width: 340px;
  margin-inline: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app-chrome .app-right {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 6px;
}

/* Hero inbox layout */
.hero-visual .app {
  transform: perspective(1800px) rotateX(1deg) rotateY(-2deg);
  transition: transform 800ms var(--ease-out);
}
.hero-visual:hover .app { transform: perspective(1800px) rotateX(0) rotateY(0); }

.inbox {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) minmax(0, 1.15fr);
  min-height: 490px;
}
.inbox > * { min-width: 0; }
.inbox-side {
  padding: 14px 10px;
  border-right: 1px solid var(--border);
  background: var(--surface-2);
  display: flex; flex-direction: column; gap: 14px;
}
.inbox-compose {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--text); color: var(--surface);
  padding: 8px 10px;
  border-radius: var(--r-sm);
  font-size: 12.5px; font-weight: 500;
  justify-content: center;
}
.inbox-compose::before {
  content: ""; width: 14px; height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round'><path d='M7 2v10M2 7h10'/></svg>");
}

.inbox-nav { display: flex; flex-direction: column; gap: 1px; }
.inbox-nav a {
  display: flex; align-items: center; gap: 9px;
  padding: 6px 10px;
  border-radius: var(--r-sm);
  font-size: 12.5px;
  color: var(--text-soft);
  line-height: 1.2;
}
.inbox-nav a .count {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-faint);
}
.inbox-nav a.active {
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 500;
}
.inbox-nav a.active .count { color: var(--accent-deep); }
.inbox-nav a .ic {
  width: 14px; height: 14px; color: currentColor; opacity: 0.7;
}
.inbox-nav-head {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding: 6px 10px 2px;
  margin-top: 4px;
  border-top: 1px solid var(--border);
}
.tag { width: 8px; height: 8px; border-radius: 2px; background: var(--info); flex: 0 0 8px; }
.tag.g { background: var(--ok); }
.tag.a { background: var(--warn); }
.tag.v { background: var(--violet); }

.inbox-list { border-right: 1px solid var(--border); background: var(--surface); }
.inbox-search {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 8px;
  background: var(--surface);
}
.inbox-search::before {
  content: "";
  width: 13px; height: 13px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%2371717A' stroke-width='1.6' stroke-linecap='round'><circle cx='6' cy='6' r='4'/><path d='M12 12L9 9'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

.mail-list { list-style: none; padding: 0; margin: 0; }
.mail-item {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 2px 10px;
}
.mail-item .avatar {
  grid-row: span 3;
  align-self: start;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--info-soft);
  color: var(--info);
  display: flex; align-items: center; justify-content: center;
  font-size: 10.5px; font-weight: 600;
}
.mail-item .avatar.g { background: var(--ok-soft); color: var(--ok); }
.mail-item .avatar.a { background: var(--warn-soft); color: var(--warn); }
.mail-item .avatar.v { background: var(--violet-soft); color: var(--violet); }
.mail-item .avatar.r { background: var(--rose-soft); color: var(--rose); }
.mail-item .sender { font-weight: 600; font-size: 12.5px; color: var(--text); }
.mail-item .date {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-muted);
  text-align: right;
  white-space: nowrap;
}
.mail-item .subject {
  grid-column: 2 / span 2;
  font-size: 12.5px; color: var(--text); font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mail-item .snippet {
  grid-column: 2 / span 2;
  font-size: 11.5px; color: var(--text-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mail-item.pinned .sender::before {
  content: "◆ "; color: var(--accent);
  font-size: 9px; margin-right: 2px;
}
.mail-item.selected {
  background: linear-gradient(90deg, var(--accent-soft) 0%, rgba(219,234,254,0) 100%);
  box-shadow: inset 3px 0 0 var(--accent);
}
.mail-item.unread .sender, .mail-item.unread .subject { font-weight: 600; }

.inbox-prev {
  padding: 18px 20px 22px;
  display: flex; flex-direction: column; gap: 12px;
  background: var(--surface);
}
.inbox-prev .inbox-subj {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}
.inbox-prev .from-row {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.inbox-prev .from-row .avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--info-soft); color: var(--info);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600;
}
.inbox-prev .from-row .from-text { flex: 1; font-size: 12px; }
.inbox-prev .from-row .from-text b {
  color: var(--text); font-weight: 600; font-size: 13px;
}
.inbox-prev .from-row .from-text span { color: var(--text-muted); }
.inbox-prev .from-row .time {
  font-family: var(--font-mono); font-size: 10.5px; color: var(--text-muted);
}
.inbox-prev .body {
  font-size: 13px; line-height: 1.6; color: var(--text-soft);
}
.inbox-prev .body p + p { margin-top: 10px; }
.inbox-prev .chip-row { display: flex; gap: 6px; flex-wrap: wrap; }

.chip {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px;
  padding: 3px 9px;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  color: var(--text-muted);
  background: var(--surface);
}
.chip.accent {
  background: var(--accent-soft);
  border-color: transparent;
  color: var(--accent-deep);
}

/* Floating card over hero visual */
.float-card {
  position: absolute;
  bottom: -22px;
  left: -18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 14px;
  box-shadow: var(--sh-xl);
  display: flex; gap: 10px; align-items: flex-start;
  width: 260px;
  z-index: 2;
  transform: rotate(-3deg);
  animation: floatIn 1200ms 600ms var(--ease-spring) both;
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px) rotate(-3deg) scale(0.95); }
  to   { opacity: 1; transform: rotate(-3deg) scale(1); }
}
.float-card .avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--ok-soft); color: var(--ok);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600;
  flex: 0 0 32px;
}
.float-card .ft-title { font-size: 12.5px; font-weight: 600; color: var(--text); }
.float-card .ft-snip { font-size: 11.5px; color: var(--text-muted); line-height: 1.45; margin-top: 2px; }
.float-card .ft-meta {
  font-family: var(--font-mono);
  font-size: 10px; color: var(--text-muted);
  margin-top: 6px;
  display: flex; gap: 8px; align-items: center;
}
.float-card .ft-meta::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
@media (max-width: 1039px) {
  .hero-visual { margin-inline: auto; max-width: 780px; }
  .float-card { left: 0; bottom: -30px; }
}
@media (max-width: 600px) {
  .inbox { grid-template-columns: 1fr; min-height: 0; }
  .inbox-side { border-right: 0; border-bottom: 1px solid var(--border); }
  .inbox-list { border-right: 0; border-bottom: 1px solid var(--border); }
  .hero-visual,
  .float-card { display: none; }
}

/* -----------------------------
   9. Stats strip (I tall)
   ----------------------------- */
.stats {
  padding-block: clamp(3.5rem, 6vw, 5rem);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.stats-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.stats-head .eyebrow { margin-bottom: 0.875rem; }
.stats-head h2 {
  font-weight: 500;
  font-size: clamp(1.625rem, 2.8vw, 2.125rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
  max-width: 28ch;
  margin-inline: auto;
}
.stats-head h2 .accent { color: var(--accent); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2.5rem 1.5rem;
  text-align: center;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: calc(-0.75rem - 1px);
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: var(--border);
}
@media (max-width: 560px) {
  .stat + .stat::before { display: none; }
}
.stat-num {
  font-weight: 500;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--text);
  font-feature-settings: "ss01";
}
.stat-num .accent { color: var(--accent); }
.stat-num .unit {
  font-size: 0.5em;
  font-family: var(--font-mono);
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-left: 4px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-transform: uppercase;
  max-width: 22ch;
  line-height: 1.3;
}

/* -----------------------------
   10. Bento grid
   ----------------------------- */
.bento-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
}
@media (max-width: 900px) { .bento-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bento-grid { grid-template-columns: 1fr; } }

.tile {
  grid-column: span 2;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: transform 300ms var(--ease-out), box-shadow 300ms, border-color 200ms;
  box-shadow: var(--sh-xs);
}
.tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: var(--border-2);
}
.tile .kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.tile h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
}
.tile p {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-soft);
  max-width: 32ch;
}

.tile--wide { grid-column: span 4; }
.tile--tall { grid-row: span 2; }
.tile--full { grid-column: span 6; }
.tile--dark {
  background: var(--dark);
  color: var(--on-dark);
  border-color: var(--dark-3);
}
.tile--dark h3 { color: var(--on-dark); }
.tile--dark p { color: var(--on-dark-2); }
.tile--dark .kicker { color: var(--accent-2); }

@media (max-width: 900px) {
  .tile { grid-column: span 2; }
  .tile--wide { grid-column: span 2; }
  .tile--full { grid-column: span 2; }
  .tile--tall { grid-row: auto; }
}
@media (max-width: 560px) {
  .tile, .tile--wide, .tile--full { grid-column: span 1; }
}

/* Tile internals */
.tile .tile-visual { margin-top: auto; position: relative; }

/* Permanent tile — big name lockup */
.tile-name {
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.035em;
  color: var(--text);
  line-height: 1;
}
.tile-name .at { color: var(--text-muted); font-weight: 400; }
.tile-name .lock {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--accent-soft);
  color: var(--accent-deep);
  padding: 4px 10px;
  border-radius: var(--r-full);
  vertical-align: middle;
  margin-left: 10px;
  font-weight: 500;
}
.tile-timeline {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 16px;
}
.tile-timeline .node {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border-2);
  flex: 0 0 10px;
}
.tile-timeline .node.active {
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.tile-timeline .line {
  flex: 1;
  height: 2px;
  margin: 0 4px;
  background: repeating-linear-gradient(90deg, var(--border-2) 0 4px, transparent 4px 8px);
}
.tile-timeline .inf {
  font-size: 18px;
  line-height: 1;
  color: var(--accent);
  font-weight: 600;
  padding-left: 8px;
  flex: 0 0 auto;
}
.tile-timeline-cap {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
  padding-right: 6px;
}
.tile-timeline-cap .to { color: var(--accent); font-weight: 600; }

/* Norway tile — map visual */
.tile .norway-map {
  width: 88px;
  height: 120px;
  margin-left: auto;
}
.tile .norway-pin {
  position: absolute;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--accent-soft), 0 0 0 8px rgba(29,78,216,0.12);
  animation: pulsePin 2.5s ease-out infinite;
}
@keyframes pulsePin {
  0%, 100% { box-shadow: 0 0 0 4px var(--accent-soft), 0 0 0 8px rgba(29,78,216,0.12); }
  50%      { box-shadow: 0 0 0 6px var(--accent-soft), 0 0 0 14px rgba(29,78,216,0.05); }
}

/* Price tile */
.tile-price {
  display: flex; align-items: baseline; gap: 8px;
  font-weight: 500;
  font-size: clamp(3rem, 6vw, 4.5rem);
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}
.tile-price .unit {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Privacy tile (dark) — toggle */
.tile--dark .toggle-row {
  display: flex; align-items: center; gap: 10px;
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--on-dark-2);
}
.tile--dark .toggle {
  width: 30px; height: 18px;
  border-radius: var(--r-full);
  background: var(--ok);
  position: relative;
  flex: 0 0 30px;
}
.tile--dark .toggle::after {
  content: "";
  position: absolute;
  top: 2px; left: 14px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: left 240ms var(--ease-out);
}
.tile--dark .toggle.off { background: var(--dark-3); }
.tile--dark .toggle.off::after { left: 2px; }

/* -----------------------------
   11. Manifest (privacy — now only used on /preview/bedrift/)
   ----------------------------- */
.manifest {
  background: var(--dark);
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
  border-radius: var(--r-2xl);
  margin-inline: var(--gutter);
  margin-block: clamp(4rem, 7vw, 7rem);
}
@media (min-width: 1360px) {
  .manifest { margin-inline: auto; max-width: var(--container); }
}
.manifest .container { padding-inline: clamp(1.5rem, 4vw, 3rem); }
.manifest::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 15% 0%, rgba(59,130,246,0.35), transparent),
    radial-gradient(ellipse 50% 60% at 100% 100%, rgba(139,92,246,0.22), transparent);
  pointer-events: none;
}
.manifest > .container { position: relative; }
.manifest .eyebrow { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); color: var(--on-dark-2); }
.manifest .section-title { color: var(--on-dark); max-width: 24ch; }
.manifest .section-title .accent { color: var(--accent-2); }
.manifest .section-lede { color: var(--on-dark-2); }
.manifest-quote {
  margin-top: 3rem;
  font-weight: 400;
  font-size: clamp(1.375rem, 2.4vw, 2.125rem);
  line-height: 1.25;
  color: var(--on-dark);
  letter-spacing: -0.02em;
  max-width: 32ch;
}
.manifest-quote .accent { color: var(--accent-2); }
.manifest-list {
  margin-top: 3.5rem;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.manifest-list h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--on-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}
.manifest-list h3::before {
  content: "";
  display: inline-block;
  width: 14px; height: 14px;
  margin-right: 10px;
  vertical-align: -1px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path fill='none' stroke='%233B82F6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3 7.5l2.5 2.5L11 4.5'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
.manifest-list p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--on-dark-2);
  padding-left: 24px;
}

/* -----------------------------
   12. Dark content band (for business page)
   Wraps multiple sections in a continuous dark region,
   with gradient mesh and dark typography treatment.
   ----------------------------- */
.biz-dark {
  background: var(--dark);
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
}
.biz-dark::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(59,130,246,0.22), transparent),
    radial-gradient(ellipse 60% 60% at 100% 100%, rgba(139,92,246,0.14), transparent);
  pointer-events: none;
  z-index: 0;
}
.biz-dark > .section { position: relative; z-index: 1; }
.biz-dark > .section + .section {
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Typography overrides inside dark band */
.biz-dark .section-title { color: var(--on-dark); }
.biz-dark .section-title .accent { color: var(--accent-2); }
.biz-dark .section-lede { color: var(--on-dark-2); }

.biz-dark .eyebrow {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--on-dark-2);
  box-shadow: none;
}
.biz-dark .eyebrow::before { background: var(--accent-2); }

/* clean-list — dark variant */
.biz-dark .clean-list h3 { color: var(--on-dark); }
.biz-dark .clean-list p { color: var(--on-dark-2); }
.biz-dark .clean-list h3::before {
  background-color: rgba(59, 130, 246, 0.18);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path fill='none' stroke='%233B82F6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3 7.5l2.5 2.5L11 4.5'/></svg>");
}

.biz-dark code {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: var(--on-dark);
}

/* Neutralize manifest's rounded-pill treatment when inside biz-dark */
.biz-dark .manifest {
  background: transparent;
  border-radius: 0;
  margin: 0;
  overflow: visible;
}
.biz-dark .manifest::before { display: none; }

/* -----------------------------
   12c. Clean list (light-bg variant of manifest-list)
   ----------------------------- */
.clean-list {
  list-style: none;
  padding: 0;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem 2.5rem;
}
.clean-list li { max-width: 44ch; }
.clean-list h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.clean-list h3::before {
  content: "";
  flex: 0 0 16px;
  width: 16px; height: 16px;
  background-color: var(--accent-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path fill='none' stroke='%231D4ED8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3 7.5l2.5 2.5L11 4.5'/></svg>");
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 5px;
}
.clean-list p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-soft);
  padding-left: 26px;
}

/* -----------------------------
   13. Comparison
   ----------------------------- */
.compare-wrap {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.compare-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.compare-table th, .compare-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.compare-table th:first-child, .compare-table td:first-child {
  text-align: left; color: var(--text-soft);
  font-weight: 500;
}
.compare-table thead th {
  background: var(--surface-2);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-block: 16px;
}
.compare-table thead th.us {
  background: var(--text);
  color: var(--surface);
  position: relative;
}
.compare-table thead th.us::after {
  content: ""; position: absolute;
  left: 0; right: 0; top: 0; height: 3px;
  background: var(--accent);
}
.compare-table .y {
  color: var(--ok); font-weight: 600;
}
.compare-table .y::before {
  content: "";
  display: inline-block;
  width: 14px; height: 14px;
  vertical-align: -2px;
  margin-right: 6px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path fill='none' stroke='%23059669' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M3 7.5l2.5 2.5L11 4.5'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
.compare-table .n { color: var(--text-faint); }
.compare-table .n::before {
  content: "−"; margin-right: 4px; font-weight: 600;
}
.compare-table .us-col {
  background: linear-gradient(180deg, rgba(29,78,216,0.05), rgba(29,78,216,0.02));
  color: var(--text);
  font-weight: 500;
}
.compare-table tr:last-child td { border-bottom: 0; }

@media (max-width: 760px) {
  .compare-wrap { overflow-x: auto; }
  .compare-table { min-width: 680px; }
}

/* -----------------------------
   14. Provenance (WAYSCloud)
   ----------------------------- */
/* Six concrete trust reasons */
.prov-reasons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 720px)  { .prov-reasons { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }
@media (min-width: 1080px) { .prov-reasons { grid-template-columns: repeat(4, 1fr); } }

.prov-reason {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: border-color 220ms var(--ease-out),
              transform 220ms var(--ease-out),
              box-shadow 220ms var(--ease-out);
}
.prov-reason:hover {
  border-color: rgba(29, 78, 216, 0.35);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.prov-reason-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--accent-soft);
  color: var(--accent-deep);
  border-radius: 10px;
  flex-shrink: 0;
}
.prov-reason-icon svg {
  width: 22px; height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.prov-reason h4 {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  margin: 0;
}
.prov-reason p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0;
}

/* Independence from Big Tech — contrast cards */
.indep-block {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--border);
}
.indep-head {
  width: 100%;
  max-width: 860px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.indep-head .indep-lede { max-width: 58ch; margin-left: auto; margin-right: auto; }
.indep-head .eyebrow { margin-bottom: 1rem; }
.indep-title {
  font-weight: 500;
  font-size: clamp(1.875rem, 3.6vw, 2.875rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.indep-title .accent { color: var(--accent); }
.indep-lede {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 58ch;
}

.indep-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 720px)  { .indep-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }
@media (min-width: 1080px) { .indep-grid { grid-template-columns: repeat(3, 1fr); } }

.indep-card {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color 220ms var(--ease-out),
              transform 220ms var(--ease-out),
              box-shadow 220ms var(--ease-out);
}
.indep-card:hover {
  border-color: rgba(29, 78, 216, 0.28);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.indep-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 0.25rem;
}
.indep-company {
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--text);
  text-decoration: line-through;
  text-decoration-color: rgba(9, 9, 11, 0.35);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.indep-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 3px 9px;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  flex-shrink: 0;
}
.indep-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.indep-row-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.indep-row--them .indep-row-label { color: var(--text-faint); }
.indep-row--us   .indep-row-label { color: var(--accent); }
.indep-row p {
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
}
.indep-row--them p { color: var(--text-muted); }
.indep-row--us   p { color: var(--text-soft); }
.indep-divider {
  height: 1px;
  background: var(--border);
}

.indep-close {
  margin: clamp(2.5rem, 5vw, 3.5rem) 0 0;
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
  color: var(--text);
  letter-spacing: -0.025em;
  font-weight: 500;
  line-height: 1.25;
  max-width: 34ch;
  border-left: 3px solid var(--accent);
  padding: 0.25rem 0 0.25rem 1.25rem;
}
.indep-close .accent { color: var(--accent); }

/* -----------------------------
   16. Pricing
   ----------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* Fix grid overflow: cards content forceren min-width 0 */
.pricing-grid > * { min-width: 0; }
@media (max-width: 620px) {
  .pricing-grid { max-width: 100%; }
  .price-name, .price-list li { word-wrap: break-word; overflow-wrap: break-word; }
}
@media (min-width: 760px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}

.price {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem 2rem 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  position: relative;
  transition: border-color 220ms, transform 320ms var(--ease-out), box-shadow 220ms;
  box-shadow: var(--sh-xs);
}
.price.featured {
  border-color: var(--text);
  box-shadow: var(--sh-lg);
}
.price.featured::before, .price.soon::before {
  position: absolute;
  top: -12px; left: 1.75rem;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-full);
  font-weight: 500;
}
.price.featured::before {
  content: attr(data-badge);
  background: var(--accent);
  color: #fff;
}
.price.featured[data-badge=""]::before { display: none; }
.price.soon::before {
  content: "Kommer";
  background: var(--surface-3);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.price:hover { transform: translateY(-3px); }

.price-name {
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.price-name .soon-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 6px;
}
.price-tag {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.5;
}
.price-amount-row { display: flex; align-items: baseline; gap: 8px; }
.price-amount {
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.04em;
}
.price-period {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
}

.price-list {
  list-style: none; padding: 1.25rem 0 0; margin: 0;
  border-top: 1px solid var(--border);
  display: grid; gap: 10px;
}
.price-list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px; align-items: start;
  font-size: 14.5px;
  color: var(--text-soft);
}
.price-list li::before {
  content: ""; width: 16px; height: 16px; margin-top: 3px;
  background-color: var(--ok-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path fill='none' stroke='%23059669' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3 7.5l2.5 2.5L11 4.5'/></svg>");
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 6px;
}
.price.soon .price-list li::before {
  background-color: var(--surface-3);
  background-image: none;
  border: 1px solid var(--border);
}

.price-foot { margin-top: auto; padding-top: 1rem; }
.price-foot .btn { width: 100%; }

/* -----------------------------
   17. FAQ
   ----------------------------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(15,23,42,0.08);
  transition: background 200ms var(--ease-out, ease);
}
.faq-item:first-child { border-top: 1px solid rgba(15,23,42,0.08); }
.faq-item[open] { background: rgba(29,78,216,0.028); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.5rem 3.5rem 1.5rem 0.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.005em;
  position: relative;
  transition: color 140ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary > span:first-child { flex: 1; }

.faq-icon {
  position: absolute;
  right: 0.25rem;
  top: 50%;
  width: 32px; height: 32px;
  border: 1px solid rgba(15,23,42,0.12);
  border-radius: 999px;
  background: #fff;
  transform: translateY(-50%);
  transition: all 240ms var(--ease-out, ease);
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--text-muted);
  border-radius: 2px;
  transition: transform 240ms var(--ease-out, ease), background 240ms;
}
.faq-icon::before {
  width: 12px; height: 1.6px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 1.6px; height: 12px;
  transform: translate(-50%, -50%);
}
.faq-item:hover .faq-icon {
  border-color: var(--accent);
}
.faq-item:hover .faq-icon::before,
.faq-item:hover .faq-icon::after {
  background: var(--accent);
}
.faq-item[open] .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-50%) rotate(180deg);
}
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
  background: #fff;
}
.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-body {
  padding: 0 3rem 1.75rem 0.25rem;
  animation: faq-fade 320ms var(--ease-out, ease);
}
@keyframes faq-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.faq-body p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
  max-width: 68ch;
}
.faq-body p + p { margin-top: 0.75rem; }
.faq-body a { color: var(--text); border-bottom: 1px solid var(--border); }
.faq-body a:hover { color: var(--accent); border-color: var(--accent); }
.faq-body code {
  font-size: 0.85em;
  padding: 2px 6px;
  background: rgba(15,23,42,0.06);
  border-radius: 6px;
  color: var(--text);
}

/* -----------------------------
   18. Finale
   ----------------------------- */
.finale {
  text-align: center;
  padding-block: clamp(6rem, 11vw, 10rem);
  position: relative;
  overflow: hidden;
}
.finale::before {
  content: "";
  position: absolute;
  inset: -20% -20% auto -20%;
  height: 80%;
  background: radial-gradient(ellipse at center top, var(--accent-glow) 0%, transparent 55%);
  pointer-events: none;
  filter: blur(40px);
}
.finale > .container { position: relative; }
.finale .eyebrow { margin-bottom: 1.5rem; }
.finale h2 {
  font-weight: 500;
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
}
.finale h2 .accent { color: var(--accent); }
.finale-actions {
  margin-top: 2.25rem;
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
}
.finale-foot {
  margin-top: 1.75rem;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

/* -----------------------------
   19. Footer
   ----------------------------- */
.footer {
  border-top: 1px solid var(--border);
  padding-block: clamp(3rem, 5vw, 4.5rem) 2.5rem;
  background: var(--surface-2);
}
.footer-grid {
  display: grid; gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; }
}
.colophon-title {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.colophon-title .accent { color: var(--accent); }
.colophon-note {
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
  max-width: 32ch;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.875rem;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.footer-col a {
  font-size: 14px;
  color: var(--text-soft);
  transition: color 180ms;
}
.footer-col a:hover { color: var(--accent); }
.footer-col li.is-soon {
  font-size: 14px;
  color: var(--text-faint);
  cursor: default;
}
.footer-col li.is-soon em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-left: 6px;
  padding: 1px 6px;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  opacity: 0.75;
}
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.03em;
  color: var(--text-faint);
}

/* -----------------------------
   19b. Scroll experiences
   Counters, word splits, scroll-linked animations,
   card tilt, directional reveals.
   ----------------------------- */

/* Word-by-word reveal (data-split="true") */
[data-split] .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
  transition-delay: calc(var(--i, 0) * 42ms);
  will-change: opacity, transform;
}
[data-split].is-visible .w {
  opacity: 1;
  transform: none;
}

/* Card tilt — tilt on hover (for [data-tilt]) */
[data-tilt] {
  transition: transform 360ms var(--ease-out), box-shadow 360ms var(--ease-out);
  transform-style: preserve-3d;
  will-change: transform;
}

/* Nav spy — active state */
.nav-mid a.is-active {
  color: var(--text);
  background: var(--surface-3);
}

/* Scroll-driven animations (modern browsers) */
@supports (animation-timeline: view()) {
  @keyframes sd-fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes sd-scale {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
  }
  @keyframes sd-parallax-up {
    from { transform: translateY(60px); }
    to   { transform: translateY(-40px); }
  }
  @keyframes sd-line-grow {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
  }

  /* Apply scroll animations when user enables them */
  .sd-fade-up {
    animation: sd-fade-up linear both;
    animation-timeline: view();
    animation-range: entry 5% cover 30%;
  }
  .sd-scale {
    animation: sd-scale linear both;
    animation-timeline: view();
    animation-range: entry 5% cover 40%;
  }
  .sd-parallax {
    animation: sd-parallax-up linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  .sd-line-grow {
    transform-origin: left center;
    animation: sd-line-grow linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 40%;
  }
}

/* Reduced motion — turn off scroll animations */
@media (prefers-reduced-motion: reduce) {
  [data-split] .w { opacity: 1 !important; transform: none !important; transition: none !important; }
  .sd-fade-up, .sd-scale, .sd-parallax, .sd-line-grow { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* -----------------------------
   20. Reveal
   ----------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 60ms; }
.reveal[data-delay="2"] { transition-delay: 120ms; }
.reveal[data-delay="3"] { transition-delay: 200ms; }
.reveal[data-delay="4"] { transition-delay: 280ms; }

/* Hero intro stagger */
.hero .hero-pill,
.hero .hero-headline,
.hero .hero-sub,
.hero .claim,
.hero .hero-trust,
.hero .hero-visual {
  opacity: 0;
  transform: translateY(18px);
  animation: heroIn 900ms var(--ease-out) forwards;
}
.hero .hero-pill      { animation-delay: 80ms; }
.hero .hero-headline  { animation-delay: 180ms; }
.hero .hero-sub       { animation-delay: 300ms; }
.hero .claim          { animation-delay: 420ms; }
.hero .hero-trust     { animation-delay: 540ms; }
.hero .hero-visual    { animation-delay: 360ms; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* -----------------------------
   20b. Service showcase (clickable tabs)
   ----------------------------- */
.svc-showcase {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(1rem, 2vw, 1.5rem);
  box-shadow: var(--sh-sm);
}

.svc-tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.svc-tabs::-webkit-scrollbar { display: none; }

.svc-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--r-full);
  cursor: pointer;
  white-space: nowrap;
  transition: color 180ms, background 180ms, box-shadow 180ms;
}
.svc-tab svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.svc-tab:hover { color: var(--text); background: rgba(9, 9, 11, 0.04); }
.svc-tab.is-active {
  color: var(--text);
  background: var(--surface);
  box-shadow: var(--sh-xs, 0 1px 2px rgba(9,9,11,0.06));
}
.svc-tab.is-active svg { color: var(--accent); }
.svc-tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.svc-panels { margin-top: 1.5rem; }
.svc-panel {
  display: none;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  padding: 0.5rem;
}
@media (min-width: 860px) {
  .svc-panel {
    grid-template-columns: 4fr 5fr;
    gap: 3rem;
    padding: 1.25rem;
  }
}
.svc-panel.is-active {
  display: grid;
  animation: svcFadeIn 280ms var(--ease-out);
}
.svc-panel[hidden] { display: none; }
.svc-panel.is-active[hidden] { display: grid; }

@keyframes svcFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

.svc-copy { padding: 0.25rem 0; }
.svc-copy .svc-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.svc-copy .svc-label::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--accent);
}
.svc-copy h3 {
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
}
.svc-copy h3 .accent { color: var(--accent); }
.svc-copy > p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 48ch;
}
.svc-copy ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 8px;
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.5;
}
.svc-copy ul li {
  padding-left: 1.25rem;
  position: relative;
}
.svc-copy ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.svc-copy ul li code {
  font-family: var(--font-mono);
  font-size: 12.5px;
  padding: 1px 6px;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--r-xs);
  color: var(--text);
}

.svc-visual { min-width: 0; }
.svc-app {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  overflow: hidden;
  font-size: 13px;
}
.svc-app-body {
  padding: 1rem 1.1rem;
  min-height: 300px;
}

/* Shared avatar */
.svc-ava {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  flex-shrink: 0;
  background: var(--surface-3);
  color: var(--text-muted);
}
.svc-ava.accent { background: var(--accent-soft); color: var(--accent-deep); }
.svc-ava.ok     { background: var(--ok-soft, #d1fae5); color: var(--ok, #059669); }
.svc-ava.warn   { background: var(--warn-soft, #fef3c7); color: #b45309; }
.svc-ava.violet { background: var(--violet-soft, #ede9fe); color: var(--violet, #6d28d9); }

/* --- Inbox mockup --- */
.svc-mock-inbox { display: grid; gap: 2px; }
.svc-mail {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 8px;
  border-radius: var(--r-sm);
  transition: background 160ms;
}
.svc-mail:hover { background: var(--surface-2); }
.svc-mail-text { min-width: 0; }
.svc-mail-from {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.svc-mail-subj {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.svc-mail-time {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-faint);
  letter-spacing: 0.02em;
}
.svc-mail.is-unread .svc-mail-from,
.svc-mail.is-unread .svc-mail-subj { color: var(--text); }
.svc-mail.is-unread .svc-mail-from { font-weight: 600; }
.svc-mail.is-unread {
  position: relative;
}
.svc-mail.is-unread::before {
  content: "";
  position: absolute;
  left: -2px; top: 50%; transform: translateY(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

/* --- Calendar mockup --- */
.svc-mock-cal { display: grid; gap: 10px; }
.svc-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.svc-cal-month {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
}
.svc-cal-nav {
  display: inline-flex;
  gap: 3px;
  padding: 3px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-muted);
}
.svc-cal-nav span {
  padding: 3px 8px;
  border-radius: var(--r-full);
  cursor: default;
}
.svc-cal-nav span.on {
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 1px 2px rgba(9,9,11,0.05);
}
.svc-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  font-size: 11px;
}
.svc-cal-grid .wd {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding-bottom: 4px;
}
.svc-cal-grid .day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: var(--r-xs);
  font-weight: 500;
  color: var(--text-soft);
  background: var(--surface);
  font-size: 10px;
  overflow: hidden;
}
.svc-cal-grid .day.dim { color: var(--text-faint); background: var(--surface-2); }
.svc-cal-grid .day.wk  { background: var(--surface-2); }
.svc-cal-grid .day.today {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  font-weight: 600;
}
.svc-cal-grid .day .ev {
  display: block;
  margin-top: auto;
  font-size: 8.5px;
  font-weight: 500;
  padding: 1.5px 4px;
  background: var(--surface-3);
  color: var(--text-soft);
  border-radius: 3px;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.svc-cal-grid .day .ev.accent {
  background: var(--accent-soft);
  color: var(--accent-deep);
}
.svc-cal-grid .day.today .ev,
.svc-cal-grid .day.today .ev.accent {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* --- Contacts mockup --- */
.svc-mock-contacts { display: grid; gap: 2px; }
.svc-ct-group {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  padding: 10px 8px 4px;
}
.svc-ct {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: var(--r-sm);
  transition: background 160ms;
}
.svc-ct:hover { background: var(--surface-2); }
.svc-ct .name { font-size: 13px; font-weight: 500; color: var(--text); }
.svc-ct .email { font-size: 11.5px; font-family: var(--font-mono); color: var(--text-muted); margin-top: 1px; }
.svc-ct-phone {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}
@media (max-width: 520px) {
  .svc-ct-phone { display: none; }
}

/* --- Files mockup --- */
.svc-mock-files { display: grid; gap: 4px; }
.svc-file {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: var(--r-sm);
  transition: background 160ms;
}
.svc-file:hover { background: var(--surface-2); }
.svc-file .name { font-size: 13px; font-weight: 500; color: var(--text); }
.svc-file .meta { font-size: 11px; font-family: var(--font-mono); color: var(--text-muted); margin-top: 1px; }
.svc-file-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
}
.svc-file-ic {
  width: 32px; height: 32px;
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.svc-file-ic svg { width: 20px; height: 20px; }
.svc-file-ic.folder { background: var(--accent-soft); color: var(--accent-deep); }
.svc-file-ic.pdf    { background: #fee2e2; color: #b91c1c; }
.svc-file-ic.img    { background: #dcfce7; color: #059669; }
.svc-file-ic.doc    { background: #dbeafe; color: #1d4ed8; }
.svc-file-ic.zip    { background: #fef3c7; color: #b45309; }

/* --- Document mockup --- */
.svc-mock-doc { padding-top: 8px; }
.svc-doc-title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 6px;
}
.svc-doc-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.svc-doc-para {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 10px;
}
.svc-doc-para strong { color: var(--text); font-weight: 600; }
.svc-doc-cursor {
  display: inline-block;
  width: 1.5px;
  height: 1em;
  vertical-align: -2px;
  background: var(--accent);
  margin-left: 2px;
  animation: svcCursor 1s steps(2) infinite;
}
@keyframes svcCursor { 50% { opacity: 0; } }

/* -----------------------------
   21. Inline icons (24px default)
   ----------------------------- */
.ic { width: 20px; height: 20px; stroke-width: 1.6; stroke: currentColor; fill: none; }

/* =============================
   22. Mobile safety & refinement
   Prevents horizontal scroll and scales components
   proportionally down to ~320px viewports.
   ============================= */

/* Media never escapes its container */
img, svg, video, canvas, iframe, embed, object {
  max-width: 100%;
  height: auto;
}

/* Long unbreakable strings wrap instead of pushing width.
   Note: .brand is intentionally excluded — it's a single lockup
   ("meil.no" + optional "for bedrift") that must never wrap. */
.svc-mail-from, .svc-mail-subj,
.svc-ct .name, .svc-ct .email,
.svc-file .name, .svc-file .meta,
.indep-company,
code, .mono, dd.mono {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.brand { white-space: nowrap; }

/* Tablet / small desktop tightening */
@media (max-width: 760px) {
  .hero { padding-block: clamp(2.5rem, 6vw, 3.75rem) clamp(3rem, 7vw, 4.5rem); }
  .hero-visual .app { transform: none; }

  /* Service showcase — tighter inside panel */
  .svc-panel { padding: 0.25rem; }
  .svc-app-body { padding: 0.9rem 1rem; min-height: 260px; }
  .svc-tab { padding: 9px 12px; font-size: 13.5px; }

  /* Indep cards — wrap head if tight */
  .indep-card-head { flex-wrap: wrap; row-gap: 6px; }
}

/* Phone-sized (<=480px) — main squeeze layer */
@media (max-width: 480px) {
  :root { --gutter: 1.1rem; }

  .section       { padding-block: clamp(2.5rem, 10vw, 3.5rem); }
  .section-head  { margin-bottom: clamp(2rem, 8vw, 2.75rem); }
  .section-title { font-size: clamp(1.75rem, 9vw, 2.25rem); line-height: 1.1; }
  .section-lede  { font-size: 0.9375rem; }

  /* Nav */
  .nav-inner { padding: 9px 11px; }
  .brand     { font-size: 15.5px; }
  .nav-login { font-size: 12.5px; padding: 6px 10px; }

  /* Hero */
  .hero           { padding-block: 2rem 2.75rem; }
  .hero-headline  { font-size: clamp(2.125rem, 11vw, 2.875rem); }
  .hero-sub       { font-size: 1rem; }
  .hero-visual .app { transform: none; }

  /* Inbox mockup stacking already kicks in at 600px; reinforce spacing */
  .inbox-side   { padding: 10px 8px; gap: 10px; }
  .inbox-search { font-size: 12px; }
  .mail-item    { gap: 8px; }

  /* Bento tiles — tighter inner padding */
  .tile { padding: 1.5rem 1.25rem; }

  /* Service showcase */
  .svc-showcase { padding: 1rem; }
  .svc-panels   { margin-top: 1rem; }
  .svc-panel    { gap: 1.25rem; padding: 0.25rem; }
  .svc-app-body { min-height: 220px; padding: 0.85rem; }
  .svc-copy h3  { font-size: 1.3rem; line-height: 1.2; }
  .svc-tab span { font-size: 13px; }
  .svc-ct-phone, .svc-file-date { font-size: 10.5px; }

  /* Calendar in showcase — compact */
  .svc-cal-grid .day { padding: 3px; font-size: 9.5px; }
  .svc-cal-grid .day .ev { font-size: 8px; padding: 1px 3px; }

  /* Pricing cards */
  .price        { padding: 1.75rem 1.5rem; }
  .price-amount { font-size: clamp(2.25rem, 12vw, 3rem); }

  /* Provenance + Independence tiles */
  .prov-reason  { padding: 1.25rem; }
  .indep-card   { padding: 1.25rem; }
  .indep-company { font-size: 14px; }
  .indep-tag    { font-size: 9.5px; padding: 2px 7px; }
  .indep-close  { font-size: 1.2rem; padding-left: 0.85rem; }

  /* FAQ */
  .faq-item summary { font-size: 14.5px; padding: 1rem 1.1rem; }
  .faq-body         { padding: 0 1.1rem 1rem; font-size: 14px; }

  /* Footer */
  .footer-grid       { gap: 2rem; }
  .colophon-title    { font-size: 16px; }
  .footer-col h4     { font-size: 13px; }
  .footer-col a,
  .footer-col li.is-soon { font-size: 13.5px; }
  .footer-bottom     { font-size: 10.5px; }
}

/* Extra-narrow (<=360px) — final squeeze */
@media (max-width: 360px) {
  :root { --gutter: 0.85rem; }
  .hero-headline  { font-size: 1.9rem; }
  .section-title  { font-size: 1.55rem; }
  .svc-tab        { padding: 8px 10px; gap: 6px; }
  .svc-tab svg    { width: 14px; height: 14px; }
}

/* Guarantee: no element can spawn horizontal scroll on any viewport.
   overflow-x: clip in modern browsers (no scrolling context created);
   falls back gracefully via existing `body { overflow-x: hidden }` rule. */
html { overflow-x: clip; }
@supports not (overflow-x: clip) {
  html { overflow-x: hidden; }
}

/* =============================
   23. Motion layer — purposeful, understated
   All transitions auto-disabled by the global prefers-reduced-motion block.
   Durations: 120ms (press) · 200-300ms (state) · 500-700ms (reveal)
   Easing: ease-out variants only — no bounce, no elastic.
   ============================= */

/* --- 23.1 Button press feedback (active state; hover already has translateY) --- */
.btn:active,
.claim-submit:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 90ms;
}

/* --- 23.2 Nav on scroll: smoother transition, tiny blur --- */
.nav-inner {
  transition: background 320ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1),
              backdrop-filter 320ms cubic-bezier(0.22, 1, 0.36, 1),
              -webkit-backdrop-filter 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
.nav.is-scrolled .nav-inner {
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 2px rgba(9,9,11,0.05), 0 8px 24px -8px rgba(9,9,11,0.08);
}

/* --- 23.3 FAQ body animates in when [open] --- */
.faq-item[open] .faq-body {
  animation: faqBodyIn 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes faqBodyIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* --- 23.4 Service showcase: sliding pill indicator --- */
.svc-tabs { position: relative; }
.svc-tab-indicator {
  position: absolute;
  top: 4px; bottom: 4px;
  left: 0;
  width: 0;  /* set by JS */
  background: var(--surface);
  border-radius: var(--r-full);
  box-shadow: 0 1px 2px rgba(9,9,11,0.08);
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
              width 380ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
  pointer-events: none;
}
.svc-tab { position: relative; z-index: 1; }
.svc-tab.is-active { background: transparent; box-shadow: none; }
.svc-tab:hover:not(.is-active) { background: rgba(9, 9, 11, 0.04); }

/* --- 23.5 Stats: staggered reveal of children (counter tween is separate) --- */
.stats-grid.is-visible > * {
  animation: statStaggerIn 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.stats-grid.is-visible > *:nth-child(1) { animation-delay:   0ms; }
.stats-grid.is-visible > *:nth-child(2) { animation-delay:  80ms; }
.stats-grid.is-visible > *:nth-child(3) { animation-delay: 160ms; }
.stats-grid.is-visible > *:nth-child(4) { animation-delay: 240ms; }
.stats-grid.is-visible > *:nth-child(5) { animation-delay: 320ms; }
.stats-grid.is-visible > *:nth-child(6) { animation-delay: 400ms; }
@keyframes statStaggerIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* --- 23.6 Independence cards: strike-through draws on when card enters view --- */
.indep-company {
  text-decoration: none;        /* remove static line-through */
  position: relative;
  display: inline-block;
}
.indep-company::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;          /* starts collapsed on the left */
  top: calc(50% + 0.05em);
  height: 1.5px;
  background: rgba(9, 9, 11, 0.38);
  transition: right 680ms cubic-bezier(0.22, 1, 0.36, 1) 160ms;
}
.indep-card.is-visible .indep-company::after {
  right: 0;                      /* draws full width */
}

/* --- 23.7 Claim form: soft green pulse when name is-available --- */
@keyframes claimAvailablePulse {
  0%   { box-shadow: 0 0 0 0 rgba(5,150,105,0); background-color: rgba(5,150,105,0); }
  35%  { box-shadow: 0 0 0 6px rgba(5,150,105,0.08); background-color: rgba(5,150,105,0.04); }
  100% { box-shadow: 0 0 0 0 rgba(5,150,105,0);     background-color: rgba(5,150,105,0); }
}
.claim-status.is-available {
  border-radius: var(--r-full);
  padding: 2px 10px;
  margin-left: -10px;
  animation: claimAvailablePulse 900ms cubic-bezier(0.22, 1, 0.36, 1);
}
.claim-status.is-available .dot {
  animation: dotPop 420ms cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes dotPop {
  0%   { transform: scale(0.6); }
  60%  { transform: scale(1.25); }
  100% { transform: scale(1); }
}

/* ── Mobile menu ── */
.nav-burger {
  display: none;
  align-items: center; justify-content: center;
  width: 44px; height: 44px; padding: 0;
  background: transparent; border: 1px solid transparent;
  color: var(--text); cursor: pointer;
  border-radius: 10px;
  transition: border-color 140ms ease, background 140ms ease;
  flex-shrink: 0;
}
.nav-burger:hover { border-color: var(--border); background: var(--surface-3); }

.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(86%, 360px);
  background: var(--surface, #fff);
  border-left: 1px solid var(--border);
  box-shadow: -16px 0 40px rgba(0,0,0,0.12);
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.16,1,0.3,1);
  z-index: 1000;
  overflow: hidden;
  padding: 18px 20px 24px;
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-inner {
  display: flex; flex-direction: column; gap: 4px;
  flex: 1;
  min-height: 0;
}

/* Drawer top bar: language picker (left) + close (right) */
.mobile-drawer-inner .md-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
  min-height: 38px;
}
.mobile-drawer-inner .md-top .lang-switch { margin-right: 0; }
.mobile-drawer-inner .lang-switch ul { right: auto; left: 0; }
.mobile-drawer-inner .md-close {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--text);
  cursor: pointer;
  transition: background 140ms ease, border-color 140ms ease;
  padding: 0;
}
.mobile-drawer-inner .md-close:hover { background: var(--surface-3); border-color: var(--border); }
.mobile-drawer-inner .md-close svg { stroke: currentColor; }
.mobile-drawer-inner a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-radius: 12px;
  color: var(--text); text-decoration: none;
  font-size: 16px; font-weight: 550;
  transition: background 140ms ease;
}
.mobile-drawer-inner a:hover, .mobile-drawer-inner a.on { background: var(--surface-3); color: var(--accent); }
.mobile-drawer-inner .md-section {
  margin-top: 12px; padding: 8px 16px 4px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted);
}
.mobile-drawer-inner .md-switch {
  display: flex; gap: 4px; background: var(--surface-2, rgba(0,0,0,0.04));
  border-radius: 999px; padding: 4px; margin-bottom: 8px;
}
.mobile-drawer-inner .md-switch a {
  flex: 1; text-align: center; padding: 10px 12px;
  border-radius: 999px; font-size: 14px; font-weight: 600;
  justify-content: center;
}
.mobile-drawer-inner .md-switch a.on {
  background: var(--surface, #fff);
  color: var(--accent);
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

.mobile-drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0; pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 999;
}
.mobile-drawer-backdrop.open { opacity: 1; pointer-events: auto; }

body.drawer-open { overflow: hidden; }

@media (max-width: 860px) {
  .nav-burger { display: inline-flex; margin-left: auto; }
  .nav-end .nav-login,
  .nav-end .lang-switch,
  .nav-end .btn--primary { display: none !important; }
  .nav-end { gap: 0; }
  .nav-inner { gap: 0.5rem; padding: 8px 10px 8px 14px; }
}

/* Drawer: primary CTA card (cloned from nav-end) — pinned to bottom */
.mobile-drawer-inner .md-cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: auto;
  margin-bottom: 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--text);
  color: var(--bg, #fff);
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(9,9,11,0.08);
  transition: transform 140ms ease, box-shadow 140ms ease;
}
.mobile-drawer-inner .md-cta:hover {
  background: var(--text);
  color: var(--bg, #fff);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(9,9,11,0.12);
}
.mobile-drawer-inner .md-cta svg { stroke: currentColor; }

/* Drawer: language row */
.mobile-drawer-inner .md-langs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  background: var(--surface-2, rgba(0,0,0,0.04));
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 8px;
}
.mobile-drawer-inner .md-langs a {
  display: flex; align-items: center; justify-content: center;
  padding: 9px 6px;
  border-radius: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: background 140ms ease, color 140ms ease;
}
.mobile-drawer-inner .md-langs a:hover { background: transparent; color: var(--text); }
.mobile-drawer-inner .md-langs a.on {
  background: var(--surface, #fff);
  color: var(--accent);
  box-shadow: 0 1px 2px rgba(9,9,11,0.06);
}

/* Dark mode fixes voor drawer */
body.biz .mobile-drawer { background: var(--surface, #0b0d12); border-left-color: var(--border); }
body.biz .mobile-drawer-inner .md-switch { background: rgba(255,255,255,0.06); }
body.biz .mobile-drawer-inner .md-switch a.on { background: var(--surface-2, #1a1d24); color: var(--accent); }
body.biz .mobile-drawer-inner .md-langs { background: rgba(255,255,255,0.06); }
body.biz .mobile-drawer-inner .md-langs a.on { background: var(--surface-2, #1a1d24); color: var(--accent); }
body.biz .mobile-drawer-inner .md-cta { background: var(--accent); color: #fff; }
body.biz .mobile-drawer-inner .md-cta:hover { background: var(--accent); color: #fff; }

html[data-theme="dark"] .mobile-drawer-inner .md-langs { background: rgba(255,255,255,0.06); }
html[data-theme="dark"] .mobile-drawer-inner .md-langs a { color: var(--text-muted); }
html[data-theme="dark"] .mobile-drawer-inner .md-langs a.on { background: var(--surface-2); color: var(--accent); }

@media (max-width: 480px) {
  .btn--primary.btn--sm { padding: 7px 12px; font-size: 13px; }
  .brand { font-size: 16px; }
  .nav-inner { padding: 7px 8px 7px 14px; }
  .nav-burger { width: 40px; height: 40px; }
}

/* ── Uavhengighet: tabbed menu ── */
.indep-tabs { max-width: 860px; margin: 0 auto; }
.indep-tablist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background: var(--surface-2, rgba(0,0,0,0.04));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 6px;
  margin-bottom: 1.5rem;
}
.indep-tab {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px;
  padding: 12px 10px;
  background: transparent;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 160ms ease, box-shadow 160ms ease;
  font-family: inherit;
  color: var(--text-muted);
  min-height: 64px;
  justify-content: center;
}
.indep-tab:hover { background: rgba(0,0,0,0.03); }
.indep-tab.on {
  background: var(--surface, #fff);
  color: var(--text);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.indep-tab-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--accent);
}
.indep-tab.on .indep-tab-tag { color: var(--accent); }
.indep-tab-name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  color: inherit;
}

.indep-panels { position: relative; }
.indep-panel {
  display: none;
  background: var(--surface, #fff);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  animation: indepFade 240ms cubic-bezier(0.16,1,0.3,1);
}
.indep-panel.active { display: block; }

@keyframes indepFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 620px) {
  .indep-tablist { grid-template-columns: 1fr; gap: 4px; }
  .indep-tab { flex-direction: row; justify-content: space-between; min-height: auto; padding: 12px 14px; text-align: left; }
  .indep-tab-tag { order: 2; }
  .indep-tab-name { order: 1; text-align: left; flex: 1; }
  .indep-panel { padding: 1.25rem 1rem; }
}

/* Dark variant voor business-page (biz) */
body.biz .indep-tablist { background: rgba(255,255,255,0.04); }
body.biz .indep-tab:hover { background: rgba(255,255,255,0.06); }
body.biz .indep-tab.on { background: var(--surface-2, #1a1d24); box-shadow: 0 1px 3px rgba(0,0,0,0.4); }

/* Indep manifest — European sovereignty statement */
.indep-manifest {
  display: flex;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto 2rem;
  padding: 1.75rem 1.75rem 1.75rem 1.75rem;
  background: linear-gradient(135deg, rgba(29,78,216,0.035) 0%, rgba(29,78,216,0.012) 100%);
  border: 1px solid rgba(29,78,216,0.18);
  border-left: 3px solid var(--accent);
  border-radius: 14px;
}
.indep-manifest-mark {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent);
  color: #fff;
}
.indep-manifest-body { flex: 1; min-width: 0; }
.indep-manifest-title {
  font-size: 1.125rem; font-weight: 650;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.indep-manifest-body p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.indep-manifest-body p:last-child { margin-bottom: 0; }
.indep-manifest-body strong { color: var(--text); font-weight: 650; }

@media (max-width: 620px) {
  .indep-manifest { flex-direction: column; gap: 0.75rem; padding: 1.25rem 1rem; border-left-width: 3px; }
  .indep-manifest-mark { width: 36px; height: 36px; }
  .indep-manifest-title { font-size: 1rem; }
  .indep-manifest-body p { font-size: 0.875rem; line-height: 1.55; }
}

/* Dark variant voor bedrift-body */
body.biz .indep-manifest {
  background: linear-gradient(135deg, rgba(88,166,255,0.08) 0%, rgba(88,166,255,0.025) 100%);
  border-color: rgba(88,166,255,0.25);
  border-left-color: var(--accent);
}

/* ── Uavhengighet — premium redesign ── */
.indep-block { position: relative; padding: 2rem 0; }
.indep-block::before {
  content: '';
  position: absolute; inset: 0 -20% auto -20%; height: 800px;
  background: radial-gradient(ellipse at 50% 0, rgba(29,78,216,0.06), transparent 60%);
  pointer-events: none; z-index: 0;
}
.indep-head { position: relative; z-index: 1; text-align: center; max-width: 860px; margin: 0 auto 3rem; }
.indep-head .eyebrow { display: inline-block; margin-bottom: 1.25rem; }
.indep-title { font-size: clamp(2rem, 6vw, 3.75rem); letter-spacing: -0.035em; line-height: 1.02; font-weight: 700; margin-bottom: 1.25rem; }
.indep-title .accent { background: linear-gradient(135deg, var(--accent, #1D4ED8) 0%, #3b82f6 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.indep-lede { font-size: clamp(1rem, 2vw, 1.125rem); line-height: 1.65; color: var(--text-muted); max-width: 56ch; margin: 0 auto; }

.indep-manifest {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: auto 1fr; gap: 1.5rem 2rem;
  max-width: 860px; margin: 0 auto 3.5rem;
  padding: 2.5rem 2.75rem 2.25rem;
  background: var(--surface, #fff);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(15,23,42,0.03), 0 24px 48px rgba(15,23,42,0.06);
}
.indep-manifest::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(29,78,216,0.45), rgba(29,78,216,0.08) 50%, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.indep-manifest-quote {
  font-family: Georgia, serif;
  font-size: 5rem; line-height: 0.7;
  color: var(--accent); opacity: 0.22;
  grid-row: 1 / span 5; align-self: start;
  font-weight: 700; margin-top: 0.15em;
}
.indep-manifest-body { min-width: 0; }
.indep-manifest-title {
  font-size: clamp(1.25rem, 2.4vw, 1.625rem);
  font-weight: 700; letter-spacing: -0.015em;
  line-height: 1.2; color: var(--text);
  margin-bottom: 1rem;
}
.indep-manifest-lead {
  font-size: 0.9375rem; line-height: 1.65;
  color: var(--text-secondary, #3f3f46);
  margin-bottom: 1.25rem;
}
.indep-laws {
  list-style: none; padding: 0; margin: 0 0 1.25rem;
  display: flex; flex-direction: column; gap: 0.625rem;
  border-top: 1px dashed rgba(29,78,216,0.25);
  border-bottom: 1px dashed rgba(29,78,216,0.25);
  padding: 1rem 0;
}
.indep-laws li { display: grid; grid-template-columns: 110px 1fr; gap: 0.875rem; align-items: baseline; font-size: 0.875rem; line-height: 1.5; }
.indep-laws .law-code {
  font-family: var(--font-mono, ui-monospace, 'SF Mono', monospace);
  font-weight: 700; font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.04em; text-transform: uppercase;
  white-space: nowrap;
}
.indep-laws .law-desc { color: var(--text-muted); }

.indep-manifest-foot {
  margin-top: 1.5rem;
  display: flex; align-items: center; gap: 0.625rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  flex-wrap: wrap;
}
.indep-pledge-mark {
  width: 26px; height: 26px;
  background: var(--accent); color: #fff;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.indep-pledge-text {
  font-weight: 600; color: var(--text);
  flex: 1; min-width: 0;
  letter-spacing: -0.005em;
}
.indep-pledge-sig {
  font-family: Georgia, serif; font-style: italic;
  color: var(--text-muted); font-size: 0.875rem;
}

/* Tabs refined */
.indep-tabs { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }
.indep-tablist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem;
  background: var(--surface-2, rgba(0,0,0,0.035));
  border: 1px solid var(--border);
  border-radius: 18px;
}
.indep-tab {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.875rem 1rem;
  background: transparent; border: 1px solid transparent;
  border-radius: 14px; cursor: pointer; font-family: inherit;
  min-height: 72px;
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.indep-tab:hover:not(.on) { background: rgba(0,0,0,0.025); }
.indep-tab.on {
  background: var(--surface, #fff);
  border-color: var(--border);
  box-shadow: 0 1px 3px rgba(15,23,42,0.06), 0 8px 20px rgba(15,23,42,0.05);
  transform: translateY(-1px);
}
.indep-tab-num {
  font-family: var(--font-mono, ui-monospace, 'SF Mono', monospace);
  font-size: 0.75rem; font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  padding: 4px 7px;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}
.indep-tab.on .indep-tab-num {
  background: var(--accent); color: #fff;
  border-color: var(--accent);
}
.indep-tab-body { display: flex; flex-direction: column; gap: 2px; text-align: left; min-width: 0; }
.indep-tab-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent);
}
.indep-tab-name {
  font-size: 13px; font-weight: 600; line-height: 1.25;
  color: var(--text);
}

.indep-panel {
  display: none;
  background: var(--surface, #fff);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 2.25rem;
  box-shadow: 0 1px 2px rgba(15,23,42,0.03), 0 12px 32px rgba(15,23,42,0.05);
  animation: indepFadeIn 320ms cubic-bezier(0.16,1,0.3,1);
}
.indep-panel.active { display: block; }
@keyframes indepFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.indep-row-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.indep-row-dot { width: 8px; height: 8px; border-radius: 999px; display: inline-block; flex-shrink: 0; }
.indep-row-dot.them { background: #dc2626; }
.indep-row-dot.us { background: #059669; }
.indep-row--them .indep-row-label { color: var(--text-muted); }
.indep-row--us .indep-row-label { color: var(--accent); }
.indep-row p { font-size: 0.9375rem; line-height: 1.65; color: var(--text-secondary, #3f3f46); }
.indep-row--them p { color: var(--text-muted); }
.indep-divider { height: 1px; background: var(--border); margin: 1.25rem 0; }

.indep-close {
  position: relative; z-index: 1;
  max-width: 860px; margin: 3.5rem auto 0;
  padding: 1.75rem 2rem;
  text-align: center;
  background: var(--surface, #fff);
  border: 1px solid var(--border);
  border-radius: 18px;
  font-size: clamp(1.25rem, 2.4vw, 1.625rem);
  font-weight: 600; letter-spacing: -0.015em;
  line-height: 1.4;
  color: var(--text);
}
.indep-close-mark {
  font-family: Georgia, serif;
  font-size: 1.75em; line-height: 0.5;
  color: var(--accent); opacity: 0.4;
  display: block; margin-bottom: -0.5em;
}
.indep-close-text { display: block; }
.indep-close .accent {
  background: linear-gradient(135deg, var(--accent, #1D4ED8) 0%, #3b82f6 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Mobile adjustments */
@media (max-width: 720px) {
  .indep-manifest { grid-template-columns: 1fr; padding: 1.75rem 1.5rem 1.5rem; gap: 1rem; }
  .indep-manifest-quote { font-size: 3.5rem; margin-bottom: -1.25rem; grid-row: auto; }
  .indep-laws li { grid-template-columns: 1fr; gap: 0.25rem; }
  .indep-laws .law-code { font-size: 0.6875rem; }
  .indep-tablist { grid-template-columns: 1fr; gap: 0.375rem; padding: 0.375rem; }
  .indep-tab { grid-template-columns: auto 1fr; padding: 0.75rem 0.875rem; min-height: auto; }
  .indep-tab-num { font-size: 0.6875rem; padding: 3px 6px; }
  .indep-panel { padding: 1.25rem 1.25rem; }
  .indep-manifest-foot { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .indep-pledge-sig { align-self: flex-end; }
  .indep-close { margin-top: 2rem; padding: 1.25rem 1.25rem; }
}

/* Dark variant (bedrift) */
body.biz .indep-block::before { background: radial-gradient(ellipse at 50% 0, rgba(88,166,255,0.10), transparent 60%); }
body.biz .indep-manifest { background: var(--surface, #121620); }
body.biz .indep-manifest::before { background: linear-gradient(135deg, rgba(88,166,255,0.45), rgba(88,166,255,0.08) 50%, transparent); }
body.biz .indep-tab:hover:not(.on) { background: rgba(255,255,255,0.03); }
body.biz .indep-tab.on { background: var(--surface-2, #1a1d24); box-shadow: 0 1px 3px rgba(0,0,0,0.4), 0 8px 20px rgba(0,0,0,0.3); }
body.biz .indep-panel { background: var(--surface-2, #1a1d24); }
body.biz .indep-close { background: var(--surface-2, #1a1d24); }
body.biz .indep-laws { border-color: rgba(88,166,255,0.3); }

/* ── Site footer ── */
.site-footer { background: transparent; /* match body-bg */
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.875rem;
}
.site-footer-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
}
.site-footer-brand .brand { font-size: 18px; font-weight: 700; display: inline-block; margin-bottom: 0.5rem; }
.site-footer-brand .accent { color: var(--accent); }
.site-footer-brand p { font-size: 0.8125rem; line-height: 1.55; max-width: 32ch; }
.site-footer-brand a { color: var(--text); border-bottom: 1px solid var(--border); }
.site-footer-brand a:hover { color: var(--accent); border-color: var(--accent); }
.site-footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.site-footer-col h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text); margin-bottom: 0.75rem; font-weight: 700; }
.site-footer-col a {
  display: block; color: var(--text-muted);
  padding: 4px 0; font-size: 0.875rem; line-height: 1.5;
  transition: color 140ms ease;
}
.site-footer-col a:hover { color: var(--accent); }
.site-footer-bottom {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; margin-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem; flex-wrap: wrap; gap: 0.75rem;
}
.site-footer-flag { opacity: 0.7; }
@media (max-width: 720px) {
  .site-footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer-nav { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 440px) {
  .site-footer-nav { grid-template-columns: 1fr 1fr; }
  .site-footer-bottom { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* Dark variant */
body.biz .site-footer { background: rgba(255,255,255,0.03); }

@media (max-width: 520px) {
  }

/* ── Language switcher in nav ── */
.lang-switch {
  position: relative;
  margin-right: 4px;
}
.lang-switch summary {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  cursor: pointer;
  list-style: none;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--text);
  transition: background 140ms ease, border-color 140ms ease;
}
.lang-switch summary::-webkit-details-marker { display: none; }
.lang-switch summary:hover, .lang-switch[open] summary { background: var(--surface-3, rgba(0,0,0,0.04)); border-color: var(--border); }
.lang-switch ul {
  position: absolute; top: calc(100% + 4px); right: 0;
  list-style: none; padding: 6px; margin: 0;
  background: var(--surface, #fff);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15,23,42,0.12);
  min-width: 140px;
  z-index: 20;
}
.lang-switch li { margin: 0; }
.lang-switch a {
  display: block; padding: 8px 12px;
  color: var(--text); text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
}
.lang-switch a:hover { background: var(--accent); color: #fff; }
@media (max-width: 520px) {
  .lang-switch ul { right: -20px; }
}

/* Dark variant */
body.biz .lang-switch ul { background: var(--surface, #121620); }

/* ── Dark mode tokens (data-theme="dark") ── */
:root[data-theme="dark"], html[data-theme="dark"] {
  --bg: #0d1117;
  --surface: #161b22;
  --surface-2: #1c222c;
  --surface-3: #21262d;
  --text: #e6edf3;
  --text-soft: #c9d1d9;
  --text-muted: #8b949e;
  --text-faint: #6e7681;
  --border: rgba(230, 237, 243, 0.10);
  --border-strong: rgba(230, 237, 243, 0.24);
  --accent: #58a6ff;
  --accent-soft: rgba(88, 166, 255, 0.18);
  --accent-softer: rgba(88, 166, 255, 0.08);
  --accent-deep: #79b8ff;
  --accent-glow: rgba(88, 166, 255, 0.28);
  --sh-xs: 0 1px 2px rgba(0, 0, 0, 0.4);
  --sh-sm: 0 2px 6px rgba(0, 0, 0, 0.45);
  --sh-md: 0 8px 20px rgba(0, 0, 0, 0.5);
  --sh-lg: 0 20px 40px rgba(0, 0, 0, 0.55);
  --sh-focus: 0 0 0 4px var(--accent-glow);
}

/* Body + foundational */
html[data-theme="dark"], html[data-theme="dark"] body {
  background: var(--bg);
  color: var(--text);
}
html[data-theme="dark"] body { color-scheme: dark; }

/* Cards/surfaces (manifest, indep-close, indep-panel, plan-cards) */
html[data-theme="dark"] .indep-manifest,
html[data-theme="dark"] .indep-panel,
html[data-theme="dark"] .indep-close,
html[data-theme="dark"] .price,
html[data-theme="dark"] .mobile-drawer {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}
html[data-theme="dark"] .site-footer { background: transparent; border-top-color: var(--border); }
html[data-theme="dark"] .site-footer-col a { color: var(--text-muted); }
html[data-theme="dark"] .site-footer-col a:hover { color: var(--accent); }
html[data-theme="dark"] .site-footer-bottom { border-top-color: var(--border); }
html[data-theme="dark"] .site-footer-brand p { color: var(--text-muted); }
html[data-theme="dark"] .site-footer-brand a { color: var(--text); border-bottom-color: var(--border); }

/* Lang-picker dropdown */
html[data-theme="dark"] .lang-switch ul { background: var(--surface); border-color: var(--border); }
html[data-theme="dark"] .lang-switch a { color: var(--text); }

/* Mobile drawer items */
html[data-theme="dark"] .mobile-drawer-inner a { color: var(--text); }
html[data-theme="dark"] .mobile-drawer-inner a:hover,
html[data-theme="dark"] .mobile-drawer-inner a.on { background: var(--surface-3); }

/* Independence tabs */
html[data-theme="dark"] .indep-tablist { background: var(--surface-2); border-color: var(--border); }
html[data-theme="dark"] .indep-tab { color: var(--text-muted); }
html[data-theme="dark"] .indep-tab:hover:not(.on) { background: rgba(255,255,255,0.03); }
html[data-theme="dark"] .indep-tab.on { background: var(--surface); border-color: var(--border); color: var(--text); }
html[data-theme="dark"] .indep-tab-num { border-color: var(--border); }
html[data-theme="dark"] .indep-tab.on .indep-tab-num { background: var(--accent); color: var(--bg); border-color: var(--accent); }
html[data-theme="dark"] .indep-row-dot.them { background: #f85149; }
html[data-theme="dark"] .indep-row-dot.us { background: #3fb950; }

/* Hero lede/text muted */
html[data-theme="dark"] .hero-lede,
html[data-theme="dark"] .section-lede,
html[data-theme="dark"] .indep-lede,
html[data-theme="dark"] .indep-manifest-lead,
html[data-theme="dark"] .eyebrow { color: var(--text-muted); }

/* FAQ details */
html[data-theme="dark"] .faq-item { background: var(--surface); border-color: var(--border); }
html[data-theme="dark"] .faq-item summary { color: var(--text); }
html[data-theme="dark"] .faq-body { color: var(--text-muted); }

/* Nav */
html[data-theme="dark"] .nav { border-color: var(--border); }
html[data-theme="dark"] .nav-mid a:hover,
html[data-theme="dark"] .nav-login:hover { background: var(--surface-2); }
html[data-theme="dark"] .nav-toggle { background: var(--surface-2); border-color: var(--border); }
html[data-theme="dark"] .nav-toggle a { color: var(--text-muted); }
html[data-theme="dark"] .nav-toggle a.on { background: var(--surface); color: var(--text); }

/* Web theme toggle */
html[data-theme="dark"] html[data-theme="dark"] /* Burger + lang-switch summary */
html[data-theme="dark"] .nav-burger { color: var(--text); }
html[data-theme="dark"] .nav-burger:hover { background: var(--surface-2); border-color: var(--border); }
html[data-theme="dark"] .lang-switch summary { color: var(--text); }
html[data-theme="dark"] .lang-switch summary:hover,
html[data-theme="dark"] .lang-switch[open] summary { background: var(--surface-2); border-color: var(--border); }

/* Stats/number-blocks — keep background transparent, just text */
html[data-theme="dark"] .stat-number { color: var(--text); }
html[data-theme="dark"] .stat-label { color: var(--text-muted); }

/* Tiles/feature-cards (als er transparante cards zijn, fix bg) */
html[data-theme="dark"] .tile,
html[data-theme="dark"] .svc-panel,
html[data-theme="dark"] .prov-reason {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}

/* Claim-form (hero) */
html[data-theme="dark"] .claim-form,
html[data-theme="dark"] .claim-form input {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}
html[data-theme="dark"] .claim-suffix { color: var(--text-muted); }


/* ── Billing toggle (monthly/annual) ── */
.billing-toggle {
  display: inline-flex; gap: 4px;
  margin: 0 auto 2rem;
  padding: 4px;
  background: var(--surface-2, rgba(0,0,0,0.04));
  border: 1px solid var(--border);
  border-radius: 999px;
}
#priser .container > .billing-toggle { display: flex; width: fit-content; }
.billing-btn {
  padding: 8px 18px;
  border: none; background: transparent;
  border-radius: 999px;
  font-family: inherit; font-size: 14px; font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 160ms, color 160ms, box-shadow 160ms;
  white-space: nowrap;
}
.billing-btn.on {
  background: var(--surface, #fff);
  color: var(--text);
  box-shadow: 0 1px 3px rgba(15,23,42,0.08);
}
.billing-btn:hover:not(.on) { color: var(--text); }
body[data-billing="annual"] .price-list li[data-annual-nok] { display: none; }








/* ── Promise-cards (Why meil.no) clean visual ── */
body:not(.biz) .tile-visual--name {
  display: flex; justify-content: flex-start; align-items: center;
  min-height: 80px; margin-top: auto;
}
body:not(.biz) .tile--wide .tile-name {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 1.25rem; letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 0.85rem;
  background: rgba(15,23,42,0.05);
  border-radius: 12px;
}
body:not(.biz) .tile--wide .tile-name .at { color: var(--text-muted); }
body:not(.biz) .tile--wide .tile-name .lock {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(29,78,216,0.1);
  padding: 4px 8px; border-radius: 999px;
}

body:not(.biz) .tile-visual--price {
  display: flex; align-items: baseline; gap: 0.5rem;
  margin-top: auto;
}
body:not(.biz) .tile-price-num {
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 200;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--text);
}
body:not(.biz) .tile-price-unit {
  font-size: 1.25rem; font-weight: 500;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}

body:not(.biz) .promise-list {
  list-style: none; padding: 0; margin: 1rem 0 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem 1.5rem;
}
@media (max-width: 640px) {
  body:not(.biz) .promise-list { grid-template-columns: 1fr; }
}
body:not(.biz) .promise-list li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.9375rem;
  color: var(--text-soft);
}
body:not(.biz) .promise-list .check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  background: rgba(29,78,216,0.12);
  color: var(--accent);
  border-radius: 999px;
  flex-shrink: 0;
}
body:not(.biz) .tile--dark .promise-list li { color: rgba(255,255,255,0.82); }
body:not(.biz) .tile--dark .promise-list .check {
  background: rgba(255,255,255,0.12); color: #fff;
}










/* ── Nav: static, always visible, subtle shadow when scrolled ── */
.nav.is-scrolled .nav-inner {
  box-shadow: 0 2px 4px rgba(9,9,11,0.05), 0 12px 30px -8px rgba(9,9,11,0.12);
  transition: box-shadow 200ms ease;
}


/* ── Why meil.no — clean 2x2 editorial grid (privat only) ── */
body:not(.biz) #hvorfor .bento-grid { display: none; }
body:not(.biz) .why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1120px;
  margin: 0 auto;
}
@media (min-width: 820px) {
  body:not(.biz) .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
body:not(.biz) .why-card {
  position: relative;
  padding: clamp(2rem, 4vw, 3.25rem);
  background: #fff;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 28px;
  box-shadow: 0 1px 2px rgba(15,23,42,0.03);
  overflow: hidden;
  transition: transform 280ms cubic-bezier(0.28, 0.11, 0.32, 1),
              box-shadow 280ms cubic-bezier(0.28, 0.11, 0.32, 1);
}
body:not(.biz) .why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 4px rgba(15,23,42,0.04), 0 24px 48px -12px rgba(15,23,42,0.12);
}

/* Huge watermark number in corner */
body:not(.biz) .why-card-num {
  position: absolute;
  top: -0.15em;
  right: 0.15em;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-weight: 200;
  font-size: clamp(7rem, 16vw, 12rem);
  line-height: 1;
  color: rgba(15,23,42,0.04);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

body:not(.biz) .why-card-body {
  position: relative;
  z-index: 1;
  max-width: 34ch;
}
body:not(.biz) .why-card-kick {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
body:not(.biz) .why-card-title {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 1rem;
  color: var(--text);
}
body:not(.biz) .why-card-title .accent { color: var(--accent); }
body:not(.biz) .why-card-lede {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}
body:not(.biz) .why-card-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.25rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
}
body:not(.biz) .why-card-list li {
  position: relative;
  padding-left: 1.25rem;
}
body:not(.biz) .why-card-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 7px; height: 7px;
  background: #58d18b;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(88,209,139,0.2);
}

/* Card 04 dark variant */
body:not(.biz) .why-card--dark {
  background: #0a0f1e;
  border-color: rgba(255,255,255,0.06);
  color: #fff;
  grid-column: 1 / -1;
}
body:not(.biz) .why-card--dark .why-card-num { color: rgba(255,255,255,0.06); }
body:not(.biz) .why-card--dark .why-card-title { color: #fff; }
body:not(.biz) .why-card--dark .why-card-title .accent { color: #5b8fff; }
body:not(.biz) .why-card--dark .why-card-lede { color: rgba(255,255,255,0.72); }
body:not(.biz) .why-card--dark .why-card-kick { color: #5b8fff; }
body:not(.biz) .why-card--dark .why-card-body { max-width: 620px; }

@media (max-width: 820px) {
  body:not(.biz) .why-card-list { grid-template-columns: 1fr; }
}


/* ── Privat page: unified rhythm (one attraction, consistent whitespace) ── */
body:not(.biz) {
  --apple-ease: cubic-bezier(0.28, 0.11, 0.32, 1);
  --section-pad: clamp(4.5rem, 8vw, 7rem);
  --head-gap:    clamp(2.5rem, 4vw, 3.5rem);
}

body:not(.biz) .section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

body:not(.biz) .section-title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  font-weight: 600;
}

body:not(.biz) .section-head {
  max-width: 780px;
  margin: 0 auto var(--head-gap);
  text-align: center;
}
body:not(.biz) .section-head p {
  max-width: 52ch;
  margin: 1rem auto 0;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text-muted);
}

body:not(.biz) .eyebrow,
body:not(.biz) span.eyebrow,
body:not(.biz) .section-head > span:first-child,
body:not(.biz) header.section-head > span:first-child {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

body:not(.biz) .container { max-width: 1120px; }

/* Hero: just enough air */
body:not(.biz) .hero {
  padding-block: clamp(4.5rem, 9vw, 7.5rem) clamp(4rem, 8vw, 6.5rem);
}
body:not(.biz) .hero > .container { max-width: 1200px; }
body:not(.biz) .hero-grid { gap: clamp(3rem, 6vw, 5rem); }
@media (min-width: 1040px) {
  body:not(.biz) .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr); }
}
body:not(.biz) .hero-headline {
  font-size: clamp(2.75rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
body:not(.biz) .hero-sub {
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 36ch;
  margin-bottom: 2rem;
}

/* Operation & origin + WAYSCloud: same rhythm, no extra gap */
body:not(.biz) #driftet .prov-reasons { margin-bottom: 0; }
body:not(.biz) .indep-simple {
  margin-top: var(--section-pad);
  padding-top: 0;
  border-top: 0;
}
body:not(.biz) .indep-simple .section-head {
  padding-top: 0.25rem;
}
body:not(.biz) .indep-simple .section-title {
  margin-top: 0;
}
body:not(.biz) .indep-simple .section-head {
  margin-bottom: var(--head-gap);
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

/* Clean-list (Free from Big Tech cards) */
body:not(.biz) .clean-list { gap: 2rem; }
@media (min-width: 900px) {
  body:not(.biz) .clean-list { grid-template-columns: repeat(3, 1fr); }
}
body:not(.biz) .clean-list li h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0.5rem 0 0.5rem;
}
body:not(.biz) .clean-list li p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 32ch;
}

/* Prov-reason Apple cards */
body:not(.biz) .prov-reasons { gap: 1.25rem; }
body:not(.biz) .prov-reason {
  border-radius: 20px;
  border: 1px solid rgba(15,23,42,0.08);
  background: #fff;
  padding: 1.75rem;
  transition: transform 240ms var(--apple-ease), box-shadow 240ms var(--apple-ease);
}
body:not(.biz) .prov-reason:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(15,23,42,0.06);
}
body:not(.biz) .prov-reason h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
body:not(.biz) .prov-reason p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Price cards + billing toggle sleek */
body:not(.biz) article.price {
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,0.08);
  background: #fff;
  padding: 2rem 1.75rem;
  box-shadow: 0 1px 2px rgba(15,23,42,0.03), 0 12px 28px rgba(15,23,42,0.04);
  transition: transform 240ms var(--apple-ease), box-shadow 240ms var(--apple-ease);
}
body:not(.biz) article.price:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 2px rgba(15,23,42,0.04), 0 18px 38px rgba(15,23,42,0.07);
}
body:not(.biz) article.price.featured {
  border-color: var(--accent);
  box-shadow: 0 1px 2px rgba(29,78,216,0.05), 0 16px 40px rgba(29,78,216,0.14);
}
body:not(.biz) .price.featured::before {
  top: -11px;
  padding: 6px 14px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
}
body:not(.biz) .price-amount { font-size: 2.5rem; line-height: 1; font-weight: 500; }
body:not(.biz) .price-period { color: var(--text-muted); font-size: 0.9375rem; margin-left: 0.5rem; }
body:not(.biz) .price-name { font-size: 1.0625rem; font-weight: 600; letter-spacing: -0.01em; }
body:not(.biz) .price-tag { font-size: 0.9375rem; color: var(--text-muted); margin-top: 0.25rem; line-height: 1.5; }
body:not(.biz) .price-list { margin-top: 1.25rem; }
body:not(.biz) .price-list li { padding: 0.3rem 0; font-size: 0.9375rem; color: var(--text-soft); }
body:not(.biz) .pricing-grid { gap: 1.25rem; }

body:not(.biz) .billing-toggle {
  padding: 3px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(15,23,42,0.04);
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}
body:not(.biz) .billing-btn { padding: 8px 20px; font-weight: 500; }
body:not(.biz) .billing-btn.on {
  background: #fff;
  box-shadow: 0 1px 3px rgba(15,23,42,0.1), 0 0 0 1px rgba(15,23,42,0.04);
}

/* Apple pill buttons */
body:not(.biz) .btn--accent {
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: transform 180ms var(--apple-ease), box-shadow 180ms var(--apple-ease);
}
body:not(.biz) .btn--accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(29,78,216,0.22);
}
body:not(.biz) .btn--lg { font-size: 1rem; padding: 15px 28px; }

/* Stats row slimmer top */
body:not(.biz) .hero + .section { padding-top: clamp(2.5rem, 5vw, 4rem); }
body:not(.biz) .stats-row, body:not(.biz) .stats { gap: 1.5rem; }
body:not(.biz) .stat-number, body:not(.biz) .stat-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.03em;
}


/* ── Contact form: split-card with human intro + topic chips (privat only) ── */
body:not(.biz) #kontakt .section-head { margin-bottom: clamp(2rem, 4vw, 3rem); }

body:not(.biz) .kontakt-card {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  background: #fff;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15,23,42,0.03), 0 24px 48px -12px rgba(15,23,42,0.10);
}
@media (max-width: 820px) {
  body:not(.biz) .kontakt-card { grid-template-columns: 1fr; }
}

/* Left: intro / humans */
body:not(.biz) .kontakt-intro {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF2F7 100%);
  border-right: 1px solid rgba(15,23,42,0.06);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
@media (max-width: 820px) {
  body:not(.biz) .kontakt-intro {
    border-right: none;
    border-bottom: 1px solid rgba(15,23,42,0.06);
  }
}
body:not(.biz) .kontakt-lede {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
body:not(.biz) .kontakt-lede-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
}
body:not(.biz) .kontakt-lede-body {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-soft);
}

body:not(.biz) .kontakt-facts {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
body:not(.biz) .kontakt-facts li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--text-soft);
}
body:not(.biz) .kontakt-facts li > svg {
  color: var(--accent);
  flex-shrink: 0;
}
body:not(.biz) .kontakt-facts strong { color: var(--text); font-weight: 600; }

body:not(.biz) .kontakt-direct {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(15,23,42,0.08);
}
body:not(.biz) .kontakt-direct-lbl {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
body:not(.biz) .kontakt-direct a {
  font-size: 13.5px;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 120ms var(--apple-ease);
  width: max-content;
}
body:not(.biz) .kontakt-direct a:hover { color: var(--accent); }

/* Right: form */
body:not(.biz) .kontakt-form {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

body:not(.biz) .kontakt-topics {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
body:not(.biz) .kontakt-topics legend {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  padding: 0;
}
body:not(.biz) .topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media (min-width: 520px) {
  body:not(.biz) .topics-grid { grid-template-columns: repeat(4, 1fr); }
}
body:not(.biz) .topic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 11px 8px;
  border: 1px solid rgba(15,23,42,0.12);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  background: #fff;
  cursor: pointer;
  transition: border-color 140ms var(--apple-ease), background 140ms var(--apple-ease), color 140ms var(--apple-ease), box-shadow 140ms var(--apple-ease), transform 140ms var(--apple-ease);
  user-select: none;
}
body:not(.biz) .topic input {
  position: absolute;
  opacity: 0;
  inset: 0;
  width: 100%; height: 100%;
  cursor: pointer;
  margin: 0;
}
body:not(.biz) .topic:hover {
  border-color: rgba(29,78,216,0.3);
  color: var(--text);
  transform: translateY(-1px);
}
body:not(.biz) .topic:has(input:checked) {
  border-color: var(--accent);
  background: rgba(29,78,216,0.06);
  color: var(--accent);
  box-shadow: 0 0 0 3px rgba(29,78,216,0.10);
}
body:not(.biz) .topic:has(input:focus-visible) {
  box-shadow: 0 0 0 3px rgba(29,78,216,0.25);
  outline: none;
}
body:not(.biz) .topic svg { flex-shrink: 0; color: currentColor; }

body:not(.biz) .kontakt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 520px) {
  body:not(.biz) .kontakt-row { grid-template-columns: 1fr; }
}
body:not(.biz) .kontakt-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}
body:not(.biz) .kontakt-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}
body:not(.biz) .kontakt-counter {
  font-size: 10.5px;
  font-style: normal;
  color: var(--text-faint, #9ca3af);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  font-variant-numeric: tabular-nums;
}
body:not(.biz) .kontakt-field input,
body:not(.biz) .kontakt-field textarea {
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(15,23,42,0.12);
  border-radius: 12px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 160ms var(--apple-ease), box-shadow 160ms var(--apple-ease);
}
body:not(.biz) .kontakt-field input::placeholder,
body:not(.biz) .kontakt-field textarea::placeholder {
  color: var(--text-faint, #9ca3af);
}
body:not(.biz) .kontakt-field input:focus,
body:not(.biz) .kontakt-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(29,78,216,0.14);
}
body:not(.biz) .kontakt-field textarea {
  resize: vertical;
  min-height: 128px;
}

body:not(.biz) .kontakt-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}
body:not(.biz) .kontakt-send {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--text);
  color: #fff;
  padding: 12px 22px;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background 160ms var(--apple-ease), transform 160ms var(--apple-ease), box-shadow 160ms var(--apple-ease);
}
body:not(.biz) .kontakt-send:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -6px rgba(29,78,216,0.35);
}
body:not(.biz) .kontakt-send:active { transform: translateY(0); }
body:not(.biz) .kontakt-send svg {
  transition: transform 220ms var(--apple-ease);
}
body:not(.biz) .kontakt-send:hover svg { transform: translateX(3px); }
body:not(.biz) .kontakt-hint {
  margin: 0;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.45;
  flex: 1 1 auto;
  text-align: right;
}
@media (max-width: 520px) {
  body:not(.biz) .kontakt-actions { flex-direction: column; align-items: stretch; }
  body:not(.biz) .kontakt-send { width: 100%; justify-content: center; }
  body:not(.biz) .kontakt-hint { text-align: center; }
}

body:not(.biz) .kontakt-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 14px 18px;
  background: rgba(34,197,94,0.09);
  border: 1px solid rgba(34,197,94,0.28);
  border-radius: 12px;
  color: #166534;
  animation: kontakt-fade-in 280ms var(--apple-ease);
}
body:not(.biz) .kontakt-success[hidden] { display: none; }
body:not(.biz) .kontakt-success svg { color: #22c55e; flex-shrink: 0; }
body:not(.biz) .kontakt-success p { margin: 0; font-size: 13.5px; line-height: 1.45; font-weight: 500; }
@keyframes kontakt-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}


/* -----------------------------
   9b. Included (tiles grid) — replaces old .stats for personal page
   ----------------------------- */
.included {
  padding-block: clamp(3.5rem, 6vw, 5rem);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.included-head {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 48rem;
  margin-inline: auto;
}
.included-head .eyebrow { margin-bottom: 0.875rem; }
.included-head h2 {
  font-weight: 500;
  font-size: clamp(1.625rem, 2.8vw, 2.125rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
  max-width: 32ch;
  margin-inline: auto;
}
.included-head h2 .accent { color: var(--accent); }
.included-lede {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 40ch;
  margin-inline: auto;
}
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
@media (min-width: 880px) {
  .tiles-grid { grid-template-columns: repeat(4, 1fr); }
}
.inc-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  grid-column: auto;
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.inc-tile::before {
  content: "";
  position: absolute;
  top: 0; left: 16px; right: 16px;
  height: 1px;
  background: linear-gradient(to right, transparent, color-mix(in oklab, var(--accent) 40%, transparent), transparent);
  opacity: 0;
  transition: opacity .25s ease;
}
.inc-tile:hover {
  border-color: color-mix(in oklab, var(--accent) 35%, var(--border));
  transform: translateY(-2px);
  box-shadow: var(--sh-xs, 0 1px 3px rgba(0,0,0,0.04));
}
.inc-tile:hover::before { opacity: 1; }
.inc-tile .tile-ico {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: color-mix(in oklab, var(--accent) 12%, transparent);
  color: var(--accent);
}
.inc-tile .tile-val {
  font-weight: 500;
  font-size: clamp(2.25rem, 4vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--text);
  font-feature-settings: "ss01";
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.inc-tile .tile-val.accent { color: var(--accent); }
.inc-tile .tile-val .accent { color: var(--accent); }
.inc-tile .tile-val .unit {
  font-size: 0.42em;
  font-family: var(--font-mono);
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-left: 4px;
}
.inc-tile .tile-val .mono-val {
  font-size: 0.62em;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  color: var(--text);
}
.inc-tile .tile-lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
  line-height: 1.3;
}
.inc-tile .tile-sub {
  font-size: 14px;
  color: var(--text);
  opacity: 0.78;
  line-height: 1.5;
  margin: 0;
}

/* Reveal sequencing for tiles — uses existing statStaggerIn keyframe */
.tiles-grid.is-visible > * {
  animation: statStaggerIn 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.tiles-grid.is-visible > *:nth-child(1) { animation-delay:   0ms; }
.tiles-grid.is-visible > *:nth-child(2) { animation-delay:  80ms; }
.tiles-grid.is-visible > *:nth-child(3) { animation-delay: 160ms; }
.tiles-grid.is-visible > *:nth-child(4) { animation-delay: 240ms; }

/* ── Canonical site-footer (used by /preview/, /kontakt/, /, /preview/bedrift/) ── */
.site-footer { position: relative; z-index: 2; margin-top: 4rem; padding: 3rem clamp(1.25rem, 4vw, 2.5rem) 2rem; border-top: 1px solid var(--border); background: var(--surface); }
.site-footer .footer-inner { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 2rem; }
@media (min-width: 720px) { .site-footer .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; } }
.site-footer .footer-brand { max-width: 280px; }
.site-footer .footer-logo { height: 26px; width: auto; display: block; margin-bottom: 0.85rem; }
.site-footer .footer-tagline { margin: 0; font-size: 13.5px; color: var(--text-muted); line-height: 1.5; }
.site-footer .footer-cols { display: contents; }
@media (max-width: 719px) { .site-footer .footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem 1.5rem; } }
.site-footer .footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint, var(--text-muted)); margin: 0 0 0.85rem; font-family: var(--font-mono); }
.site-footer .footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.site-footer .footer-col a { color: var(--text); font-size: 13.5px; text-decoration: none; transition: color 160ms; }
.site-footer .footer-col a:hover { color: var(--accent); }
.site-footer .footer-bottom { max-width: 1320px; margin: 0 auto; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--border) 60%, transparent); display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem 0.75rem; font-size: 12px; color: var(--text-muted); font-family: var(--font-mono); letter-spacing: 0.02em; }
.site-footer .footer-copy { margin: 0; }
.site-footer .footer-copy a { color: inherit; text-decoration: none; border-bottom: 1px solid color-mix(in srgb, currentColor 30%, transparent); transition: color 160ms, border-color 160ms; }
.site-footer .footer-copy a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.site-footer .footer-legal { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.85em; }
.site-footer .footer-legal a { color: var(--text-muted); text-decoration: none; transition: color 160ms; }
.site-footer .footer-legal a:hover { color: var(--accent); }
.site-footer .footer-spacer { flex: 1; }
