/* ALPHA MIDAS landing v2: guld på djupsvart, Schibsted Grotesk + IBM Plex Mono.
   All boldness bor i hero:t (snurrande guld-logga + 3D-tickers). Resten är tyst,
   smalt och disciplinerat. Bakgrunden är originalsidans guld-satin, rakt av. */

@font-face {
  font-family: "Schibsted Grotesk";
  src: url("../fonts/SchibstedGrotesk-var.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/IBMPlexMono-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/IBMPlexMono-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #0A0A0A;
  --black-2: #0F0E0B;
  --gold: #C9A227;
  --gold-bright: #E5C55B;
  --gold-dim: rgba(201, 162, 39, 0.35);
  --gold-line: rgba(201, 162, 39, 0.22);
  --ink: #F2EFE6;
  --muted: #A29A88;
  --dim: #6E6858;
  --red: #C0503A;
  --panel: rgba(242, 239, 230, 0.03);
  --maxw: 1120px;
  --narrow: 720px;
  --font-display: "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SF Mono", Consolas, monospace;
}

* { box-sizing: border-box; }
/* OBS: ingen scroll-behavior:smooth här. Lenis sköter mjuk scroll; CSS-smooth
   och Lenis i kombination ger halvfärdiga anchor-hopp. */
html, body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body { overflow-x: hidden; position: relative; z-index: 0; }

/* ---------- bakgrund: originalsidans guld-satin, kopierad RAKT AV ----------
   (landing_app.py PAGE-CSS). Två fixerade lager bakom allt innehåll:
   ::before = svart/guld/koppar-satin som andas, ::after = långsamt guld-svep. */
body::before {
  content: ""; position: fixed; inset: -30%; z-index: -2;
  background:
    radial-gradient(40% 32% at 22% 12%, rgba(224,185,79,0.32), transparent 66%),
    radial-gradient(38% 34% at 84% 30%, rgba(184,115,51,0.26), transparent 70%),
    radial-gradient(150% 120% at 50% 0%, #120c05 0%, #050301 62%);
  animation: satin 26s ease-in-out infinite alternate; will-change: transform;
}
@keyframes satin {
  0%   { transform: translate3d(-3%,-2%,0) scale(1.06); }
  100% { transform: translate3d(3%,2%,0)  scale(1.12); }
}
body::after {
  content: ""; position: fixed; inset: -40%; z-index: -1; pointer-events: none;
  background: linear-gradient(115deg, transparent 40%, rgba(240,210,122,0.06) 50%, transparent 60%);
  background-size: 300% 300%; animation: sheen 21s ease-in-out infinite alternate;
}
@keyframes sheen { 0% { background-position: 0% 0%; } 100% { background-position: 100% 100%; } }

::selection { background: var(--gold); color: var(--black); }

a { color: var(--gold-bright); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.narrow { max-width: var(--narrow); }

/* ---------- nav: toppmeny + liquid glass vid scroll ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: linear-gradient(180deg, rgba(10,10,10,0.85), rgba(10,10,10,0.0));
  /* INGEN border i oskrollat läge (Klaus 2026-07-16): "border: 1px solid
     transparent" ritar ändå en 1px-rad som mörknar mot heron — mätt i headless
     Chrome syntes den som en tydlig mörk linje (11,10,8) mitt i en annars jämn
     gradient (20,14,5 → 21,15,6). Linjen ska först FINNAS när man scrollat och
     menyn blir halvtransparent (.glass nedan). Border-bredden hålls kvar via
     .glass för att undvika layout-skutt vid klass-bytet: se transitionen. */
  border-bottom: 0 solid transparent;
  transition: background .45s ease, border-color .45s ease, backdrop-filter .45s ease;
}
/* Liquid glass: halvtransparent svart + blur/saturate + guld-hårlinje. */
.nav.glass {
  background: rgba(10, 10, 10, 0.55);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  backdrop-filter: blur(16px) saturate(1.6);
  border-bottom: 1px solid var(--gold-line);
}
/* Fallback: utan backdrop-filter-stöd → nästan täckande svart. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav.glass { background: rgba(10, 10, 10, 0.94); }
}
.nav .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding-top: 16px; padding-bottom: 16px;
}
.brand {
  display: flex; align-items: center; gap: 12px; flex: none;
  font-weight: 700; letter-spacing: 0.22em; font-size: 14px; color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand svg { width: 22px; height: 22px; }
.nav-menu { display: flex; align-items: center; gap: 26px; }
.nav-menu > a {
  font-size: 14.5px; font-weight: 500; color: var(--muted);
  letter-spacing: 0.01em; transition: color .15s;
}
.nav-menu > a:hover { color: var(--ink); text-decoration: none; }
.nav-cta {
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold) !important; opacity: 0.85;
  border: 1px solid rgba(201,162,39,0.28);
  padding: 7px 13px; border-radius: 3px;
  transition: border-color .2s, background .2s, opacity .2s;
  background: rgba(10,10,10,0.55);
}
.nav-cta:hover { border-color: var(--gold); background: rgba(201,162,39,0.08); opacity: 1; text-decoration: none; }
.nav-burger {
  display: none; flex: none;
  width: 42px; height: 42px; padding: 10px;
  background: transparent; border: 1px solid var(--gold-line); border-radius: 3px;
  cursor: pointer;
}
.nav-burger span {
  display: block; height: 2px; background: var(--gold-bright); border-radius: 1px;
  margin: 4px 0; transition: transform .25s, opacity .25s;
}
.nav.open .nav-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.open .nav-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
#hero-3d, .hero-fallback {
  position: absolute; inset: 0; z-index: 0;
}
#hero-3d canvas { display: block; width: 100%; height: 100%; }
.hero-fallback { display: none; }
.hero.no-webgl .hero-fallback, .hero.static .hero-fallback { display: block; }
.chip {
  position: absolute;
  font-family: var(--font-mono); font-size: 13px;
  background: rgba(15,14,11,0.85);
  border: 1px solid rgba(242,239,230,0.10);
  border-radius: 4px; padding: 10px 14px;
  color: var(--muted); white-space: nowrap;
}
.chip .sym { color: var(--ink); font-weight: 500; margin-right: 10px; }
.chip .up { color: var(--gold-bright); }
.chip .down { color: var(--red); }
.chip.winner { border-color: var(--gold-dim); box-shadow: 0 0 24px rgba(201,162,39,0.18); }

.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  /* 9svh → 5svh (Klaus 2026-07-16): .hero är flex-end mot 100svh, så blocket
     är BOTTENFÖRANKRAT — mindre botten-padding trycker det NEDÅT och ger luft
     upp mot toppmenyn. (Att lägga padding-top gör tvärtom ingenting åt copyn
     och skjuter bara loggans absoluta referensram uppåt — prövat och backat.) */
  padding: 0 28px 5svh;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.hero-copy { min-width: 0; max-width: 640px; }
.hero-head { display: contents; }
/* Snurrande guld-loggan från gamla sidan: samma geometri (AlphaLogo, viewBox 24),
   samma gradient, samma perspektiv-snurr + guld-glow.
   DESKTOP: STOR till höger om copyn, med triangelns BAS bottenlinjerad mot
   "Sluta gissa"-rubrikens underkant (Klaus 2026-07-03). Loggan är absolut mot
   .hero-inner; --logo-w = loggans bredd/höjd (kvadratisk viewBox).
   h1:s underkant ligger ~294px under .hero-inner-toppen (uppmätt @1440×900);
   loggans top = det minus loggans höjd → botten linjerar med h1. Triangeln
   bottnar vid 20.5/24 i sin box → ~15 % tom yta under den, kompenserad i calc.
   2026-07-11: rubriken bytt till "Investera / med insikt." = TRE rader (Klaus
   vill ha det så) → h1-botten flyttade ned; konstanten 272→348px sänker loggan
   så basen åter linjerar mot rubrikens underkant. */
.hero-logo {
  --logo-w: clamp(260px, 28vw, 460px);
  width: var(--logo-w); height: var(--logo-w); display: block;
  transform-origin: 50% 50%;
  position: absolute; right: clamp(-40px, -2.5vw, 8px);
  top: calc(353px - var(--logo-w) + 0.146 * var(--logo-w));
  animation: logospin 13s ease-in-out infinite;
  filter: drop-shadow(0 0 42px rgba(224,185,79,0.32));
}
@keyframes logospin {
  0%, 4% { transform: perspective(700px) rotateY(0deg); }
  100%   { transform: perspective(700px) rotateY(360deg); }
}
.hero-tag {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  /* Mindre avstånd OVANFÖR taggen (Klaus 2026-07-03): negativ top-marginal drar
     upp den närmare hero-sub ovanför, behåller 18px ned till CTA-knappen. */
  margin: -14px 0 18px;
  /* Rutan borttagen (Klaus 2026-07-05): block-nivå så taggen vänster-linjerar
     med hero-sub/h1 i stället för att sitta i en shrink-wrappad box. Text-shadow
     nedan ger ändå läsbarhet mot ticker-fältet. */
  display: block;
}
.hero h1, .hero-sub, .hero-tag {
  text-shadow: 0 2px 26px rgba(10, 10, 10, 0.92), 0 0 8px rgba(10, 10, 10, 0.7);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 10vw, 136px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  margin: 0 0 26px;
  color: var(--ink);
  text-wrap: balance;
}
.hero h1 .gold { color: var(--gold-bright); }
.hero-sub {
  max-width: 34em;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--muted);
  margin: 0 0 34px;
}
.hero-sub strong { color: var(--ink); font-weight: 500; }
.hero-cta-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.btn-gold {
  display: inline-block;
  font-family: var(--font-mono); font-size: 14px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #14110a;
  padding: 16px 30px; border-radius: 3px; border: none; cursor: pointer;
  transition: filter .2s, transform .2s;
}
.btn-gold:hover { filter: brightness(1.08); transform: translateY(-1px); text-decoration: none; }
.hero-note { font-family: var(--font-mono); font-size: 12.5px; color: var(--dim); }
.hero-scroll {
  position: absolute; bottom: 26px; right: 32px; z-index: 2;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--dim);
  writing-mode: vertical-rl;
}

/* ---------- sections, shared ---------- */
section { padding: 110px 0; position: relative; }
.eyebrow {
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 22px;
  display: flex; align-items: center; gap: 14px;
}
.eyebrow::before {
  content: ""; width: 34px; height: 1px; background: var(--gold);
  display: inline-block; flex: none;
}
h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.05; letter-spacing: -0.02em;
  margin: 0 0 22px; text-wrap: balance;
}
.lede { color: var(--muted); font-size: clamp(17px, 1.8vw, 20px); max-width: 38em; margin: 0 0 14px; }
.lede strong, .lede b { color: var(--ink); font-weight: 500; }
.hairline { border: none; border-top: 1px solid rgba(242,239,230,0.08); margin: 0; }
/* Skuggade band: låt guld-satinen skina igenom men ge sektionen egen ton. */
.band { background: rgba(10, 9, 7, 0.42); border-top: 1px solid rgba(242,239,230,0.06); border-bottom: 1px solid rgba(242,239,230,0.06); }

/* ---------- problemet ---------- */
.problem h2 { max-width: 15em; }
.problem-lines { margin-top: 54px; border-top: 1px solid rgba(242,239,230,0.08); }
.problem-line {
  display: grid; grid-template-columns: 158px 1fr 1fr; gap: 28px;
  padding: 26px 0; border-bottom: 1px solid rgba(242,239,230,0.08);
  align-items: baseline;
}
.problem-line .who {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--dim);
}
.problem-line .them { color: var(--ink); font-weight: 500; }
.problem-line .you { color: var(--muted); }
.problem-line .you::before {
  content: "du: "; font-family: var(--font-mono); font-size: 12px;
  color: var(--dim); letter-spacing: 0.1em; text-transform: uppercase; margin-right: 6px;
}

/* ---------- vad du får ---------- */
.deck { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(242,239,230,0.08); border: 1px solid rgba(242,239,230,0.08); margin-top: 56px; }
.deck-card { background: rgba(11, 10, 8, 0.82); padding: 40px 36px; }
.deck-card .k {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 16px;
}
.deck-card h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; letter-spacing: -0.01em; margin: 0 0 12px;
}
.deck-card p { margin: 0; color: var(--muted); font-size: 16px; }
.deck-card p b { color: var(--ink); font-weight: 500; }

/* ---------- skärmdumps-parallax ---------- */
.shots { overflow: hidden; }
.shots-stage {
  margin-top: 64px;
  perspective: 1400px;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 44px 56px;
  align-items: start; /* varje kort slutar direkt under SIN text, sträcks inte till grannens höjd */
  max-width: var(--maxw); margin-left: auto; margin-right: auto;
  padding: 0 28px;
}
.shot-card {
  margin: 0; position: relative;
  border: 1px solid rgba(242,239,230,0.10); border-radius: 6px;
  background: rgba(11, 10, 8, 0.85);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform-style: preserve-3d;
  will-change: transform;
  overflow: hidden;
}
.shot-card:nth-child(even) { margin-top: 24px; }
.shot-card img { display: block; width: 100%; height: auto; }
.shot-card figcaption {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--dim);
  padding: 4px 12px 5px; border-top: 1px solid rgba(242,239,230,0.08);
  font-size: 11px;
}
/* platshållare tills skärmdumparna landar */
.shot-ph {
  aspect-ratio: 16 / 10; display: flex; align-items: center; justify-content: center;
  background:
    linear-gradient(135deg, rgba(201,162,39,0.06), transparent 55%),
    radial-gradient(80% 60% at 50% 0%, rgba(201,162,39,0.08), transparent 70%);
}
.shot-ph span {
  font-family: var(--font-mono); font-size: 13px; color: var(--dim);
  border: 1px dashed rgba(201,162,39,0.35); border-radius: 4px; padding: 10px 16px;
}

/* ---------- snurrande iPhone-mockup ovanpå de fyra bilderna ---------- */
/* CSS 3D, inga beroenden. .shots-stage är redan position:relative + perspective. */
.shots-stage { position: relative; }
.phone-mock {
  position: absolute; z-index: 5;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(200px, 20vw, 280px);
  pointer-events: none;
  /* egen perspektiv så snurren blir 3D oavsett grid-perspektivet */
  perspective: 1600px;
  filter: drop-shadow(0 40px 70px rgba(0,0,0,0.65));
}
.phone-spin {
  transform-style: preserve-3d;
  animation: phonespin 16s ease-in-out infinite;
}
@keyframes phonespin {
  0%, 6%   { transform: rotateY(-16deg); }
  50%      { transform: rotateY(16deg); }
  94%,100% { transform: rotateY(-16deg); }
}
/* Om användaren stängt av rörelse: telefonen syns still (snurrar bara inte). */
@media (prefers-reduced-motion: reduce) {
  .phone-spin { animation: none; transform: rotateY(-8deg); }
}
.phone-body {
  position: relative;
  aspect-ratio: 9 / 19.5;
  border-radius: 34px;
  padding: 8px;
  background: linear-gradient(150deg, #2a2a2e 0%, #0d0d0f 46%, #232327 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.06),
    inset 0 0 0 6px #0a0a0c,
    0 0 0 1px rgba(0,0,0,0.9);
  overflow: hidden;
}
.phone-notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 34%; height: 18px; border-radius: 0 0 12px 12px;
  background: #060607; z-index: 3;
}
.phone-screens {
  position: relative; width: 100%; height: 100%;
  border-radius: 27px; overflow: hidden; background: #060607;
}
.phone-screen {
  position: absolute; inset: 0;
  display: block; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0; z-index: 0;
  transition: opacity 0.9s ease;
}
/* Den föregående bilden ligger kvar HELT synlig under (z-index 1) medan den nya
   fadar in ovanpå (z-index 2). Då finns alltid en opak bild → ingen svart blink. */
.phone-screen.was-active { opacity: 1; z-index: 1; transition: none; }
.phone-screen.is-active { opacity: 1; z-index: 2; }
/* mobil: telefonen krymper och centreras över det staplade 1-kolumnsflödet */
@media (max-width: 760px) {
  .phone-mock { width: clamp(150px, 44vw, 210px); }
}

/* ---------- portfölj-sektionen: 3D-mobil som LAGER ovanpå desktop-vyn ----------
   DESKTOP: telefonen ligger som lager ovanpå desktop-bilden; texten (rubrik i
   fetstil + brödtext) ligger UNDER hela kompositionen (Klaus 2026-07-03). */
.portfolio-media {
  position: relative;   /* ankare för den absolut-positionerade telefonen */
}
.portfolio-phone-wrap {
  position: absolute; z-index: 4;
  right: -3%; bottom: -6%;
  perspective: 1500px;
  pointer-events: none;
}
.scroll-phone {
  position: relative;
  width: clamp(150px, 15vw, 220px);
  aspect-ratio: 9 / 19.5;
  border-radius: 30px; padding: 7px;
  background: linear-gradient(150deg, #2a2a2e 0%, #0d0d0f 46%, #232327 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.06),
    inset 0 0 0 6px #0a0a0c,
    0 30px 70px rgba(0,0,0,0.7);
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  /* utgångsvinkel om JS/scroll-rotation ej körs */
  transform: perspective(1500px) rotateY(-14deg);
}
.scroll-phone .phone-notch {
  top: 9px; height: 16px;
}
/* förklarande text under kompositionen (desktop) */
.portfolio-phone-note { margin-top: 26px; }
.ppn-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 20px; color: var(--ink); margin: 0 0 8px;
}
.ppn-body { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0; }

/* ---------- tagline-band: "ALPHA MIDAS förgyller din portfölj." ---------- */
.tagline-band {
  padding: clamp(70px, 11vh, 130px) 0;
  text-align: center;
}
.tagline-line {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 5.2vw, 62px);
  line-height: 1.05; letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 16ch; margin: 0 auto;
  text-wrap: balance;
}

@media (max-width: 900px) {
  /* MOBIL-omtag: vänster = telefon ovanpå den dämpade desktop-bilden (bakgrund
     SYNS bakom telefonen). Höger = rubrik + text, BOTTENLINJERAD (Klaus 2026-07-03). */
  .portfolio-shot {
    display: grid;
    grid-template-columns: minmax(150px, 46%) 1fr;
    gap: 20px; align-items: stretch;
    padding-top: 18px;
  }
  /* media-boxen (bakgrundsbild + telefon) är vänster kolumn */
  .portfolio-media {
    position: relative; min-height: 380px;
    border-radius: 10px; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  /* desktop-vyn SYNS som dämpad bakgrund bakom telefonen (fyller media-boxen) */
  .portfolio-desktop {
    position: absolute; inset: 0; z-index: 0;
    border: none; border-radius: 10px;
    box-shadow: none; opacity: 0.45; overflow: hidden;
  }
  .portfolio-desktop img {
    width: 100%; height: 100%; object-fit: cover; object-position: top left;
    filter: brightness(0.7) saturate(0.95);
  }
  .portfolio-desktop::after {
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.6) 100%);
  }
  /* telefonen ovanpå bakgrunden, centrerad i media-boxen */
  .portfolio-phone-wrap {
    position: relative; right: auto; bottom: auto;
    z-index: 2;
  }
  .scroll-phone { width: min(170px, 40vw); }
  /* rubrik + text bottenlinjerad i höger kolumn */
  .portfolio-phone-note {
    margin-top: 0; z-index: 2;
    display: flex; flex-direction: column; justify-content: flex-end;
  }
  .ppn-title { font-size: 17px; }
  .ppn-body { font-size: 13.5px; line-height: 1.5; }
}

/* ---------- Full mobilitet: rad av stående telefon-skärmdumpar ---------- */
.mobility-row {
  margin-top: 60px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 28px; align-items: start;
  max-width: var(--maxw); margin-left: auto; margin-right: auto;
  padding: 0 28px;
}
.mobility-phone {
  margin: 0;
  display: flex; flex-direction: column; align-items: center;
  transition: transform .25s ease;
}
/* själva telefon-ramen (labeln ligger UNDER den, inte ovanpå skärmen) */
.mobility-frame {
  position: relative; display: block; width: 100%;
  aspect-ratio: 9 / 19.5;
  border-radius: 26px; padding: 6px;
  background: linear-gradient(150deg, #2a2a2e 0%, #0d0d0f 46%, #232327 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.06),
    inset 0 0 0 5px #0a0a0c,
    0 22px 55px rgba(0,0,0,0.55);
  overflow: hidden;
}
.mobility-frame::before {
  content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 32%; height: 15px; border-radius: 0 0 10px 10px; background: #060607; z-index: 2;
}
.mobility-frame img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; border-radius: 21px; background: #060607;
}
.mobility-phone figcaption {
  margin-top: 16px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--dim);
  text-align: center;
}
.mobility-phone:hover { transform: translateY(-6px); }
@media (max-width: 760px) {
  .mobility-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ---------- realtidsportfölj ---------- */
.portfolio-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; margin-top: 24px; }
.portfolio-points { list-style: none; margin: 30px 0 0; padding: 0; }
.portfolio-points li {
  padding: 16px 0; border-bottom: 1px solid rgba(242,239,230,0.08);
  color: var(--muted); font-size: 16px;
}
.portfolio-points li:first-child { border-top: 1px solid rgba(242,239,230,0.08); }
.portfolio-points b { color: var(--ink); font-weight: 500; }
.portfolio-shot { position: relative; }
/* desktop-portföljvyn UNDER mobilen: mörkare + mörk gradient i botten
   så den smälter in i bakgrunden (Klaus 2026-07-03) */
.portfolio-desktop {
  position: relative;
  border: 1px solid rgba(242,239,230,0.08); border-top-left-radius: 6px; border-top-right-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.portfolio-desktop img {
  display: block; width: 100%; height: auto;
  filter: brightness(0.72) saturate(0.95);
}
.portfolio-desktop::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 55%;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 0%, rgba(10,10,10,0.55) 60%, #0a0a0a 100%);
}

/* ---------- kosmos ---------- */
.cosmos-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 56px; margin-top: 56px; align-items: stretch; }
.cosmos-stage {
  position: relative; min-height: 560px;
  border: 1px solid rgba(242,239,230,0.08); border-radius: 6px;
  /* appens kosmos-bakgrund (SectorCosmosScene Canvas style) */
  background: radial-gradient(ellipse at center, #0a0f1c 0%, #05070d 70%, #020308 100%);
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}
.cosmos-stage:active { cursor: grabbing; }
.stage-label {
  position: absolute; top: 14px; left: 16px; z-index: 2;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--dim);
  pointer-events: none;
}
.stage-hint {
  position: absolute; bottom: 12px; right: 16px; z-index: 2;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  color: rgba(242,239,230,0.35);
  pointer-events: none;
}
.pulse { display: flex; flex-direction: column; }
.pulse-head {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--dim);
  padding: 0 0 12px; border-bottom: 1px solid rgba(242,239,230,0.08);
  display: flex; justify-content: space-between;
}
.pulse-row { padding: 16px 0; border-bottom: 1px solid rgba(242,239,230,0.08); }
.pulse-row .top { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.pulse-row .sec { font-weight: 700; font-size: 16.5px; color: var(--ink); }
.pulse-row .flow { font-family: var(--font-mono); font-weight: 500; font-size: 15px; }
.pulse-row .flow.up { color: var(--gold-bright); }
.pulse-row .flow.down { color: var(--red); }
.pulse-row .note { margin: 4px 0 0; color: var(--dim); font-size: 13.5px; }
.pulse-foot { margin-top: auto; padding-top: 18px; font-family: var(--font-mono); font-size: 12px; color: var(--dim); }

/* ---------- rapporter ---------- */
.report-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.report-card {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid rgba(242,239,230,0.10); border-radius: 6px;
  background: rgba(11, 10, 8, 0.82);
  padding: 30px 28px;
  color: var(--ink);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.report-card:hover {
  text-decoration: none; border-color: var(--gold-dim);
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 30px rgba(201,162,39,0.10);
}
.report-card .rc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.rc-badge {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 3px;
  border: 1px solid var(--gold-dim); color: var(--gold-bright);
}
.rc-badge.ultra { background: linear-gradient(135deg, rgba(229,197,91,0.16), rgba(201,162,39,0.06)); border-color: var(--gold); }
.rc-meta { font-family: var(--font-mono); font-size: 12px; color: var(--dim); }
.report-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 26px; letter-spacing: -0.015em; margin: 0 0 4px; }
.report-card .rc-name { color: var(--muted); font-size: 15px; margin: 0 0 22px; }
.rc-get {
  margin-top: auto;
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-bright);
  display: flex; align-items: center; gap: 10px;
}
.rc-get::after { content: "↓"; font-size: 15px; }
.rc-disc { margin: 14px 0 0; font-family: var(--font-mono); font-size: 11.5px; color: var(--dim); }

/* ---------- prisjämförelse (i rapporter-sektionen) ---------- */
.price-compare { margin-top: 80px; }
.price-compare h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(22px, 2.6vw, 30px); letter-spacing: -0.015em; margin: 0 0 8px;
}
.price-list { margin-top: 24px; border-top: 1px solid rgba(242,239,230,0.08); }
.price-row {
  display: grid; grid-template-columns: 230px 1fr 170px; gap: 28px;
  align-items: center;
  padding: 20px 0; border-bottom: 1px solid rgba(242,239,230,0.08);
}
.price-row .name { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--muted); }
.price-row .what { color: var(--dim); font-size: 14.5px; }
.price-row .cost {
  font-family: var(--font-mono); font-weight: 500; font-size: 15px;
  color: var(--muted); text-align: right; white-space: nowrap;
}
.price-row .cost em { display: block; font-style: normal; font-size: 11px; color: var(--dim); letter-spacing: 0.08em; text-transform: uppercase; }
.price-row.us {
  border: 1px solid var(--gold-line); border-radius: 4px;
  padding: 20px 22px; margin: 0 -22px;
  background: linear-gradient(90deg, rgba(201,162,39,0.07), transparent 70%);
}
.price-row.us .name { color: var(--gold-bright); }
.price-row.us .what { color: var(--muted); }
.price-row.us .cost { color: var(--gold-bright); font-size: 17px; }
.price-foot { margin-top: 16px; font-family: var(--font-mono); font-size: 12px; color: var(--dim); }

/* ---------- lär dig ---------- */
.learn-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: start; }
.learn-quote {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(22px, 2.6vw, 30px); line-height: 1.3; letter-spacing: -0.01em;
  color: var(--ink); margin: 34px 0 0; padding-left: 26px;
  border-left: 2px solid var(--gold);
}
.vhv { list-style: none; margin: 0; padding: 0; }
.vhv li { padding: 22px 0; border-bottom: 1px solid rgba(242,239,230,0.08); }
.vhv li:first-child { border-top: 1px solid rgba(242,239,230,0.08); }
.vhv .w {
  font-family: var(--font-mono); font-weight: 500; font-size: 13px;
  letter-spacing: 0.16em; color: var(--gold-bright); text-transform: uppercase;
  display: block; margin-bottom: 6px;
}
.vhv p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* ---------- ersätter ---------- */
.replace-list { margin-top: 56px; border-top: 1px solid rgba(242,239,230,0.08); }
.replace-row {
  display: grid; grid-template-columns: 200px 1fr 130px 110px; gap: 24px;
  align-items: center;
  padding: 24px 0; border-bottom: 1px solid rgba(242,239,230,0.08);
}
/* Pris-kolumn (Klaus 2026-07-05): konkurrentens månadskostnad, höger-justerad. */
.replace-row .cost {
  font-family: var(--font-mono); font-size: 14px; color: var(--dim);
  text-align: right; white-space: nowrap;
}
/* Totalrad + ALPHA-rad: framhävda med guld/accent. */
.replace-row-total { border-top: 2px solid rgba(242,239,230,0.20); }
/* !important: .replace-row .name (nedan) sätter line-through senare i filen och
   vinner annars vid lika specificitet — total/ALPHA ska INTE vara överstrukna. */
.replace-row-total .name { text-decoration: none !important; color: var(--ink); }
.replace-row-total .cost { font-size: 18px; font-weight: 700; color: var(--ink); }
.replace-row-alpha { border-bottom: none; }
.replace-row-alpha .name { text-decoration: none !important; color: var(--gold-bright); }
.replace-row-alpha .cost { font-size: 20px; font-weight: 800; color: var(--gold-bright); }
.replace-row-alpha .tag {
  background: var(--gold); color: #0a0a0a; font-weight: 700;
}
.replace-row .name {
  font-family: var(--font-display); font-weight: 700; font-size: 21px;
  color: var(--dim); text-decoration: line-through;
  text-decoration-color: var(--gold); text-decoration-thickness: 2px;
}
.replace-row .what { color: var(--muted); font-size: 15.5px; }
.replace-row .tag {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold-bright); text-align: right;
}
.replace-sum {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  padding: 30px 0 0; flex-wrap: wrap;
}
.replace-sum .one {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.015em; color: var(--ink);
}
.replace-sum .one em { font-style: normal; color: var(--gold-bright); }
.replace-sum .hw { font-family: var(--font-mono); font-size: 13px; color: var(--dim); }

/* ---------- AI-sektion ---------- */
.ai-open {
  margin: 0 0 72px; padding: 0;
}
.ai-open p {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 4.6vw, 56px); line-height: 1.08; letter-spacing: -0.022em;
  color: var(--ink); margin: 0; text-wrap: balance;
  max-width: 18em;
}
.ai-open .gold { color: var(--gold-bright); }
.ai-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: start; border-top: 1px solid rgba(242,239,230,0.08); padding-top: 56px; }
.ai-grid h2 { font-size: clamp(24px, 2.8vw, 34px); }
.ai-quote {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(24px, 3.2vw, 38px); line-height: 1.15; letter-spacing: -0.02em;
  color: var(--ink); margin: 34px 0 0;
}
.ai-quote .gold { color: var(--gold-bright); }
.ai-facts { list-style: none; margin: 0; padding: 0; }
.ai-facts li { padding: 22px 0; border-bottom: 1px solid rgba(242,239,230,0.08); }
.ai-facts li:first-child { border-top: 1px solid rgba(242,239,230,0.08); }
.ai-facts .w {
  font-family: var(--font-mono); font-weight: 500; font-size: 13px;
  letter-spacing: 0.16em; color: var(--gold-bright); text-transform: uppercase;
  display: block; margin-bottom: 6px;
}
.ai-facts p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* ---------- säkerhet ---------- */
.sec-list { margin-top: 56px; border-top: 1px solid rgba(242,239,230,0.08); }
.sec-row {
  display: grid; grid-template-columns: 300px 1fr; gap: 28px;
  padding: 26px 0; border-bottom: 1px solid rgba(242,239,230,0.08);
  align-items: baseline;
}
.sec-row .name { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--ink); }
.sec-row .what { color: var(--muted); font-size: 15.5px; }
.sec-row .what b { color: var(--ink); font-weight: 500; }

/* ---------- resultat ---------- */
.result-nums { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(242,239,230,0.08); border: 1px solid rgba(242,239,230,0.08); margin-top: 56px; }
.result-num { background: rgba(11, 10, 8, 0.82); padding: 44px 40px; }
.result-num .big {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(54px, 7vw, 96px); line-height: 1; letter-spacing: -0.03em;
  color: var(--gold-bright); display: block; margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.result-num .vs { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); display: block; }
.result-num .per { font-family: var(--font-mono); font-size: 12px; color: var(--dim); display: block; margin-top: 6px; }
.method-box {
  margin-top: 1px;
  border: 1px solid rgba(242,239,230,0.08); border-top: none;
  background: rgba(8, 7, 6, 0.72);
  padding: 24px 40px;
  font-family: var(--font-mono); font-size: 13px; line-height: 1.8; color: var(--dim);
}
.method-box b { color: var(--muted); font-weight: 500; }
.backtest-quote {
  margin: 56px 0 0; padding-left: 26px; border-left: 2px solid var(--gold);
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(20px, 2.4vw, 28px); line-height: 1.35; letter-spacing: -0.01em;
  color: var(--ink); max-width: 30em;
}
.backtest-quote .dim { color: var(--muted); }

/* ---------- teman ---------- */
.theme-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px; margin-top: 56px;
}
.theme-card {
  border-radius: 6px; overflow: hidden;
  border: 1px solid rgba(242,239,230,0.12);
  transition: transform .2s, box-shadow .2s;
}
.theme-card:hover { transform: translateY(-4px) rotate(-1deg); box-shadow: 0 18px 40px rgba(0,0,0,0.5); }
.theme-mock { padding: 14px 14px 10px; min-height: 96px; }
.theme-mock .tm-bar { height: 7px; border-radius: 2px; margin-bottom: 7px; }
.theme-mock .tm-row { display: flex; gap: 6px; align-items: center; }
.theme-mock .tm-dot { width: 12px; height: 12px; border-radius: 50%; flex: none; }
.theme-mock .tm-line { height: 5px; border-radius: 2px; flex: 1; opacity: 0.45; }
.theme-name {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 9px 14px;
  border-top: 1px solid rgba(128,128,128,0.25);
}
.theme-foot { margin-top: 26px; font-family: var(--font-mono); font-size: 12.5px; color: var(--dim); }
.theme-gallery {
  margin: 56px 0 0;
  border: 1px solid rgba(242,239,230,0.10); border-radius: 6px; overflow: hidden;
  background: rgba(11, 10, 8, 0.85);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.theme-gallery img { display: block; width: 100%; height: auto; }
.theme-gallery figcaption {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--dim);
  padding: 12px 16px; border-top: 1px solid rgba(242,239,230,0.08);
}

/* Tema-split (Klaus 2026-07-03): palett-bild (mindre) till vänster, fyra
   tema-preview-kort i 2×2 till höger. Kollapsar till en kolumn på mobil. */
.theme-split {
  margin: 56px 0 0;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 28px;
  /* stretch (Klaus 2026-07-05): gallery-rutan blir lika hög som kort-kolumnen
     (var start → olika höjd). */
  align-items: stretch;
}
/* Luft ovanför bilden (Klaus 2026-07-05) så alla korten linjerar/syns, + bilden
   centreras vertikalt i den stretchade rutan i st f att toppa. */
.theme-split .theme-gallery {
  margin: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 22px;
}
.theme-previews {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
/* Ett preview-kort = miniatyr av appen i temats RIKTIGA token-färger. */
.tp {
  margin: 0; border-radius: 10px; overflow: hidden;
  border: 1px solid var(--tp-bd);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
}
.tp-app {
  background: var(--tp-bg); color: var(--tp-ink);
  padding: 14px 14px 16px; min-height: 150px;
  display: flex; flex-direction: column; gap: 10px;
}
.tp-bar { display: flex; align-items: center; gap: 8px; }
.tp-dot {
  width: 12px; height: 12px; border-radius: 3px;
  background: var(--tp-accent); flex: none;
}
.tp-name {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--tp-accent); font-weight: 600;
}
.tp-hero {
  font-family: var(--font-display, var(--font-sans)); font-weight: 800;
  font-size: 26px; line-height: 0.98; letter-spacing: -0.01em;
}
.tp-hero b { color: var(--tp-accent); }
.tp-row {
  margin-top: auto; display: flex; justify-content: space-between;
  align-items: center; font-family: var(--font-mono); font-size: 11px;
  padding: 7px 9px; border-radius: 6px;
  background: var(--tp-panel); border: 1px solid var(--tp-bd);
}
.tp-up { color: #2ec76a; font-weight: 600; }
.tp-chip {
  align-self: flex-start;
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; padding: 4px 10px; border-radius: 999px;
  background: var(--tp-accent); color: var(--tp-bg);
}
.tp figcaption {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--dim);
  padding: 9px 12px; text-align: center;
  border-top: 1px solid rgba(242,239,230,0.08);
  background: rgba(11, 10, 8, 0.6);
}
@media (max-width: 820px) {
  .theme-split { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 420px) {
  .theme-previews { grid-template-columns: 1fr; }
}
/* om tema-skärmdumpar finns: fläktad kortlek */
.theme-shots { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-top: 56px; }
.theme-shots figure {
  margin: 0; width: min(300px, 44vw);
  border: 1px solid rgba(242,239,230,0.12); border-radius: 6px; overflow: hidden;
  background: rgba(11,10,8,0.85); box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transition: transform .2s;
}
.theme-shots figure:nth-child(odd) { transform: rotate(-1.6deg); }
.theme-shots figure:nth-child(even) { transform: rotate(1.4deg); }
.theme-shots figure:hover { transform: rotate(0deg) translateY(-4px); }
.theme-shots img { display: block; width: 100%; height: auto; }
.theme-shots figcaption { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim); padding: 9px 14px; }

/* ---------- ordmoln ---------- */
.cloud-stage { margin-top: 40px; min-height: 340px; position: relative; }
#cloud-svg { display: block; margin: 0 auto; max-width: 100%; overflow: visible; }
#cloud-svg text { font-family: var(--font-display); cursor: default; }
.cloud-note { text-align: center; font-family: var(--font-mono); font-size: 12px; color: var(--dim); margin-top: 10px; }

/* ---------- ärligheten ---------- */
.honesty { text-align: left; }
.honesty-quote {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 4vw, 46px); line-height: 1.15; letter-spacing: -0.02em;
  max-width: 20em; margin: 0 0 30px;
}
.honesty-quote .gold { color: var(--gold-bright); }
.honesty-quote .dim { color: var(--muted); }
.compliance {
  font-family: var(--font-mono); font-size: 13px; color: var(--dim);
  border-top: 1px solid rgba(242,239,230,0.08); padding-top: 22px; max-width: 46em;
}

/* ---------- signup ---------- */
.signup { padding-bottom: 130px; }
.signup-box {
  border: 1px solid var(--gold-line); border-radius: 4px;
  padding: 64px 56px;
  background:
    radial-gradient(90% 120% at 50% -20%, rgba(201,162,39,0.10), transparent 60%),
    rgba(13, 12, 9, 0.82);
}
.signup-box h2 { max-width: 14em; }
.signup-grid { display: grid; grid-template-columns: 1.5fr 0.9fr; gap: 56px; align-items: center; }
/* plats-räknaren: X kvar / Y bokade, etiketterna UNDER siffrorna */
.seat-counter {
  border-left: 1px solid rgba(242,239,230,0.10);
  padding-left: 48px;
}
.sc-title {
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
  margin: 0 0 18px;
}
.sc-nums { display: flex; align-items: flex-start; gap: 18px; }
.sc-num { display: flex; flex-direction: column; align-items: center; }
.sc-num .n {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(56px, 6vw, 84px); line-height: 1; letter-spacing: -0.03em;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.sc-num .n.gold { color: var(--gold-bright); }
.sc-num .l {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--dim);
  margin-top: 10px;
}
.sc-slash {
  font-family: var(--font-display); font-weight: 200;
  font-size: clamp(48px, 5vw, 72px); line-height: 1; color: var(--dim);
  transform: translateY(2px);
}
.sc-bar {
  margin-top: 26px; height: 4px; border-radius: 2px;
  background: rgba(242,239,230,0.10); overflow: hidden;
}
.sc-bar span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 2px; transition: width .8s ease;
}
form.signup-form { display: flex; gap: 12px; max-width: 560px; margin: 34px 0 0; }
.signup-form input[type=email] {
  flex: 1; min-width: 0;
  font-family: var(--font-mono); font-size: 15px;
  padding: 16px 18px; border-radius: 3px;
  border: 1px solid rgba(242,239,230,0.18);
  background: rgba(10,10,10,0.6); color: var(--ink);
  transition: border-color .15s;
}
.signup-form input[type=email]:focus { border-color: var(--gold); outline: none; }
.signup-form input[type=email]::placeholder { color: var(--dim); }
.signup-form button { flex: none; }
.signup-form button:disabled { opacity: 0.5; cursor: default; }
/* Honeypot-fält. MÅSTE vara display:none — ett off-screen (left:-9999px)
   textfält fylls rutinmässigt av lösenordshanterare/autofyll, vilket tidigare
   tystade ÄKTA ansökningar (2 pilot-submits föll bort 2026-07-08). display:none
   hoppas över av all vanlig autofyll. Ändra ALDRIG tillbaka till off-screen. */
.hp { display: none !important; }
.msg { margin-top: 16px; font-family: var(--font-mono); font-size: 13.5px; min-height: 20px; }
.msg.ok { color: var(--gold-bright); }
.msg.err { color: var(--red); }
.consent { color: var(--dim); font-size: 13px; margin-top: 18px; max-width: 40em; }

/* ---------- footer ---------- */
footer { padding: 44px 0 52px; border-top: 1px solid rgba(242,239,230,0.07); }
footer .wrap { display: flex; flex-direction: column; gap: 14px; }
.foot-disc { color: var(--dim); font-size: 12.5px; line-height: 1.7; max-width: 62em; margin: 0; }
.foot-meta { font-family: var(--font-mono); font-size: 12px; color: var(--dim); display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- undersida (/investerare) ---------- */
.subpage-head { padding: 190px 0 60px; }
.subpage-head h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(44px, 7vw, 92px); line-height: 0.96; letter-spacing: -0.025em;
  margin: 0 0 24px; color: var(--ink); text-wrap: balance;
}
.subpage-head h1 .gold { color: var(--gold-bright); }
.subpage section { padding: 70px 0; }
.subpage h2 { font-size: clamp(26px, 3.4vw, 40px); }
.subpage .prose { max-width: var(--narrow); color: var(--muted); }
.subpage .prose h3 { font-family: var(--font-display); font-weight: 700; font-size: 21px; color: var(--ink); margin: 38px 0 10px; }
.subpage .prose p { margin: 0 0 16px; }
.subpage .prose b, .subpage .prose strong { color: var(--ink); font-weight: 500; }
.subpage .prose ul { margin: 0 0 16px; padding-left: 22px; }
.subpage .prose li { margin-bottom: 8px; }
.pending-note {
  font-family: var(--font-mono); font-size: 13px; color: var(--dim);
  border: 1px dashed rgba(201,162,39,0.35); border-radius: 4px;
  padding: 16px 20px; max-width: 46em;
}

/* ---------- reveal (GSAP hooks; synliga utan JS) ---------- */
[data-reveal] { opacity: 1; }
.js [data-reveal] { opacity: 0; transform: translateY(22px); }
.js.reduced [data-reveal] { opacity: 1; transform: none; }

/* ---------- responsivt ---------- */
@media (max-width: 900px) {
  section { padding: 80px 0; }
  .deck { grid-template-columns: 1fr; }
  .learn-grid, .cosmos-grid, .ai-grid, .portfolio-grid { grid-template-columns: 1fr; gap: 44px; }
  .cosmos-stage { min-height: 420px; }
  .problem-line { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .replace-row { grid-template-columns: 1fr; gap: 6px; }
  .replace-row .tag { text-align: left; }
  .sec-row { grid-template-columns: 1fr; gap: 6px; }
  .price-row { grid-template-columns: 1fr; gap: 6px; }
  .price-row .cost { text-align: left; }
  .price-row.us { margin: 0; }
  .signup-grid { grid-template-columns: 1fr; gap: 40px; }
  .seat-counter { border-left: none; border-top: 1px solid rgba(242,239,230,0.10); padding-left: 0; padding-top: 30px; }
  .report-cards { grid-template-columns: 1fr; }
  .result-nums { grid-template-columns: 1fr; }
  .method-box { padding: 20px 24px; }
  .shots-stage { grid-template-columns: 1fr; gap: 30px; }
  .shot-card:nth-child(even) { margin-top: 0; }
  /* På mobil: visa bara TVÅ bakgrundsbilder åt gången, alternera genom alla fyra
     (Klaus 2026-07-03). JS sätter .mob-on på de två som ska synas just nu. */
  .shots-stage.cycle .shot-card { display: none; opacity: 0; transition: opacity .8s ease; }
  .shots-stage.cycle .shot-card.mob-on { display: block; opacity: 1; }

  /* mobilmeny */
  .nav-burger { display: block; }
  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(10,10,10,0.975);
    -webkit-backdrop-filter: blur(16px) saturate(1.6);
    backdrop-filter: blur(16px) saturate(1.6);
    border-bottom: 1px solid var(--gold-line);
    padding: 10px 28px 22px;
  }
  @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .nav-menu { background: rgba(10,10,10,0.99); }
  }
  .nav.open .nav-menu { display: flex; }
  .nav-menu > a { padding: 14px 0; font-size: 17px; border-bottom: 1px solid rgba(242,239,230,0.07); }
  .nav-menu > a.nav-cta { margin-top: 16px; text-align: center; border-bottom: none; padding: 14px 0; }
}
@media (max-width: 560px) {
  html, body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  /* A till HÖGER om rubriken på mobil (Klaus 2026-07-03): loggan sitter
     bredvid H1, med UNDERKANTEN linjerad mot "insikt."-radens underkant. */
  /* Mer luft ovanför "Investera" (Klaus 2026-07-11): hero:n är BOTTENANKRAD
     (align-items:flex-end på .hero) så padding-TOP gör inget — luften ovanför
     styrs av padding-BOTTOM som skjuter blocket uppåt. 18→12svh sänker blocket
     och ger luften upptill i stället. */
  .hero-inner { padding-top: 8svh; padding-bottom: 12svh; flex-direction: column; align-items: stretch; gap: 0; }
  .hero-copy { flex: 1; min-width: 0; }
  .hero-head {
    display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
    margin-bottom: 40px;
  }
  .hero-head h1 { margin-bottom: 0; }
  .hero-logo {
    position: static; top: auto; right: auto;
    /* Triangeln bottnar vid y=20.5 av 24 i sin viewBox → ~15 % tom yta under den.
       Negativ bottenmarginal drar SVG:n ner så triangelns BAS linjerar med
       underkanten på "insikt." (Klaus 2026-07-03).
       margin-left -100px (Klaus 2026-07-11): 3-raders-rubriken ("Investera")
       + 150px logga överskred 350px-innerbredden → loggan klipptes av höger-
       kanten. Negativa vänstermarginalen drar in den så högerkanten landar vid
       wrap-paddingen; den överlappar bara h1-BOXENS tomma yta, inte text. */
    margin: 0 0 -22px -100px; width: 150px; height: 150px; flex-shrink: 0;
  }
  .hero h1 { font-size: clamp(48px, 15vw, 72px); }
  .hero-scroll { display: none; }
  .signup-box { padding: 40px 24px; }
  form.signup-form { flex-direction: column; }
  .signup-grid { grid-template-columns: 1fr; gap: 36px; }
  .seat-counter { border-left: none; border-top: 1px solid rgba(242,239,230,0.10); padding-left: 0; padding-top: 28px; }
  .nav .wrap { padding-top: 12px; padding-bottom: 12px; }
  .brand { letter-spacing: 0.16em; font-size: 13px; }
  .chip { font-size: 11px; padding: 7px 10px; }
  .chip:nth-child(n+9) { display: none; }
  .shots-stage { padding: 0 20px; }
  .result-num { padding: 32px 24px; }
  .result-num .big { font-size: clamp(44px, 13vw, 64px); }
}

/* granskningsläge för helsides-skärmdumpar (?shot=1) */
.shot .hero { min-height: 860px; }
.shot .hero-inner { padding-bottom: 90px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ORANGE ALERT-kortet (kosmos-sektionen): dump + citat sida vid sida. */
.alert-card {
  margin-top: 34px; display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: 28px; align-items: center; border: 1px solid rgba(230,126,34,0.35);
  border-radius: 14px; padding: 22px; background: rgba(230,126,34,0.05);
}
.alert-card img { width: 100%; max-width: 340px; height: auto; border-radius: 8px; display: block; margin: 0 auto; }
.alert-copy h3 { margin: 0 0 10px; font-size: 21px; color: var(--ink); }
.alert-copy p { margin: 0 0 14px; color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.alert-quote { margin: 0; padding: 14px 18px; border-left: 3px solid #e67e22; background: rgba(0,0,0,0.35); border-radius: 0 8px 8px 0; }
.alert-quote p { margin: 0 0 6px; font-family: var(--font-mono); font-size: 15px; color: var(--gold-bright); }
.alert-quote cite { font-size: 12px; color: var(--muted); font-style: normal; }
/* CTA till den publika Orange Alert-sidan (Klaus 2026-07-10) */
.alert-cta { display: inline-flex; align-items: center; gap: 11px; margin-top: 20px;
  padding: 14px 24px; border-radius: 11px; font-family: var(--font-mono);
  font-size: 14px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  color: #160a02; background: linear-gradient(135deg, #FF6A1A, #FF8B3D);
  box-shadow: 0 10px 30px -10px rgba(255,106,26,.5); transition: transform .18s, box-shadow .18s; }
.alert-cta:hover { transform: translateY(-2px); text-decoration: none; color: #160a02;
  box-shadow: 0 16px 40px -8px rgba(255,106,26,.6); }
.alert-cta-dot { width: 10px; height: 10px; border-radius: 50%; background: #160a02;
  box-shadow: 0 0 0 4px rgba(22,10,2,.25); animation: alertPulse 2s ease-in-out infinite; }
.alert-cta-arrow { font-size: 17px; }
@keyframes alertPulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(22,10,2,.4);} 50%{ box-shadow: 0 0 0 6px transparent;} }
@media (max-width: 900px) { .alert-card { grid-template-columns: 1fr; } }

/* Orange Alert-bilden VIBRERAR som om den är arg (Klaus 2026-07-03):
   snabb liten jitter + pulserande orange glöd. Av vid reduced-motion. */
.alert-card img {
  animation: alert-arg 0.42s infinite linear, alert-glod 1.8s infinite ease-in-out;
}
@keyframes alert-arg {
  0%   { transform: translate(0, 0) rotate(0deg); }
  12%  { transform: translate(-1.4px, 0.8px) rotate(-0.35deg); }
  25%  { transform: translate(1.2px, -0.9px) rotate(0.3deg); }
  38%  { transform: translate(-0.8px, -1.1px) rotate(-0.2deg); }
  50%  { transform: translate(1.4px, 0.6px) rotate(0.35deg); }
  63%  { transform: translate(-1.1px, 1.2px) rotate(0.2deg); }
  75%  { transform: translate(0.9px, -0.7px) rotate(-0.3deg); }
  88%  { transform: translate(-1.3px, -0.5px) rotate(0.25deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}
@keyframes alert-glod {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(230,126,34,0.25)); }
  50%      { filter: drop-shadow(0 0 22px rgba(230,126,34,0.55)); }
}
@media (prefers-reduced-motion: reduce) {
  .alert-card img { animation: none; }
}

/* ---------- diskret cookie-samtycke (GDPR/ePrivacy) ---------- */
.cookie-consent {
  position: fixed; z-index: 9999;
  left: 16px; right: 16px; bottom: 16px;
  max-width: 640px; margin: 0 auto;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 14px 18px;
  background: rgba(12, 11, 9, 0.92);
  border: 1px solid rgba(224, 185, 79, 0.22);
  border-radius: 12px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  transform: translateY(140%); opacity: 0;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), opacity .4s ease;
}
.cookie-consent.show { transform: translateY(0); opacity: 1; }
.cc-text {
  flex: 1 1 300px; min-width: 220px; margin: 0;
  font-size: 12.5px; line-height: 1.5; color: var(--muted);
}
.cc-text a { color: var(--gold); text-decoration: none; }
.cc-text a:hover { text-decoration: underline; }
.cc-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cc-btn {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.04em;
  padding: 9px 14px; border-radius: 8px; cursor: pointer; border: 1px solid transparent;
  white-space: nowrap; transition: opacity .15s, transform .15s, border-color .15s;
}
.cc-btn:hover { transform: translateY(-1px); }
.cc-reject {
  background: transparent; color: var(--muted);
  border-color: rgba(242, 239, 230, 0.18);
}
.cc-reject:hover { color: var(--ink); border-color: rgba(242, 239, 230, 0.35); }
.cc-accept {
  background: linear-gradient(135deg, var(--gold), var(--copper, #b87333));
  color: #1a1407; font-weight: 600; border: none;
}
@media (max-width: 560px) {
  /* Kompakt på mobil: knapparna sida-vid-sida (får plats), mindre text/padding
     så bannern inte äter halva skärmen (Klaus 2026-07-03). */
  .cookie-consent {
    left: 10px; right: 10px; bottom: 10px;
    flex-direction: column; align-items: stretch; gap: 10px;
    padding: 12px 14px;
  }
  .cc-text { flex: 0 0 auto; font-size: 11.5px; line-height: 1.45; }
  .cc-actions { justify-content: stretch; gap: 8px; }
  .cc-btn { flex: 1; text-align: center; padding: 10px 8px; font-size: 11px; }
}

/* ---------- böljande interaktivt nätverk bakom "Alpha är konkret" ---------- */
#vad-du-far { position: relative; overflow: hidden; }
#vad-du-far > .wrap { position: relative; z-index: 1; }
.net-canvas {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; display: block;
  pointer-events: none;              /* mus-events fångas på fönstret, ej canvas */
}
@media (prefers-reduced-motion: reduce) { .net-canvas { display: none; } }

/* ============================================================================
   PILOT-ANSÖKAN (/ansokan) — flerstegs-guide. Samma guld-på-svart-språk som
   resten av sidan: mono-labels, guld-accent, tysta paneler. Signaturelementet
   är den segmenterade guld-progress-railen + mono-räknaren "STEG N / 6".
   ============================================================================ */
.apply-body { min-height: 100vh; }
.apply-back {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.04em;
  color: var(--muted);
}
.apply-back:hover { color: var(--gold-bright); text-decoration: none; }

.apply-main { padding: 108px 0 80px; }
.apply-shell { width: 100%; max-width: 640px; margin: 0 auto; padding: 0 24px; }

.apply-head { margin-bottom: 30px; }
.apply-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 6vw, 44px); line-height: 1.04;
  letter-spacing: -0.02em; margin: 0 0 14px;
}
.apply-lede { color: var(--muted); font-size: 16px; line-height: 1.6; margin: 0; max-width: 40em; }

/* ---------- progress: segmenterad guld-rail + räknare ---------- */
.apply-progress { margin: 0 0 30px; }
.apply-progress-meta {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; margin-bottom: 12px;
}
.apply-step-label {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
}
.apply-step-name {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em;
  color: var(--dim);
}
.apply-rail { display: flex; gap: 6px; }
.rail-seg {
  flex: 1; height: 3px; border-radius: 2px;
  background: rgba(242, 239, 230, 0.12);
  transition: background .3s ease;
}
.rail-seg.done { background: linear-gradient(90deg, var(--gold-bright), var(--gold)); }
.rail-seg.here { box-shadow: 0 0 10px rgba(201, 162, 39, 0.55); }

/* ---------- kort ---------- */
.apply-form { position: relative; }
.apply-card {
  border: 1px solid var(--gold-line); border-radius: 6px;
  background: rgba(15, 14, 11, 0.55); padding: 26px 26px 28px; margin: 0;
}
.apply-card[hidden] { display: none; }
.apply-card.is-active { animation: cardIn .32s ease both; }
@keyframes cardIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) { .apply-card.is-active { animation: none; } }
.apply-card-eyebrow {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  padding: 0; margin: 0 0 20px;
}
.apply-card-eyebrow:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 4px; }

/* ---------- frågor ---------- */
.q { margin-top: 22px; }
.q:first-of-type { margin-top: 0; }
.q-nested { margin-top: 14px; padding-left: 2px; }
.q-label {
  display: block; font-family: var(--font-display); font-weight: 500;
  font-size: 16px; line-height: 1.4; color: var(--ink); margin: 0 0 12px;
}
.q-required::after {
  content: " *"; color: var(--gold-bright); font-family: var(--font-mono);
}
.q-hint { font-size: 13.5px; color: var(--dim); margin: -6px 0 12px; }
.opt { color: var(--dim); font-weight: 400; font-size: 0.85em; }

/* text-inputs + textarea + select — samma språk som signup-fältet */
.in {
  width: 100%; font-family: var(--font-mono); font-size: 15px;
  padding: 14px 16px; border-radius: 4px;
  border: 1px solid rgba(242, 239, 230, 0.18);
  background: rgba(10, 10, 10, 0.6); color: var(--ink);
  transition: border-color .15s;
}
.in:focus { border-color: var(--gold); outline: none; }
.in::placeholder { color: var(--dim); }
.ta { resize: vertical; min-height: 84px; line-height: 1.5; }
.sel { appearance: none; cursor: pointer; }

/* ---------- val (radio/checkbox som stora touch-targets) ---------- */
.choices { display: flex; gap: 10px; }
.choices-wrap { flex-wrap: wrap; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.choice, .check {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  min-height: 48px; padding: 10px 16px; border-radius: 4px;
  border: 1px solid rgba(242, 239, 230, 0.16);
  background: rgba(10, 10, 10, 0.4);
  font-family: var(--font-mono); font-size: 14px; color: var(--muted);
  transition: border-color .15s, color .15s, background .15s;
}
.choice { flex: 1; justify-content: center; text-align: center; }
.choice:hover, .check:hover { border-color: var(--gold-dim); color: var(--ink); }
.choice input, .check input { accent-color: var(--gold); width: 17px; height: 17px; flex: none; }
.choice input { position: absolute; opacity: 0; width: 0; height: 0; }
/* markerat radio-val: guld-ram + guld-text (utan synlig prick, hela pillret är målet) */
.choice:has(input:checked) {
  border-color: var(--gold); color: var(--gold-bright);
  background: rgba(201, 162, 39, 0.08);
}
.check:has(input:checked) { border-color: var(--gold); color: var(--ink); }
.choice:has(input:focus-visible), .check:has(input:focus-visible),
.scale-item:has(input:focus-visible) {
  outline: 2px solid var(--gold-bright); outline-offset: 2px;
}

/* skala 1–5 */
.scale { display: flex; gap: 8px; }
.scale-item {
  flex: 1; display: flex; align-items: center; justify-content: center;
  min-height: 52px; cursor: pointer; border-radius: 4px;
  border: 1px solid rgba(242, 239, 230, 0.16); background: rgba(10, 10, 10, 0.4);
  font-family: var(--font-mono); font-size: 17px; color: var(--muted);
  transition: border-color .15s, color .15s, background .15s;
}
.scale-item input { position: absolute; opacity: 0; width: 0; height: 0; }
.scale-item:hover { border-color: var(--gold-dim); color: var(--ink); }
.scale-item:has(input:checked) {
  border-color: var(--gold); color: var(--gold-bright);
  background: rgba(201, 162, 39, 0.1);
}
.scale-ends {
  display: flex; justify-content: space-between; margin-top: 8px;
  font-family: var(--font-mono); font-size: 11.5px; color: var(--dim);
}

/* ---------- GDPR + opt-in ---------- */
.q-consent { display: flex; flex-direction: column; gap: 14px; margin-top: 26px;
  padding-top: 22px; border-top: 1px solid var(--gold-line); }
.consent-check {
  display: flex; align-items: flex-start; gap: 12px; cursor: pointer;
  font-size: 14px; line-height: 1.5; color: var(--muted);
}
.consent-check input {
  accent-color: var(--gold); width: 20px; height: 20px; flex: none; margin-top: 1px;
}
.consent-check:hover { color: var(--ink); }
.req-star { color: var(--gold-bright); font-family: var(--font-mono); }

/* ---------- statusrad + navigering ---------- */
.apply-msg {
  font-family: var(--font-mono); font-size: 13.5px; min-height: 20px;
  margin: 18px 2px 0;
}
.apply-msg.err { color: var(--red); }
.apply-msg.ok { color: var(--gold-bright); }

.apply-nav {
  display: flex; align-items: center; gap: 12px; margin-top: 22px;
}
.apply-nav .btn-gold { margin-left: auto; }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 14px; font-weight: 500;
  letter-spacing: 0.04em; min-height: 48px; padding: 14px 22px;
  border-radius: 3px; cursor: pointer; color: var(--muted);
  background: transparent; border: 1px solid rgba(242, 239, 230, 0.2);
  transition: border-color .15s, color .15s;
}
.btn-ghost:hover { border-color: var(--gold-dim); color: var(--ink); text-decoration: none; }
.apply-nav .btn-gold:disabled { opacity: 0.45; cursor: default; transform: none; filter: none; }
.apply-nav .btn-gold { min-height: 48px; }

/* ---------- tack-vy ---------- */
.apply-done { text-align: center; padding: 40px 20px 20px; }
.done-mark {
  width: 64px; height: 64px; margin: 0 auto 22px;
  border-radius: 50%; border: 1px solid var(--gold-line);
  display: flex; align-items: center; justify-content: center;
  background: rgba(201, 162, 39, 0.08);
}
.done-mark svg { width: 30px; height: 30px; }
.done-title {
  font-family: var(--font-display); font-weight: 800; font-size: 34px;
  letter-spacing: -0.02em; margin: 0 0 12px;
}
.done-lede { color: var(--muted); font-size: 16px; line-height: 1.6; max-width: 34em; margin: 0 auto 26px; }

.apply-foot {
  font-family: var(--font-mono); font-size: 11.5px; line-height: 1.6;
  color: var(--dim); margin: 34px 0 0; max-width: 46em;
}

/* ---------- mobil ---------- */
@media (max-width: 560px) {
  .apply-main { padding: 92px 0 60px; }
  .apply-card { padding: 22px 18px 24px; }
  .checks { grid-template-columns: 1fr; }
  .choices { flex-wrap: wrap; }
  .choice { flex: 1 1 calc(50% - 5px); }
  .apply-nav { flex-wrap: wrap; }
  .apply-nav .btn-gold, .apply-nav .btn-ghost { flex: 1; }
}

/* Pilot-CTA-sektionens knapp-rad (ersätter den gamla inline-e-postformen). */
.signup-cta-row { margin: 34px 0 0; }

/* [hidden] måste vinna över display:inline-flex/inline-block på knapparna
   (annars visas Tillbaka/Skicka-knapparna innan JS hunnit gömma dem). */
.apply-nav [hidden] { display: none !important; }
