/* ============================================================
   MINDITY TRADING — design system
   3 visuella riktningar via [data-dir]: midnight | aurora | paper
   Accentfärg via --accent (sätts av Tweaks)
   ============================================================ */

:root {
  --display: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --mono: 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* default accent (overridable by Tweaks) */
  --accent: #3f5b8a;
  --accent-soft: color-mix(in oklch, var(--accent) 14%, transparent);
  --accent-line: color-mix(in oklch, var(--accent) 30%, transparent);
  --ink: oklch(0.98 0.004 255);   /* text on accent surfaces */

  /* primary action + functional colors (themes may override) */
  --primary: var(--accent);
  --on-primary: var(--ink);
  --check: var(--accent);
  --gold: var(--accent);
  --gold-soft: var(--accent-soft);

  --maxw: 1200px;
  --r: 16px;
  --r-lg: 24px;
  --r-sm: 10px;
}

/* ---------- DIRECTION: MIDNIGHT (default) ---------- */
[data-dir="midnight"] {
  --bg: oklch(0.16 0.012 255);
  --bg-2: oklch(0.205 0.014 255);
  --bg-3: oklch(0.255 0.016 255);
  --text: oklch(0.97 0.004 255);
  --muted: oklch(0.72 0.012 255);
  --faint: oklch(0.58 0.012 255);
  --line: oklch(1 0 0 / 0.09);
  --line-2: oklch(1 0 0 / 0.14);
  --card: oklch(0.205 0.014 255);
  --elev: 0 24px 60px -20px oklch(0 0 0 / 0.6);
  --glow: 0.16;
}

/* ---------- DIRECTION: AURORA ---------- */
[data-dir="aurora"] {
  --bg: oklch(0.165 0.03 285);
  --bg-2: oklch(0.215 0.035 285);
  --bg-3: oklch(0.26 0.04 285);
  --text: oklch(0.97 0.008 285);
  --muted: oklch(0.74 0.02 285);
  --faint: oklch(0.6 0.02 285);
  --line: oklch(1 0 0 / 0.10);
  --line-2: oklch(1 0 0 / 0.16);
  --card: oklch(0.215 0.035 285);
  --elev: 0 24px 60px -20px oklch(0.1 0.05 285 / 0.7);
  --glow: 0.22;
}

/* ---------- DIRECTION: PAPER (light) — mild navy ---------- */
[data-dir="paper"] {
  --bg: oklch(0.966 0.004 255);
  --bg-2: oklch(0.985 0.003 255);
  --bg-3: oklch(0.935 0.006 255);
  --text: oklch(0.24 0.015 255);
  --muted: oklch(0.55 0.02 255);
  --faint: oklch(0.66 0.02 255);
  --line: oklch(0.24 0.015 255 / 0.13);
  --line-2: oklch(0.24 0.015 255 / 0.22);
  --card: oklch(1 0 0);
  --elev: 0 18px 44px -26px oklch(0.30 0.04 255 / 0.22);
  --glow: 0.10;
  /* mild navy as primary + functional color */
  --primary: oklch(0.43 0.085 255);
  --on-primary: oklch(0.98 0.004 255);
  --check: oklch(0.50 0.085 255);
  --gold: oklch(0.46 0.075 255);
  --gold-soft: oklch(0.46 0.075 255 / 0.10);
}

/* ============================================================
   BASE
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background .4s ease, color .4s ease;
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.04; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 110px 0; position: relative; }
.section-sm { padding: 72px 0; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--line-2);
}

.lead { color: var(--muted); font-size: 19px; max-width: 56ch; }

/* AI Second Brain segment */
.aibrain { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px){ .aibrain { grid-template-columns: 1fr; gap: 40px; } }
.aibrain-body .eyebrow { color: var(--faint); }
.aibrain-body h2 { margin: 14px 0 18px; font-size: clamp(30px,4vw,46px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; }
.aibrain-body .lead { margin-bottom: 28px; max-width: 50ch; }
.aibrain-list { list-style: none; display: flex; flex-direction: column; gap: 15px; margin: 0 0 34px; padding: 0; }
.aibrain-list li { display: grid; grid-template-columns: 26px 1fr; gap: 13px; align-items: center; font-size: 16px; line-height: 1.4; color: var(--text); }
.aibrain-list .chk { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent-line); }
.aibrain-visual { position: relative; }
.aibrain-screen { position: relative; aspect-ratio: 5 / 4; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-2); box-shadow: var(--elev); background: var(--bg-3); }
.aibrain-screen image-slot { position: absolute; inset: 0; display: block; width: 100%; height: 100%; }
.aibrain-badge { position: absolute; left: 22px; bottom: 22px; background: oklch(0.345 0.052 252); color: oklch(0.97 0.004 255); border-radius: 12px; padding: 11px 16px; font-family: var(--display); font-weight: 600; font-size: 14px; line-height: 1.3; box-shadow: var(--elev), 0 0 0 4px var(--bg-2); display: flex; flex-direction: column; gap: 2px; }
.aibrain-badge span { font-family: var(--mono); font-weight: 500; font-size: 10px; letter-spacing: 0.14em; color: oklch(0.82 0.045 252); }

/* Vägval — fork figure */
.fork { max-width: 900px; margin: 8px auto 0; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 34px 24px; box-shadow: var(--elev); }
.fork svg { width: 100%; height: auto; display: block; overflow: visible; }
.fork-stem, .fork-up { stroke: var(--accent); fill: none; }
.fork-down { stroke: var(--line-2); fill: none; }
.fork-node { fill: var(--accent); }
.fork-node-dim { fill: var(--line-2); }
.fork-lbl { fill: var(--accent); font-family: var(--mono); font-weight: 700; letter-spacing: 0.05em; }
.fork-t { fill: var(--text); font-family: var(--display); font-weight: 700; }
.fork-d { fill: var(--muted); font-family: var(--body); }
.fork-t-dim { fill: var(--muted); font-family: var(--display); font-weight: 600; }
.fork-d-dim { fill: var(--faint); font-family: var(--body); }
.fork-start { fill: var(--faint); font-family: var(--body); }
.fork-cap { text-align: center; font-size: 13.5px; color: var(--faint); margin-top: 16px; }

/* Cookie consent banner */
.cc-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 900; background: var(--card); border-top: 1px solid var(--line-2); box-shadow: 0 -10px 40px oklch(0 0 0 / 0.14); padding: 18px 24px; transform: translateY(110%); transition: transform .4s cubic-bezier(.4,0,.2,1); }
.cc-banner.cc-show { transform: translateY(0); }
.cc-inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.cc-text { flex: 1 1 420px; }
.cc-text strong { font-family: var(--display); font-weight: 700; font-size: 16px; display: block; margin-bottom: 4px; color: var(--text); }
.cc-text p { font-size: 13.5px; color: var(--muted); line-height: 1.5; max-width: 78ch; }
.cc-text a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.cc-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.cc-btn { font-family: var(--body); font-size: 14px; font-weight: 600; padding: 11px 18px; border-radius: 999px; cursor: pointer; border: 1.5px solid transparent; white-space: nowrap; transition: background .2s, border-color .2s, color .2s, filter .2s; }
.cc-btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.cc-btn-primary:hover { filter: brightness(1.08); }
.cc-btn-text { background: none; border: 0; color: var(--muted); padding: 11px 8px; text-decoration: underline; text-underline-offset: 2px; }
.cc-btn-text:hover { color: var(--text); }
.cc-options { max-width: var(--maxw); margin: 16px auto 0; border-top: 1px solid var(--line); padding-top: 16px; display: grid; gap: 13px; }
.cc-options[hidden] { display: none; }
.cc-opt { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; font-size: 14px; }
.cc-opt span { display: flex; flex-direction: column; gap: 2px; }
.cc-opt b { font-weight: 600; color: var(--text); }
.cc-opt small { color: var(--muted); font-size: 12.5px; }
.cc-opt input { width: 18px; height: 18px; accent-color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.cc-options-actions { display: flex; justify-content: flex-end; }
.cc-reopen { cursor: pointer; }
@media (max-width: 720px){
  .cc-banner { padding: 16px 18px; }
  .cc-actions { width: 100%; }
  .cc-actions .cc-btn-primary { flex: 1; text-align: center; }
}

/* Booking card */
.book-card { max-width: 880px; margin: 12px auto 0; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--elev); display: grid; grid-template-columns: 1.3fr 1fr; overflow: hidden; }
.book-info { padding: 38px 40px; }
.book-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); background: var(--accent-soft); border: 1px solid var(--accent-line); padding: 7px 13px; border-radius: 999px; margin-bottom: 24px; }
.book-points { list-style: none; display: flex; flex-direction: column; gap: 15px; margin: 0; padding: 0; }
.book-points li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: center; font-size: 15.5px; line-height: 1.4; color: var(--text); }
.book-points .chk { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent-line); }
.book-cta { background: var(--bg-3); border-left: 1px solid var(--line); padding: 36px 32px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; text-align: center; }
.book-price { font-family: var(--display); font-weight: 700; font-size: 34px; letter-spacing: -0.02em; line-height: 1; color: var(--text); }
.book-price-sub { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.book-cta .btn { font-size: 16px; padding: 16px 24px; }
.book-meta { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-top: 14px; }
@media (max-width: 720px){
  .book-card { grid-template-columns: 1fr; max-width: 460px; }
  .book-info { padding: 32px 28px; }
  .book-cta { border-left: 0; border-top: 1px solid var(--line); padding: 30px 28px; }
}

.kicker-row { display: flex; flex-direction: column; gap: 18px; margin-bottom: 52px; }
.kicker-row h2 { font-size: clamp(32px, 4.4vw, 52px); max-width: 18ch; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: transform .18s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--primary); color: var(--on-primary); }
.btn-primary:hover { box-shadow: var(--elev); transform: translateY(-2px); }
.btn-ghost { background: var(--card); color: var(--text); border: 1px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-block { width: 100%; justify-content: center; }
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em;
  padding: 7px 13px; border-radius: 999px;
  background: var(--bg-3); border: 1px solid var(--line);
  color: var(--muted);
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px var(--gold-soft); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: color-mix(in oklch, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--accent); color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 18px;
}
.brand-txt { line-height: 1.25; }
.brand-txt b { font-family: var(--display); font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }
.brand-txt span { display: block; margin-top: 3px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { white-space: nowrap; font-size: 14.5px; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-cta { padding: 10px 18px; font-size: 14px; border-radius: 999px; }
.nav-cta .arr { transition: transform .2s ease; }
.nav-cta:hover .arr { transform: translateX(3px); }
.nav-cart { color: var(--muted); display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line); }
.nav-cart:hover { color: var(--text); border-color: var(--line-2); }
/* Mobile hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 10px; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s, opacity .2s; }
.nav.open .nav-toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2){ opacity: 0; }
.nav.open .nav-toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 880px){
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 14px 24px 20px; box-shadow: var(--elev);
  }
  .nav.open .nav-links a { padding: 12px 0; font-size: 16px; border-bottom: 1px solid var(--line); }
  .nav.open .nav-links a:last-child { border-bottom: 0; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 84px 0 96px; overflow: hidden; }
.hero-glow {
  position: absolute; inset: -20% -10% auto -10%; height: 620px; pointer-events: none; z-index: 0;
  background:
    radial-gradient(620px 360px at 22% 12%, color-mix(in oklch, var(--accent) calc(var(--glow)*100%), transparent), transparent 70%),
    radial-gradient(520px 320px at 86% 0%, color-mix(in oklch, var(--accent) calc(var(--glow)*55%), transparent), transparent 68%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: .5; pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(80% 60% at 50% 30%, #000, transparent 80%);
          mask-image: radial-gradient(80% 60% at 50% 30%, #000, transparent 80%);
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(40px, 6vw, 74px); font-weight: 700; letter-spacing: -0.035em; }
.hero h1 .hl { color: var(--accent); }
.hero h1 .t2 { color: var(--muted); }
.hero-sub { margin-top: 24px; font-size: 19px; color: var(--muted); max-width: 48ch; }
.hero-cta { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta { margin-top: 40px; display: flex; align-items: stretch; flex-wrap: wrap; gap: 0; }
.hero-meta .m { display: flex; flex-direction: column; gap: 6px; justify-content: center; padding: 2px 30px; }
.hero-meta .m:first-child { padding-left: 0; }
.hero-meta .m + .m { border-left: 1px solid var(--line-2); }
.hero-meta .m b { font-family: var(--display); font-size: 30px; font-weight: 700; letter-spacing: -0.02em; line-height: 1; }
.hero-meta .m span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); }
.hero-meta .sep { width: 1px; height: 38px; background: var(--line-2); }

.hero-visual { position: relative; }
.hero-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--elev); overflow: hidden;
}
.hero-photo {
  position: relative;
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--elev); background: var(--bg-3);
}
.hero-photo img { width: 100%; height: 470px; object-fit: cover; object-position: 50% 22%; display: block; }
.hero-name-badge { position: absolute; left: 18px; bottom: 18px; background: oklch(0.34 0.05 252 / 0.82); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); color: #fff; border-radius: 14px; padding: 13px 20px; font-family: var(--display); font-weight: 700; font-size: 15px; line-height: 1.3; box-shadow: 0 8px 24px oklch(0.2 0.03 252 / 0.35); }
.hero-name-badge span { display: block; margin-top: 3px; font-family: var(--mono); font-weight: 500; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: oklch(0.85 0.04 252); }
/* Round hero portrait variant */
.hero-photo-round { border: 0; box-shadow: none; background: transparent; overflow: visible; border-radius: 0; max-width: 400px; margin-inline: auto; }
.hero-photo-round img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; object-position: 50% 30%; border-radius: 50%; box-shadow: var(--elev); }
.hero-photo-round .hero-name-badge { left: 50%; transform: translateX(-50%); bottom: 12px; }
.hero-ai-badge { position: absolute; top: 26px; right: -16px; display: flex; align-items: center; gap: 11px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 10px 15px 10px 11px; box-shadow: var(--elev); }
.hero-ai-ico { width: 36px; height: 36px; border-radius: 10px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; border: 1px solid var(--accent-line); flex-shrink: 0; }
.hero-ai-txt { display: flex; flex-direction: column; line-height: 1.25; }
.hero-ai-txt b { font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--text); }
.hero-ai-txt span { font-size: 12px; color: var(--muted); }
@media (max-width: 940px){ .hero-photo img { height: 440px; } }

/* Intro-video facade + lightbox */
.hero-play { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; border: 0; background: transparent; cursor: pointer; padding: 0; }
.hero-play::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, oklch(0.18 0.02 255 / .08) 35%, oklch(0.16 0.02 255 / .6)); transition: background .25s; }
.hero-play:hover::after { background: linear-gradient(180deg, oklch(0.18 0.02 255 / .14) 25%, oklch(0.16 0.02 255 / .72)); }
.hero-play-btn { position: relative; z-index: 1; width: 74px; height: 74px; border-radius: 50%; background: oklch(0.99 0 0 / .94); display: grid; place-items: center; box-shadow: 0 12px 40px oklch(0.16 0.02 255 / .4); transition: transform .25s; }
.hero-play:hover .hero-play-btn { transform: scale(1.07); }
.hero-play-label { position: absolute; left: 22px; right: auto; bottom: 20px; z-index: 1; text-align: left; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: oklch(0.98 0 0); }

.video-modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 24px; }
.video-modal[hidden] { display: none; }
.video-modal-backdrop { position: absolute; inset: 0; background: oklch(0.15 0.02 255 / .82); backdrop-filter: blur(6px); }
.video-modal-card { position: relative; width: min(960px, 100%); }
.video-modal-x { position: absolute; top: -46px; right: 0; width: 40px; height: 40px; border-radius: 10px; border: 1px solid oklch(1 0 0 / .25); background: transparent; color: #fff; font-size: 22px; line-height: 1; cursor: pointer; }
.video-modal-x:hover { background: oklch(1 0 0 / .12); }
.video-frame { position: relative; aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden; background: #000; box-shadow: var(--elev); }
.video-frame iframe, .video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-yt-link { display: block; width: 100%; text-align: center; margin-top: 14px; font-family: var(--mono); font-size: 12px; letter-spacing: .04em; color: oklch(1 0 0 / .8); }
.video-yt-link[hidden] { display: none; }
.video-yt-link:hover { color: #fff; text-decoration: underline; }
.hero-card .bar { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.hero-card .bar .t { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }
.hero-card .bar .up { font-family: var(--mono); font-size: 12px; color: var(--accent); }
.equity { padding: 8px 0 0; }
.equity svg { display: block; width: 100%; height: 200px; }
.hero-card .stats { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); }
.hero-card .stats div { padding: 16px 18px; border-right: 1px solid var(--line); }
.hero-card .stats div:last-child { border-right: 0; }
.hero-card .stats b { font-family: var(--display); font-size: 20px; display: block; }
.hero-card .stats span { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); }
.float-badge {
  position: absolute; right: -18px; bottom: -22px;
  background: var(--accent); color: var(--ink);
  border-radius: 14px; padding: 12px 18px; box-shadow: var(--elev), 0 0 0 4px var(--bg);
  font-family: var(--display); font-weight: 600; font-size: 13px; line-height: 1.25;
}
.float-badge span { display: block; margin-top: 2px; font-family: var(--mono); font-size: 10px; opacity: .82; letter-spacing: .08em; }

@media (max-width: 940px){
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 460px; }
}

/* ============================================================
   LOGO STRIP
   ============================================================ */
/* Alternating section bands (off-white / white rhythm) */
.band-alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip-inner { display: flex; align-items: center; justify-content: center; gap: 32px; padding: 22px 0; flex-wrap: wrap; }
.strip-inner .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); }
.strip-inner .chans { display: flex; gap: 30px; flex-wrap: wrap; align-items: center; color: var(--muted); font-family: var(--display); font-size: 17px; font-weight: 500; }
.strip-inner .chans a { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); transition: color .18s ease; }
.strip-inner .chans a svg { color: var(--faint); transition: color .18s ease; }
.strip-inner .chans a:hover { color: var(--text); }
.strip-inner .chans a:hover svg { color: var(--text); }

/* ============================================================
   CARDS / FEATURES
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media (max-width: 860px){ .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: var(--elev); }
.card .ico {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent); margin-bottom: 20px;
  border: 1px solid var(--accent-line);
}
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card .more { margin-top: 18px; display: inline-flex; gap: 7px; align-items: center; color: var(--accent); font-weight: 600; font-size: 14.5px; }
.card .more .arr { transition: transform .2s; }
.card:hover .more .arr { transform: translateX(3px); }

.feat-lg { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 22px; align-items: stretch; }
@media (max-width: 860px){ .feat-lg { grid-template-columns: 1fr; } }

/* ============================================================
   STEPS (Hur går det till)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
@media (max-width: 860px){ .steps { grid-template-columns: 1fr; } }
.step { padding: 30px 26px 34px; border-right: 1px solid var(--line); position: relative; background: var(--card); }
.step:last-child { border-right: 0; }
@media (max-width: 860px){ .step { border-right: 0; border-bottom: 1px solid var(--line); } }
.step .n { font-family: var(--mono); font-size: 13px; color: var(--accent); margin-bottom: 22px; }
.step h4 { font-size: 19px; margin-bottom: 9px; }
.step p { color: var(--muted); font-size: 14.5px; }
.step .bar { position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: var(--line); }
.step .bar i { display: block; height: 100%; background: var(--accent); width: 25%; }

/* ============================================================
   STATS
   ============================================================ */
.statbar { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
@media (max-width: 720px){ .statbar { grid-template-columns: 1fr 1fr; } }
.stat { text-align: left; }
.stat b { font-family: var(--display); font-size: clamp(38px,5vw,58px); font-weight: 600; letter-spacing: -0.03em; display: block; }
.stat b .u { color: var(--accent); }
.stat span { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

/* ============================================================
   PRICING
   ============================================================ */
.price-head { display: flex; flex-direction: column; align-items: flex-start; text-align: left; gap: 18px; margin-bottom: 30px; }
.price-head h2 { font-size: clamp(34px,5vw,60px); font-weight: 700; letter-spacing: -0.035em; line-height: 1.02; }
.price-head h2 .t2 { color: var(--muted); }
.price-head .lead { text-align: left; max-width: 64ch; }

.meta-dots { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 0; color: var(--faint); font-size: 13.5px; margin-top: 4px; }
.meta-dots span { padding: 0 18px; border-right: 1px solid var(--line-2); line-height: 1; }
.meta-dots span:first-child { padding-left: 0; }
.meta-dots span:last-child { border-right: 0; }

/* Founders banner */
.founders {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 24px 28px; margin: 8px 0 40px; box-shadow: var(--elev);
}
.founders .trophy { font-size: 24px; line-height: 1.2; flex: none; }
.founders .f-label { font-weight: 700; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.founders p { color: var(--muted); font-size: 15px; max-width: 92ch; }
.founders p b { color: var(--gold); }
@media (max-width: 560px){ .founders { padding: 20px; } }

.plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 0; align-items: stretch; }
.plans.plans-2 { grid-template-columns: repeat(2,1fr); max-width: 720px; margin-inline: auto; }
.plans.plans-3 { grid-template-columns: repeat(3,1fr); max-width: 1080px; margin-inline: auto; }
@media (max-width: 1040px){ .plans.plans-3 { grid-template-columns: 1fr; max-width: 460px; } }
@media (max-width: 980px){ .plans { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.plan {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px; display: flex; flex-direction: column; gap: 18px; position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.plan.feature { border: 1.5px solid var(--primary); box-shadow: var(--elev); }
.plan:hover { transform: translateY(-4px); box-shadow: var(--elev); }

.plan .plabel { font-weight: 600; font-size: 11.5px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--faint); }
.plan .plabel.gold { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); margin: 0; padding: 6px 15px; border-radius: 999px; background: var(--primary); color: var(--on-primary); font-size: 10.5px; letter-spacing: 0.12em; white-space: nowrap; box-shadow: var(--elev); z-index: 2; }
.plan li a { color: var(--text); text-decoration: underline; text-decoration-color: var(--line-2); text-underline-offset: 3px; transition: color .2s ease, text-decoration-color .2s ease; }
.plan li a:hover { color: var(--accent); text-decoration-color: var(--accent); }
.proi { font-size: 13.5px; line-height: 1.5; color: var(--muted); background: var(--accent-soft); border: 1px solid var(--accent-line); border-radius: 10px; padding: 10px 13px; margin: -4px 0 4px; }
.proi b { color: var(--text); }

/* Payment trust row under pricing */
.pay-trust { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.pay-trust-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }
.pay-pill { font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--muted); background: var(--card); }
.pay-pill.pay-klarna { background: #FFB3C7; border-color: #FFB3C7; color: #17120f; font-weight: 700; letter-spacing: 0.01em; }
.pay-trust-note { font-size: 13px; color: var(--faint); }

/* ===== OM MIG ===== */
.about { display: grid; grid-template-columns: 0.78fr 1fr; gap: 56px; align-items: center; }
.about-photo { position: relative; overflow: hidden; border-radius: var(--r-lg); border: 1px solid var(--line); }
.about-photo img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; object-position: 50% 42%; transform: scale(1.7); transform-origin: 85% 40%; display: block; }
.about-badge { position: absolute; left: 18px; bottom: 18px; background: var(--card); border: 1px solid var(--line-2); border-radius: 12px; padding: 11px 16px; font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: -0.01em; box-shadow: var(--elev); display: flex; flex-direction: column; gap: 3px; }
.about-badge span { font-family: var(--mono); font-weight: 500; font-size: 10px; letter-spacing: 0.14em; color: var(--faint); }
.about-body .eyebrow { color: var(--accent); }
.about-body h2 { margin: 12px 0 18px; }
.about-body p { color: var(--muted); font-size: 17px; line-height: 1.65; margin-bottom: 16px; max-width: 52ch; }
.about-points { list-style: none; display: flex; gap: 34px; margin-top: 26px; padding: 0; flex-wrap: wrap; }
.about-points li { display: flex; flex-direction: column; gap: 2px; }
.about-points b { font-family: var(--display); font-size: 28px; font-weight: 700; letter-spacing: -0.02em; color: var(--text); line-height: 1; }
.about-points span { font-size: 13px; color: var(--muted); }
@media (max-width: 860px){
  .about { grid-template-columns: 1fr; gap: 32px; max-width: 480px; margin-inline: auto; }
  .about-points { gap: 24px; }
}
.plan .pprice { display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap; margin-top: 2px; }
.plan .pprice .amt { font-family: var(--display); font-size: 28px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.plan-head { display: flex; flex-direction: column; gap: 4px; }
.plan-head .pname { font-family: var(--display); font-size: 21px; font-weight: 700; letter-spacing: -0.02em; color: var(--text); line-height: 1.15; }
.plan-head .psub { font-size: 13.5px; color: var(--muted); letter-spacing: 0; }
.plan .pprice .per { font-size: 14px; color: var(--faint); }
.plan .pprice .old { font-size: 15px; color: var(--faint); text-decoration: line-through; margin-right: 2px; }
.plan .pdesc { color: var(--muted); font-size: 14.5px; line-height: 1.5; min-height: 44px; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.plan li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--text); }
.plan li svg { flex: none; margin-top: 2px; color: var(--check); }
.plan li.off { color: var(--faint); }
.plan li.off .bullet { flex: none; width: 16px; text-align: center; margin-top: 1px; color: var(--faint); }
.plan .btn-block { margin-top: auto; border-radius: 12px; padding: 15px 24px; }
.plan .pnote { margin-top: auto; padding: 14px 2px 2px; border-top: 1px solid var(--line); font-size: 13px; line-height: 1.5; color: var(--muted); }
.plan .pnote b { color: var(--text); font-weight: 600; }
.plan .pnote + .btn-block { margin-top: 16px; }
.plan .foot { font-family: var(--mono); font-size: 11.5px; color: var(--faint); text-align: center; }
.plan .pprice .ptax { width: 100%; font-size: 12.5px; color: var(--faint); margin-top: 1px; }
.pbiz-toggle { align-self: center; background: none; border: 0; padding: 0; margin-top: 0; cursor: pointer; font-family: var(--body); font-size: 13px; color: var(--muted); text-align: center; }
.pbiz-toggle .u { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.pbiz-toggle:hover .u { color: var(--text); }
.pbiz-box { border: 1px solid var(--accent-line); background: var(--accent-soft); border-radius: 12px; padding: 14px 16px; margin-top: -6px; }
.pbiz-box .pbiz-price { display: flex; align-items: baseline; gap: 8px; }
.pbiz-box .pbiz-price .amt { font-family: var(--display); font-size: 27px; font-weight: 700; letter-spacing: -0.02em; line-height: 1; }
.pbiz-box .pbiz-price .per { font-size: 13px; color: var(--faint); }
.pbiz-box p { font-size: 13px; color: var(--muted); line-height: 1.5; margin-top: 7px; }
.pay-link { align-self: center; background: none; border: 0; padding: 0; margin-top: -4px; cursor: pointer; font-family: var(--body); font-size: 13px; color: var(--muted); text-align: center; }
.pay-link .u { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.pay-link:hover .u { color: var(--text); }

/* Kvalificering — "Det här är inte för alla" */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 760px; margin: 36px auto 0; }
@media (max-width: 620px){ .fit-grid { grid-template-columns: 1fr; max-width: 440px; } }
.fit-card { display: flex; gap: 14px; align-items: flex-start; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px 24px; text-align: left; }
.fit-card .fit-check { flex: none; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); margin-top: 1px; }
.fit-card .fit-check svg { width: 15px; height: 15px; }
.fit-card h4 { font-family: var(--display); font-size: 18px; font-weight: 700; letter-spacing: -0.01em; margin: 1px 0 5px; }
.fit-card p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }

/* Betalningsvillkor modal */
.pay-modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 24px; }
.pay-modal[hidden] { display: none; }
.pay-modal-backdrop { position: absolute; inset: 0; background: oklch(0 0 0 / 0.6); backdrop-filter: blur(3px); }
.pay-modal-card { position: relative; z-index: 1; width: min(460px, 100%); max-height: 90vh; overflow-y: auto; background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r-lg); box-shadow: var(--elev); padding: 32px 30px; animation: payIn .22s ease; }
@keyframes payIn { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }
.pay-modal-x { position: absolute; top: 14px; right: 16px; background: none; border: 0; font-size: 26px; line-height: 1; color: var(--faint); cursor: pointer; padding: 4px; }
.pay-modal-x:hover { color: var(--text); }
.pay-modal-card .eyebrow { color: var(--accent); }
.pay-modal-card h3 { font-size: 26px; letter-spacing: -0.02em; margin: 10px 0 6px; }
.pay-sub { color: var(--muted); font-size: 14.5px; line-height: 1.5; margin-bottom: 20px; }
.pay-opt { border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; margin-bottom: 12px; background: var(--bg-2); }
.pay-opt-head { display: flex; align-items: center; gap: 10px; }
.pay-opt-head b { font-size: 16px; }
.pay-chip { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--muted); }
.pay-chip-accent { border-color: var(--accent-line); color: var(--accent); background: var(--accent-soft); }
.pay-opt-price { font-family: var(--display); font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin: 8px 0 6px; }
.pay-opt p { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.pay-fine { font-size: 12px; color: var(--faint); line-height: 1.5; margin-top: 14px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media (max-width: 860px){ .tgrid { grid-template-columns: 1fr; } }
.tcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 26px; display: flex; flex-direction: column; gap: 18px; }
.tcard .stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; }
.tcard p { font-size: 16px; color: var(--text); line-height: 1.55; }
.tcard .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.tcard .av { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--line); overflow: hidden; }
.tcard .who b { font-family: var(--display); font-size: 15px; font-weight: 600; display: block; }
.tcard .who span { font-family: var(--mono); font-size: 11px; color: var(--faint); }
.tresult { display: inline-flex; align-items: center; gap: 7px; align-self: flex-start; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent); background: color-mix(in oklch, var(--accent) 9%, transparent); border: 1px solid color-mix(in oklch, var(--accent) 28%, transparent); border-radius: 999px; padding: 6px 12px; }
.tresult::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: transparent; border: 0; cursor: pointer; color: var(--text);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; font-family: var(--display); font-size: 19px; font-weight: 500; text-align: left; letter-spacing: -0.01em; }
.faq-q .pm { flex: none; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; transition: all .25s ease; color: var(--muted); }
.faq-item.open .pm { background: var(--accent); color: var(--ink); border-color: var(--accent); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 4px 26px; color: var(--muted); font-size: 15.5px; max-width: 70ch; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; border-radius: var(--r-lg); overflow: hidden; padding: 72px 56px; border: 1px solid var(--accent-line);
  background: linear-gradient(135deg, var(--accent-soft), transparent 60%), var(--card); }
.cta-band .glow { position: absolute; inset: 0; background: radial-gradient(500px 300px at 80% 120%, var(--accent-soft), transparent 70%); pointer-events: none; }
.cta-band-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 36px; align-items: center; }
.cta-band h2 { font-size: clamp(30px,4vw,46px); max-width: 16ch; }
.cta-band p { color: var(--muted); margin-top: 14px; max-width: 44ch; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; }
@media (max-width: 820px){ .cta-band { padding: 48px 28px; } .cta-band-inner { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding: 56px 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 820px){ .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; } }
.footer-col h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--muted); font-size: 14.5px; padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-about .brand { display: flex; align-items: center; gap: 12px; padding: 0; }
.footer-about .brand .brand-txt b { color: var(--text); font-size: 16px; }
.footer-about .socials { margin-top: 28px; }
.footer-about p { color: var(--muted); font-size: 14.5px; margin: 16px 0 20px; max-width: 36ch; }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--muted); transition: all .2s; }
.socials a:hover { color: var(--accent); border-color: var(--accent-line); transform: translateY(-2px); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.footer-bottom span { font-family: var(--mono); font-size: 12px; color: var(--faint); }
.footer-bottom .links { display: flex; gap: 22px; }
.footer-bottom .links a { font-size: 13px; color: var(--muted); }
.footer-bottom .links a:hover { color: var(--text); }

/* ============================================================
   REVEAL ANIMATION — pure CSS, auto-plays, always ends visible
   ============================================================ */
@keyframes rise {
  from { transform: translateY(20px); }
  to   { transform: none; }
}
@media (prefers-reduced-motion: no-preference){
  .reveal { animation: rise .6s cubic-bezier(.2,.7,.2,1) both; }
  .reveal.d1 { animation-delay: .08s; }
  .reveal.d2 { animation-delay: .16s; }
  .reveal.d3 { animation-delay: .24s; }
}

/* image-slot theming */
image-slot { --is-bg: var(--bg-3); --is-border: var(--line-2); }

/* ============================================================
   PELARE — programmets tre delar
   ============================================================ */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; align-items: stretch; }
@media (max-width: 900px){ .pillars { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } }
.pillar { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.pillar:hover { transform: translateY(-3px); box-shadow: var(--elev); border-color: var(--line-2); }
.pillar-img { aspect-ratio: 5/3; border-bottom: 1px solid var(--line); background: var(--gold-soft); position: relative; overflow: hidden; }
.pillar-img image-slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.pillar-body { padding: 30px 30px 32px; }
.pillar-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 12px; }
.pillar-num { font-family: var(--display); font-size: 20px; font-weight: 600; color: var(--accent); letter-spacing: -0.02em; }
.pillar-head h3 { font-size: 22px; letter-spacing: -0.02em; }
.pillar-body p { color: var(--muted); font-size: 15px; line-height: 1.6; }
.pillar-body { padding: 30px 26px 32px; }
.pillar-ai { border-color: var(--accent-line); background: linear-gradient(165deg, var(--accent-soft), transparent 48%), var(--card); box-shadow: 0 0 0 1px var(--accent-line), 0 22px 50px -28px var(--accent); }
.pillar-ai:hover { border-color: var(--accent); }
.pillar-ai .pillar-num { color: var(--accent); }
.pillar-tag { position: absolute; top: 12px; right: 12px; z-index: 2; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; background: #18c171; color: #052e1c; font-weight: 700; box-shadow: 0 4px 16px -2px rgba(24,193,113,0.55); }
.pillar-ai .pillar-tag { background: #18c171 !important; color: #052e1c !important; box-shadow: 0 4px 16px -2px rgba(24,193,113,0.55) !important; }

/* Featured AI pillar — the hero of the section */
.pillar-feature { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; margin-top: 56px; border: 1px solid var(--accent-line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--elev); background: linear-gradient(135deg, var(--accent-soft), transparent 62%), var(--card); }
.pillar-feature-img { position: relative; min-height: 360px; border-right: 1px solid var(--line); background: var(--gold-soft); overflow: hidden; }
.pillar-feature-img image-slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.pillar-feature-body { padding: 48px 46px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.pillar-feature-eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.pillar-feature-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.pillar-feature-body h3 { font-size: clamp(26px, 2.7vw, 35px); letter-spacing: -0.02em; line-height: 1.08; text-wrap: balance; }
.pillar-feature-body p { color: var(--muted); font-size: 16.5px; line-height: 1.6; max-width: 48ch; }
.pillar-feat-points { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 6px; }
.pillar-feat-points span { font-family: var(--mono); font-size: 12px; letter-spacing: 0.02em; padding: 7px 13px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--text); background: var(--card); }
@media (max-width: 860px){
  .pillar-feature { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .pillar-feature-img { min-height: 240px; border-right: 0; border-bottom: 1px solid var(--line); }
  .pillar-feature-body { padding: 32px 28px; }
}

/* ============================================================
   PROCESS — numrerade steg med kopplingslinje
   ============================================================ */
.process { position: relative; max-width: 1120px; margin: 56px auto 0; }
.process-line { display: none; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; position: relative; }
.process-step { text-align: left; position: relative; }
/* dashed connector between circle centers, masked by each circle's bg ring */
.process-step::after { content: ""; position: absolute; top: 23px; left: 56px; right: -28px; height: 1px; z-index: 0; background: repeating-linear-gradient(90deg, var(--line-2) 0 6px, transparent 6px 12px); }
.process-step:last-child::after { display: none; }
.process-num { width: 48px; height: 48px; border-radius: 50%; background: var(--bg); border: 1.5px solid var(--accent); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 700; font-size: 16px; position: relative; z-index: 1; margin-bottom: 22px; box-shadow: 0 0 0 6px var(--bg); }
.process-step h4 { font-size: 19px; letter-spacing: -0.02em; margin-bottom: 9px; }
.process-step p { font-size: 14.5px; line-height: 1.6; color: var(--muted); max-width: 240px; margin: 0; }
.process-cta { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 54px; flex-wrap: wrap; }
.process-cta .meta { font-size: 14px; color: var(--faint); }
@media (max-width: 820px){ .process-grid { grid-template-columns: 1fr 1fr; gap: 40px 28px; } .process-step::after { display: none; } }
@media (max-width: 460px){ .process-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BETEENDE — Före / Efter split
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 820px){ .split { grid-template-columns: 1fr; } }
.split-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 38px 36px; }
.split-card.dark { background: oklch(0.345 0.052 252); border-color: transparent; color: oklch(0.96 0.004 255); box-shadow: var(--elev); }
.split-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px; }
.split-card .split-eyebrow { color: var(--faint); }
.split-card.dark .split-eyebrow { color: oklch(0.82 0.045 252); }
.split-card h3 { font-size: 22px; letter-spacing: -0.02em; margin-bottom: 20px; }
.split-card.dark h3 { color: oklch(0.98 0.004 255); }
.split-list { list-style: none; display: flex; flex-direction: column; }
.split-list li { display: grid; grid-template-columns: 28px 1fr; gap: 14px; padding: 11px 0; align-items: center; font-size: 15.5px; line-height: 1.45; color: var(--text); border-top: 0 solid var(--line); }
.split-list li:first-child { border-top: 0; }
.split-card.dark .split-list li { color: oklch(0.92 0.012 255); border-color: oklch(1 0 0 / 0.1); }
.split-ico { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.split-card .split-ico { background: oklch(0.93 0.006 255); color: oklch(0.46 0.02 255); }
.split-card.dark .split-ico { background: oklch(0.45 0.06 252); color: oklch(0.97 0.01 252); }

/* ============================================================
   GARANTI
   ============================================================ */
.guarantee { display: grid; grid-template-columns: 380px 1fr; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--elev); }
@media (max-width: 860px){ .guarantee { grid-template-columns: 1fr; } }
.guarantee-left { background: oklch(0.24 0.015 255); color: oklch(0.96 0.004 255); padding: 58px 44px; display: flex; flex-direction: column; justify-content: center; }
.guarantee-100 { font-family: var(--display); font-size: 112px; font-weight: 700; line-height: 0.95; letter-spacing: -0.045em; color: oklch(0.98 0.004 255); }
.guarantee-100 span { font-size: 60px; }
.guarantee-label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: oklch(0.74 0.05 255); margin-top: 14px; }
.guarantee-bullets { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 11px; }
.guarantee-bullets li { display: flex; gap: 11px; align-items: center; font-size: 14px; color: oklch(0.85 0.012 255); }
.guarantee-bullets li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: oklch(0.7 0.06 255); flex: none; }
.guarantee-right { padding: 54px 50px; }
.guarantee-right h2 { font-size: clamp(28px,3.4vw,40px); margin: 16px 0 18px; }
.guarantee-right p { color: var(--muted); max-width: 54ch; margin-bottom: 14px; }
.guarantee-cta { margin-top: 28px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.guarantee-sig { font-family: var(--mono); font-size: 12.5px; color: var(--faint); }

/* ============================================================
   INTE FÖR ALLA — kvalificering
   ============================================================ */
.qual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 840px; margin: 44px auto; text-align: left; }
@media (max-width: 700px){ .qual-grid { grid-template-columns: 1fr; } }
.qual-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 28px; display: flex; gap: 18px; align-items: flex-start; }
.qual-card .qico { flex: none; }
.qual-card h4 { font-size: 18px; margin-bottom: 6px; }
.qual-card p { font-size: 14.5px; color: var(--muted); line-height: 1.5; }

/* ============================================================
   BOKA MÖTE — Calendly
   ============================================================ */
.booking-embed { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--elev); padding: 14px; overflow: hidden; }
.booking-embed .calendly-inline-widget { width: 100% !important; min-width: 320px !important; height: 700px; border-radius: var(--r); overflow: hidden; background: var(--bg-2); }
@media (max-width: 700px){ .booking-embed .calendly-inline-widget { height: 760px; } }

/* ============================================================
   BLOG
   ============================================================ */
.blog-hero { padding: 64px 0 24px; }
.blog-head h1 { font-size: clamp(34px,5vw,56px); font-weight: 700; letter-spacing: -0.035em; line-height: 1.03; }
.blog-head h1 .t2 { color: var(--muted); }
.blog-head .lead { margin-top: 16px; }
.cats { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 28px; }
.cat { font-family: var(--mono); font-size: 12.5px; padding: 9px 15px; border-radius: 999px; border: 1px solid var(--line-2); background: var(--card); color: var(--muted); cursor: pointer; transition: all .2s ease; }
.cat:hover { color: var(--text); border-color: var(--text); }
.cat.on { background: var(--primary); color: var(--on-primary); border-color: var(--primary); }

.post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 8px; }
@media (max-width: 900px){ .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .post-grid { grid-template-columns: 1fr; } }

.pcard { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.pcard:hover { transform: translateY(-4px); box-shadow: var(--elev); border-color: var(--line-2); }
.pcard .thumb { position: relative; aspect-ratio: 16/10; background: var(--gold-soft); border-bottom: 1px solid var(--line); overflow: hidden; }
.pcard .thumb::after { content: ""; position: absolute; inset: 0; z-index: 0; background-image: repeating-linear-gradient(135deg, var(--line) 0 1px, transparent 1px 16px); opacity: .6; }
.pcard .thumb image-slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 1; }
.pcard .thumb .tag { z-index: 2; }
.pcard .thumb .play { position: absolute; z-index: 2; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: var(--primary); color: var(--on-primary); box-shadow: 0 8px 22px rgba(0,0,0,.22); transition: transform .25s ease; padding-left: 3px; }
.pcard:hover .thumb .play { transform: translate(-50%,-50%) scale(1.08); }
.pod-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.pod-platform { display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px; border-radius: 999px; border: 1px solid var(--line-2); background: var(--card); color: var(--text); font-weight: 600; font-size: 14.5px; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.pod-platform:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--elev); }

/* compact episode list */
.ep-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 760px){ .ep-grid { grid-template-columns: 1fr; } }
.ep-row { display: flex; align-items: center; gap: 16px; padding: 13px 16px 13px 13px; border: 1px solid var(--line); border-radius: var(--r); background: var(--card); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.ep-row:hover { transform: translateY(-2px); border-color: var(--line-2); box-shadow: var(--elev); }
.ep-cover { flex: none; position: relative; width: 64px; height: 64px; border-radius: 10px; overflow: hidden; background: var(--gold-soft); }
.ep-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ep-cover .pbadge { position: absolute; right: 5px; bottom: 5px; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: #1DB954; color: #fff; padding-left: 2px; box-shadow: 0 2px 6px rgba(0,0,0,.3); opacity: 0; transform: scale(.8); transition: opacity .2s ease, transform .2s ease; }
.ep-row:hover .ep-cover .pbadge { opacity: 1; transform: scale(1); }
.ep-info { min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 5px; }
.ep-info .meta { font-family: var(--mono); font-size: 11.5px; letter-spacing: .03em; color: var(--faint); }
.ep-info h4 { font-size: 15px; line-height: 1.28; letter-spacing: -0.01em; color: var(--text); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ep-row .arr { flex: none; color: var(--faint); transition: transform .2s ease, color .2s ease; }
.ep-row:hover .arr { color: var(--primary); transform: translateX(2px); }
.spotify-embed { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); }
.spotify-embed iframe { display: block; width: 100%; border: 0; }

/* Click-to-load podcast player (facade) */
.pod-player { border-radius: var(--r-lg); }
.pod-facade {
  width: 100%; text-align: left; cursor: pointer; font-family: var(--body);
  display: grid; grid-template-columns: 172px 1fr; gap: 28px; align-items: center;
  padding: 22px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.pod-facade:hover { border-color: var(--line-2); box-shadow: var(--elev); transform: translateY(-2px); }
.pod-facade:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
.pod-facade-art { position: relative; width: 172px; height: 172px; border-radius: 14px; overflow: hidden; flex: none; }
.pod-facade-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pod-facade-badge { position: absolute; top: 11px; right: 11px; width: 30px; height: 30px; border-radius: 50%; background: oklch(0 0 0 / 0.5); color: #1ed760; display: grid; place-items: center; }
.pod-facade-body { display: flex; flex-direction: column; gap: 9px; }
.pod-facade-title { font-family: var(--display); font-size: clamp(22px, 2.4vw, 28px); font-weight: 600; letter-spacing: -0.02em; color: var(--text); line-height: 1.1; }
.pod-facade-sub { color: var(--muted); font-size: 15px; line-height: 1.5; max-width: 46ch; }
.pod-facade-cta { display: inline-flex; align-items: center; gap: 12px; margin-top: 8px; font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--text); }
.pod-facade-play { width: 46px; height: 46px; border-radius: 50%; background: var(--primary); color: var(--on-primary); display: grid; place-items: center; transition: transform .2s ease; }
.pod-facade-play svg { margin-left: 2px; }
.pod-facade:hover .pod-facade-play { transform: scale(1.07); }
.pod-player iframe { display: block; width: 100%; border: 0; border-radius: var(--r-lg); }
@media (max-width: 560px){
  .pod-facade { grid-template-columns: 1fr; gap: 20px; }
  .pod-facade-art { width: 100%; height: auto; aspect-ratio: 1/1; }
}

/* searchable master list */
.ep-searchbar { display: flex; align-items: center; gap: 12px; height: 52px; padding: 0 18px; border: 1px solid var(--line-2); border-radius: 999px; background: var(--card); max-width: 600px; }
.ep-searchbar:focus-within { border-color: var(--primary); }
.ep-searchbar svg { color: var(--faint); flex: none; }
.ep-searchbar input { flex: 1; min-width: 0; border: 0; background: transparent; outline: none; font-family: var(--body); font-size: 15px; color: var(--text); }
.ep-searchbar input::placeholder { color: var(--faint); }
.ep-count { font-family: var(--mono); font-size: 12px; color: var(--faint); white-space: nowrap; }
.ep-master { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; max-height: 660px; overflow-y: auto; padding-right: 8px; }
.ep-master::-webkit-scrollbar { width: 9px; }
.ep-master::-webkit-scrollbar-track { background: transparent; }
.ep-master::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 9px; }
.ep-item { display: flex; align-items: flex-start; gap: 15px; padding: 15px 16px; border: 1px solid var(--line); border-radius: var(--r); background: var(--card); transition: border-color .2s ease, background .2s ease; }
.ep-item:hover { border-color: var(--line-2); background: var(--bg-2); }
.ep-item .ep-cover { width: 52px; height: 52px; border-radius: 9px; }
.ep-cc { min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 5px; }
.ep-cc .meta { font-family: var(--mono); font-size: 11.5px; color: var(--faint); letter-spacing: .03em; }
.ep-cc h4 { font-size: 15.5px; line-height: 1.3; letter-spacing: -0.01em; color: var(--text); }
.ep-cc .desc { font-size: 13.5px; line-height: 1.5; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ep-item .arr { flex: none; color: var(--faint); margin-top: 4px; transition: color .2s ease, transform .2s ease; }
.ep-item:hover .arr { color: var(--primary); transform: translateX(2px); }
.ep-empty { padding: 34px; text-align: center; color: var(--faint); font-size: 14.5px; }
.ep-loading { padding: 30px 4px; color: var(--faint); font-size: 14.5px; }
.ep-list { margin-top: 8px; display: flex; flex-direction: column; gap: 10px; }

/* compact episode card grid */
.ep-cards { margin-top: 8px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 920px){ .ep-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .ep-cards { grid-template-columns: 1fr; } }
.ep-gcard { display: flex; flex-direction: column; gap: 12px; padding: 22px 22px 22px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.ep-gcard:hover { transform: translateY(-3px); border-color: var(--line-2); box-shadow: var(--elev); }
.ep-gtop { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ep-gtop .meta { font-family: var(--mono); font-size: 11.5px; color: var(--faint); letter-spacing: .04em; }
.ep-gtop .gplay { flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: #1DB954; color: #fff; padding-left: 2px; box-shadow: 0 3px 10px rgba(0,0,0,.22); transition: transform .22s ease; }
.ep-gcard:hover .gplay { transform: scale(1.08); }
.ep-gcard h4 { font-size: 17px; line-height: 1.28; letter-spacing: -0.015em; color: var(--text); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ep-gcard .desc { font-size: 13.5px; line-height: 1.55; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
.ep-cc mark { background: var(--accent-soft); color: inherit; border-radius: 3px; padding: 0 2px; }
.pcard .thumb .tnum { position: absolute; right: 16px; bottom: 12px; font-family: var(--mono); font-size: 42px; font-weight: 600; color: var(--primary); opacity: .22; letter-spacing: -0.04em; }
.pcard .thumb .tag { position: absolute; top: 14px; left: 14px; z-index: 1; font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--on-primary); background: var(--primary); padding: 5px 10px; border-radius: 999px; }
.pcard .body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.pcard .meta { font-family: var(--mono); font-size: 12px; color: var(--faint); letter-spacing: .03em; }
.pcard h3 { font-size: 20px; letter-spacing: -0.02em; line-height: 1.16; }
.pcard p { color: var(--muted); font-size: 14.5px; line-height: 1.5; flex: 1; }
.pcard .more { color: var(--primary); font-weight: 600; font-size: 14px; display: inline-flex; gap: 7px; align-items: center; }
.pcard .more .arr { transition: transform .2s ease; }
.pcard:hover .more .arr { transform: translateX(3px); }

/* featured */
.pcard.feat { grid-column: 1 / -1; }
@media (min-width: 901px){
  .pcard.feat { flex-direction: row; }
  .pcard.feat .thumb { width: 50%; aspect-ratio: auto; border-bottom: 0; border-right: 1px solid var(--line); }
  .pcard.feat .thumb .tnum { font-size: 64px; }
  .pcard.feat .body { width: 50%; justify-content: center; padding: 44px; gap: 14px; }
  .pcard.feat h3 { font-size: 31px; }
  .pcard.feat p { font-size: 16px; flex: none; }
}

/* subscribe band */
.sub-band { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--card); padding: 30px 44px; display: grid; grid-template-columns: 1.4fr .6fr; gap: 30px; align-items: center; box-shadow: var(--elev); }
.sub-band h2 { font-size: clamp(24px,2.8vw,32px); letter-spacing: -0.02em; max-width: 22ch; }
.sub-band p { color: var(--muted); margin-top: 12px; max-width: 44ch; }
.sub-form { display: flex; gap: 10px; flex-wrap: wrap; }
.sub-form input { flex: 1; min-width: 180px; font-family: var(--body); font-size: 15px; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line-2); background: var(--bg-2); color: var(--text); }
.sub-form input:focus { outline: none; border-color: var(--primary); }
@media (max-width: 760px){ .sub-band { grid-template-columns: 1fr; padding: 26px 24px; } }

/* ============================================================
   ARTICLE (single post)
   ============================================================ */
.article { max-width: 760px; margin: 0 auto; padding: 40px 0 10px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 13px; color: var(--muted); margin-bottom: 26px; }
.back-link:hover { color: var(--primary); }
.article-head .cat-tag { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--on-primary); background: var(--primary); padding: 5px 11px; border-radius: 999px; }
.article-head h1 { font-size: clamp(30px,4.6vw,46px); letter-spacing: -0.03em; line-height: 1.08; margin: 18px 0 20px; }
.article-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.article-author { display: flex; align-items: center; gap: 11px; }
.article-author img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; object-position: 50% 30%; border: 1px solid var(--line); }
.article-author b { font-family: var(--display); font-size: 14.5px; font-weight: 600; display: block; }
.article-author span, .article-meta .dotsep { font-family: var(--mono); font-size: 12.5px; color: var(--faint); }
.article-meta .dotsep { margin: 0 2px; }

.prose { padding: 32px 0 0; }
.prose > p, .prose ul, .prose ol { font-size: 18px; line-height: 1.7; color: var(--text); margin: 0 0 22px; }
.prose .lede { font-size: 21px; line-height: 1.55; color: var(--muted); font-weight: 500; }
.prose h2 { font-size: 25px; letter-spacing: -0.02em; margin: 40px 0 14px; }
.prose ul, .prose ol { padding-left: 4px; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.prose ul li { display: flex; gap: 12px; align-items: flex-start; }
.prose ul li::before { content: ""; flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--primary); margin-top: 11px; }
.prose a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose strong { font-weight: 700; color: var(--text); }
.prose .signoff { color: var(--muted); font-style: italic; }

.article-cta { margin: 44px 0 10px; padding: 32px; border-radius: var(--r-lg); border: 1px solid var(--accent-line); background: linear-gradient(135deg, var(--accent-soft), transparent 70%), var(--card); }
.article-cta h3 { font-size: 22px; letter-spacing: -0.02em; }
.article-cta p { color: var(--muted); margin: 10px 0 20px; }
.article-foot { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); }
