/* NORDLJUS · gemensamt designsystem för pianola.se, lumrait.se och KOLLEN.
   Källa: artefakten "PIANOLA Nordljus" (2026-09-15). Tokens först, sedan
   komponenter. Sajtspecifikt läggs i respektive sidas <style>, aldrig här. */

:root {
  /* Schema: Honung (Linus 2026-09-15). Mint som varumärke, honung som brytfärg. */
  --bg: #0a1d1a; --bg-2: #0e2723; /* grund från Nordljus, accenter från Honung */
  --ink: #eaf3ee; --ink-2: #b9cbc3; --ink-3: #7f968c;
  --line: rgba(220, 236, 228, 0.12); --line-2: rgba(220, 236, 228, 0.22);
  --surface: rgba(255, 255, 255, 0.04); --surface-2: rgba(255, 255, 255, 0.07);
  --brand: #9dd3c8; --brand-ink: #071512; --accent: #e1b866; --warm: #e1b866;
  --ok: #7fd9b0; --warn: #efcf7a; --bad: #f39a9a;
  --aur-1: #9dd3c8; --aur-2: #e1b866; --aur-3: #2f7f6f; --star: #ffffff; --veil: 0.55;
  --font-display: "Gabarito", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;
  --radius: 14px; --radius-lg: 18px; --maxw: 1100px;
}

* { box-sizing: border-box; }
html { color-scheme: dark; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font-body); font-size: 15.5px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; padding-inline: clamp(16px, 4vw, 40px); }
#sky { position: fixed; inset: 0; z-index: -1; width: 100%; height: 100%; display: block; background: var(--bg); }
a { color: var(--brand); }
img, svg { max-width: 100%; }
.wrap { max-width: var(--maxw); margin: 0 auto; }
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.02em; text-wrap: balance; margin: 0; }
p { margin: 0; }
.skip-link { position: absolute; left: -9999px; top: auto; background: var(--brand); color: var(--brand-ink); padding: 0.6rem 1rem; border-radius: 6px; font-weight: 600; z-index: 999; }
.skip-link:focus { left: 1rem; top: 1rem; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

/* Etiketter (små rubriker): mono, versaler, andra ledet i accent */
.mono { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; }
.mono b { color: var(--accent); font-weight: 500; }

/* Nav */
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.4rem 0 0.6rem; position: relative; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.logo svg { width: 30px; height: 30px; color: var(--brand); flex: none; }
.logo b { font-family: var(--font-display); font-weight: 800; letter-spacing: 0.2em; font-size: 15px; }
.logo small { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-left: 2px; }
.nav nav { display: flex; gap: 1.2rem; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.nav nav a { color: var(--ink-2); text-decoration: none; padding: 0.3rem 0; }
.nav nav a:hover, .nav nav a[aria-current="page"] { color: var(--ink); }
.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line-2); background: transparent; color: var(--ink); cursor: pointer; align-items: center; justify-content: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0.75rem 1.2rem; border-radius: 999px; font: 600 14px/1 var(--font-body); text-decoration: none; border: 1px solid transparent; cursor: pointer; white-space: nowrap; }
.btn-primary { background: var(--brand); color: var(--brand-ink); }
.btn-primary:hover { background: #b6e4da; color: var(--brand-ink); }
.btn-ghost { border-color: var(--line-2); color: var(--ink); background: var(--surface); }
.btn-ghost:hover { border-color: var(--brand); color: var(--ink); }
.btn:disabled { opacity: 0.55; cursor: default; }
@media (max-width: 760px) {
  .nav nav { display: none; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; gap: 0.1rem; padding: 0.6rem 0.4rem; background: color-mix(in srgb, var(--bg) 94%, transparent); border: 1px solid var(--line); border-radius: var(--radius); z-index: 30; }
  .nav nav.is-open { display: flex; }
  .nav nav a { padding: 0.6rem 0.6rem; }
  .nav-toggle { display: inline-flex; }
  .nav .btn-primary { display: none; }
}

/* Hjälte */
.hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; padding: clamp(2.5rem, 7vw, 5rem) 0 clamp(2rem, 5vw, 3.5rem); }
@media (max-width: 860px) { .hero { grid-template-columns: 1fr; } }
.hero .mono { margin-bottom: 1rem; }
.hero h1 { font-size: clamp(2.3rem, 5.4vw, 4rem); font-weight: 800; line-height: 1.02; }
.hero h1 em { font-style: normal; color: var(--brand); }
.hero .lede { margin: 1.2rem 0 1.6rem; font-size: 1.08rem; color: var(--ink-2); max-width: 46ch; }
.cta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.facts { display: flex; flex-wrap: wrap; gap: 0.4rem 1.3rem; margin-top: 1.3rem; font-size: 13px; color: var(--ink-3); }
.facts span::before { content: "•"; color: var(--accent); margin-right: 8px; }
.facts .msv { display: inline-flex; align-items: center; gap: 7px; flex-wrap: wrap; flex-basis: 100%; }
.facts .msv::before { content: none; }
.facts .msv strong { color: var(--ink-2); font-weight: 600; }
.msv-ikon { flex: none; }
.price-line { margin-top: 0.8rem; font-size: 13.5px; color: var(--ink-2); }


/* Det spelande pianot (hjältens rubrik) och den vakna markören */
.hero h1 { min-height: 2.1em; }
.caret { display: inline-block; width: 5px; height: 0.8em; background: var(--brand); margin-left: 8px; vertical-align: -0.02em; border-radius: 1px; box-shadow: 0 0 14px color-mix(in srgb, var(--brand) 70%, transparent); animation: caretBlink 1.05s steps(1) infinite; }
@keyframes caretBlink { 50% { opacity: 0; } }
.word { display: inline-block; white-space: nowrap; }
.note { display: inline-block; transform-origin: 50% 100%; animation: keyStrike calc(0.36s * var(--v, 1)) cubic-bezier(0.19, 1.25, 0.32, 1) both; }
@keyframes keyStrike {
  0%   { opacity: 0; transform: translateY(calc(-0.16em * var(--v, 1))); }
  16%  { opacity: 1; transform: translateY(calc(0.085em * var(--v, 1))) scaleY(0.94); }
  55%  { transform: translateY(calc(-0.018em * var(--v, 1))) scaleY(1); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero h1 em .note { animation: keyStrike calc(0.36s * var(--v, 1)) cubic-bezier(0.19, 1.25, 0.32, 1) both, glowFade 0.9s ease-out both; }
@keyframes glowFade { from { text-shadow: 0 0 14px color-mix(in srgb, var(--brand) 40%, transparent); } to { text-shadow: 0 0 0 transparent; } }
.rondline .caret { width: 3px; height: 0.95em; margin-left: 5px; box-shadow: 0 0 8px color-mix(in srgb, var(--brand) 60%, transparent); }
@media (prefers-reduced-motion: reduce) { .note, .caret { animation: none; } }

/* Mock: lägesbild och andra produktytor */
.mock { background: linear-gradient(160deg, var(--surface-2), var(--surface)); border: 1px solid var(--line-2); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6); font-family: var(--font-mono); font-size: 12.5px; }
.mock-bar { display: flex; align-items: center; gap: 10px; padding: 9px 14px; border-bottom: 1px solid var(--line); color: var(--ink-3); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.mock-bar i { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); display: inline-block; }
.mock-bar i:first-child { background: var(--bad); } .mock-bar i:nth-child(2) { background: var(--warn); } .mock-bar i:nth-child(3) { background: var(--ok); }
.mock-bar span { margin-left: auto; font-family: var(--font-body); }
.mock-body { padding: 14px; display: grid; gap: 10px; }
.score { display: flex; align-items: center; gap: 16px; }
.ring { width: 92px; height: 92px; position: relative; flex: none; }
.ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring b { position: absolute; inset: 0; display: grid; place-items: center; font: 800 28px var(--font-display); letter-spacing: -0.03em; color: var(--ink); }
.score-txt { font-family: var(--font-body); }
.score-txt strong { display: block; font-size: 15px; color: var(--ink); }
.score-txt span { color: var(--ink-3); font-size: 13px; }
.row { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); color: var(--ink-2); }
.row .dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.row .t { flex: 1; min-width: 0; font-family: var(--font-body); font-size: 13px; }
.row .t strong { color: var(--ink); font-weight: 600; }
.tag { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; padding: 3px 8px; border-radius: 999px; border: 1px solid; font-family: var(--font-body); flex: none; }
.dot.ok, .tag.ok { color: var(--ok); border-color: color-mix(in srgb, var(--ok) 45%, transparent); }
.dot.warn, .tag.warn { color: var(--warn); border-color: color-mix(in srgb, var(--warn) 45%, transparent); }
.dot.bad, .tag.bad { color: var(--bad); border-color: color-mix(in srgb, var(--bad) 45%, transparent); }
.dot.ok { background: var(--ok); } .dot.warn { background: var(--warn); } .dot.bad { background: var(--bad); }
.mock-foot { padding: 10px 14px 12px; border-top: 1px solid var(--line); color: var(--ink-3); font-family: var(--font-body); font-size: 12px; }
.mock-foot em { font-style: normal; color: var(--accent); }

.bars { display: grid; gap: 7px; padding: 4px 2px 2px; }
.barrow { display: grid; grid-template-columns: 5.2em 1fr 2.2em; gap: 10px; align-items: center; font-family: var(--font-body); font-size: 12.5px; color: var(--ink-2); }
.barrow i { height: 7px; border-radius: 999px; background: var(--line); overflow: hidden; display: block; }
.barrow i b { display: block; height: 100%; background: linear-gradient(90deg, var(--brand), var(--accent)); border-radius: 999px; }
.barrow em { font-style: normal; text-align: right; font-variant-numeric: tabular-nums; color: var(--ink); font-weight: 600; }
.tile.step p a { color: var(--brand); }

/* Sektioner */
section.block { padding: clamp(2.2rem, 5vw, 4rem) 0; border-top: 1px solid var(--line); }
.sec-head { display: grid; gap: 0.5rem; justify-items: start; margin-bottom: 1.5rem; max-width: 62ch; }
.sec-head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 700; line-height: 1.1; }
.sec-head h2 i { font-style: normal; color: var(--brand); }
.sec-head p { color: var(--ink-2); }

/* Bevisblock (tal + en rad) */
.proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 700px) { .proof { grid-template-columns: 1fr; } }
.proof > * { padding: 1rem 1.1rem; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); color: inherit; text-decoration: none; display: grid; gap: 4px; align-content: start; }
.proof b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; letter-spacing: -0.02em; color: var(--ink); line-height: 1.1; }
.proof span { font-size: 13.5px; color: var(--ink-2); }
.proof .more { font-size: 12px; font-weight: 600; color: var(--brand); margin-top: 4px; }
a.proof-card:hover { border-color: color-mix(in srgb, var(--brand) 45%, transparent); }

/* Rutor (ikon + rubrik + två rader) */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }
.tile { padding: 1.1rem 1.15rem 1.2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); display: flex; flex-direction: column; gap: 6px; }
.tile > svg { width: 22px; height: 22px; color: var(--accent); margin-bottom: 4px; }
.tile h3 { font-size: 1.02rem; font-weight: 700; }
.tile p { color: var(--ink-2); font-size: 14px; }
.tile h3 span { color: var(--brand); }
.tile strong { color: var(--ink); }

/* Story (kanon-copyn): stora slag, inte rutor */
.story { padding: clamp(2.5rem, 6vw, 4.5rem) 0; border-top: 1px solid var(--line); }
.story .mono { margin: 2.2rem 0 0.9rem; }
.story .mono:first-child { margin-top: 0; }
.beat { max-width: 62ch; }
.beat p { font-size: clamp(1.15rem, 1.9vw, 1.45rem); line-height: 1.5; color: var(--ink-2); font-weight: 400; }
.beat + .beat { margin-top: 1.4rem; }
.beat em { font-style: normal; color: var(--ink); font-weight: 600; }
.beat--dark em { color: var(--bad); }
.beat--callout { border-left: 3px solid var(--brand); padding-left: 1.2rem; }
.beat--callout p { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 2.8vw, 2.2rem); line-height: 1.2; color: var(--ink); letter-spacing: -0.02em; }
.beat--callout em { color: var(--brand); font-weight: 700; }
.rondline { margin-top: 2.4rem; font-family: var(--font-mono); font-size: 13px; color: var(--ink-3); }
.rondline em { font-style: normal; color: var(--ink); font-weight: 600; }


/* Story som kapitel: text + en liten yta per steg, växelvis sida */
.story .sec-head { margin-bottom: 2.2rem; }
.chapter { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.4rem, 4vw, 3rem); align-items: center; padding: clamp(1.4rem, 3vw, 2.2rem) 0; border-top: 1px solid var(--line); }
.chapter:nth-of-type(even) .chapter-text { order: 2; }
@media (max-width: 860px) { .chapter { grid-template-columns: 1fr; } .chapter:nth-of-type(even) .chapter-text { order: 0; } }
.chapter-text { display: grid; gap: 0.8rem; max-width: 56ch; }
.chapter-text .mono b { margin-right: 6px; }
.chapter-text h3 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); font-weight: 700; line-height: 1.15; }
.chapter-text p { color: var(--ink-2); font-size: 1rem; }
.chapter-text p em { font-style: normal; color: var(--ink); font-weight: 600; }
.chapter-text .chapter-punch { color: var(--ink); font-size: 1.05rem; }
.chapter-text em.bad { color: var(--bad); }
.chapter-visual.mock { font-size: 12.5px; }
.kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.kpis div { padding: 1rem 1.05rem; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); display: grid; gap: 4px; }
.kpis b { font: 800 1.7rem var(--font-display); letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.kpis span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); line-height: 1.5; margin-top: 4px; }
.timeline { display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 0.6rem 1rem; }
.tl { display: grid; grid-template-columns: 3.4em 14px 1fr; gap: 12px; align-items: start; padding: 0.55rem 0; position: relative; }
.tl + .tl::before { content: ""; position: absolute; left: calc(3.4em + 12px + 6px); top: -14px; height: 14px; width: 2px; background: var(--line-2); }
.tl-time { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); padding-top: 3px; }
.tl-dot { width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--brand); background: var(--bg); margin-top: 3px; }
.tl-dot.ok { background: var(--brand); }
.tl-txt { font-size: 13.5px; color: var(--ink-2); }
.tl-txt b { color: var(--ink); font-weight: 600; }
.compare { display: grid; gap: 10px; }
.compare > div { padding: 1rem 1.1rem; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); display: grid; gap: 4px; }
.compare b { font: 800 1.6rem var(--font-display); letter-spacing: -0.03em; color: var(--ink); line-height: 1.05; }
.compare span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); line-height: 1.5; margin-top: 4px; }
.chapter-end { margin: 2.8rem auto 0; max-width: 62ch; text-align: center; border-left: 0; padding-left: 0; }


/* Undersidor: steg, resultatblock, listor, områden */
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
@media (max-width: 1000px) { .grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-5 { grid-template-columns: 1fr; } }
.tile.step { padding: 1rem 1rem 1.1rem; }
.tile.step p { font-size: 13.5px; }
.tile .num { width: 30px; height: 30px; border-radius: 9px; display: inline-grid; place-items: center; background: color-mix(in srgb, var(--brand) 16%, transparent); color: var(--brand); font: 700 14px var(--font-display); margin-bottom: 4px; }
.tile .src { display: block; margin-top: auto; padding-top: 0.5rem; font-size: 11.5px; color: var(--ink-3); }
.tile .links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 0.6rem; }
.btn-sm { padding: 0.55rem 0.95rem; font-size: 13px; }
.tile .fw-row { justify-content: flex-start; margin-top: 0.6rem; }
.tile .fw-row img { width: 44px; opacity: 0.8; }
.tile .list { list-style: none; margin: 0.3rem 0 0; padding: 0; display: grid; gap: 6px; font-size: 14px; color: var(--ink-2); }
.tile .list li { display: flex; gap: 9px; align-items: baseline; }
.tile .list li::before { content: "✓"; color: var(--accent); font-weight: 700; flex: none; }
.tile .list--no li::before { content: "–"; color: var(--ink-3); }
.after { margin-top: 1.2rem; color: var(--ink-2); max-width: 62ch; }
.case-by { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-3); }
.case-by img { width: 34px; height: 34px; border-radius: 50%; }
.case { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 12px; }
@media (max-width: 860px) { .case { grid-template-columns: 1fr; } }
.case > div { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 1.1rem 1.15rem 1.2rem; display: grid; gap: 8px; align-content: start; }
.case .big { font: 800 2.2rem var(--font-display); letter-spacing: -0.03em; color: var(--ink); line-height: 1; font-variant-numeric: tabular-nums; }
.case .big em { font-style: normal; color: var(--ink-3); font-weight: 600; font-size: 1.3rem; margin-right: 8px; }
.case p { font-size: 13.5px; color: var(--ink-2); }
.case svg text { font-family: var(--font-mono); font-size: 10px; fill: var(--ink-3); }
.case svg .v { font-family: var(--font-display); font-weight: 800; font-size: 13px; fill: var(--ink); }
.case ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 5px; font-size: 13.5px; color: var(--ink-2); }
.case li::before { content: "✓ "; color: var(--accent); font-weight: 700; }
.areas .tile h3 { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.areas .tile h3 .meta { font: 500 10.5px var(--font-mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); flex: none; }
.areas .tile p a { color: var(--brand); }
.tile--sum { border-color: color-mix(in srgb, var(--brand) 45%, transparent); background: linear-gradient(160deg, color-mix(in srgb, var(--brand) 10%, transparent), var(--surface)); }
.tile--sum .big { font: 800 2.2rem var(--font-display); letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.tile--sum .big span { font: 500 11px var(--font-mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-left: 6px; }


/* Prissida: nivåkort, jämförelsetabell, ingår-lista, fyrspalt */
.hero--single { grid-template-columns: 1fr; }
.hero--single .lede { max-width: 60ch; }
.hero--single h1 { min-height: 1.1em; }
.hero--long h1 { font-size: clamp(2rem, 4.2vw, 3rem); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 1.2rem; }
@media (max-width: 960px) { .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; align-items: stretch; }
@media (max-width: 860px) { .plans { grid-template-columns: 1fr; } }
.plan { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 1.3rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: 0.7rem; }
.plan--hi { border-color: color-mix(in srgb, var(--brand) 55%, transparent); background: linear-gradient(160deg, color-mix(in srgb, var(--brand) 10%, transparent), var(--surface)); }
.plan .mono { display: flex; justify-content: space-between; }
.plan .price { font: 800 2.3rem var(--font-display); letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.plan .for { font-size: 14px; color: var(--ink); font-weight: 600; }
.plan .txt { font-size: 14px; color: var(--ink-2); }
.plan .btn { margin-top: auto; }
.cmp-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.cmp { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 560px; }
.cmp th, .cmp td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.cmp th { font: 500 11px var(--font-mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.cmp th:not(:first-child), .cmp td:not(:first-child) { text-align: center; width: 9rem; white-space: nowrap; }
.cmp td:first-child { color: var(--ink-2); }
.cmp tbody tr:last-child td { border-bottom: 0; }
.cmp td.y { color: var(--accent); font-weight: 700; }
.cmp td.n { color: var(--ink-3); }
.incl { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 20px; font-size: 14px; color: var(--ink-2); }
@media (max-width: 860px) { .incl { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .incl { grid-template-columns: 1fr; } }
.incl li { position: relative; padding-left: 1.3rem; }
.incl li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; }
.incl strong { color: var(--ink); font-weight: 600; }
.after a { color: var(--brand); }

.proof--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .proof--4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .proof--4 { grid-template-columns: 1fr; } }
.tile.ids { margin-top: 12px; }
.grid-2 > .tile.ids, .grid-3 > .tile.ids { margin-top: 0; }
.tile.ids p:last-child { font-family: var(--font-mono); font-size: 13px; line-height: 1.7; }
.tile p a { color: var(--brand); }

.kv { display: grid; grid-template-columns: 12.5em 1fr; gap: 10px; align-items: baseline; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); padding: 6px 0; border-bottom: 1px solid var(--line); }
.kv:last-child { border-bottom: 0; }
.kv b { font-family: var(--font-body); font-size: 14px; letter-spacing: 0; text-transform: none; color: var(--ink); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.founder { display: grid; grid-template-columns: minmax(130px, 170px) 1fr; gap: 2rem; align-items: start; margin-top: 1.2rem; }
@media (max-width: 640px) { .founder { grid-template-columns: 1fr; } }
.founder img { width: 100%; max-width: 170px; height: auto; border-radius: 12px; display: block; }
.founder > div { display: grid; gap: 0.7rem; }
.founder p { color: var(--ink-2); }
.founder strong { color: var(--ink); }
.founder .links { display: flex; flex-wrap: wrap; gap: 8px; }
.tile h3 a { color: var(--ink); text-decoration: none; }
.tile h3 a:hover { color: var(--brand); }
.foot-links { margin-top: 0.8rem; font-size: 12.5px; }
.foot .foot-meta { margin-top: 0.6rem; color: var(--ink-3); }
.press-article { max-width: 72ch; display: grid; gap: 1rem; }
.press-article h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 700; line-height: 1.15; margin: 0.2rem 0 0.4rem; }
.press-article p { font-size: 1.04rem; line-height: 1.72; color: var(--ink-2); }
.press-article blockquote { margin: 0.4rem 0; padding: 1.1rem 1.3rem; border-left: 3px solid var(--brand); background: var(--surface); border-radius: 0 12px 12px 0; display: grid; gap: 0.5rem; }
.press-article blockquote p { color: var(--ink); font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; line-height: 1.5; }
.press-article cite { font-style: normal; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.press-article .links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 0.4rem; }

/* Trust-rad */
.trust { list-style: none; margin: 1.6rem 0 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.4rem; font-size: 13px; color: var(--ink-3); }
.trust li { display: inline-flex; align-items: center; gap: 6px; }
.trust svg { width: 14px; height: 14px; color: var(--accent); }

/* Formulärpanel */
.panel { border: 1px solid color-mix(in srgb, var(--brand) 40%, transparent); border-radius: var(--radius-lg); padding: clamp(1.4rem, 4vw, 2.6rem); background: linear-gradient(160deg, color-mix(in srgb, var(--brand) 10%, transparent), var(--surface)); }
.panel-head { text-align: center; max-width: 52ch; margin: 0 auto 1.6rem; display: grid; gap: 0.5rem; justify-items: center; }
.panel-head h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 800; }
.panel-head p { color: var(--ink-2); }
.contact-form { max-width: 46rem; margin: 0 auto; }
.frow { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (min-width: 640px) { .frow { grid-template-columns: 1fr 1fr; } }
.field { display: block; }
.field > span { display: block; font-size: 0.78rem; letter-spacing: 0.05em; color: var(--ink-3); margin-bottom: 0.45rem; font-weight: 600; }
.field input, .field textarea, .field select { width: 100%; padding: 0.8rem 0.95rem; font: inherit; color: var(--ink); background: var(--surface); border: 1px solid var(--line-2); border-radius: 10px; }
.field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink-3) 50%), linear-gradient(135deg, var(--ink-3) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.field select { color-scheme: dark; background-color: var(--bg-2); }
.field select option, .field select optgroup { background-color: var(--bg-2); color: var(--ink); }
.field select option:checked { background-color: color-mix(in srgb, var(--brand) 25%, var(--bg-2)); color: var(--ink); }
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--brand); outline-offset: 2px; background: var(--surface-2); }
.field textarea { resize: vertical; min-height: 5.5rem; }
.chips { border: 0; padding: 0; margin: 0; min-width: 0; }
.chips legend { display: block; font-size: 0.78rem; letter-spacing: 0.05em; color: var(--ink-3); margin-bottom: 0.45rem; font-weight: 600; padding: 0; }
.chips > label { display: inline-block; margin: 0 6px 6px 0; }
.chips input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chips span { display: inline-flex; align-items: center; padding: 0.55rem 0.85rem; border: 1px solid var(--line-2); border-radius: 999px; background: var(--surface); color: var(--ink-2); font-size: 13.5px; font-weight: 500; cursor: pointer; }
.chips input:checked + span { background: var(--brand); color: var(--brand-ink); border-color: transparent; }
.chips input:focus-visible + span { outline: 2px solid var(--brand); outline-offset: 2px; }
.contact-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.submit-row { display: flex; flex-direction: column; align-items: center; gap: 0.9rem; margin-top: 1.4rem; }
.contact-status { margin: 0; font-size: 0.98rem; text-align: center; }
.contact-status:empty { display: none; }
.contact-status.is-success { color: var(--ok); }
.contact-status.is-error { color: var(--bad); }
.fineprint { margin: 1rem 0 0; color: var(--ink-3); font-size: 0.85rem; text-align: center; }
.frameworks { margin-top: 2rem; text-align: center; display: grid; gap: 0.8rem; justify-items: center; }
.fw-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.fw-row img { width: 56px; height: auto; opacity: 0.85; }

/* CTA-band */
.band { margin-top: 1rem; border: 1px solid color-mix(in srgb, var(--brand) 45%, transparent); border-radius: var(--radius-lg); padding: clamp(1.6rem, 5vw, 3rem); text-align: center; background: linear-gradient(160deg, color-mix(in srgb, var(--brand) 14%, transparent), var(--surface)); display: grid; gap: 0.8rem; justify-items: center; }
.band h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800; }
.band p { color: var(--ink-2); max-width: 46ch; }
.band .cta, .panel-head + .contact-form .submit-row { justify-content: center; }

/* Footer */
.foot { border-top: 1px solid var(--line); margin-top: clamp(2rem, 5vw, 3.5rem); padding: 2rem 0 2.5rem; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.6rem; color: var(--ink-3); font-size: 13.5px; }
@media (max-width: 760px) { .foot { grid-template-columns: 1fr; } }
.foot .brand b { color: var(--ink); letter-spacing: 0.2em; font-family: var(--font-display); font-weight: 800; }
.foot .brand p { margin-top: 0.5rem; max-width: 36ch; }
.foot h3 { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); font-family: var(--font-mono); font-weight: 500; margin-bottom: 0.7rem; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; }
.foot a { color: var(--ink-2); text-decoration: none; }
.foot a:hover { color: var(--brand); }
.foot .badge img { display: block; margin-top: 0.8rem; border-radius: 8px; max-width: 280px; }
.foot .badge .kollen-badge img { margin-top: 0.6rem; max-width: 204px; border-radius: 6px; }
