/* =========================================================
   NordLeads — v4 TIGHT (compression pass 2026-08-13)
   Palette: Editorial Restrained (cream + espresso + pine + sage + amber, desat)
   Type: Instrument Serif (display) · Instrument Sans (body) · IBM Plex Mono (meta)
   Structural DNA: Dense Editorial · Attio/Linear/Ramp posture
   ========================================================= */

:root {
  /* Palette — slightly desaturated for restrained-serious feel */
  --cream:        #FAF7F2;
  --cream-2:      #F2ECE1;
  --paper:        #EBE4D6;
  --sage:         #93A395;
  --sage-deep:    #6D8A76;
  --pine:         #34573F;
  --pine-deep:    #223C2C;
  --espresso:     #1C1614;
  --espresso-2:   #221B18;
  --ink:          #171310;
  --amber:        #BC8842;
  --amber-lite:   #DFAA65;
  --amber-glow:   rgba(223,170,101,0.30);

  /* Typography */
  --font-display: 'Instrument Serif', 'Times New Roman', Times, serif;
  --font-body:    'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, 'SF Mono', 'Menlo', monospace;

  /* Fluid scale — TIGHTENED */
  --fs-mono:      clamp(10px, 0.2vw + 9px, 11px);
  --fs-body:      clamp(15px, 0.15vw + 14px, 16.5px);
  --fs-lead:      clamp(16px, 0.3vw + 14px, 18px);
  --fs-h3:        clamp(20px, 0.8vw + 16px, 26px);
  --fs-h2-sm:     clamp(26px, 2vw + 16px, 42px);
  --fs-h2-md:     clamp(32px, 3vw + 14px, 60px);
  --fs-hero:      clamp(36px, 5.5vw, 60px);
  --fs-cta-huge:  clamp(44px, 6vw + 8px, 96px);

  /* Motion */
  --ease-out-quart: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-swift:     cubic-bezier(0.32, 0.72, 0, 1);

  /* Layout */
  --gutter:       clamp(20px, 3vw, 44px);
  --max:          1360px;
  --hair:         rgba(28, 22, 20, 0.09);
  --hair-strong:  rgba(28, 22, 20, 0.16);
  --hair-cream:   rgba(250, 247, 242, 0.12);
}

/* =========================================================
   RESET
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; }
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--espresso);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ol, ul { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--pine); color: var(--cream); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-nav {
  position: absolute; top: -60px; left: 20px;
  background: var(--espresso); color: var(--cream);
  padding: 10px 16px; border-radius: 999px; z-index: 200;
  transition: top 240ms var(--ease-swift);
}
.skip-nav:focus { top: 14px; }

.mono {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Global grain — fixed, GPU-safe */
.grain-overlay {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
  mix-blend-mode: multiply;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.11  0 0 0 0 0.08  0 0 0 0 0.07  0 0 0 0.09 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* =========================================================
   CUSTOM CURSOR (PART B — task 6)
   ========================================================= */
.zeus-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--pine);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: normal;
  transform: translate(-50%, -50%);
  transition: width 240ms var(--ease-swift), height 240ms var(--ease-swift),
              background 240ms var(--ease-swift), opacity 200ms var(--ease-swift);
  will-change: transform;
  opacity: 0;
}
.zeus-cursor.is-visible { opacity: 1; }
.zeus-cursor.on-dark { background: var(--cream); }
.zeus-cursor.on-cta {
  width: 24px; height: 24px;
  background: var(--amber);
  mix-blend-mode: normal;
}
@media (hover: none), (max-width: 900px), (prefers-reduced-motion: reduce) {
  .zeus-cursor { display: none !important; }
}
@media (hover: hover) and (pointer: fine) and (min-width: 901px) {
  body.zeus-cursor-active,
  body.zeus-cursor-active * { cursor: none !important; }
}

/* =========================================================
   FLUID ISLAND NAV
   ========================================================= */

.island-nav {
  position: fixed;
  top: clamp(12px, 1.1vw, 18px);
  left: 0; right: 0;
  z-index: 100;
  display: flex; justify-content: center;
  padding: 0 var(--gutter);
  pointer-events: none;
  transition: transform 500ms var(--ease-swift), opacity 500ms var(--ease-swift);
}
.island-nav.is-hidden { transform: translateY(-140%); }
.island-nav__pill {
  pointer-events: auto;
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px 6px 18px;
  background: rgba(250, 247, 242, 0.78);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid var(--hair);
  border-radius: 999px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 8px 32px -12px rgba(28,22,20,0.14),
    0 1px 2px rgba(28,22,20,0.04);
}
.island-nav__brand {
  display: flex; align-items: center; gap: 9px;
  padding-right: 12px;
  border-right: 1px solid var(--hair);
  height: 30px;
}
.island-nav__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--pine); color: var(--cream);
  transition: transform 600ms var(--ease-swift);
}
.island-nav__brand:hover .island-nav__mark { transform: rotate(-14deg); }
.island-nav__word {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--espresso);
}
.island-nav__word em {
  font-style: italic;
  font-weight: 400;
  color: var(--pine);
}
.island-nav__links {
  display: flex; align-items: center; gap: 2px;
  padding: 0 6px;
}
.island-nav__links a {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--espresso);
  opacity: 0.72;
  transition: all 300ms var(--ease-swift);
}
.island-nav__links a:hover {
  background: rgba(28,22,20,0.05);
  opacity: 1;
}
.island-nav__burger {
  display: none;
  width: 30px; height: 30px;
  border-radius: 999px;
  position: relative;
  background: rgba(28,22,20,0.05);
}
.island-nav__burger span {
  position: absolute;
  left: 8px; right: 8px;
  height: 1.4px;
  background: var(--espresso);
  transition: transform 400ms var(--ease-swift), top 400ms var(--ease-swift), opacity 200ms;
}
.island-nav__burger span:first-child { top: 11px; }
.island-nav__burger span:last-child { top: 17px; }
.island-nav__burger[aria-expanded="true"] span:first-child { top: 14px; transform: rotate(45deg); }
.island-nav__burger[aria-expanded="true"] span:last-child { top: 14px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  z-index: 90;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(24px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px;
  padding: 100px 24px 40px;
  opacity: 0; pointer-events: none;
  transition: opacity 400ms var(--ease-swift);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 500;
  letter-spacing: -0.02em;
  opacity: 0; transform: translateY(20px);
  transition: opacity 500ms var(--ease-swift), transform 500ms var(--ease-swift);
}
.mobile-menu.is-open a { opacity: 1; transform: translateY(0); }
.mobile-menu.is-open a:nth-child(1) { transition-delay: 100ms; }
.mobile-menu.is-open a:nth-child(2) { transition-delay: 160ms; }
.mobile-menu.is-open a:nth-child(3) { transition-delay: 220ms; }
.mobile-menu.is-open a:nth-child(4) { transition-delay: 280ms; }
.mobile-menu.is-open a:nth-child(5) { transition-delay: 340ms; }

/* =========================================================
   BUTTON — Pill CTA (compressed)
   ========================================================= */

.pill-cta {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 10px 8px 18px;
  background: var(--espresso);
  color: var(--cream);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  isolation: isolate;
  transition: transform 400ms var(--ease-swift), background 400ms var(--ease-swift);
  will-change: transform;
}
.pill-cta:active { transform: scale(0.97); }
.pill-cta__arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: rgba(250,247,242,0.14);
  transition: transform 400ms var(--ease-swift), background 400ms var(--ease-swift);
}
.pill-cta:hover .pill-cta__arrow {
  transform: translate(3px, -1px) scale(1.08);
  background: rgba(250,247,242,0.24);
}
.pill-cta--amber {
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 10px 26px -12px rgba(188,136,66,0.55), inset 0 1px 0 rgba(255,255,255,0.35);
}
.pill-cta--amber .pill-cta__arrow { background: rgba(28,22,20,0.14); }
.pill-cta--amber:hover .pill-cta__arrow { background: rgba(28,22,20,0.24); }
.pill-cta--pine { background: var(--pine); color: var(--cream); }
.pill-cta--ghost {
  background: transparent;
  color: var(--espresso);
  border: 1px solid var(--hair-strong);
}
.pill-cta--ghost .pill-cta__arrow { background: rgba(28,22,20,0.06); }
.pill-cta--lg { padding: 11px 12px 11px 22px; font-size: 14px; }
.pill-cta--lg .pill-cta__arrow { width: 26px; height: 26px; }
.pill-cta--full { width: 100%; justify-content: space-between; }

.ghost-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 4px;
  font-size: 13.5px; font-weight: 500;
  border-bottom: 1px solid var(--hair-strong);
  transition: border-color 300ms var(--ease-swift), gap 300ms var(--ease-swift);
}
.ghost-link:hover { border-color: var(--espresso); gap: 12px; }
.ghost-link--cream { color: var(--cream); border-color: var(--hair-cream); }
.ghost-link--cream:hover { border-color: var(--cream); }

/* =========================================================
   DOUBLE-BEZEL PRIMITIVES (tightened)
   ========================================================= */

.bezel-outer {
  position: relative;
  background: rgba(28,22,20,0.04);
  border: 1px solid var(--hair);
  padding: 5px;
  border-radius: 22px;
  box-shadow:
    0 30px 60px -30px rgba(28,22,20,0.22),
    0 8px 20px -12px rgba(28,22,20,0.12);
}
.bezel-outer--wide { padding: 6px; border-radius: 24px; }
.bezel-inner {
  position: relative;
  background: var(--cream);
  border-radius: 17px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), inset 0 0 0 1px rgba(28,22,20,0.05);
  overflow: hidden;
}

/* Browser frame */
.browser-frame { background: #FFFFFF; }
.browser-chrome {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 12px;
  background: linear-gradient(180deg, #F6F2EA 0%, #EBE4D6 100%);
  border-bottom: 1px solid rgba(28,22,20,0.06);
}
.chrome-dot { width: 8px; height: 8px; border-radius: 999px; display: inline-block; }
.chrome-dot--r { background: #E86159; }
.chrome-dot--y { background: #E5B15A; }
.chrome-dot--g { background: #5FBF6A; }
.chrome-url {
  margin-left: 10px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(28,22,20,0.05);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: #6B5F55;
  display: inline-flex; align-items: center; gap: 6px;
  min-width: 200px;
  transition: min-width 400ms var(--ease-swift);
}
.chrome-lock { display: inline-flex; opacity: 0.7; }
.browser-viewport {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--cream);
}
.product-shot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  opacity: 0;
  transition: opacity 800ms cubic-bezier(0.32, 0.72, 0, 1);
}
.product-shot.is-active { opacity: 1; }

/* Loop indicator dot row (PART B — task 1) */
.hero__loop-dots {
  display: inline-flex; gap: 6px; align-items: center;
  margin-left: 10px;
}
.hero__loop-dots span {
  width: 5px; height: 5px; border-radius: 999px;
  background: rgba(28,22,20,0.25);
  transition: background 300ms var(--ease-swift), transform 300ms var(--ease-swift);
}
.hero__loop-dots span.is-active {
  background: var(--pine);
  transform: scale(1.25);
}

/* =========================================================
   TYPOGRAPHY PRIMITIVES
   ========================================================= */

.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-wrap: balance;
  color: var(--espresso);
  margin: 0;
}
.display em { font-style: italic; font-weight: 400; color: var(--pine); font-variation-settings: "SOFT" 100; }
.display--md { font-size: var(--fs-h2-md); }
.display--sm { font-size: var(--fs-h2-sm); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px 5px 8px;
  background: rgba(28,22,20,0.04);
  border: 1px solid var(--hair);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--espresso);
  margin: 0 0 20px;
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--pine);
  box-shadow: 0 0 0 3px rgba(52,87,63,0.16);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(52,87,63,0.16); }
  50%      { box-shadow: 0 0 0 5px rgba(52,87,63,0.06); }
}

/* =========================================================
   HERO — TIGHTENED
   ========================================================= */

.hero {
  position: relative;
  padding: clamp(100px, 10vw, 140px) var(--gutter) clamp(56px, 6vw, 90px);
  display: flex; flex-direction: column;
  overflow: hidden;
}

.hero__margin {
  position: absolute;
  top: 88px; right: var(--gutter);
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 4px;
  color: var(--espresso);
  opacity: 0.5;
  z-index: 3;
}
.hero__margin .mono { font-size: 9.5px; }

.hero__grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: end;
  max-width: var(--max);
  margin: auto;
  width: 100%;
}

.hero__type { padding-top: clamp(10px, 2vw, 24px); }

.kinetic-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-hero);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--espresso);
  margin: 0 0 clamp(20px, 2vw, 28px);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.kh-line { display: block; }
.kh-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 400ms var(--ease-out-quart),
    transform 400ms var(--ease-out-quart);
  transition-delay: calc(var(--i, 0) * 60ms + 120ms);
}
.kh-word--italic { font-style: italic; font-weight: 400; color: var(--pine); }
body.is-ready .kh-word {
  opacity: 1; transform: translateY(0);
}

.hero__lead {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-lead);
  line-height: 1.4;
  max-width: 44ch;
  color: var(--espresso);
  opacity: 0.86;
  margin: 0 0 clamp(20px, 2.4vw, 30px);
}
.hero__lead-em { font-style: italic; color: var(--pine); opacity: 1; }

.hero__ctas {
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.hero__meta {
  display: flex; gap: clamp(24px, 3.5vw, 48px);
  padding-top: 18px;
  border-top: 1px solid var(--hair);
  margin: 0;
  max-width: 460px;
}
.hero__meta > div { display: flex; flex-direction: column; gap: 3px; }
.hero__meta dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--espresso);
  opacity: 0.55;
}
.hero__meta dd {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--espresso);
  margin: 0;
}

.hero__stage {
  position: relative;
  align-self: end;
  perspective: 1200px;
}
.hero__stage-inner {
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  will-change: transform;
}
.hero__glow {
  position: absolute;
  inset: -30px -60px -60px -30px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.85;
  animation: glow-drift 14s ease-in-out infinite;
}
@keyframes glow-drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-16px, 8px) scale(1.05); }
}
.hero__caption {
  display: flex; align-items: center; gap: 8px;
  padding-top: 12px;
  color: var(--espresso);
  opacity: 0.6;
  justify-content: flex-end;
}
.hero__caption-dot {
  width: 5px; height: 5px; border-radius: 999px;
  background: #5FBF6A;
  box-shadow: 0 0 0 3px rgba(95,191,106,0.22);
  animation: pulse-g 2.2s ease-in-out infinite;
}
@keyframes pulse-g {
  0%,100% { opacity: 1; } 50% { opacity: 0.5; }
}

/* =========================================================
   TRUST MARQUEE — thin espresso band (PART B — task 3)
   ========================================================= */
.trust-marquee {
  background: var(--espresso);
  color: var(--cream);
  height: 36px;
  display: flex; align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(250,247,242,0.06);
  border-bottom: 1px solid rgba(250,247,242,0.06);
}
.trust-marquee__track {
  display: inline-flex; gap: 28px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.62;
  animation: trust-marquee 80s linear infinite;
  padding-left: 28px;
}
.trust-marquee__track span { flex: none; }
.trust-marquee__track .sep { color: var(--amber-lite); opacity: 0.6; }
.trust-marquee:hover .trust-marquee__track { animation-play-state: paused; }
@keyframes trust-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   NUMBERS STRIP — compressed, dense
   ========================================================= */

.strip {
  background: var(--espresso);
  color: var(--cream);
  padding: 0 0 clamp(36px, 4vw, 56px);
  position: relative;
}

.strip__marquee {
  overflow: hidden;
  padding: 12px 0;
  border-bottom: 1px solid var(--hair-cream);
  margin-bottom: clamp(28px, 3vw, 44px);
}
.strip__track {
  display: inline-flex; gap: 26px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.55;
  animation: marquee 40s linear infinite;
}
.strip__track span { flex: none; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  column-gap: 0;
}
.strip__cell {
  padding: 8px clamp(16px, 1.6vw, 24px);
  border-left: 1px solid var(--hair-cream);
  display: flex; flex-direction: column; gap: 8px;
}
.strip__cell:first-child { border-left: 0; padding-left: 0; }
.strip__cell:last-child  { padding-right: 0; }
.strip__value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 3vw + 6px, 60px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--cream);
}
.strip__value em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber-lite);
  font-size: 0.55em;
  margin-left: 3px;
  vertical-align: 0.15em;
}
.strip__sep { color: var(--sage); font-weight: 300; }
.strip__label {
  color: var(--cream);
  opacity: 0.5;
  font-size: 10.5px;
  line-height: 1.5;
}

/* =========================================================
   EDITORIAL PULL-QUOTE — compressed
   ========================================================= */

.editorial {
  background: var(--cream);
  padding: clamp(56px, 6vw, 90px) var(--gutter);
  position: relative;
}
.editorial__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(0, 3fr);
  gap: clamp(28px, 3.5vw, 56px) clamp(32px, 4vw, 72px);
}
.editorial__side {
  display: flex; flex-direction: column;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--hair-strong);
}
.editorial__index { color: var(--espresso); opacity: 0.9; }
.editorial__source { color: var(--espresso); opacity: 0.5; margin-top: auto; }

.pullquote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(24px, 2.4vw + 8px, 44px);
  line-height: 1.15;
  letter-spacing: -0.024em;
  color: var(--espresso);
  margin: 0;
  grid-column: 2;
  text-wrap: balance;
  max-width: 26ch;
}
.pullquote em { font-style: italic; color: var(--pine); font-weight: 400; }
.pull-mark {
  font-family: var(--font-display);
  color: var(--amber);
  font-size: 1.4em;
  line-height: 0;
  margin-right: 4px;
  vertical-align: -0.28em;
  font-style: italic;
}

.editorial__stats {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: clamp(28px, 3vw, 44px);
  padding-top: clamp(24px, 2.8vw, 36px);
  border-top: 1px solid var(--hair-strong);
}
.e-stat {
  padding: 0 clamp(14px, 1.6vw, 22px);
  border-left: 1px solid var(--hair);
  display: flex; flex-direction: column; gap: 10px;
}
.e-stat:first-child { border-left: 0; padding-left: 0; }
.e-stat:last-child  { padding-right: 0; }
.e-stat__num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 2vw + 10px, 44px);
  line-height: 0.95;
  letter-spacing: -0.032em;
  color: var(--espresso);
}
.e-stat__num em {
  font-style: italic;
  font-weight: 300;
  color: var(--pine);
  font-size: 0.4em;
  margin-left: 2px;
  vertical-align: 0.32em;
}
.e-stat p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--espresso);
  opacity: 0.78;
  max-width: 22ch;
}
.e-stat p b { font-weight: 600; color: var(--espresso); opacity: 1; }

/* =========================================================
   PROCESS — Editorial timeline (compressed)
   ========================================================= */

.process {
  background: var(--cream-2);
  padding: clamp(56px, 6vw, 90px) var(--gutter);
  position: relative;
}
.process::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--hair-strong) 30%, var(--hair-strong) 70%, transparent 100%);
}

.process__intro {
  max-width: var(--max);
  margin: 0 auto clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(0, 2fr) minmax(0, 1.4fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: start;
}
.process__intro > .mono { padding-top: 8px; }
.process__intro > .display { grid-column: 2; margin: 0; }
.process__intro > .display em { color: var(--amber); }
.process__lede {
  margin: 0;
  grid-column: 3;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-lead);
  line-height: 1.42;
  color: var(--espresso);
  opacity: 0.76;
  padding-top: 8px;
  max-width: 32ch;
}

.timeline {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute; top: 32px; bottom: 32px; left: 50%;
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    var(--hair-strong) 0, var(--hair-strong) 5px,
    transparent 5px, transparent 10px
  );
  transform: translateX(-50%);
}
.timeline__step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: start;
  padding: clamp(18px, 2.4vw, 34px) 0;
}
.timeline__num {
  grid-column: 2;
  justify-self: center;
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--hair-strong);
  color: var(--pine);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  z-index: 2;
  transition: transform 500ms var(--ease-swift), border-color 500ms var(--ease-swift);
}
.timeline__step.in-view .timeline__num {
  border-color: var(--pine);
  transform: scale(1.1);
}
.timeline__body { max-width: 42ch; }
.timeline__body--left {
  grid-column: 1;
  text-align: right;
  justify-self: end;
  padding-right: clamp(16px, 1.8vw, 32px);
}
.timeline__body--right {
  grid-column: 3;
  padding-left: clamp(16px, 1.8vw, 32px);
}
.timeline__when {
  display: block;
  color: var(--pine);
  opacity: 0.8;
  margin-bottom: 6px;
}
.timeline__body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.2vw + 10px, 28px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--espresso);
  margin: 0 0 8px;
}
.timeline__body p {
  margin: 0;
  color: var(--espresso);
  opacity: 0.75;
  line-height: 1.5;
  font-size: 14.5px;
}

/* =========================================================
   PORTAL BENTO (compressed)
   ========================================================= */

.portal {
  background: var(--cream);
  padding: clamp(56px, 6vw, 90px) var(--gutter);
}
.portal__intro {
  max-width: var(--max);
  margin: 0 auto clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(0, 2fr) minmax(0, 1.4fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: start;
}
.portal__intro > .mono { padding-top: 8px; }
.portal__intro > .display { grid-column: 2; margin: 0; }
.portal__intro > .display em { color: var(--pine); }
.portal__lede {
  margin: 0;
  grid-column: 3;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-lead);
  line-height: 1.42;
  color: var(--espresso);
  opacity: 0.76;
  padding-top: 8px;
  max-width: 32ch;
}

.bento {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.bento__tile {
  position: relative;
  margin: 0;
}
.bento__tile--hero    { grid-column: span 4; grid-row: auto; order: 1; }
.bento__tile--kontakta{ grid-column: span 4; order: 2; }
.bento__tile--mallar  { grid-column: span 4; order: 3; }
.bento__tile--stat    { grid-column: span 6; order: 4; }
.bento__tile--quote   { grid-column: span 6; order: 5; }

.bento__tile figcaption {
  padding: 14px 4px 2px;
  display: flex; flex-direction: column; gap: 5px;
}
.bento__tile figcaption .mono { color: var(--pine); }
.bento__tile figcaption p {
  margin: 0;
  color: var(--espresso);
  opacity: 0.75;
  font-size: 13.5px;
  line-height: 1.45;
}

.bento__tile--stat {
  background: var(--espresso);
  color: var(--cream);
  padding: 24px 22px;
  border-radius: 20px;
  display: flex; flex-direction: column; gap: 8px;
  border: 1px solid var(--hair-cream);
  box-shadow: 0 24px 60px -30px rgba(28,22,20,0.4);
}
.bento__stat-label { color: var(--cream); opacity: 0.55; }
.bento__stat-value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 2.6vw + 14px, 60px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--amber-lite);
}
.bento__stat-value em {
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  opacity: 0.7;
  font-size: 0.4em;
  vertical-align: 0.35em;
  margin: 0 3px 0 2px;
}
.bento__tile--stat p {
  margin: auto 0 0;
  color: var(--cream);
  opacity: 0.7;
  font-size: 13.5px;
  line-height: 1.5;
  max-width: 24ch;
}

.bento__tile--quote {
  background: var(--paper);
  padding: 24px 22px;
  border-radius: 20px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 14px;
  border: 1px solid var(--hair);
  min-height: 200px;
}
.bento__tile--quote blockquote { margin: 0; }
.bento__tile--quote p {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(16px, 0.9vw + 10px, 20px);
  line-height: 1.28;
  color: var(--espresso);
  margin: 0;
  letter-spacing: -0.012em;
}
.bento__tile--quote em { font-style: italic; color: var(--pine); font-weight: 400; }
.bento__tile--quote .mono { color: var(--espresso); opacity: 0.55; }

/* =========================================================
   PRICING (compressed — precision-instrument tiles)
   ========================================================= */

.pricing {
  background: var(--cream-2);
  padding: clamp(56px, 6vw, 90px) var(--gutter);
  position: relative;
}
.pricing::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--hair-strong) 30%, var(--hair-strong) 70%, transparent 100%);
}
.pricing__intro {
  max-width: var(--max);
  margin: 0 auto clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(0, 2fr) minmax(0, 1.4fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: start;
}
.pricing__intro > .mono { padding-top: 8px; }
.pricing__intro > .display { grid-column: 2; margin: 0; }
.pricing__intro > .display em { color: var(--amber); }
.pricing__lede {
  margin: 0;
  grid-column: 3;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-lead);
  line-height: 1.42;
  color: var(--espresso);
  opacity: 0.76;
  padding-top: 8px;
  max-width: 34ch;
}

.tier-grid {
  max-width: var(--max);
  margin: 0 auto clamp(28px, 3vw, 44px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.tier {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--hair);
  border-radius: 20px;
  padding: 6px;
  display: flex; flex-direction: column;
  box-shadow: 0 16px 36px -30px rgba(28,22,20,0.14);
  transition: transform 500ms var(--ease-swift);
}
.tier > * { position: relative; }
.tier::before {
  content: "";
  position: absolute; inset: 6px;
  border-radius: 16px;
  background: var(--cream);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), inset 0 0 0 1px rgba(28,22,20,0.04);
}
.tier__head {
  padding: 20px 20px 16px;
  border-bottom: 1px dashed var(--hair-strong);
  margin-bottom: 6px;
}
.tier__index {
  color: var(--espresso); opacity: 0.5;
  display: block; margin-bottom: 10px;
}
.tier__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 1.6vw + 14px, 38px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--espresso);
  margin: 0 0 6px;
}
.tier__tagline {
  margin: 0;
  color: var(--espresso);
  opacity: 0.72;
  font-size: 13.5px;
  line-height: 1.45;
  max-width: 32ch;
}
.tier__specs {
  padding: 4px 20px;
  margin: 0 0 16px;
  display: flex; flex-direction: column;
}
.tier__specs > div {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--hair);
}
.tier__specs > div:last-child { border-bottom: 0; }
.tier__specs dt { color: var(--espresso); opacity: 0.55; }
.tier__specs dd {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--espresso);
}
.tier__specs dd em {
  font-family: var(--font-mono);
  font-style: normal;
  font-weight: 400;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--espresso); opacity: 0.55;
  margin-left: 3px;
  text-transform: uppercase;
}
.tier__cta { margin: auto 16px 16px; align-self: stretch; justify-content: space-between; }

.tier--featured {
  transform: scale(1.03);
  background: var(--espresso);
  color: var(--cream);
  border-color: rgba(188,136,66,0.28);
  box-shadow:
    0 28px 68px -30px rgba(28,22,20,0.36),
    0 0 0 1px rgba(188,136,66,0.15),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.tier--featured::before {
  background: var(--espresso-2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), inset 0 0 0 1px rgba(255,255,255,0.03);
}
.tier--featured .tier__name,
.tier--featured .tier__specs dd { color: var(--cream); }
.tier--featured .tier__index,
.tier--featured .tier__tagline,
.tier--featured .tier__specs dt,
.tier--featured .tier__specs dd em { color: var(--cream); opacity: 0.6; }
.tier--featured .tier__head { border-bottom-color: rgba(250,247,242,0.14); }
.tier--featured .tier__specs > div { border-bottom-color: rgba(250,247,242,0.08); }
.tier__ribbon {
  position: absolute;
  top: -10px; left: 18px;
  padding: 4px 12px;
  background: var(--amber);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px -12px rgba(188,136,66,0.5);
  z-index: 3;
}

.math-note {
  max-width: 900px;
  margin: 0 auto;
  padding: 18px 22px;
  background: var(--cream);
  border: 1px solid var(--hair);
  border-radius: 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}
.math-note__label {
  display: flex; flex-direction: column; gap: 2px;
  padding-right: 18px;
  border-right: 1px solid var(--hair);
}
.math-note__label .mono:first-child { opacity: 0.55; }
.math-note__tier { color: var(--pine); font-weight: 500; }
.math-note__body {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--espresso);
  line-height: 1.6;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px;
}
.math-note__body b {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 16px;
  color: var(--pine);
}
.math-op { color: var(--amber); font-weight: 500; }
.math-note__punch {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  color: var(--espresso);
  letter-spacing: -0.02em;
  border-left: 1px dashed var(--hair-strong);
  padding-left: 18px;
}
.math-note__punch b { color: var(--amber); font-style: italic; font-weight: 500; }

/* =========================================================
   MANIFEST — pine editorial split (compressed)
   ========================================================= */

.manifest {
  background: var(--pine);
  color: var(--cream);
  padding: clamp(56px, 6vw, 90px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.manifest::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 40% at 12% 20%, rgba(223,170,101,0.12) 0%, transparent 60%),
    radial-gradient(50% 40% at 92% 80%, rgba(147,163,149,0.24) 0%, transparent 60%);
  pointer-events: none;
}
.manifest__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 72px);
  position: relative;
}
.manifest__index { color: var(--cream); opacity: 0.7; }

.manifest__quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 3.4vw + 10px, 68px);
  line-height: 1.02;
  letter-spacing: -0.032em;
  color: var(--cream);
  margin: 14px 0 20px;
  font-variation-settings: "SOFT" 100;
}
.mq-line { display: block; }
.mq-line--italic {
  font-style: italic;
  font-weight: 300;
  color: var(--amber-lite);
  padding-left: 0.35em;
}
.manifest__signature {
  color: var(--cream); opacity: 0.6;
  border-top: 1px solid var(--hair-cream);
  padding-top: 16px;
  margin-top: 28px;
}

.manifest__right {
  padding-top: clamp(12px, 2vw, 32px);
  display: flex; flex-direction: column;
}
.manifest__body {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(15px, 0.3vw + 14px, 17px);
  line-height: 1.5;
  color: var(--cream);
  opacity: 0.85;
  margin: 0 0 14px;
  max-width: 40ch;
}
.manifest__body em { font-style: italic; color: var(--amber-lite); opacity: 1; }
.manifest__creed {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--hair-cream);
  display: flex; flex-direction: column;
  gap: 10px;
}
.manifest__creed li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: baseline;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 15.5px;
  color: var(--cream);
  opacity: 0.9;
}
.manifest__creed li .mono {
  color: var(--amber-lite);
  opacity: 1;
}

/* =========================================================
   CTA — full viewport dark espresso (compressed)
   ========================================================= */

.cta {
  background: var(--espresso);
  color: var(--cream);
  padding: clamp(64px, 8vw, 120px) var(--gutter) clamp(56px, 6vw, 90px);
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 30%, rgba(188,136,66,0.14) 0%, transparent 60%);
  pointer-events: none;
}
.cta__inner {
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  text-align: center;
}
.cta__index {
  color: var(--cream); opacity: 0.55;
  display: inline-block; margin-bottom: 20px;
  padding: 6px 12px;
  border: 1px solid var(--hair-cream);
  border-radius: 999px;
}
.cta__headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-cta-huge);
  line-height: 1.02;
  letter-spacing: -0.036em;
  color: var(--cream);
  margin: 0 0 20px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.cta__headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--amber-lite);
}
.cta__lede {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(16px, 0.4vw + 14px, 20px);
  line-height: 1.5;
  color: var(--cream);
  opacity: 0.75;
  max-width: 46ch;
  margin: 0 auto 32px;
}

.contact-card {
  background: var(--espresso-2);
  padding: 4px 24px;
  display: flex; flex-direction: column;
  text-align: left;
}
.bezel-outer--wide {
  background: rgba(250,247,242,0.05);
  border-color: var(--hair-cream);
  margin: 0 auto 28px;
  max-width: 680px;
}
.contact-card__row {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: baseline;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--hair-cream);
}
.contact-card__row:last-child { border-bottom: 0; }
.contact-card__label { color: var(--cream); opacity: 0.55; }
.contact-card__value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(17px, 0.6vw + 12px, 22px);
  letter-spacing: -0.02em;
  color: var(--cream);
}
.contact-card__link {
  position: relative;
  color: var(--amber-lite);
  transition: color 300ms var(--ease-swift);
}
.contact-card__link::after {
  content: "";
  position: absolute; left: 0; right: 100%;
  bottom: -2px; height: 1px;
  background: var(--amber-lite);
  transition: right 500ms var(--ease-swift);
}
.contact-card__link:hover::after { right: 0; }

.cta__buttons {
  display: flex; justify-content: center; align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* =========================================================
   FOOTER (compressed)
   ========================================================= */

.footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(40px, 4vw, 64px) var(--gutter) 22px;
}
.footer__grid {
  max-width: var(--max);
  margin: 0 auto clamp(28px, 3vw, 44px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 3vw, 44px);
}
.footer__brand {
  display: flex; flex-direction: column; gap: 8px;
}
.footer__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 999px;
  background: var(--pine); color: var(--cream);
}
.footer__word {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.footer__tag {
  margin: 0;
  max-width: 28ch;
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  color: var(--cream); opacity: 0.6;
  font-size: 14px;
  line-height: 1.4;
}
.footer__col {
  display: flex; flex-direction: column; gap: 8px;
}
.footer__col-h {
  color: var(--cream); opacity: 0.5;
  margin-bottom: 2px;
}
.footer__col a {
  font-size: 13.5px;
  color: var(--cream); opacity: 0.85;
  transition: opacity 300ms var(--ease-swift), transform 300ms var(--ease-swift);
  display: inline-block;
}
.footer__col a:hover { opacity: 1; transform: translateX(3px); }

.footer__base {
  display: flex; justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--hair-cream);
  color: var(--cream); opacity: 0.5;
  max-width: var(--max);
  margin: 0 auto;
}

/* =========================================================
   REVEAL MOTION
   ========================================================= */

.reveal, .reveal-slow {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms var(--ease-out-expo),
    transform 700ms var(--ease-out-expo);
}
.reveal-slow {
  transform: translateY(28px) scale(0.99);
  transition-duration: 900ms;
  transition-delay: 160ms;
}
.reveal.in-view, .reveal-slow.in-view {
  opacity: 1;
  transform: none;
}

/* =========================================================
   CASE STUDY — Kund zero (v5)
   ========================================================= */

.case-study {
  background: var(--cream);
  padding: clamp(56px, 6vw, 84px) var(--gutter);
  position: relative;
}
.case-study::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--hair-strong) 30%, var(--hair-strong) 70%, transparent 100%);
}
.case-study__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
}
.case-study__eyebrow {
  color: var(--pine);
  display: inline-block;
  margin-bottom: 16px;
  padding: 5px 12px;
  background: rgba(52, 87, 63, 0.08);
  border: 1px solid rgba(52, 87, 63, 0.16);
  border-radius: 999px;
}
.case-study__h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-h2-md);
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: var(--espresso);
  margin: 0 0 clamp(22px, 2.4vw, 32px);
  text-wrap: balance;
  max-width: 18ch;
}
.case-study__h em { font-style: italic; font-weight: 400; color: var(--pine); }
.case-study__lead {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(17px, 0.5vw + 14px, 21px);
  line-height: 1.45;
  color: var(--espresso);
  opacity: 0.9;
  margin: 0 0 18px;
  max-width: 46ch;
}
.case-study__lead em { font-style: italic; color: var(--pine); font-weight: 400; }
.case-study__body {
  margin: 0;
  color: var(--espresso);
  opacity: 0.76;
  line-height: 1.55;
  font-size: 15px;
  max-width: 48ch;
}

.case-stat-card {
  padding: 20px 22px 22px;
  display: flex; flex-direction: column;
  gap: 14px;
}
.case-stat-card__head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--hair-strong);
}
.case-stat-card__head .mono { color: var(--pine); }
.case-stat-card__meta { color: var(--espresso); opacity: 0.5; }
.case-stat-card__list {
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
}
.case-stat-card__list > div {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--hair);
}
.case-stat-card__list > div:last-child { border-bottom: 0; }
.case-stat-card__list dt {
  color: var(--espresso);
  opacity: 0.6;
}
.case-stat-card__list dd {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 1.3vw + 14px, 32px);
  letter-spacing: -0.025em;
  color: var(--espresso);
  line-height: 1;
}
.case-stat-card__list dd em {
  font-family: var(--font-mono);
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--espresso);
  opacity: 0.55;
  margin-left: 4px;
  text-transform: uppercase;
  vertical-align: 0.15em;
}
.case-stat-card__foot {
  margin: 6px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--hair);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 15.5px;
  color: var(--pine);
  line-height: 1.35;
}
.case-stat-card__foot em { font-style: italic; }

/* =========================================================
   SAMPLE MAIL — inbox preview (v5)
   ========================================================= */

.sample-mail {
  background: var(--cream-2);
  padding: clamp(56px, 6vw, 84px) var(--gutter);
  position: relative;
}
.sample-mail::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--hair-strong) 30%, var(--hair-strong) 70%, transparent 100%);
}
.sample-mail__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.sample-mail__prose { padding-top: clamp(10px, 2vw, 24px); }
.sample-mail__eyebrow {
  color: var(--amber);
  display: inline-block;
  margin-bottom: 16px;
  padding: 5px 12px;
  background: rgba(188, 136, 66, 0.10);
  border: 1px solid rgba(188, 136, 66, 0.22);
  border-radius: 999px;
}
.sample-mail__h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-h2-md);
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: var(--espresso);
  margin: 0 0 clamp(20px, 2.2vw, 28px);
  text-wrap: balance;
  max-width: 14ch;
}
.sample-mail__h em { font-style: italic; font-weight: 400; color: var(--pine); }
.sample-mail__lead {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(16px, 0.4vw + 14px, 19px);
  line-height: 1.45;
  color: var(--espresso);
  opacity: 0.88;
  margin: 0 0 18px;
  max-width: 42ch;
}
.sample-mail__lead em { font-style: italic; color: var(--pine); }
.sample-mail__note {
  color: var(--espresso);
  opacity: 0.6;
  font-size: 11px;
  line-height: 1.6;
  max-width: 42ch;
  padding: 12px 0 0;
  border-top: 1px solid var(--hair);
  letter-spacing: 0.02em;
  text-transform: none;
}

.mail-frame { background: #FFFFFF; }
.mail-frame__chrome {
  position: relative;
  display: flex; align-items: center; gap: 7px;
  padding: 9px 14px;
  background: linear-gradient(180deg, #F6F2EA 0%, #EBE4D6 100%);
  border-bottom: 1px solid rgba(28,22,20,0.06);
}
.mail-frame__app {
  margin-left: 12px;
  color: #6B5F55;
  font-size: 10.5px;
  letter-spacing: 0.06em;
}
.mail-frame__watermark {
  position: absolute;
  top: 50%; right: 14px;
  transform: translateY(-50%);
  padding: 3px 8px;
  background: var(--amber);
  color: var(--ink);
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: 0.14em;
  box-shadow: 0 6px 14px -6px rgba(188,136,66,0.55);
}
.mail-frame__meta {
  padding: 16px 22px 12px;
  display: flex; flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid var(--hair);
}
.mail-frame__row {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 14px;
  align-items: baseline;
}
.mail-frame__row .mono { color: var(--espresso); opacity: 0.5; font-size: 10px; }
.mail-frame__val {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--espresso);
  letter-spacing: 0;
  text-transform: none;
  word-break: break-word;
}
.mail-frame__val--strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.015em;
  color: var(--espresso);
}
.mail-frame__body {
  padding: 20px 22px 22px;
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--espresso);
}
.mail-frame__body p { margin: 0 0 12px; }
.mail-frame__body p:last-child { margin-bottom: 0; }
.mail-frame__sig {
  margin-top: 16px !important;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--pine);
}
.mail-frame__foot {
  margin-top: 18px !important;
  padding-top: 12px;
  border-top: 1px dashed var(--hair);
  font-size: 12px;
  color: var(--espresso);
  opacity: 0.6;
  line-height: 1.5;
}
.mail-frame__foot em { font-style: italic; }
.sample-mail__disclaimer {
  margin: 12px 0 0;
  text-align: right;
  color: var(--espresso);
  opacity: 0.5;
  font-size: 10px;
  letter-spacing: 0.06em;
}

/* =========================================================
   PASSFORM — segmentation (v5)
   ========================================================= */

.passform {
  background: var(--cream);
  padding: clamp(56px, 6vw, 90px) var(--gutter);
  position: relative;
}
.passform::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--hair-strong) 30%, var(--hair-strong) 70%, transparent 100%);
}
.passform__intro {
  max-width: var(--max);
  margin: 0 auto clamp(28px, 3.5vw, 48px);
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(0, 2fr) minmax(0, 1.4fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: start;
}
.passform__intro > .mono { padding-top: 8px; }
.passform__intro > .display { grid-column: 2; margin: 0; }
.passform__intro > .display em { color: var(--pine); }
.passform__lede {
  margin: 0;
  grid-column: 3;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-lead);
  line-height: 1.42;
  color: var(--espresso);
  opacity: 0.76;
  padding-top: 8px;
  max-width: 34ch;
}

.passform__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: clamp(28px, 3vw, 48px);
  padding: clamp(28px, 3vw, 40px) 0;
  border-top: 1px solid var(--hair-strong);
  border-bottom: 1px solid var(--hair-strong);
  position: relative;
}
.passform__grid::before {
  content: "";
  position: absolute; top: clamp(20px, 2.4vw, 32px); bottom: clamp(20px, 2.4vw, 32px); left: 50%;
  width: 1px;
  background: var(--hair);
  transform: translateX(-50%);
}
.passform__col { padding: 0 clamp(0px, 1vw, 12px); }
.passform__col--no { grid-column: 3; }
.passform__col-h {
  display: block;
  color: var(--pine);
  margin-bottom: 18px;
}
.passform__col--no .passform__col-h { color: var(--espresso); opacity: 0.55; }
.passform__col--no .passform__col-h b { color: var(--espresso); opacity: 1; font-weight: 500; }
.passform__list {
  display: flex; flex-direction: column; gap: 12px;
}
.passform__list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: baseline;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(15px, 0.3vw + 13px, 17.5px);
  line-height: 1.4;
  color: var(--espresso);
  letter-spacing: -0.01em;
}
.passform__mark {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 999px;
  border: 1px solid;
  align-self: center;
}
.passform__mark--yes {
  background: rgba(52, 87, 63, 0.10);
  color: var(--pine);
  border-color: rgba(52, 87, 63, 0.24);
}
.passform__mark--no {
  background: rgba(28,22,20,0.05);
  color: var(--espresso);
  opacity: 0.55;
  border-color: var(--hair-strong);
}
.passform__col--no .passform__list li { opacity: 0.75; }

.passform__pull {
  max-width: 720px;
  margin: clamp(24px, 3vw, 36px) auto 0;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(16px, 0.4vw + 14px, 19px);
  line-height: 1.45;
  color: var(--pine);
}
.passform__pull em { font-style: italic; }

/* =========================================================
   FAQ — legal-nuanced (v5)
   ========================================================= */

.faq {
  background: var(--cream-2);
  padding: clamp(56px, 6vw, 90px) var(--gutter);
  position: relative;
}
.faq::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--hair-strong) 30%, var(--hair-strong) 70%, transparent 100%);
}
.faq__intro {
  max-width: var(--max);
  margin: 0 auto clamp(28px, 3.5vw, 48px);
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(0, 2fr) minmax(0, 1.4fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: start;
}
.faq__intro > .mono { padding-top: 8px; }
.faq__intro > .display { grid-column: 2; margin: 0; }
.faq__intro > .display em { color: var(--amber); }
.faq__lede {
  margin: 0;
  grid-column: 3;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-lead);
  line-height: 1.42;
  color: var(--espresso);
  opacity: 0.76;
  padding-top: 8px;
  max-width: 30ch;
}

.faq__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
}

.faq__item {
  background: var(--cream);
  border: 1px solid var(--hair);
  border-radius: 14px;
  padding: 4px 18px;
  transition: border-color 300ms var(--ease-swift), background 300ms var(--ease-swift);
}
.faq__item[open] {
  background: var(--cream);
  border-color: var(--hair-strong);
  box-shadow: 0 12px 28px -20px rgba(28,22,20,0.14);
}
.faq__item summary {
  display: grid;
  grid-template-columns: 34px 1fr 22px;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  cursor: pointer;
  list-style: none;
  transition: color 300ms var(--ease-swift);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__num {
  color: var(--pine);
  opacity: 0.7;
}
.faq__q {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(15px, 0.3vw + 13px, 17.5px);
  line-height: 1.32;
  letter-spacing: -0.015em;
  color: var(--espresso);
  text-wrap: balance;
}
.faq__chev {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: rgba(28,22,20,0.05);
  color: var(--espresso);
  transition: transform 400ms var(--ease-swift), background 300ms var(--ease-swift);
}
.faq__item[open] .faq__chev {
  transform: rotate(180deg);
  background: rgba(52,87,63,0.14);
  color: var(--pine);
}
.faq__a {
  padding: 4px 0 16px 48px;
  border-top: 1px dashed var(--hair);
  margin-top: -4px;
}
.faq__a p {
  margin: 12px 0 0;
  color: var(--espresso);
  opacity: 0.82;
  line-height: 1.6;
  font-size: 14.5px;
  max-width: 60ch;
}

/* =========================================================
   TRYGGHET — 3-card promise (v5)
   ========================================================= */

.trygghet {
  background: var(--cream);
  padding: clamp(56px, 6vw, 84px) var(--gutter);
  position: relative;
}
.trygghet::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--hair-strong) 30%, var(--hair-strong) 70%, transparent 100%);
}
.trygghet__intro {
  max-width: var(--max);
  margin: 0 auto clamp(28px, 3vw, 42px);
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.trygghet__intro > .mono { color: var(--pine); }
.trygghet__intro > .display { margin: 0; }
.trygghet__intro > .display em { color: var(--pine); }

.trygghet__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.trygghet__card { margin: 0; }
.trygghet__card .bezel-outer {
  height: 100%;
  border-color: rgba(52, 87, 63, 0.14);
  background: rgba(52, 87, 63, 0.05);
  box-shadow:
    0 20px 44px -30px rgba(28,22,20,0.18),
    0 6px 14px -10px rgba(28,22,20,0.08);
}
.trygghet__inner {
  padding: 24px 24px 26px;
  display: flex; flex-direction: column;
  gap: 12px;
  height: 100%;
  min-height: 200px;
}
.trygghet__num {
  color: var(--pine);
  opacity: 0.8;
}
.trygghet__h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 1vw + 12px, 26px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--espresso);
  margin: 0;
  text-wrap: balance;
}
.trygghet__body {
  margin: auto 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--hair);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.45;
  color: var(--pine);
  opacity: 0.9;
}
.trygghet__body em { font-style: italic; }

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__margin { display: none; }
  .hero__stage { max-width: 580px; margin: 0 auto; }
  .editorial__grid { grid-template-columns: 1fr; }
  .editorial__side { border-top: 0; }
  .pullquote, .editorial__stats { grid-column: 1; }
  .editorial__stats { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .e-stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .process__intro, .portal__intro, .pricing__intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .process__intro > .display, .portal__intro > .display, .pricing__intro > .display,
  .process__lede, .portal__lede, .pricing__lede { grid-column: 1; }
  .tier-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .tier--featured { transform: none; }
  .bento { grid-template-columns: repeat(6, 1fr); }
  .bento__tile--hero { grid-column: span 6; grid-row: auto; }
  .bento__tile--stat, .bento__tile--kontakta, .bento__tile--mallar, .bento__tile--quote {
    grid-column: span 6;
  }
  .manifest__grid { grid-template-columns: 1fr; }
  .strip__grid { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .strip__cell:nth-child(3) { border-left: 0; padding-left: 0; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__brand { grid-column: 1 / -1; }
  .math-note { grid-template-columns: 1fr; }
  .math-note__label { border-right: 0; border-bottom: 1px solid var(--hair); padding: 0 0 12px; }
  .math-note__punch { border-left: 0; border-top: 1px dashed var(--hair-strong); padding: 12px 0 0; }
  .timeline::before { left: 22px; }
  .timeline__step { grid-template-columns: 44px 1fr; gap: 18px; }
  .timeline__num { grid-column: 1; justify-self: start; }
  .timeline__body--left, .timeline__body--right {
    grid-column: 2; text-align: left; padding: 0; justify-self: start;
  }

  /* v5 new sections — tablet */
  .case-study__grid { grid-template-columns: 1fr; }
  .sample-mail__grid { grid-template-columns: 1fr; }
  .passform__intro, .faq__intro { grid-template-columns: 1fr; gap: 18px; }
  .passform__intro > .display, .faq__intro > .display,
  .passform__lede, .faq__lede { grid-column: 1; }
  .faq__grid { grid-template-columns: 1fr; gap: 8px; }
  .trygghet__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .trygghet__inner { min-height: 0; }
}

@media (max-width: 720px) {
  .island-nav__links { display: none; }
  .island-nav__pill > .pill-cta:not(.pill-cta--full) { display: none; }
  .island-nav__burger { display: inline-flex; align-items: center; justify-content: center; }
  .island-nav__pill { padding: 6px 6px 6px 14px; gap: 6px; }
  .island-nav__brand { padding-right: 0; border-right: 0; }
  .kinetic-headline { letter-spacing: -0.028em; }
  .hero__meta { flex-wrap: wrap; gap: 18px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; gap: 4px; }
  .cta__buttons .ghost-link--cream { display: none; }
  .strip__grid { grid-template-columns: 1fr; }
  .strip__cell { border-left: 0; padding-left: 0; }
  .bento { grid-template-columns: 1fr; }
  .bento__tile--hero, .bento__tile--stat, .bento__tile--kontakta,
  .bento__tile--mallar, .bento__tile--quote { grid-column: 1; }
  .editorial__stats { grid-template-columns: 1fr; }
  .e-stat { border-left: 0; padding-left: 0; padding-bottom: 16px; border-bottom: 1px solid var(--hair); }
  .e-stat:last-child { border-bottom: 0; padding-bottom: 0; }
  .contact-card__row { grid-template-columns: 1fr; gap: 2px; }
  .trust-marquee { height: 32px; }

  /* v5 new sections — mobile */
  .passform__grid { grid-template-columns: 1fr; gap: 24px; padding: 20px 0; }
  .passform__grid::before { display: none; }
  .passform__col--no { grid-column: 1; padding-top: 20px; border-top: 1px solid var(--hair); }
  .mail-frame__row { grid-template-columns: 56px 1fr; gap: 10px; }
  .mail-frame__val--strong { font-size: 15.5px; }
  .mail-frame__body { padding: 18px 16px 20px; font-size: 14px; }
  .mail-frame__meta { padding: 14px 16px 12px; }
  .case-stat-card { padding: 18px 18px 20px; }
  .faq__item summary { grid-template-columns: 28px 1fr 22px; gap: 10px; }
  .faq__a { padding-left: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-slow, .kh-word { opacity: 1; transform: none; filter: none; }
  .product-shot.is-active { transform: none; }
  .strip__track, .trust-marquee__track, .hero__glow, .eyebrow__dot, .hero__caption-dot { animation: none; }
  .hero__stage-inner { transform: none !important; }
}
