/* ============================================================
   ZentAi — Arkitekter för digital infrastruktur
   Editorial redesign · v2
   Palette: Midnatt · Stål · Blueprint · Signal Orange
   ============================================================ */

/* -- Tokens ------------------------------------------------ */
:root, [data-theme="dark"] {
  --ink: #f5f7fa;
  --ink-2: #c7ceda;
  --ink-muted: #7b8596;
  --ink-dim: #4a5166;

  --bg: #0a1024;
  --bg-2: #0d1430;
  --bg-3: #111839;
  --surface: #131a3d;
  --surface-raised: #18204a;

  --line: #1d2651;
  --line-2: #2a3568;
  --line-3: #3d4a85;

  --beacon: #ff7a1a;
  --beacon-2: #ffa94d;
  --beacon-deep: #d96108;
  --beacon-dim: rgba(255, 122, 26, 0.12);
  --beacon-glow: rgba(255, 122, 26, 0.35);

  --grid: rgba(255, 122, 26, 0.07);
  --grid-2: rgba(255, 122, 26, 0.18);

  --shadow-card: 0 30px 80px -40px rgba(0, 4, 14, 0.78);
  --shadow-feat: 0 48px 120px -40px rgba(255, 122, 26, 0.35);
  color-scheme: dark;
}

[data-theme="light"] {
  --ink: #0a1024;
  --ink-2: #2b3348;
  --ink-muted: #5a6478;
  --ink-dim: #94a0b3;

  --bg: #f8f6f0;
  --bg-2: #f1ede3;
  --bg-3: #e8e3d5;
  --surface: #ffffff;
  --surface-raised: #fbfbf8;

  --line: #dfdbcd;
  --line-2: #c6c1b0;
  --line-3: #8e8873;

  --beacon: #d94f00;
  --beacon-2: #ff7a1a;
  --beacon-deep: #a83d00;
  --beacon-dim: rgba(217, 79, 0, 0.10);
  --beacon-glow: rgba(217, 79, 0, 0.25);

  --grid: rgba(217, 79, 0, 0.06);
  --grid-2: rgba(217, 79, 0, 0.16);

  --shadow-card: 0 30px 80px -40px rgba(10, 16, 36, 0.22);
  --shadow-feat: 0 48px 120px -40px rgba(217, 79, 0, 0.26);
  color-scheme: light;
}

:root {
  --f-display: "Instrument Serif", "Iowan Old Style", "Times New Roman", serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, Menlo, Consolas, monospace;
  --maxw: 1280px;
  --gutter: clamp(20px, 4.5vw, 56px);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* -- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  font-feature-settings: "cv11", "ss01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background 400ms var(--ease), color 400ms var(--ease);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
p { margin: 0; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 400; }
ul, ol { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--beacon); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--beacon); color: #fff; }

.skip-link {
  position: fixed; top: -100px; left: 50%; transform: translateX(-50%);
  padding: 10px 18px; background: var(--beacon); color: #fff; z-index: 200;
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.14em;
  text-transform: uppercase; border-radius: 0 0 4px 4px;
  transition: top 200ms var(--ease);
}
.skip-link:focus { top: 0; }

.mono { font-family: var(--f-mono); }
.serif-italic { font-family: var(--f-display); font-style: italic; }

/* -- Labels & rails --------------------------------------- */
.label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--beacon);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.label::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: currentColor;
}
.label--dim { color: var(--ink-muted); }
.label--accent { color: var(--beacon); }

.pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--beacon);
  box-shadow: 0 0 0 0 var(--beacon-glow);
  animation: pulse 2.2s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,122,26,0.55); }
  80%  { box-shadow: 0 0 0 10px rgba(255,122,26,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,122,26,0); }
}

.section {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: clamp(80px, 11vw, 160px);
  padding-bottom: clamp(80px, 11vw, 160px);
  position: relative;
}
.section--alt {
  max-width: none;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section--alt > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }

.section__rail {
  margin-bottom: 28px;
}

/* -- Display type ----------------------------------------- */
.display {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 20ch;
}
.display em {
  font-style: italic;
  color: var(--beacon);
  font-weight: 400;
}
.display--xl {
  font-size: clamp(48px, 7.8vw, 108px);
  max-width: 16ch;
}
.display--sm {
  font-size: clamp(28px, 3.6vw, 44px);
  max-width: 22ch;
}

.lede {
  margin-top: 22px;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 60ch;
}
.lede em { font-family: var(--f-display); font-style: italic; color: var(--beacon-2); }

/* -- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 220ms var(--ease);
  white-space: nowrap;
  position: relative;
}
.btn__arrow { transition: transform 220ms var(--ease); display: inline-block; }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--beacon);
  color: #fff;
  border-color: var(--beacon);
  box-shadow: 0 0 0 0 var(--beacon-glow);
}
.btn--primary:hover {
  background: var(--beacon-deep);
  border-color: var(--beacon-deep);
  box-shadow: 0 0 0 6px var(--beacon-glow);
}
[data-theme="light"] .btn--primary:hover { background: var(--beacon); border-color: var(--beacon); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-3);
}
.btn--ghost:hover {
  border-color: var(--beacon);
  color: var(--beacon);
}

.btn--secondary {
  background: var(--beacon);
  color: #fff;
  border-color: var(--beacon);
}
.btn--secondary:hover {
  background: var(--beacon-deep);
  border-color: var(--beacon-deep);
  box-shadow: 0 0 0 6px var(--beacon-glow);
}

.btn--sm { padding: 9px 14px; font-size: 12.5px; }
.btn--lg { padding: 17px 26px; font-size: 15px; }
.btn--full { width: 100%; justify-content: space-between; }

/* Tech / HUD-style external tools link */
.btn--tools {
  gap: 8px;
  padding-left: 11px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--beacon-2);
  background:
    linear-gradient(145deg, rgba(255, 122, 26, 0.14) 0%, transparent 42%, rgba(255, 122, 26, 0.06) 100%),
    var(--surface-raised);
  border-color: var(--line-3);
  box-shadow:
    inset 0 1px 0 rgba(255, 169, 77, 0.22),
    0 0 0 1px rgba(255, 122, 26, 0.12),
    0 4px 24px -10px rgba(255, 122, 26, 0.45);
  isolation: isolate;
}
.btn--tools .btn-tools__glyph {
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(255, 169, 77, 0.35));
}
.btn--tools .btn-tools__label {
  padding-right: 2px;
}
.btn-tools__scan {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.45;
  background: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 5px,
    rgba(255, 122, 26, 0.06) 5px,
    rgba(255, 122, 26, 0.06) 6px
  );
  mix-blend-mode: soft-light;
  z-index: 0;
}
.btn--tools > :not(.btn-tools__scan) {
  position: relative;
  z-index: 1;
}
.btn--tools:hover {
  color: var(--ink);
  border-color: var(--beacon);
  box-shadow:
    inset 0 1px 0 rgba(255, 169, 77, 0.35),
    0 0 0 1px rgba(255, 122, 26, 0.35),
    0 0 28px -6px var(--beacon-glow);
}
.btn--tools:hover .btn-tools__glyph {
  filter: drop-shadow(0 0 10px rgba(255, 169, 77, 0.55));
}
[data-theme="light"] .btn--tools {
  background:
    linear-gradient(145deg, rgba(217, 79, 0, 0.12) 0%, transparent 45%, rgba(217, 79, 0, 0.05) 100%),
    var(--surface-raised);
  color: var(--beacon-deep);
}
[data-theme="light"] .btn--tools:hover {
  color: var(--ink);
}

/* -- Nav --------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__glyph {
  font-family: var(--f-mono);
  color: var(--beacon);
  font-size: 18px;
  font-weight: 400;
}
.nav__mark {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav__mark em {
  font-style: italic;
  color: var(--beacon);
}
.nav__divider {
  width: 1px;
  height: 18px;
  background: var(--line-2);
}
.nav__meta {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav__links a {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 14px;
  font-size: 13.5px;
  color: var(--ink-2);
  transition: color 200ms var(--ease);
  position: relative;
}
.nav__links a:hover { color: var(--ink); }
.nav__num {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--beacon);
  opacity: 0.85;
  letter-spacing: 0.1em;
}

.nav__actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-2);
  border: 1px solid var(--line-2);
  border-radius: 2px;
  transition: all 180ms var(--ease);
}
.theme-toggle:hover { color: var(--beacon); border-color: var(--beacon); }

/* -- Hero -------------------------------------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  padding-top: clamp(40px, 6vw, 88px);
  padding-bottom: clamp(60px, 8vw, 110px);
  border-bottom: 1px solid var(--line);
}
.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  color: var(--beacon);
  overflow: hidden;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 60% 40%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 40%, black 0%, transparent 80%);
}
.hero__horizon {
  position: absolute;
  left: 0; right: 0;
  bottom: 22%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-3) 20%, var(--line-3) 80%, transparent);
  opacity: 0.6;
}
.hero__coast {
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: 62%;
  color: var(--beacon);
}
.hero__beacon {
  position: absolute;
  top: 18%;
  right: 8%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--beacon-glow) 0%, transparent 60%);
  filter: blur(30px);
  opacity: 0.6;
  animation: beacon 7s var(--ease) infinite;
}
@keyframes beacon {
  0%, 100% { opacity: 0.45; transform: scale(0.95); }
  50% { opacity: 0.75; transform: scale(1.05); }
}

.hero__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.hero__top {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(40px, 6vw, 72px);
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(56px, 11vw, 172px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
}
.hero__title .hero__kicker {
  display: inline-block;
  font-family: var(--f-mono) !important;
  font-size: clamp(11px, 1vw, 13px) !important;
  letter-spacing: 0.32em;
  color: var(--beacon);
  text-transform: uppercase;
  padding: 10px 14px;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  background: color-mix(in srgb, var(--bg) 60%, transparent);
  margin-bottom: clamp(18px, 2.4vw, 36px);
  font-weight: 500;
  line-height: 1;
  vertical-align: middle;
}
.hero__title .hero__stamp {
  display: inline-block;
  margin-left: clamp(8px, 1.2vw, 18px);
  font-family: var(--f-mono) !important;
  font-weight: 500;
  font-size: clamp(18px, 2.2vw, 30px) !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding: clamp(6px, 0.8vw, 12px) clamp(10px, 1.2vw, 18px);
  border: 1.5px solid var(--line-3);
  border-radius: 2px;
  vertical-align: 0.7em;
  position: relative;
  background:
    repeating-linear-gradient(
      45deg,
      transparent 0 6px,
      color-mix(in srgb, var(--ink-muted) 14%, transparent) 6px 7px
    );
  transform: rotate(-2deg);
  animation: stampIn 900ms var(--ease-out) 900ms both;
  transform-origin: center;
}
.hero__stamp::after {
  content: "";
  position: absolute; inset: 4px;
  border: 1px dashed var(--line-3);
  opacity: 0.5;
  border-radius: 1px;
}
@keyframes stampIn {
  0%   { transform: rotate(-14deg) scale(1.8); opacity: 0; }
  60%  { transform: rotate(2deg) scale(0.92); opacity: 1; }
  100% { transform: rotate(-2deg) scale(1); opacity: 1; }
}
.hero__line {
  display: block;
  overflow: visible;
}
.hero__line > .hero__word,
.hero__line > .hero__accent,
.hero__line > .hero__amp,
.hero__line > .hero__kicker {
  display: inline-block;
  animation: rise 1100ms var(--ease-out) both;
  opacity: 1;
}
.hero__line:nth-child(1) > * { animation-delay: 120ms; }
.hero__line:nth-child(2) > * { animation-delay: 260ms; }
.hero__line:nth-child(3) > * { animation-delay: 400ms; }

@keyframes rise {
  from { opacity: 0; transform: translateY(90%); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__line--indent { padding-left: clamp(40px, 8vw, 140px); }
.hero__amp {
  color: var(--beacon);
  font-style: italic;
  font-size: 0.7em;
  padding-right: 0.08em;
  vertical-align: 0.05em;
}
.hero__accent {
  color: var(--beacon);
  font-style: italic;
}

/* Chaos → Order background */
.chaos {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--beacon);
  pointer-events: none;
  opacity: 1;
  mix-blend-mode: screen;
}
[data-theme="light"] .chaos { mix-blend-mode: multiply; opacity: 0.6; }
.chaos__lines line {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0.15;
  stroke-width: 1;
}
.chaos__lines line.chaos-line {
  opacity: 0.45;
  stroke: var(--beacon);
}
.chaos__nodes .cn {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  animation: chaosNode 3200ms var(--ease-out) forwards;
  color: var(--beacon);
}
.chaos__nodes text {
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  fill: var(--beacon);
  text-transform: uppercase;
  opacity: 0;
  animation: chaosLabel 900ms var(--ease-out) 1800ms forwards;
}
@keyframes chaosNode {
  0%   { opacity: 0; transform: translate(var(--dx,0), var(--dy,0)) rotate(var(--r,0deg)) scale(0.2); }
  15%  { opacity: 0.8; }
  45%  { opacity: 1; transform: translate(var(--dx,0), var(--dy,0)) rotate(var(--r,0deg)) scale(1.1); }
  100% { opacity: 0.6; transform: translate(0,0) rotate(0deg) scale(1); }
}
@keyframes chaosLabel {
  to { opacity: 0.45; }
}

.hero__cols {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  margin-top: clamp(40px, 6vw, 72px);
  align-items: start;
}
@media (max-width: 960px) {
  .hero__cols { grid-template-columns: 1fr; }
}

.hero__lede {
  max-width: 54ch;
  animation: rise 1100ms var(--ease-out) 620ms both;
}
.hero__dropcap {
  float: left;
  font-family: var(--f-display);
  font-size: 84px;
  line-height: 0.85;
  color: var(--beacon);
  padding: 4px 12px 0 0;
  font-style: italic;
}
.hero__lede p {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
}
.hero__lede p em {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--ink);
}

.hero__cta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__trust {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.hero__trust strong { color: var(--ink); font-weight: 500; }
.hero__trust .sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--line-3);
}

/* Live panel */
.hero__panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: var(--shadow-card);
  animation: rise 1100ms var(--ease-out) 800ms both;
  position: relative;
}
.hero__panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid var(--beacon-dim);
  border-radius: 2px;
  pointer-events: none;
}
.panel__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-3);
}
.panel__dots { display: flex; gap: 5px; }
.panel__dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--line-3);
}
.panel__dots span:nth-child(1) { background: #e76363; opacity: 0.8; }
.panel__dots span:nth-child(2) { background: #e0b04a; opacity: 0.8; }
.panel__dots span:nth-child(3) { background: #6fcf97; opacity: 0.8; }
.panel__title {
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
  margin-right: auto;
}
.panel__tag {
  font-family: var(--f-mono);
  font-size: 9.5px;
  color: var(--beacon);
  background: var(--beacon-dim);
  padding: 3px 7px;
  border: 1px solid var(--beacon);
  letter-spacing: 0.18em;
}

.panel__body { padding: 18px 18px 14px; }
.panel__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  font-size: 13px;
}
.panel__k {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.panel__v { color: var(--ink); font-weight: 500; }
.panel__v.mono { font-family: var(--f-mono); font-size: 13px; color: var(--beacon); }

.panel__hr {
  border: 0; height: 1px; background: var(--line); margin: 10px 0;
}

.panel__log {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-2);
  line-height: 1.7;
  min-height: 120px;
}
.log__line {
  display: flex;
  gap: 10px;
  opacity: 0;
  animation: fadeInLog 500ms var(--ease-out) forwards;
}
.panel__log .log__line:nth-child(1) { animation-delay: 1.2s; }
.panel__log .log__line:nth-child(2) { animation-delay: 1.7s; }
.panel__log .log__line:nth-child(3) { animation-delay: 2.2s; }
.panel__log .log__line:nth-child(4) { animation-delay: 2.7s; }
.panel__log .log__line:nth-child(5) { animation-delay: 3.2s; }

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

.log__t { color: var(--ink-dim); }
.log__b { color: var(--ink-muted); }
.log__b.beacon { color: var(--beacon); }
.log__line em { color: var(--ink); font-style: normal; }
.log__v { color: var(--beacon-2); margin-left: auto; }

.panel__caret {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--beacon);
  margin-top: 8px;
  letter-spacing: 0.1em;
}
.blink {
  display: inline-block;
  animation: blink 900ms steps(2) infinite;
}
@keyframes blink { to { opacity: 0; } }

.panel__foot {
  border-top: 1px solid var(--line);
  padding: 10px 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

.hero__base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(48px, 7vw, 96px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.compass {
  width: 46px; height: 46px;
  color: var(--ink-muted);
  opacity: 0.8;
  animation: rotate 40s linear infinite;
}
@keyframes rotate {
  to { transform: rotate(360deg); }
}
.hero__scroll {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: flex-end;
}
.hero__scroll-line {
  display: inline-block;
  width: clamp(80px, 20vw, 220px);
  height: 1px;
  background: linear-gradient(90deg, var(--line-3), transparent);
}

/* -- Trust / marquee -------------------------------------- */
.trust {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  padding: 24px 0 32px;
  overflow: hidden;
}
.trust__head {
  max-width: var(--maxw);
  margin: 0 auto 18px;
  padding: 0 var(--gutter);
}
.marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 48s linear infinite;
}
.marquee__set {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
  font-family: var(--f-display);
  font-size: clamp(20px, 2.6vw, 32px);
  color: var(--ink-2);
  white-space: nowrap;
}
.marquee__set .dot { color: var(--beacon); font-size: 0.6em; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* -- Diagnos ---------------------------------------------- */
.diagnos__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(56px, 8vw, 96px);
}
@media (max-width: 760px) {
  .diagnos__head { grid-template-columns: 1fr; }
}

.pains {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 900px) {
  .pains { grid-template-columns: 1fr; }
}
.pain {
  background: var(--bg);
  padding: clamp(28px, 3.5vw, 44px);
  transition: background 260ms var(--ease);
  position: relative;
}
.pain:hover { background: var(--surface); }
.pain__no {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--beacon);
  margin-bottom: 24px;
}
.pain__title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  max-width: 18ch;
}
.pain__title em {
  font-style: italic;
  color: var(--beacon);
}
.pain p {
  font-size: 15px;
  color: var(--ink-2);
  margin-bottom: 22px;
}
.pain__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pain__tags li {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 5px 9px;
  border: 1px solid var(--line-2);
  border-radius: 2px;
}

.diagnos__pull {
  margin: clamp(56px, 8vw, 96px) auto 0;
  max-width: 52ch;
  text-align: center;
  padding: clamp(40px, 6vw, 72px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.diagnos__pull blockquote {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  position: relative;
}
.diagnos__pull blockquote em {
  font-style: italic;
  color: var(--beacon);
}
.quote-mark {
  font-size: 2em;
  color: var(--beacon);
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 0.1em;
}
.diagnos__pull figcaption {
  margin-top: 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
}

/* -- Pillars ---------------------------------------------- */
.pillars__head {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(56px, 8vw, 96px);
}
@media (max-width: 900px) {
  .pillars__head { grid-template-columns: 1fr; }
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
@media (max-width: 1100px) {
  .pillars__grid { grid-template-columns: 1fr; }
}

.pillar {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: clamp(24px, 2.6vw, 36px);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 300ms var(--ease), border-color 300ms var(--ease);
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--line-3);
}
.pillar--featured {
  background: var(--surface);
  border-color: var(--beacon);
  box-shadow: var(--shadow-feat);
}
.pillar__ribbon {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--beacon);
  background: var(--beacon-dim);
  padding: 5px 9px;
  border: 1px solid var(--beacon);
}
.pillar__meta {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 20px;
}
.pillar__no {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 36px;
  color: var(--beacon);
  line-height: 0.8;
}
.pillar__tag {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.pillar__art {
  height: 180px;
  margin-bottom: 22px;
  color: var(--ink-muted);
  border: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  position: relative;
}
.pillar--featured .pillar__art {
  background: var(--bg-3);
  color: var(--ink-2);
}
.pillar__art svg { width: 100%; height: 100%; }

.ai-pkt {
  transform-origin: center;
}
.ai-pkt--a { animation: pktA 3.2s linear infinite; }
.ai-pkt--b { animation: pktB 3.6s linear infinite 0.8s; }
.ai-pkt--c { animation: pktC 3.4s linear infinite 1.6s; }
@keyframes pktA {
  0%   { transform: translate(68px, 56px); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translate(132px, 96px); opacity: 0; }
}
@keyframes pktB {
  0%   { transform: translate(188px, 124px); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translate(252px, 164px); opacity: 0; }
}
@keyframes pktC {
  0%   { transform: translate(252px, 56px); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translate(188px, 96px); opacity: 0; }
}

.pillar__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 14px;
}
.pillar__title em { font-style: italic; color: var(--beacon); }
.pillar__lede {
  font-size: 15px;
  color: var(--ink-2);
  margin-bottom: 20px;
  line-height: 1.55;
}
.pillar__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-bottom: 22px;
  flex: 1;
}
.pillar__list li {
  font-size: 14px;
  color: var(--ink-2);
  padding-left: 18px;
  position: relative;
}
.pillar__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--beacon);
  font-family: var(--f-mono);
  font-size: 11px;
  top: 4px;
}
.pillar__list em { font-style: italic; color: var(--ink); }

.pillar__factbox {
  background: var(--bg-3);
  border-left: 2px solid var(--beacon);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin-top: 4px;
}
.pillar__factbox-label {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--beacon);
  margin-bottom: 6px;
}
.pillar__factbox em { font-style: italic; color: var(--ink); }

.pillar__foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.pillar__price {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--ink);
}
.pillar__unit {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

/* -- Metod / blueprint ------------------------------------ */
.metod__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
@media (max-width: 900px) {
  .metod__head { grid-template-columns: 1fr; }
}

.blueprint {
  margin: 0 0 clamp(64px, 9vw, 120px);
}
.blueprint__frame {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  padding: 28px 32px 22px;
  color: var(--ink-2);
}
.blueprint__corners span {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid var(--beacon);
}
.blueprint__corners span:nth-child(1) { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.blueprint__corners span:nth-child(2) { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.blueprint__corners span:nth-child(3) { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.blueprint__corners span:nth-child(4) { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.blueprint__labels {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
  text-transform: uppercase;
  flex-wrap: wrap;
}
.blueprint__svg {
  width: 100%;
  height: auto;
  color: var(--ink-2);
}
.bp-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  fill: var(--ink-muted);
  text-transform: uppercase;
}
.bp-title {
  font-family: var(--f-display);
  font-size: 28px;
  fill: var(--ink);
}
.bp-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  fill: var(--ink-muted);
  letter-spacing: 0.1em;
}
.blueprint__cap {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

/* -- Steps ------------------------------------------------- */
.steps__head {
  margin-bottom: 40px;
}
.steps__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(20px, 3vw, 40px);
  padding: 28px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }

.step__marker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 6px;
}
.step__no {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 40px;
  color: var(--beacon);
  line-height: 0.9;
}
.step__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--beacon);
  margin-top: 12px;
  position: relative;
  z-index: 2;
}
.step__dot--pulse::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--beacon);
  animation: pulseRing 2s var(--ease) infinite;
}
@keyframes pulseRing {
  0% { transform: scale(0.7); opacity: 1; }
  100% { transform: scale(1.7); opacity: 0; }
}
.step__rail {
  position: absolute;
  left: 4.5px; top: 70px;
  bottom: -28px;
  width: 1px;
  background: var(--line-2);
}

.step__body { max-width: 68ch; }
.step__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.step__title {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.1;
  color: var(--ink);
}
.step__time {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--beacon);
  text-transform: uppercase;
}
.step__body p {
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.step__body p em { font-style: italic; color: var(--ink); }
.step__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.step__tags span {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 5px 9px;
  border: 1px solid var(--line-2);
}

/* -- Stats ------------------------------------------------- */
.stats {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 84px) var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 860px) {
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
}
.stat {
  padding: 14px 24px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat--accent .stat__num { color: var(--beacon); }
.stat__num {
  font-family: var(--f-display);
  font-size: clamp(48px, 6.4vw, 84px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}
.stat__sfx {
  font-size: 0.45em;
  color: var(--beacon);
  margin-left: 6px;
  padding-top: 0.22em;
  font-style: italic;
}
.stat--accent .stat__sfx { color: var(--ink-2); }
.stat__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  text-transform: uppercase;
  line-height: 1.5;
}

/* -- Bevis / cases ---------------------------------------- */
.bevis__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
@media (max-width: 760px) {
  .bevis__head { grid-template-columns: 1fr; }
}
.cases {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.case {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(36px, 5vw, 64px) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.case:last-child { border-bottom: 1px solid var(--line); }
@media (max-width: 900px) {
  .case { grid-template-columns: 1fr; gap: 24px; }
}

.case__head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: sticky;
  top: 90px;
}
.case__no {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 44px;
  color: var(--beacon);
  line-height: 0.9;
}
.case__type {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.case__title {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 18px;
  max-width: 24ch;
}
.case__title em { font-style: italic; color: var(--beacon); }

.case__body {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 62ch;
}

.case__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 18px;
}
@media (max-width: 640px) { .case__metrics { grid-template-columns: 1fr; } }
.metric { background: var(--bg); padding: 20px 22px; }
.metric__num {
  font-family: var(--f-display);
  font-size: clamp(30px, 3.4vw, 42px);
  color: var(--beacon);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.metric__label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  text-transform: uppercase;
  line-height: 1.5;
}

.case__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  text-transform: uppercase;
  align-items: center;
}
.case__foot .sep {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--line-3);
}

/* Pilot */
.pilot {
  margin-top: clamp(48px, 6vw, 80px);
  padding: clamp(32px, 4vw, 56px);
  background: var(--surface);
  border: 1px solid var(--beacon);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.pilot::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle at right, var(--beacon-glow), transparent 70%);
  pointer-events: none;
  opacity: 0.4;
}
@media (max-width: 900px) {
  .pilot { grid-template-columns: 1fr; }
}
.pilot__body h3 {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 10px;
  max-width: 24ch;
}
.pilot__body h3 em { font-style: italic; color: var(--beacon); }
.pilot__body p {
  color: var(--ink-2);
  font-size: 14.5px;
  max-width: 58ch;
}
.pilot > a { position: relative; z-index: 2; }

/* -- Investering / plans ---------------------------------- */
.invest__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
@media (max-width: 900px) { .invest__head { grid-template-columns: 1fr; } }

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 1100px) { .plans { grid-template-columns: 1fr; } }

.plan {
  background: var(--bg);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan--feat {
  background: var(--surface);
}
.plan--feat::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--beacon);
  pointer-events: none;
  z-index: 2;
}
.plan__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--beacon);
  color: #fff;
  padding: 6px 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.plan__badge-star { font-size: 11px; }

.plan__head { margin-bottom: 24px; }
.plan__kicker {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.plan__name {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.plan__name em { font-style: italic; color: var(--beacon); }
.plan__line { color: var(--ink-2); font-size: 14.5px; max-width: 32ch; line-height: 1.5; }

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 18px 0 6px;
  border-top: 1px solid var(--line);
}
.plan__from {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.plan__amount {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.plan__amount--text { font-style: italic; color: var(--beacon); font-size: clamp(32px, 4vw, 46px); }
.plan__cur {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--ink-muted);
  font-style: italic;
}
.plan__unit {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.15em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.plan__feats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}
.plan__feats li {
  font-size: 14px;
  color: var(--ink-2);
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}
.plan__feats li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--beacon);
  font-family: var(--f-mono);
  font-size: 11px;
}

.plan__care {
  padding: 16px;
  border: 1px solid var(--line);
  margin-bottom: 20px;
  background: var(--bg-2);
}
.plan__care--feat {
  background: var(--beacon-dim);
  border-color: var(--beacon);
}
.plan__care-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.plan__care-top span:first-child {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--ink);
  text-transform: uppercase;
}
.plan__care-price {
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--beacon);
  font-style: italic;
}
.plan__care p {
  font-size: 12.5px;
  color: var(--ink-muted);
  line-height: 1.5;
}
.plan__care strong { color: var(--ink); font-weight: 600; }

/* CTO callout */
.cto {
  margin-top: clamp(48px, 6vw, 80px);
  padding: clamp(36px, 5vw, 64px);
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  position: relative;
}
@media (max-width: 900px) {
  .cto { grid-template-columns: 1fr; }
}
.cto__mark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--beacon);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.cto__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--beacon);
  box-shadow: 0 0 0 4px var(--beacon-dim);
}
@media (max-width: 900px) { .cto__mark { writing-mode: unset; transform: none; } }

.cto h3 {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.cto h3 em { font-style: italic; color: var(--beacon); }
.cto p {
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 60ch;
}
.cto p strong { color: var(--ink); font-weight: 600; }

.plans__foot {
  margin-top: 32px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  text-transform: uppercase;
  text-align: center;
}

/* -- Diff + FAQ ------------------------------------------- */
.diff-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 900px) { .diff-faq__grid { grid-template-columns: 1fr; } }

.diff-faq__why {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.diff-faq__why h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--beacon);
  margin-bottom: 20px;
}
.diff-faq__why ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.diff-faq__why li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
}
.diff-faq__why .glyph {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  color: var(--beacon);
  line-height: 1;
  text-align: center;
}

.faq {
  border-top: 1px solid var(--line);
  padding: 4px 0;
}
.faq:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--f-display);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.3;
  color: var(--ink);
  transition: color 200ms var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq:hover summary { color: var(--beacon); }
.faq__plus {
  font-family: var(--f-mono);
  font-size: 22px;
  color: var(--beacon);
  transition: transform 300ms var(--ease);
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}
.faq[open] .faq__plus { transform: rotate(45deg); }
.faq p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
  padding: 0 0 22px;
  max-width: 60ch;
}
.faq p em { font-style: italic; color: var(--ink); }

/* -- CTA --------------------------------------------------- */
.cta {
  background: var(--bg-3);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 50%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black, transparent 80%);
  opacity: 0.8;
}
.cta__beacon {
  position: absolute;
  bottom: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--beacon-glow), transparent 60%);
  filter: blur(50px);
  opacity: 0.6;
}
.cta__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.cta__title {
  margin: 0 auto;
  max-width: 18ch;
  text-align: center;
}
.cta__lede {
  margin: 28px auto 0;
  max-width: 56ch;
  text-align: center;
  color: var(--ink-2);
  font-size: clamp(16px, 1.5vw, 18.5px);
}

.booking {
  margin-top: clamp(48px, 6vw, 72px);
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
  background: var(--surface);
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line-2);
}
@media (max-width: 720px) { .booking { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 12px 14px;
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 15px;
  border-radius: 2px;
  transition: border-color 180ms var(--ease);
}
[data-theme="light"] .field input,
[data-theme="light"] .field select,
[data-theme="light"] .field textarea { background: #fff; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--beacon);
}
.field textarea { resize: vertical; font-family: var(--f-body); }

.booking__submit {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.booking__micro {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.booking__ok {
  grid-column: 1 / -1;
  background: var(--beacon-dim);
  border: 1px solid var(--beacon);
  padding: 14px 18px;
  color: var(--beacon);
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
}

/* -- Footer ----------------------------------------------- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: clamp(56px, 7vw, 96px) 0 32px;
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 900px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer__inner { grid-template-columns: 1fr; } }

.footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.footer__mark {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--ink);
}
.footer__mark em { font-style: italic; color: var(--beacon); }
.footer__tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-top: 4px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col h5 {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--beacon);
  margin-bottom: 8px;
}
.footer__col a,
.footer__col span {
  font-size: 14px;
  color: var(--ink-2);
  transition: color 180ms var(--ease);
}
.footer__col a:hover { color: var(--beacon); }

.footer__rule {
  max-width: var(--maxw);
  margin: 48px auto 24px;
  padding: 0 var(--gutter);
  height: 1px;
  background: var(--line);
}
.footer__bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.15em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

/* -- Sticky mobile CTA ----------------------------------- */
.sticky-cta {
  display: none;
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 70;
  padding: 14px 18px;
  background: var(--beacon);
  color: #fff;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14px;
  border-radius: 2px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 720px) {
  .sticky-cta { display: flex; }
  .nav__links { display: none; }
  .nav__meta { display: none; }
  .nav__divider { display: none; }
}

/* -- Prefers reduced motion ------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============================================================
   ARBETEN / PORTFOLIO PAGE
   ============================================================ */

/* Nav active state */
.nav__active { color: var(--beacon) !important; }

/* Hero sub-page (shorter than main hero) */
.hero--sub { min-height: 52vh; padding-bottom: 80px; }
.hero__inner--sub { padding-top: 140px; }
.arbeten-hero__lede {
  max-width: 560px;
  margin-top: 28px;
  font-size: 16px;
  opacity: 0.75;
}

/* -- Case full layout ---------------------------------------- */
.arbeten-case { padding-top: 80px; }

.case-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}
@media (max-width: 1100px) {
  .case-full { grid-template-columns: 1fr; gap: 60px; }
}

/* -- Case content -------------------------------------------- */
.case-full__header { margin-bottom: 24px; }
.case-full__no {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--beacon);
  display: block;
  margin-bottom: 6px;
}
.case-full__type {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  display: block;
  margin-bottom: 12px;
}
.case-full__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  color: var(--ink);
}
.case-full__title em { font-style: italic; color: var(--beacon); }

.case-full__body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-muted);
  margin-bottom: 24px;
}

.case-full__feats {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.case-full__feats li {
  font-size: 13.5px;
  color: var(--ink-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.case-full__feats li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--beacon);
  font-family: var(--f-mono);
  font-size: 11px;
  top: 2px;
}

/* -- Case metrics -------------------------------------------- */
.case-full__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
}
.case-metric {
  background: var(--surface);
  padding: 20px 16px;
  text-align: center;
}
.case-metric__num {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--beacon);
  line-height: 1;
  margin-bottom: 6px;
}
.case-metric__label {
  font-size: 11px;
  color: var(--ink-muted);
  line-height: 1.4;
}

/* -- Case quote --------------------------------------------- */
.case-full__quote {
  border-left: 2px solid var(--beacon);
  padding: 20px 24px;
  background: var(--surface);
  border-radius: 0 8px 8px 0;
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-muted);
  position: relative;
}
.case-full__quote .quote-mark {
  font-family: var(--f-display);
  font-size: 40px;
  color: var(--beacon);
  opacity: 0.4;
  line-height: 0;
  position: absolute;
  top: 28px;
  left: 16px;
}
.case-full__quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--beacon);
}

/* -- Case stack --------------------------------------------- */
.case-full__stack { display: flex; flex-direction: column; gap: 8px; }
.case-full__stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.case-full__stack-tags span {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink-muted);
}

/* -- More cases section ------------------------------------- */
.arbeten-more { padding-top: 80px; }
.arbeten-more__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .arbeten-more__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   IPHONE MOCKUP
   ============================================================ */
.iphone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: 100px;
}
.iphone-caption { margin-top: 16px; text-align: center; }

.iphone {
  width: 300px;
  background: #1c1c1e;
  border-radius: 52px;
  padding: 12px;
  box-shadow:
    0 0 0 1px #3a3a3c,
    0 0 0 3px #2c2c2e,
    0 40px 100px rgba(0,0,0,0.7),
    0 0 60px rgba(255,122,26,0.06);
  position: relative;
}

/* Side buttons */
.iphone__side {
  position: absolute;
  background: #3a3a3c;
  border-radius: 2px;
}
.iphone__side--left {
  left: -3px;
  top: 100px;
  width: 3px;
  height: 32px;
  box-shadow: 0 44px 0 #3a3a3c;
}
.iphone__side--right {
  right: -3px;
  top: 130px;
  width: 3px;
  height: 60px;
}

.iphone__frame {
  background: #f2f2f7;
  border-radius: 42px;
  overflow: hidden;
  height: 620px;
  display: flex;
  flex-direction: column;
}

/* Status bar */
.iphone__status-bar {
  background: #0c1627;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 6px;
  flex-shrink: 0;
  position: relative;
}
.iphone__time {
  font-size: 11px;
  font-weight: 600;
  color: white;
  font-family: var(--f-sans, 'Inter', sans-serif);
}
.iphone__island {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 8px;
  width: 90px;
  height: 26px;
  background: #000;
  border-radius: 20px;
}
.iphone__status-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  color: white;
}

/* Screen content area */
.iphone__screen {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  background: #f2f2f7;
}
.iphone__screen::-webkit-scrollbar { display: none; }

/* Home bar */
.iphone__home-bar {
  background: #0c1627;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.iphone__home-bar::after {
  content: '';
  width: 100px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 4px;
}

/* ============================================================
   GHL APP INNER STYLES
   ============================================================ */
.ghl-app {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  font-family: 'Inter', -apple-system, sans-serif;
}

/* App header */
.ghl-header {
  background: #0c1627;
  padding: 10px 14px 12px;
  flex-shrink: 0;
}
.ghl-hotel-id {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 6px;
}
.ghl-hotel-name-stack {
  display: flex;
  flex-direction: column;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #c9a84c;
  line-height: 1.3;
}
.ghl-header-controls {
  display: flex;
  align-items: center;
  gap: 4px;
}
.ghl-user-badge {
  font-size: 7.5px;
  background: rgba(255,255,255,0.1);
  color: #e0e0e0;
  padding: 3px 7px;
  border-radius: 20px;
  font-weight: 500;
}
.ghl-icon-btn {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ghl-logout-btn {
  font-size: 7px;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  padding: 3px 6px;
  border-radius: 4px;
}
.ghl-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid white;
  background: #1a2a40;
  color: white;
  font-size: 6px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}
.ghl-page-title {
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.ghl-date-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 6px 10px;
  margin-bottom: 6px;
}
.ghl-date-icon { font-size: 12px; }
.ghl-date-main {
  font-size: 10px;
  font-weight: 600;
  color: white;
  line-height: 1.2;
}
.ghl-date-sub {
  font-size: 8px;
  color: rgba(255,255,255,0.55);
}
.ghl-live-bar {
  font-size: 7.5px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 2px;
}
.ghl-live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #34c759;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

/* Rooms body */
.ghl-rooms-body {
  flex: 1;
  background: #f2f2f7;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Floor header */
.ghl-floor-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 4px;
  margin-top: 4px;
}
.ghl-floor-icon {
  width: 26px;
  height: 26px;
  background: #1a2a40;
  color: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}
.ghl-floor-icon--dark { background: #0c1627; }
.ghl-floor-info { flex: 1; }
.ghl-floor-name {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #1c1c1e;
}
.ghl-floor-count {
  display: block;
  font-size: 9px;
  color: #8e8e93;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
}
.ghl-floor-chevron {
  font-size: 11px;
  color: #8e8e93;
}

/* Room card */
.ghl-room {
  background: white;
  border-radius: 12px;
  padding: 10px 12px;
  border: 1.5px solid rgba(45,156,92,0.25);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.ghl-room-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ghl-room-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: white;
  font-size: 9.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ghl-room-num--clean { background: #2d9c5c; }
.ghl-room-num--dirty { background: #8e8e93; }

.ghl-room-info {
  flex: 1;
  min-width: 0;
}
.ghl-room-name {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #1c1c1e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ghl-room-cleaner {
  display: block;
  font-size: 8.5px;
  color: #c9a84c;
  margin-top: 1px;
}
.ghl-room-cleaner--sirvoy { color: #8e8e93; }
.ghl-room-chevron {
  font-size: 11px;
  color: #8e8e93;
  flex-shrink: 0;
}
.ghl-room-btns {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
.ghl-btn {
  padding: 5px 9px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.ghl-btn--dirty {
  background: #f2f2f7;
  color: #8e8e93;
}
.ghl-btn--active-dirty {
  background: #ff9500;
  color: white;
}
.ghl-btn--clean {
  background: #2d9c5c;
  color: white;
}
.ghl-btn--only {
  background: #2d9c5c;
  color: white;
}

/* Room badges */
.ghl-room-badges {
  display: flex;
  gap: 5px;
  margin-top: 7px;
  padding-top: 0;
  flex-wrap: wrap;
}
.ghl-badge {
  font-size: 8.5px;
  padding: 3px 8px;
  border-radius: 20px;
  font-weight: 500;
}
.ghl-badge--checkout {
  background: #ede9f7;
  color: #6c47c4;
  border: 1px solid rgba(108,71,196,0.2);
}
.ghl-badge--checkin {
  background: #fff8e6;
  color: #c9a84c;
  border: 1px solid rgba(201,168,76,0.2);
}
.ghl-badge--stanna {
  background: #fff8e6;
  color: #c9a84c;
  border: 1px solid rgba(201,168,76,0.2);
}
.ghl-badge--utcheckad {
  background: #eaf6ee;
  color: #2d9c5c;
  border: 1px solid rgba(45,156,92,0.25);
}
.ghl-badge--checkin-blue {
  background: #e8efff;
  color: #3b6df5;
  border: 1px solid rgba(59,109,245,0.22);
}

/* -- Brand header (centered, like real app) ----------------- */
.ghl-brand-header {
  background: #0c1627;
  padding: 10px 14px 14px;
  flex-shrink: 0;
  position: relative;
}
.ghl-brand-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.ghl-brand-id {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ghl-brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.45);
  color: #c9a84c;
  font-family: var(--f-display, serif);
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}
.ghl-brand-user-name {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.ghl-brand-user-role {
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #c9a84c;
  margin-top: 1px;
}
.ghl-brand-pencil {
  font-size: 8px;
  color: rgba(255,255,255,0.45);
  margin-left: 2px;
}
.ghl-brand-actions {
  display: flex;
  gap: 6px;
}
.ghl-brand-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ghl-brand-eyebrow {
  font-size: 7.5px;
  letter-spacing: 0.32em;
  color: #c9a84c;
  text-align: center;
  font-weight: 700;
  margin-bottom: 2px;
}
.ghl-brand-title {
  font-family: var(--f-display, 'Cormorant Garamond', serif);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  letter-spacing: 0.005em;
  line-height: 1.05;
  margin-bottom: 8px;
}
.ghl-brand-datebar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 8.5px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.ghl-brand-datebar .nav-arrow {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: rgba(255,255,255,0.7);
}
.ghl-brand-datebar .live-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #34c759;
  animation: pulse 2s ease-in-out infinite;
}
.ghl-brand-datebar .live-text { color: #34c759; font-weight: 600; }
.ghl-brand-datebar .meta { color: rgba(255,255,255,0.55); font-family: var(--f-mono, monospace); font-size: 7.5px; letter-spacing: 0.05em; }

/* -- Stats strip ------------------------------------------- */
.ghl-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 8px 10px 0;
}
.ghl-stat {
  background: #fff;
  border-radius: 8px;
  padding: 6px 4px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
}
.ghl-stat__num {
  font-size: 13px;
  font-weight: 700;
  color: #1c1c1e;
  line-height: 1;
}
.ghl-stat__label {
  font-size: 6.5px;
  letter-spacing: 0.12em;
  color: #8e8e93;
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 600;
}
.ghl-stat--clean .ghl-stat__num { color: #2d9c5c; }
.ghl-stat--dirty .ghl-stat__num { color: #ff9500; }

/* Room left-edge accent (matches screenshot) */
.ghl-room { position: relative; overflow: hidden; }
.ghl-room::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: #2d9c5c;
}
.ghl-room--dirty::before { background: #ff9500; }
.ghl-room--stanna::before { background: #c9a84c; }

/* -- Bottom tab bar ---------------------------------------- */
.ghl-tabbar {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 6px 0 4px;
}
.ghl-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 4px 0 2px;
  font-size: 9px;
  font-weight: 600;
  color: #8e8e93;
  position: relative;
}
.ghl-tab__icon { font-size: 14px; line-height: 1; }
.ghl-tab--active { color: #0c1627; }
.ghl-tab--active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30%;
  right: 30%;
  height: 2px;
  border-radius: 0 0 2px 2px;
  background: #c9a84c;
}

/* ============================================================
   GHL ROUTINES VIEW
   ============================================================ */
.ghl-rt-header {
  background: #0c1627;
  padding: 10px 14px 14px;
  flex-shrink: 0;
  color: #fff;
}
.ghl-rt-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8px;
  font-family: var(--f-mono, monospace);
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.ghl-rt-week-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 3px 8px;
  color: #fff;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.ghl-rt-week-pill .dot { color: #c9a84c; }
.ghl-rt-today-link { color: #c9a84c; font-weight: 700; }

.ghl-rt-day {
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.ghl-rt-day-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: rgba(255,255,255,0.7);
}
.ghl-rt-day-center { text-align: center; }
.ghl-rt-day-name {
  font-family: var(--f-display, 'Cormorant Garamond', serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ghl-rt-today-tag {
  font-size: 7px;
  font-family: var(--f-mono, monospace);
  letter-spacing: 0.18em;
  color: #c9a84c;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 4px;
  padding: 2px 5px;
  font-weight: 700;
}
.ghl-rt-day-date {
  display: block;
  font-size: 9px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}
.ghl-rt-frukost {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 9px;
  color: #fff;
  font-weight: 500;
  margin: 6px auto 8px;
}
.ghl-rt-frukost-wrap { text-align: center; }
.ghl-rt-progress-row {
  display: flex;
  justify-content: space-between;
  font-size: 8.5px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}
.ghl-rt-progress-row .pct { color: #c9a84c; font-weight: 700; }
.ghl-rt-progress {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.ghl-rt-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, #c9a84c, #e6c97a);
}

/* Routines body */
.ghl-rt-body {
  flex: 1;
  background: #f2f2f7;
  padding: 10px 12px 16px;
  position: relative;
}
.ghl-rt-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  font-family: var(--f-mono, monospace);
  letter-spacing: 0.18em;
  color: #6c6c70;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 4px 8px;
}
.ghl-rt-section .clock { margin-right: 4px; }
.ghl-rt-section .count { color: #8e8e93; }

.ghl-rt-card {
  background: #fff;
  border-radius: 12px;
  padding: 11px 12px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}
.ghl-rt-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: #ff5b5b;
}
.ghl-rt-card--daily::before { background: #c9a84c; }
.ghl-rt-card--week::before { background: #3b6df5; }
.ghl-rt-card--month::before { background: #6c47c4; }
.ghl-rt-card--done::before { background: #2d9c5c; }

.ghl-rt-card__body { flex: 1; min-width: 0; }
.ghl-rt-card__title {
  font-size: 11px;
  font-weight: 700;
  color: #1c1c1e;
  line-height: 1.25;
}
.ghl-rt-card__sub {
  font-size: 9px;
  color: #8e8e93;
  margin-top: 2px;
  line-height: 1.3;
}
.ghl-rt-card__tags {
  display: flex;
  gap: 4px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.ghl-rt-tag {
  font-size: 7.5px;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  text-transform: uppercase;
}
.ghl-rt-tag--once { background: #ffe5e5; color: #d24545; }
.ghl-rt-tag--daily { background: #fff3d6; color: #a87a14; }
.ghl-rt-tag--week { background: #e3ecff; color: #2c54b8; }
.ghl-rt-tag--month { background: #ece4ff; color: #5a36ad; }
.ghl-rt-tag--type { background: #eef0f2; color: #4a4a52; }

.ghl-rt-card__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.ghl-rt-icon-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #f2f2f7;
  display: flex; align-items: center; justify-content: center;
  color: #8e8e93;
  font-size: 11px;
}
.ghl-rt-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid #d1d1d6;
  display: flex; align-items: center; justify-content: center;
  color: #c7c7cc;
  font-size: 13px;
  background: #fff;
}
.ghl-rt-check--done {
  background: #2d9c5c;
  border-color: #2d9c5c;
  color: #fff;
}

/* Multi-signering stack of initials */
.ghl-rt-sig-stack {
  display: inline-flex;
  margin-left: 4px;
}
.ghl-rt-sig {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #c9a84c;
  color: #fff;
  font-size: 7.5px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid #fff;
  margin-left: -6px;
  letter-spacing: 0.02em;
}
.ghl-rt-sig:first-child { margin-left: 0; }
.ghl-rt-sig--blue { background: #3b6df5; }
.ghl-rt-sig--purple { background: #6c47c4; }
.ghl-rt-sig--green { background: #2d9c5c; }

/* FAB */
.ghl-rt-fab {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #0c1627;
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(12,22,39,0.4);
  line-height: 1;
}

/* ============================================================
   DUAL MOCKUP LAYOUT (case page)
   ============================================================ */
.iphone-wrap--dual {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.iphone-wrap--dual .iphone { transform: scale(0.94); transform-origin: top center; }
@media (max-width: 1100px) {
  .iphone-wrap--dual { position: static; }
  .iphone-wrap--dual .iphone { transform: none; }
}

/* ============================================================
   FEATURED WORK TEASER (index.html)
   ============================================================ */
.fw-teaser { background: var(--surface); }

.fw-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .fw-teaser__inner { grid-template-columns: 1fr; gap: 40px; }
}

.fw-teaser__text { display: flex; flex-direction: column; gap: 20px; }
.fw-teaser__text .display--sm { margin-top: 8px; }
.fw-teaser__body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-muted);
  max-width: 420px;
}

.fw-teaser__metrics {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.fw-metric {
  background: var(--bg);
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fw-metric--accent { background: var(--bg-3); }

.fw-metric__num {
  font-family: var(--f-display);
  font-size: 32px;
  color: var(--beacon);
  line-height: 1;
}
.fw-metric__label {
  font-size: 12px;
  color: var(--ink-muted);
  font-family: var(--f-mono);
  letter-spacing: 0.06em;
}

.fw-teaser__see-all {
  background: var(--bg);
  padding: 16px 28px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--beacon);
  text-decoration: none;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line);
  transition: background 0.2s;
}
.fw-teaser__see-all:hover { background: var(--surface); }

/* ============================================================
   MOBILE NAV — scrollable instead of hidden
   ============================================================ */
@media (max-width: 720px) {
  .nav__inner {
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 16px;
  }
  .nav__links {
    display: flex !important;
    order: 3;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    border-top: 1px solid var(--line);
    padding-top: 8px;
    margin-top: 0;
  }
  .nav__links::-webkit-scrollbar { display: none; }
  .nav__links a {
    white-space: nowrap;
    font-size: 11px;
    padding: 6px 14px;
    flex-shrink: 0;
  }
  .nav__meta { display: none; }
  .nav__divider { display: none; }
  .nav__actions { gap: 6px; }
  .btn--tools { display: none; }
}

/* ============================================================
   MOBILE FIXES — ARBETEN PAGE
   ============================================================ */

/* Hero sub on mobile */
@media (max-width: 720px) {
  .hero--sub { min-height: 38vh; padding-bottom: 48px; }
  .hero__inner--sub { padding-top: 120px; }
  .arbeten-hero__lede { font-size: 14px; margin-top: 20px; }
}

/* Case full — already stacks at 1100px, but tweak spacing */
@media (max-width: 720px) {
  .arbeten-case { padding-top: 48px; }
  .case-full { gap: 40px; margin-top: 36px; }
  .case-full__title { font-size: 28px; }

  /* Metrics: 2 columns on mobile */
  .case-full__metrics { grid-template-columns: 1fr 1fr; }
  .case-metric:last-child { grid-column: 1 / -1; }
  .case-metric__num { font-size: 22px; }

  /* Quote tighter */
  .case-full__quote { font-size: 13px; padding: 16px 18px 16px 22px; }

  /* More cases section */
  .arbeten-more { padding-top: 48px; }
}

/* iPhone mockup — scale down on small screens */
@media (max-width: 1100px) {
  /* When stacked, center the phone */
  .iphone-wrap { position: static; }
}

@media (max-width: 720px) {
  .iphone {
    width: 260px;
  }
  .iphone__frame { height: 540px; }
  /* Scale inner app font slightly */
  .ghl-page-title { font-size: 15px; }
  .ghl-date-main { font-size: 9px; }
  .ghl-room-name { font-size: 10px; }
  .ghl-btn { font-size: 8.5px; padding: 4px 7px; }
}

@media (max-width: 380px) {
  .iphone { width: 230px; }
  .iphone__frame { height: 480px; }
}

/* fw-teaser mobile */
@media (max-width: 720px) {
  .fw-metric__num { font-size: 26px; }
  .fw-metric { padding: 18px 20px; }
}

/* ── Case divider ─────────────────────────────────────────── */
.case-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 80px 0 60px;
  color: var(--ink-muted);
}
.case-divider::before,
.case-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.case-divider span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--beacon);
  white-space: nowrap;
}

/* ── Reversed case layout (content left, visual right) ─────── */
.case-full--reverse {
  direction: rtl;
}
.case-full--reverse > * {
  direction: ltr;
}

/* ── Browser mockup ────────────────────────────────────────── */
.browser-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: 100px;
}
@media (max-width: 1100px) {
  .browser-wrap { position: static; }
}

.browser {
  width: 100%;
  max-width: 480px;
  background: #1c1c1e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px #3a3a3c,
    0 30px 80px rgba(0,0,0,0.55),
    0 0 60px rgba(255,122,26,0.04);
}

.browser__chrome {
  background: #2c2c2e;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.browser__dots { display: flex; gap: 5px; flex-shrink: 0; }
.browser__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.browser__dot--red    { background: #ff5f57; }
.browser__dot--yellow { background: #febc2e; }
.browser__dot--green  { background: #28c840; }

.browser__url {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 4px 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 5px;
}
.browser__url-spacer { width: 60px; flex-shrink: 0; }

.browser__screen {
  background: #f8f6f2;
  height: 380px;
  overflow: hidden;
}

/* ── Kajmagasinet inner site ────────────────────────────────── */
.kaj-site {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: 'Inter', sans-serif;
}

.kaj-nav {
  background: #1a1a18;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.kaj-nav__logo {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #e8dcc8;
}
.kaj-nav__links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 8.5px;
  color: rgba(255,255,255,0.55);
}
.kaj-nav__cta {
  background: #c8a96e;
  color: #1a1a18;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
  color: #1a1a18;
}

.kaj-hero {
  flex: 1;
  background: linear-gradient(
    160deg,
    #1e2a35 0%,
    #243040 40%,
    #1a2530 100%
  );
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 230px;
}
.kaj-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 30% 40%, rgba(200,169,110,0.08) 0%, transparent 70%);
}
.kaj-hero__content {
  position: relative;
  padding: 24px 24px 20px;
  z-index: 1;
}
.kaj-hero__sub {
  font-size: 8px;
  letter-spacing: 0.16em;
  color: #c8a96e;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 6px;
  opacity: 0.85;
}
.kaj-hero__title {
  font-size: 22px;
  font-weight: 700;
  color: #f0ebe2;
  line-height: 1.2;
  margin-bottom: 14px;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
}
.kaj-hero__btn {
  display: inline-block;
  background: #c8a96e;
  color: #1a1a18;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.kaj-hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
}

.kaj-info {
  background: #f8f6f2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #e8e4dc;
  flex-shrink: 0;
}
.kaj-info__block {
  background: #f8f6f2;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.kaj-info__label {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #c8a96e;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 3px;
}
.kaj-info__val {
  font-size: 8.5px;
  color: #3a3530;
  line-height: 1.5;
}

/* Mobile: stack reverse layout */
@media (max-width: 1100px) {
  .case-full--reverse { direction: ltr; }
}
@media (max-width: 720px) {
  .browser__screen { height: 300px; }
  .kaj-hero { min-height: 180px; }
  .kaj-hero__title { font-size: 18px; }
  .case-divider { margin: 48px 0 40px; }
}

/* === KAJMAGASINET V2 MOCKUP (Case 02) ========================= */
.kaj2 {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: radial-gradient(ellipse 80% 65% at 50% 42%, #1e3060 0%, #111b3a 55%, #080f22 100%);
}
.kaj2__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-shrink: 0;
}
.kaj2__logo {
  font-family: Georgia, serif;
  font-size: 11.5px;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.02em;
}
.kaj2__nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}
.kaj2__nav-cta {
  border: 1px solid rgba(255,255,255,0.45);
  padding: 3px 9px;
  color: rgba(255,255,255,0.85) !important;
  border-radius: 2px;
}
.kaj2__hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px 30px;
}
.kaj2__hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 7px;
}
.kaj2__deco {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}
.kaj2__deco-line {
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(200,169,110,0.45);
}
.kaj2__deco-anchor {
  font-size: 10px;
  color: rgba(200,169,110,0.6);
}
.kaj2__kicker {
  font-size: 8.5px;
  letter-spacing: 0.16em;
  color: #c8a96e;
  text-transform: uppercase;
  margin: 0;
  font-family: var(--f-mono);
}
.kaj2__title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 38px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.kaj2__sub {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  max-width: 260px;
  line-height: 1.55;
  margin: 2px 0 6px;
}
.kaj2__btns {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  justify-content: center;
}
.kaj2__btn {
  border: 1px solid rgba(255,255,255,0.28);
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-size: 8px;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--f-mono);
}
@media (max-width: 720px) {
  .kaj2__title { font-size: 26px; }
  .kaj2__nav-links span:not(.kaj2__nav-cta) { display: none; }
}

/* === NOTION MOCKUP (Case 03) ================================== */
.notion-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.notion-window {
  width: 440px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.05), inset 0 1px 0 rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
}
.notion__titlebar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: #161614;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.notion__tab-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}
.notion__body {
  display: flex;
  min-height: 340px;
}
.notion__sidebar {
  width: 130px;
  background: #1a1a17;
  padding: 10px 0;
  border-right: 1px solid rgba(255,255,255,0.05);
  flex-shrink: 0;
  overflow: hidden;
}
.notion__sidebar-item {
  padding: 4px 10px;
  font-size: 10.5px;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.8;
}
.notion__sidebar-item--header {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
  padding-bottom: 6px;
  text-transform: uppercase;
}
.notion__sidebar-item--child {
  padding-left: 18px;
  font-size: 10px;
  color: rgba(255,255,255,0.35);
}
.notion__sidebar-item.active {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  border-radius: 4px;
  margin: 0 4px;
  padding-left: 6px;
}
.notion__main {
  flex: 1;
  padding: 14px 12px;
  background: #1f1f1c;
  overflow: hidden;
}
.notion__callout {
  background: rgba(220,60,60,0.12);
  border-radius: 4px;
  padding: 6px 9px;
  font-size: 9.5px;
  color: rgba(255,180,180,0.8);
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.4;
}
.notion__btn-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 12px;
}
.notion__btn {
  border-radius: 4px;
  padding: 5px 9px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.notion__btn--blue   { background: rgba(35,100,220,0.22); color: #8bbeff; border-left: 2px solid #4d90ff; }
.notion__btn--orange { background: rgba(255,122,26,0.20); color: #ffaa66; border-left: 2px solid #ff7a1a; }
.notion__btn--yellow { background: rgba(220,175,40,0.18); color: #f0cc60; border-left: 2px solid #d4a820; }
.notion__btn--purple { background: rgba(140,90,240,0.18); color: #cc9dff; border-left: 2px solid #9a60ee; }
.notion__btn--red    { background: rgba(220,60,60,0.16);  color: #ff9090; border-left: 2px solid #cc3333; }
.notion__section-title {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.notion__dept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.notion__dept {
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  padding: 5px 7px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  overflow: hidden;
  transition: background 0.2s;
}
.notion__dept:hover { background: rgba(255,255,255,0.09); }

@media (max-width: 860px) {
  .notion-window { width: 100%; max-width: 420px; }
}
@media (max-width: 600px) {
  .notion__sidebar { width: 100px; }
  .notion__sidebar-item { font-size: 9.5px; }
}

/* ── Mobile chaos animation boost ─────────────────────────── */
@media (max-width: 767px) {
  /* More visible on small screens */
  .chaos {
    opacity: 1;
  }
  .chaos__lines line { opacity: 0.2; }
  .chaos__lines line.chaos-line { opacity: 0.55; }

  /* Warm glow behind the constellation on mobile */
  .hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 55% 40% at 50% 50%,
        rgba(255,122,26,0.07) 0%,
        transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  /* Ensure hero is tall enough for constellation to breathe */
  .hero { min-height: 100svh; }
}

/* Clickable browser-mockup wrapper */
.browser-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}
.browser-link:hover { transform: translateY(-3px); }
.browser-link:hover .browser {
  box-shadow:
    0 32px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,122,26,0.35),
    0 0 60px rgba(255,122,26,0.15);
}

/* ============================================================
   LION PAW MOCKUP (Case · lionpaw.se · products grid)
   ============================================================ */
/* Make the screen taller so the products grid breathes like the live site */
.browser__screen:has(.lp) { height: 480px; }
@media (max-width: 720px) {
  .browser__screen:has(.lp) { height: 420px; }
}

.lp {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #f1e9d6;
  color: #3c2814;
  font-family: 'Playfair Display', Georgia, serif;
}

/* Top nav — olive bar */
.lp__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  background: linear-gradient(180deg, #6e7a3e 0%, #5a6532 100%);
  flex-shrink: 0;
  border-bottom: 2px solid #b89556;
}
.lp__brand {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #f5efdc;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.lp__brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f5efdc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #6e7a3e;
}
.lp__nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 9px;
  color: rgba(245,239,220,0.92);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.lp__nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 8.5px;
  color: rgba(245,239,220,0.85);
}
.lp__nav-icon {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(245,239,220,0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: rgba(245,239,220,0.85);
}
.lp__lang {
  border: 1px solid rgba(245,239,220,0.5);
  padding: 2px 6px;
  border-radius: 999px;
  color: #f5efdc;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.lp__cta {
  background: #c8a96e;
  color: #2a1d10;
  font-weight: 700;
  font-size: 8.5px;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: 999px;
}

/* Title block */
.lp__title-block {
  text-align: center;
  padding: 18px 14px 12px;
  flex-shrink: 0;
}
.lp__eyebrow {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 7.5px;
  letter-spacing: 0.32em;
  color: #b89556;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.lp__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  color: #4a3220;
  line-height: 1;
  letter-spacing: -0.005em;
}

/* Products grid */
.lp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 14px 14px;
}
.lp__card { display: flex; flex-direction: column; gap: 5px; }
.lp__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #cbd6dc 0%, #d8c9a8 60%, #c2a87a 100%);
  box-shadow: inset 0 -8px 16px rgba(76,52,28,0.18);
}
/* Houses on horizon */
.lp__photo::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 38%;
  height: 14%;
  background:
    linear-gradient(90deg,
      #b8453a 0%, #b8453a 8%, #d4d0c6 8%, #d4d0c6 16%,
      #c87752 16%, #c87752 24%, #d4d0c6 24%, #d4d0c6 32%,
      #b8453a 32%, #b8453a 40%, #c87752 40%, #c87752 48%,
      #d4d0c6 48%, #d4d0c6 56%, #b8453a 56%, #b8453a 64%,
      #c87752 64%, #c87752 72%, #d4d0c6 72%, #d4d0c6 80%,
      #b8453a 80%, #b8453a 100%);
  opacity: 0.55;
  filter: blur(0.4px);
}
/* Foreground rocks/silhouette */
.lp__photo::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 30%;
  background:
    radial-gradient(ellipse 70% 100% at 50% 100%, rgba(60,40,20,0.55) 0%, transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(76,52,28,0.5) 100%);
}
/* Bottle in foreground */
.lp__photo-bottle {
  position: absolute;
  left: 50%;
  bottom: 14%;
  transform: translateX(-50%);
  width: 16px;
  height: 30px;
  border-radius: 3px 3px 5px 5px;
  background: linear-gradient(180deg, #5c3a1c 0%, #2e1a0a 100%);
  box-shadow:
    0 2px 6px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,200,140,0.25);
  z-index: 2;
}
.lp__photo-bottle::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 4px;
  background: #c8a96e;
  border-radius: 1px;
}
.lp__photo-bottle::after {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 11px;
  height: 17px;
  background: linear-gradient(180deg, #f5e8c6 0%, #d9c08a 100%);
  border-radius: 1px;
}
/* Variants */
.lp__photo-bottle--dropper {
  width: 13px; height: 32px;
  background: linear-gradient(180deg, #4a2e16 0%, #1f0f06 100%);
}
.lp__photo-bottle--dropper::before { background: #2a1d10; height: 6px; top: -5px; width: 9px; }
.lp__photo-bottle--dropper::after { background: linear-gradient(180deg,#a07550 0%,#5c3a1c 100%); top: 5px; height: 22px; width: 9px; }
.lp__photo-bottle--jar {
  width: 22px; height: 24px;
  border-radius: 2px;
  background: linear-gradient(180deg, #f0e6cc 0%, #d4c39e 100%);
}
.lp__photo-bottle--jar::before { background: #c8a96e; height: 5px; top: -4px; width: 22px; border-radius: 2px; }
.lp__photo-bottle--jar::after { background: rgba(245,232,198,0.0); display: none; }
.lp__photo-bottle--tin {
  width: 24px; height: 8px;
  border-radius: 50% / 50%;
  background: linear-gradient(180deg, #a07550 0%, #6b4a2a 100%);
  bottom: 16%;
}
.lp__photo-bottle--tin::before, .lp__photo-bottle--tin::after { display: none; }
.lp__photo-flower {
  position: absolute;
  bottom: 18%;
  left: 62%;
  font-size: 12px;
  z-index: 2;
}

.lp__cat {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 7px;
  letter-spacing: 0.22em;
  color: #b89556;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 1px;
}
.lp__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 10px;
  color: #4a3220;
  line-height: 1.15;
  font-weight: 600;
}
.lp__desc {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 7px;
  line-height: 1.4;
  color: rgba(74,50,32,0.7);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Section break — Ingredienserna */
.lp__break {
  margin-top: auto;
  text-align: center;
  padding: 18px 14px 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(184,149,86,0.08) 100%);
  border-top: 1px solid rgba(74,50,32,0.08);
}
.lp__break-eyebrow {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 7.5px;
  letter-spacing: 0.32em;
  color: rgba(74,50,32,0.55);
  font-weight: 600;
  margin-bottom: 6px;
}
.lp__break-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #4a3220;
}
.lp__break-title span { color: #5a6532; display: block; }

@media (max-width: 720px) {
  .lp__nav-links { display: none; }
  .lp__title { font-size: 22px; }
  .lp__break-title { font-size: 16px; }
}
