:root {
  /* ── BUILD OR DIE × BuilderOrg tokens — see docs/DESIGN.md ── */
  --c-bg:           #060A10;
  --c-bg-elevated:  #0A1018;
  --c-fg:           #E8EDF3;
  --c-fg-soft:      #B5BFC9;   /* was #8A96A6 — too dark on bg */
  --c-fg-mute:      #8492A4;   /* was #4A5566 — illegible for nav/footer/caption */
  --c-card:         #0D1620;
  --c-card-2:       #122030;
  --c-line:         rgba(255,255,255,0.08);
  --c-line-strong:  rgba(0,229,255,0.35);
  --c-accent:       #00E5FF;
  --c-accent-ink:   #000000;
  --c-accent-soft:  rgba(0,229,255,0.15);
  --c-accent-glow:  rgba(0,229,255,0.40);
  --c-signal:       #FF2E88;
  --c-signal-soft:  rgba(255,46,136,0.15);
  --c-warn:         #FF4D4D;
  --c-confirm:      #38FF8E;

  /* ── Legacy aliases — mapped to new tokens so cascading utility classes keep rendering.
     New work should use the --c-bg/--c-fg/--c-accent/--c-signal tokens directly. ── */
  --c-black:   var(--c-bg);
  --c-dark:    var(--c-bg);
  --c-navy:    var(--c-bg-elevated);
  --c-mid:     var(--c-card-2);
  --c-panel:   var(--c-card);
  --c-border:  var(--c-line);
  --c-white:   var(--c-fg);
  --c-silver:  var(--c-fg-soft);
  --c-muted:   var(--c-fg-mute);
  --c-faint:   var(--c-line);
  --c-red:     var(--c-accent);     /* retired brand-red → cyan accent */
  --c-red-dim: var(--c-accent-soft);
  --c-amber:   var(--c-signal);     /* retired brand-amber → magenta signal */
  --c-green:   var(--c-confirm);    /* retired brand-green → semantic confirm */

  --f-display: 'Barlow Condensed', sans-serif;
  --f-body:    'Inter', -apple-system, BlinkMacSystemFont, ui-sans-serif, system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --ts-mega:   clamp(64px, 8vw, 120px);
  --ts-hero:   clamp(48px, 8vw, 88px);
  --ts-h1:     clamp(36px, 4vw, 60px);
  --ts-h2:     clamp(26px, 2.8vw, 40px);
  --ts-h3:     clamp(20px, 2vw, 28px);
  --ts-lead:   clamp(18px, 1.6vw, 22px);
  --ts-body:   16px;
  --ts-small:  clamp(12px, 1.1vw, 14px);
  --ts-label:  11px;

  --sp-xs: 8px; --sp-sm: 16px; --sp-md: 24px; --sp-lg: 32px;
  --sp-xl: 48px; --sp-2xl: 72px; --sp-3xl: 120px;

  --r-sm: 4px; --r-md: 8px; --r-lg: 12px; --r-xl: 20px; --r-full: 999px;

  --max-w: 1200px; --max-w-text: 720px;
  --gutter: clamp(20px, 5vw, 80px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.35s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--f-body);
  background: var(--c-dark);
  color: var(--c-silver);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── LAYOUT ───────────────────────── */
.container     { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.container--text { max-width: var(--max-w-text); }
.section       { padding: var(--sp-2xl) 0; }
.section--sm   { padding: var(--sp-xl) 0; }
.section--dark { background: var(--c-black); }
.section--navy { background: var(--c-navy); }
.section--panel { background: var(--c-panel); }
.section--mid  { background: var(--c-mid); }

/* ── TYPOGRAPHY ───────────────────── */
.t-mega   { font-family: var(--f-display); font-size: var(--ts-mega); font-weight: 900; line-height: 0.88; letter-spacing: -0.02em; color: var(--c-white); }
.t-hero   { font-family: var(--f-display); font-size: var(--ts-hero); font-weight: 900; line-height: 0.92; letter-spacing: -0.015em; color: var(--c-white); }
.t-h1     { font-family: var(--f-display); font-size: var(--ts-h1); font-weight: 700; line-height: 1.0; color: var(--c-white); }
.t-h2     { font-family: var(--f-display); font-size: var(--ts-h2); font-weight: 700; line-height: 1.1; color: var(--c-white); }
.t-h3     { font-family: var(--f-display); font-size: var(--ts-h3); font-weight: 700; line-height: 1.2; color: var(--c-white); }
.t-lead   { font-family: var(--f-body); font-size: var(--ts-lead); font-weight: 300; line-height: 1.55; color: var(--c-silver); }
.t-body   { font-family: var(--f-body); font-size: var(--ts-body); font-weight: 400; line-height: 1.65; color: var(--c-silver); }
.t-small  { font-family: var(--f-body); font-size: var(--ts-small); color: var(--c-muted); line-height: 1.5; }
.t-red    { color: var(--c-red); }
.t-amber  { color: var(--c-amber); }
.t-green  { color: var(--c-green); }
.t-white  { color: var(--c-white); }
.t-muted  { color: var(--c-muted); }
.t-bold   { font-weight: 700; }
.t-light  { font-weight: 300; }

/* ── OVERLINE / EYEBROW (Mono — technical marker) ── */
.overline { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-fg-mute); margin-bottom: var(--sp-md); }
.overline::before { content: '›'; color: var(--c-accent); }
.overline--red   { color: var(--c-accent); }
.overline--amber { color: var(--c-signal); }
.overline--green { color: var(--c-confirm); }

/* ── BUTTONS ──────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-body); font-size: 15px; font-weight: 600; letter-spacing: 0; text-transform: none; padding: 14px 22px; border: none; border-radius: var(--r-md); cursor: pointer; transition: all var(--dur) var(--ease); position: relative; overflow: hidden; white-space: nowrap; text-decoration: none; }
.btn::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.08); opacity: 0; transition: opacity var(--dur) var(--ease); }
.btn:hover::after { opacity: 1; }
.btn--primary { background: var(--c-accent); color: var(--c-accent-ink); }
.btn--primary:hover { background: #FFFFFF; box-shadow: 0 0 24px var(--c-accent-glow); transform: translateY(-1px); }
/* Signal — filled magenta button (Outlaw second-path, equal-weight peer to .btn--primary) */
.btn--signal {
  background: var(--c-signal);
  color: var(--c-accent-ink);
  border: 1px solid var(--c-signal);
}
.btn--signal:hover {
  background: #FFFFFF;
  color: var(--c-accent-ink);
  border-color: #FFFFFF;
  box-shadow: 0 0 24px rgba(255,46,136,0.45);
  transform: translateY(-1px);
}
/* .btn--amber kept as legacy alias (BuildOrDie palette pre-rebrand) */
.btn--amber { background: transparent; color: var(--c-signal); border: 1px solid var(--c-signal); }
.btn--amber:hover { background: var(--c-signal); color: var(--c-accent-ink); box-shadow: 0 0 24px rgba(255,46,136,0.4); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--c-fg); border: 1px solid var(--c-line); }
.btn--outline:hover { border-color: var(--c-fg); background: rgba(255,255,255,0.04); }
.btn--ghost { background: transparent; color: var(--c-accent); padding-left: 0; padding-right: 0; letter-spacing: 0; }
.btn--ghost::before { content: '→'; margin-right: 8px; transition: transform var(--dur) var(--ease); display: inline-block; }
.btn--ghost:hover::before { transform: translateX(6px); }
.btn--ghost::after { display: none; }
.btn-group { display: flex; flex-wrap: wrap; gap: var(--sp-sm); align-items: center; }

/* ── CARDS ────────────────────────── */
.card { background: var(--c-card); border: 1px solid var(--c-line); padding: var(--sp-lg); position: relative; border-radius: var(--r-lg); transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.card:hover { background: var(--c-card-2); border-color: var(--c-line-strong); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 0 1px var(--c-accent-soft); }
.card--red::before, .card--amber::before, .card--green::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; }
.card--red::before   { background: var(--c-red); }
.card--amber::before { background: var(--c-amber); }
.card--green::before { background: var(--c-green); }
.card__num { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 32px; font-family: var(--f-display); font-size: 13px; font-weight: 700; margin-bottom: var(--sp-sm); }
.card__num--red   { background: var(--c-red); color: var(--c-white); }
.card__num--amber { background: var(--c-amber); color: var(--c-black); }
.card__num--green { background: var(--c-green); color: var(--c-white); }
.card__title { font-family: var(--f-display); font-size: clamp(20px, 2vw, 26px); font-weight: 700; color: var(--c-white); margin-bottom: var(--sp-sm); line-height: 1.1; }
.card__body { font-size: var(--ts-body); color: var(--c-silver); line-height: 1.65; }
.card-grid     { display: grid; gap: var(--sp-md); }
.card-grid--2  { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.card-grid--3  { grid-template-columns: repeat(3, 1fr); }
.card-grid--3 > :nth-last-child(2):nth-child(3n + 1) { grid-column: 1 / 2; justify-self: center; }
.card-grid--5  { grid-template-columns: repeat(3, 1fr); }
.card-grid--5 > :nth-child(4),
.card-grid--5 > :nth-child(5) { justify-self: stretch; }
@media (min-width: 769px) {
  .card-grid--5 { grid-template-columns: repeat(6, 1fr); }
  .card-grid--5 > :nth-child(1) { grid-column: 1 / 3; }
  .card-grid--5 > :nth-child(2) { grid-column: 3 / 5; }
  .card-grid--5 > :nth-child(3) { grid-column: 5 / 7; }
  .card-grid--5 > :nth-child(4) { grid-column: 2 / 4; }
  .card-grid--5 > :nth-child(5) { grid-column: 4 / 6; }
}

/* ── STATS ────────────────────────── */
.stat { display: flex; flex-direction: column; gap: var(--sp-xs); }
.stat__number { font-family: var(--f-display); font-size: clamp(48px, 6vw, 80px); font-weight: 900; line-height: 1; color: var(--c-red); }
.stat__number--amber { color: var(--c-amber); }
.stat__number--green { color: var(--c-green); }
.stat__label { font-family: var(--f-body); font-size: var(--ts-body); color: var(--c-silver); font-weight: 300; }
.stat-row { display: grid; gap: var(--sp-xl); grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }

/* ── PULL QUOTE ───────────────────── */
.pullquote { border-left: 3px solid var(--c-red); padding: var(--sp-md) var(--sp-lg); background: var(--c-panel); }
.pullquote--amber { border-left-color: var(--c-amber); }
.pullquote__text { font-family: var(--f-display); font-size: clamp(22px, 2.5vw, 32px); font-weight: 600; color: var(--c-white); line-height: 1.3; margin-bottom: var(--sp-sm); }
.pullquote__source { font-family: var(--f-body); font-size: var(--ts-small); color: var(--c-muted); font-style: italic; }

/* ── SPLIT ────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 4px 1fr; min-height: 480px; }
.split__panel { display: flex; flex-direction: column; justify-content: center; padding: var(--sp-2xl) var(--sp-xl); }
.split__panel--dark { background: var(--c-black); }
.split__panel--mid  { background: var(--c-mid); }
.split__divider     { background: var(--c-amber); }
.split__illustration { margin-top: var(--sp-lg); border: 1px solid var(--c-border); border-radius: 4px; overflow: hidden; }
.split__illustration img { width: 100%; height: auto; }
@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; }
  .split__divider { height: 3px; width: 100%; }
}

/* ── STEPS ────────────────────────── */
.steps { display: flex; flex-direction: column; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: var(--sp-md); padding: var(--sp-lg) 0; border-bottom: 1px solid var(--c-border); }
.step:last-child { border-bottom: none; }
.step__num { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--f-display); font-size: 15px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.step__num--red   { background: var(--c-red); color: var(--c-white); }
.step__num--amber { background: var(--c-amber); color: var(--c-black); }
.step__num--green { background: var(--c-green); color: var(--c-white); }
.step__title { font-family: var(--f-display); font-size: clamp(18px, 1.8vw, 22px); font-weight: 700; color: var(--c-white); margin-bottom: var(--sp-xs); }
.step__body { font-size: var(--ts-body); color: var(--c-silver); line-height: 1.65; }
.step__tag { display: inline-block; font-family: var(--f-display); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 3px 10px; margin-top: var(--sp-sm); }
.step__tag--red   { background: var(--c-red-dim); color: var(--c-red); }
.step__tag--amber { background: rgba(255,46,136,0.15); color: var(--c-signal); }
.step__tag--green { background: rgba(56,255,142,0.15); color: var(--c-confirm); }

/* ── TAGS ─────────────────────────── */
.tag { display: inline-block; font-family: var(--f-display); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 12px; background: var(--c-mid); color: var(--c-muted); border: 1px solid var(--c-border); }
.tag--red   { background: rgba(0,229,255,0.12); color: var(--c-red); border-color: var(--c-red-dim); }
.tag--amber { background: rgba(255,46,136,0.12); color: var(--c-amber); border-color: rgba(255,46,136,0.3); }
.tag--green { background: rgba(56,255,142,0.12); color: var(--c-green); border-color: rgba(56,255,142,0.25); }
.tags { display: flex; flex-wrap: wrap; gap: var(--sp-xs); }

/* ── NAVIGATION ───────────────────── */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(10,16,24,0.94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--c-border); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.nav__brand { font-family: var(--f-display); font-size: 18px; font-weight: 900; letter-spacing: 0.05em; color: var(--c-white); flex-shrink: 0; }
.nav__brand span { color: var(--c-red); }
.nav__links { display: flex; align-items: center; gap: var(--sp-lg); list-style: none; }
.nav__link { font-family: var(--f-display); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-muted); transition: color var(--dur) var(--ease); }
.nav__link:hover { color: var(--c-white); }
.nav__link--active { color: var(--c-amber); }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; -webkit-tap-highlight-color: transparent; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--c-silver); transition: all var(--dur) var(--ease); border-radius: 1px; }
.nav__hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav__mobile { display: none; flex-direction: column; background: rgba(10,16,24,0.98); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-top: 1px solid var(--c-border); padding: var(--sp-md) var(--gutter) var(--sp-lg); gap: 0; position: absolute; left: 0; right: 0; top: 64px; }
.nav__mobile.is-open { display: flex; }
.nav__mobile .nav__link { font-size: 18px; color: var(--c-silver); padding: 14px 0; border-bottom: 1px solid var(--c-border); display: block; }
.nav__mobile .nav__link:last-of-type { border-bottom: none; }
.nav__mobile .btn { width: 100%; justify-content: center; margin-top: var(--sp-md); padding: 16px 28px; }
.nav__pre-launch { font-family: var(--f-display); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-amber); background: rgba(255,46,136,0.1); padding: 4px 12px; border: 1px solid rgba(255,46,136,0.25); white-space: nowrap; }
@media (max-width: 860px) {
  .nav__links { display: none !important; }
  .nav__pre-launch { display: none !important; }
  .nav__inner > .btn { display: none !important; }
  .nav__hamburger { display: flex; }
}

/* ── HERO ─────────────────────────── */
.hero { background: var(--c-black); padding: 0 var(--gutter); position: relative; overflow: hidden; min-height: 85vh; min-height: 85dvh; display: flex; align-items: center; }
.hero__bg { position: absolute; inset: 0; background:
  linear-gradient(rgba(0,229,255,0.045) 1px, transparent 1px),
  linear-gradient(90deg, rgba(0,229,255,0.045) 1px, transparent 1px),
  radial-gradient(ellipse at 12% 0%, rgba(0,229,255,0.18) 0%, transparent 50%),
  radial-gradient(ellipse at 100% 100%, rgba(255,46,136,0.08) 0%, transparent 55%);
  background-size: 48px 48px, 48px 48px, auto, auto; pointer-events: none; }
.hero__accent { display: none; } /* retired — left-bar was Hero-bombast. Brand uses gradient + grid instead. */
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; max-width: var(--max-w); margin: 0 auto; width: 100%; padding: var(--sp-2xl) 0; position: relative; z-index: 2; }
.hero__content { display: flex; flex-direction: column; justify-content: center; max-width: none; padding-left: 0; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-fg-mute); margin-bottom: var(--sp-md); }
.hero__eyebrow::before { content: '›'; color: var(--c-accent); }
.hero__headline { font-family: var(--f-display); font-size: clamp(42px, 5vw, 72px); font-weight: 900; line-height: 1.05; letter-spacing: -0.02em; color: var(--c-white); margin-bottom: var(--sp-lg); }
.hero__sub { font-family: var(--f-body); font-size: clamp(17px, 2vw, 22px); font-weight: 300; color: var(--c-silver); line-height: 1.5; margin-bottom: var(--sp-lg); }
.hero__sub em { font-style: normal; color: var(--c-white); font-weight: 400; }
.hero__divider { width: 48%; max-width: 280px; height: 1px; background: var(--c-line-strong); margin-bottom: var(--sp-lg); }
.hero__meta { font-family: var(--f-body); font-size: var(--ts-small); color: var(--c-muted); font-style: italic; }
.hero__book-col { display: flex; align-items: center; justify-content: center; perspective: 1800px; }
.hero__book {
  position: relative;
  display: block;
  width: 100%;
  max-width: 340px;
  transform-style: preserve-3d;
  transform: rotateY(-24deg) rotateX(2deg);
  transition: transform 0.6s var(--ease);
  animation: heroBookFloat 6s ease-in-out infinite;
  filter: drop-shadow(-30px 36px 56px rgba(0,0,0,0.65)) drop-shadow(-10px 14px 22px rgba(0,0,0,0.45));
  cursor: pointer;
}
.hero__book:hover { transform: rotateY(-14deg) rotateX(1deg) translateY(-4px); animation-play-state: paused; }

/* FRONT COVER — flat face at z=0 */
.hero__book-img { display: block; width: 100%; height: auto; border-radius: 1px; backface-visibility: hidden; box-shadow: inset 1px 0 0 rgba(255,255,255,0.06); }

/* SPINE — real spine image, rotated 90° on Y so it sits perpendicular to the cover */
.hero__book-spine {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 32px;
  object-fit: cover;
  object-position: center;
  transform: translateX(-100%) rotateY(90deg);
  transform-origin: right center;
  backface-visibility: hidden;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.55);
}

/* PAGE EDGES — thin cream strip on right side + faint top/bottom highlights */
.hero__book::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 0%, transparent 97%, rgba(232,220,200,0.20) 100%);
  box-shadow:
    inset -2px 0 0 rgba(210,194,168,0.28),
    inset 0 1px 0 rgba(220,210,190,0.12),
    inset 0 -1px 0 rgba(200,180,150,0.22);
  pointer-events: none;
  z-index: 2;
}

@keyframes heroBookFloat {
  0%, 100% { transform: rotateY(-24deg) rotateX(2deg) translateY(0); }
  50%      { transform: rotateY(-20deg) rotateX(1deg) translateY(-10px); }
}

/* Hero responsive */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-lg); }
  .hero__book { max-width: 280px; }
}
@media (max-width: 768px) {
  .hero { min-height: auto; padding: var(--sp-xl) var(--gutter); }
  .hero__grid { grid-template-columns: 1fr; gap: var(--sp-xl); text-align: center; }
  .hero__book-col { order: -1; }
  .hero__book { max-width: 240px; margin: 0 auto; }
  .hero__content { align-items: center; }
  .hero__headline { font-size: clamp(28px, 8vw, 44px); }
  .hero__divider { width: 60%; margin-left: auto; margin-right: auto; }
  .hero__badges { justify-content: center; }
  .btn-group { justify-content: center; flex-wrap: wrap; }
}

/* ── PUNCHLINE ────────────────────── */
.punchline { background: var(--c-dark); padding: var(--sp-3xl) var(--gutter); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.punchline__inner { max-width: var(--max-w); margin: 0 auto; }
.punchline__text { font-family: var(--f-display); font-size: clamp(32px, 4.5vw, 64px); font-weight: 900; line-height: 1.05; color: var(--c-fg); letter-spacing: -0.01em; text-transform: uppercase; }
.punchline__text em { color: var(--c-accent); font-style: normal; text-shadow: 0 0 24px var(--c-accent-glow); }
.punchline__text strong { color: var(--c-signal); }

/* ── ACCENT BAR ───────────────────── */
.accent-bar { background: var(--c-red); padding: var(--sp-md) var(--gutter); display: flex; align-items: center; justify-content: center; text-align: center; font-family: var(--f-display); font-size: clamp(14px, 1.5vw, 18px); font-weight: 700; color: var(--c-white); letter-spacing: 0.04em; }
.accent-bar--amber { background: var(--c-amber); color: var(--c-black); }

/* ── ACT LIST ─────────────────────── */
.act-list { display: flex; flex-direction: column; }
.act-item { display: grid; grid-template-columns: 80px 1fr auto; gap: var(--sp-lg); align-items: center; padding: var(--sp-lg) 0; border-bottom: 1px solid var(--c-border); transition: background var(--dur) var(--ease), padding var(--dur) var(--ease); cursor: default; }
.act-item:last-child { border-bottom: none; }
.act-item:hover { background: rgba(255,255,255,0.02); padding-left: var(--sp-sm); }
.act-item__num { font-family: var(--f-display); font-size: clamp(28px, 3vw, 40px); font-weight: 900; color: var(--c-border); line-height: 1; transition: color var(--dur) var(--ease); }
.act-item:hover .act-item__num { color: var(--c-red); }
.act-item__title { font-family: var(--f-display); font-size: clamp(18px, 2vw, 24px); font-weight: 700; color: var(--c-white); margin-bottom: 4px; }
.act-item__sub { font-size: var(--ts-small); color: var(--c-muted); }
.act-item__pages { font-family: var(--f-display); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-muted); white-space: nowrap; }
@media (max-width: 600px) {
  .act-item { grid-template-columns: 60px 1fr; }
  .act-item__pages { display: none; }
}

/* ── AUTHOR CARD ──────────────────── */
.author-card { display: flex; gap: var(--sp-lg); align-items: flex-start; }
.author-card__avatar { width: 88px; height: 88px; border-radius: 50%; background: var(--c-mid); flex-shrink: 0; border: 2px solid var(--c-border); display: flex; align-items: center; justify-content: center; font-family: var(--f-display); font-size: 28px; font-weight: 900; color: var(--c-muted); transition: border-color var(--dur) var(--ease); }
.author-card:hover .author-card__avatar { border-color: var(--c-red); }
.author-card__name { font-family: var(--f-display); font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; color: var(--c-white); margin-bottom: 4px; }
.author-card__role { font-size: var(--ts-small); color: var(--c-amber); font-style: italic; margin-bottom: var(--sp-sm); }
.author-card__bio  { font-size: var(--ts-body); color: var(--c-silver); line-height: 1.65; }
.author-card__bio p + p { margin-top: var(--sp-sm); }
.author-card__quote { margin-top: var(--sp-md); padding: var(--sp-md); background: var(--c-navy); border-left: 2px solid var(--c-red); font-size: var(--ts-small); color: var(--c-silver); font-style: italic; line-height: 1.6; }

/* ── CHAPTER PREVIEW ──────────────── */
.chapter-preview { background: var(--c-panel); border: 1px solid var(--c-border); border-left: 4px solid var(--c-red); padding: var(--sp-xl); position: relative; }
.chapter-preview::before { content: '\201C'; position: absolute; top: 12px; right: 24px; font-family: var(--f-display); font-size: 120px; font-weight: 900; line-height: 1; color: var(--c-border); pointer-events: none; }
.chapter-preview__label { font-family: var(--f-display); font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--c-red); margin-bottom: var(--sp-md); }
.chapter-preview__title { font-family: var(--f-display); font-size: clamp(22px, 2.5vw, 34px); font-weight: 700; color: var(--c-white); margin-bottom: var(--sp-lg); line-height: 1.1; }
.chapter-preview__text { font-size: var(--ts-body); color: var(--c-silver); line-height: 1.75; }
.chapter-preview__text p + p { margin-top: var(--sp-md); }

/* ── FORCES GRID ──────────────────── */
.force-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--c-border); border: 1px solid var(--c-border); }
.force-item { background: var(--c-panel); padding: var(--sp-xl) var(--sp-lg); position: relative; overflow: hidden; }
.force-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.force-item:nth-child(1)::before { background: var(--c-red); }
.force-item:nth-child(2)::before { background: var(--c-amber); }
.force-item:nth-child(3)::before { background: var(--c-green); }
.force-item:nth-child(4)::before { background: var(--c-red); }
.force-item__num { font-family: var(--f-display); font-size: clamp(48px, 5vw, 72px); font-weight: 900; line-height: 1; color: var(--c-border); margin-bottom: var(--sp-sm); }
.force-item__title { font-family: var(--f-display); font-size: clamp(18px, 2vw, 24px); font-weight: 700; color: var(--c-white); margin-bottom: var(--sp-sm); }
.force-item__body { font-size: var(--ts-body); color: var(--c-silver); line-height: 1.65; }

/* ── ZIELGRUPPE (Persona Cards) ───── */
.persona-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-md); }
.persona { background: var(--c-panel); border: 1px solid var(--c-border); padding: var(--sp-lg); text-align: center; transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease); }
.persona:hover { border-color: var(--c-red); transform: translateY(-2px); }
.persona__icon { width: 48px; height: 48px; margin: 0 auto var(--sp-sm); display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.persona__icon--red { background: rgba(0,229,255,0.12); color: var(--c-red); }
.persona__icon--amber { background: rgba(255,46,136,0.12); color: var(--c-amber); }
.persona__icon--green { background: rgba(56,255,142,0.12); color: var(--c-green); }
.persona__icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.persona__title { font-family: var(--f-display); font-size: clamp(18px, 1.8vw, 22px); font-weight: 700; color: var(--c-white); margin-bottom: var(--sp-xs); }
.persona__desc { font-size: var(--ts-small); color: var(--c-muted); line-height: 1.55; }
@media (max-width: 900px) { .persona-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .persona-grid { grid-template-columns: 1fr; } }

/* ── TESTIMONIAL ──────────────────── */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--sp-md); }
.testimonial { background: var(--c-panel); border: 1px solid var(--c-border); padding: var(--sp-lg); position: relative; }
.testimonial::before { content: '\201C'; font-family: var(--f-display); font-size: 64px; font-weight: 900; line-height: 1; color: var(--c-border); position: absolute; top: 12px; right: 20px; }
.testimonial__text { font-family: var(--f-body); font-size: var(--ts-body); color: var(--c-silver); line-height: 1.65; font-style: italic; margin-bottom: var(--sp-md); }
.testimonial__author { font-family: var(--f-display); font-size: 13px; font-weight: 700; color: var(--c-white); letter-spacing: 0.05em; }
.testimonial__role { font-size: var(--ts-small); color: var(--c-muted); }
.testimonial--placeholder { border-style: dashed; border-color: var(--c-faint); }
.testimonial--placeholder .testimonial__text { color: var(--c-muted); }

/* ── FAQ ──────────────────────────── */
.faq-list { max-width: var(--max-w-text); }
.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-md); padding: var(--sp-md) 0; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--f-display); font-size: clamp(16px, 1.6vw, 20px); font-weight: 700; color: var(--c-white); letter-spacing: 0.02em; transition: color var(--dur) var(--ease); }
.faq-q:hover { color: var(--c-amber); }
.faq-q__icon { font-family: var(--f-display); font-size: 20px; font-weight: 300; color: var(--c-muted); transition: transform var(--dur) var(--ease); flex-shrink: 0; }
.faq-item.is-open .faq-q__icon { transform: rotate(45deg); color: var(--c-amber); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.4s var(--ease); }
.faq-item.is-open .faq-a { max-height: 300px; padding-bottom: var(--sp-md); }
.faq-a__inner { font-size: var(--ts-body); color: var(--c-silver); line-height: 1.65; }

/* ── KONZEPT CONTINUATION (inline CTA after primer) ── */
.konzept-more { margin-top: var(--sp-2xl); padding-top: var(--sp-xl); border-top: 1px solid var(--c-line); }
.konzept-more .overline { margin-bottom: var(--sp-md); }

/* ── LEAD MAGNET ──────────────────── */
.lead-magnet { background: var(--c-navy); border: 1px solid var(--c-border); padding: var(--sp-xl); display: grid; grid-template-columns: 1fr auto; gap: var(--sp-xl); align-items: center; }
.lead-magnet__badge { display: inline-flex; align-items: center; gap: var(--sp-xs); font-family: var(--f-display); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-amber); background: rgba(255,46,136,0.12); border: 1px solid rgba(255,46,136,0.25); padding: 4px 12px; margin-bottom: var(--sp-md); }
.lead-magnet__visual { display: flex; align-items: center; justify-content: center; width: 80px; height: 80px; background: rgba(255,46,136,0.06); border-radius: 12px; border: 1px solid rgba(255,46,136,0.15); }
@media (max-width: 768px) {
  .lead-magnet { grid-template-columns: 1fr; }
  .lead-magnet__visual { display: none; }
}

/* ── NEWSLETTER ───────────────────── */
.input-row { display: flex; gap: var(--sp-sm); flex-wrap: wrap; }
.input { flex: 1; min-width: 220px; padding: 13px 18px; background: var(--c-mid); border: 1px solid var(--c-border); color: var(--c-white); font-family: var(--f-body); font-size: var(--ts-body); outline: none; transition: border-color var(--dur) var(--ease); }
.input::placeholder { color: var(--c-muted); }
.input:focus { border-color: var(--c-amber); }

/* ── FOOTER ───────────────────────── */
.footer { background: var(--c-bg); border-top: 1px solid var(--c-line); padding: var(--sp-2xl) var(--gutter); }
.footer__inner { max-width: var(--max-w); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: var(--sp-md); text-align: center; }
.footer__sub { font-family: var(--f-body); font-size: var(--ts-small); color: var(--c-fg-mute); }
.footer__links { display: flex; gap: var(--sp-xl); flex-wrap: wrap; justify-content: center; margin-top: var(--sp-sm); }
.footer__link { font-family: var(--f-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-fg-mute); transition: color var(--dur) var(--ease); }
.footer__link:hover { color: var(--c-accent); }
.footer__copy { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--c-fg-mute); margin-top: var(--sp-sm); }
@media (max-width: 600px) {
  .footer__links { gap: var(--sp-lg); }
}

/* ── GRIDS ────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-xl); align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-lg); }
@media (max-width: 768px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* ── UTILITY ──────────────────────── */
.mt-xs  { margin-top: var(--sp-xs); }
.mt-sm  { margin-top: var(--sp-sm); }
.mt-md  { margin-top: var(--sp-md); }
.mt-lg  { margin-top: var(--sp-lg); }
.mt-xl  { margin-top: var(--sp-xl); }
.mt-2xl { margin-top: var(--sp-2xl); }
.mb-sm  { margin-bottom: var(--sp-sm); }
.mb-md  { margin-bottom: var(--sp-md); }
.mb-lg  { margin-bottom: var(--sp-lg); }
.mb-xl  { margin-bottom: var(--sp-xl); }
.text-center { text-align: center; }

/* ── SCROLL REVEAL ────────────────── */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal="delay-1"] { transition-delay: 0.1s; }
[data-reveal="delay-2"] { transition-delay: 0.2s; }
[data-reveal="delay-3"] { transition-delay: 0.3s; }
[data-reveal="delay-4"] { transition-delay: 0.4s; }
[data-reveal="delay-5"] { transition-delay: 0.5s; }

/* ── MOBILE REFINEMENTS ──────────── */
@media (max-width: 768px) {
  .section { padding: var(--sp-xl) 0; }
  .section--sm { padding: var(--sp-lg) 0; }
  .stat__number { font-size: clamp(36px, 10vw, 56px); }
  .punchline { padding: var(--sp-xl) var(--gutter); }
  .punchline__text { font-size: clamp(26px, 6vw, 40px); }
  .force-grid { grid-template-columns: 1fr; }
  .card-grid--5 { grid-template-columns: 1fr; }
  .card-grid--3 { grid-template-columns: 1fr; }
  .split__panel { padding: var(--sp-xl) var(--sp-lg); }
  .act-item { gap: var(--sp-md); padding: var(--sp-md) 0; }
  .author-card { flex-direction: column; align-items: center; text-align: center; }
  .author-card__quote { text-align: left; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .input-row { flex-direction: column; }
  .input-row .input { min-width: 100%; }
  .input-row .btn { width: 100%; justify-content: center; }
  .btn-group { flex-direction: column; width: 100%; }
  .btn-group .btn { width: 100%; justify-content: center; }
  .accent-bar { font-size: clamp(13px, 3.5vw, 16px); padding: var(--sp-sm) var(--gutter); }
  .chapter-preview { padding: var(--sp-lg); }
  .chapter-preview::before { font-size: 72px; top: 8px; right: 12px; }
  .footer__links { gap: var(--sp-md); }
  .step { grid-template-columns: 44px 1fr; }
  .step__num { width: 36px; height: 36px; font-size: 13px; }
}

@media (max-width: 480px) {
  :root { --gutter: 20px; }
  .stat-row { grid-template-columns: 1fr; gap: var(--sp-lg); text-align: center; }
  .persona-grid { grid-template-columns: 1fr; }
  .faq-q { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero__book { animation: none; }
}

/* ── ENDORSEMENT BAR (Social Proof nach Hero) ── */
.endorsement-bar { background: var(--c-navy); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); padding: var(--sp-xl) var(--gutter); }
.endorsement-bar__inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-xl); }
.endorsement-item { text-align: center; padding: 0 var(--sp-md); }
.endorsement-item__quote { font-family: var(--f-display); font-size: clamp(16px, 1.6vw, 20px); font-weight: 600; color: var(--c-white); line-height: 1.35; margin-bottom: var(--sp-md); }
.endorsement-item__quote::before { content: '\201E'; display: block; font-size: 40px; line-height: 1; color: var(--c-red); margin-bottom: var(--sp-xs); }
.endorsement-item__name { font-family: var(--f-display); font-size: 14px; font-weight: 700; color: var(--c-amber); letter-spacing: 0.05em; }
.endorsement-item__role { font-size: var(--ts-small); color: var(--c-muted); margin-top: 2px; }
.endorsement-item__placeholder { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-faint); background: rgba(255,255,255,0.04); padding: 2px 8px; margin-top: var(--sp-xs); }
@media (max-width: 768px) {
  .endorsement-bar__inner { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .endorsement-item { padding: var(--sp-md) 0; border-bottom: 1px solid var(--c-border); }
  .endorsement-item:last-child { border-bottom: none; }
}

/* ── HERO BADGES ─────────────────────── */
.hero__badges { display: flex; flex-wrap: wrap; gap: var(--sp-sm); margin-bottom: var(--sp-lg); }
.hero__badge { display: inline-flex; align-items: center; gap: 6px; font-family: var(--f-display); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 14px; border: 1px solid; white-space: nowrap; }
.hero__badge--red { color: var(--c-red); border-color: var(--c-red-dim); background: rgba(0,229,255,0.08); }
.hero__badge--amber { color: var(--c-amber); border-color: rgba(255,46,136,0.3); background: rgba(255,46,136,0.08); }
.hero__badge--white { color: var(--c-silver); border-color: var(--c-border); background: rgba(255,255,255,0.04); }

/* ── PRAISE-SEKTION (gross) ──────────── */
.praise { background: var(--c-black); padding: var(--sp-3xl) 0; border-top: 3px solid var(--c-red); }
.praise__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--c-border); }
.praise__item { background: var(--c-black); padding: var(--sp-xl) var(--sp-lg); display: flex; flex-direction: column; }
.praise__item--featured { grid-column: span 2; background: var(--c-navy); }
.praise__text { font-family: var(--f-body); font-size: var(--ts-body); color: var(--c-silver); line-height: 1.7; font-style: italic; flex: 1; }
.praise__text::before { content: '\201E'; font-family: var(--f-display); font-size: 48px; font-weight: 900; line-height: 0.6; color: var(--c-red); display: block; margin-bottom: var(--sp-sm); }
.praise__item--featured .praise__text { font-size: clamp(17px, 1.6vw, 20px); color: var(--c-white); font-weight: 400; }
.praise__meta { margin-top: var(--sp-lg); padding-top: var(--sp-md); border-top: 1px solid var(--c-border); }
.praise__name { font-family: var(--f-display); font-size: 14px; font-weight: 700; color: var(--c-white); letter-spacing: 0.04em; }
.praise__role { font-size: var(--ts-small); color: var(--c-muted); margin-top: 2px; }
.praise__placeholder { font-size: 9px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-faint); margin-top: var(--sp-xs); }
@media (max-width: 900px) {
  .praise__grid { grid-template-columns: repeat(2, 1fr); }
  .praise__item--featured { grid-column: span 2; }
}
@media (max-width: 600px) {
  .praise__grid { grid-template-columns: 1fr; }
  .praise__item--featured { grid-column: span 1; }
}

/* ── KAUFOPTIONEN ────────────────────── */
.buy-section { background: var(--c-dark); }
.buy-grid { display: grid; gap: var(--sp-md); margin-top: var(--sp-xl); }
.buy-grid--3 { grid-template-columns: repeat(3, 1fr); }
.buy-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 600px) { .buy-grid--3, .buy-grid--2 { grid-template-columns: 1fr; } }
/* ── BUY-CARDS as proper CTAs ── */
.buy-card { display: flex; flex-direction: column; align-items: stretch; gap: var(--sp-md); padding: var(--sp-xl) var(--sp-lg); text-align: left; text-decoration: none; border-radius: var(--r-lg); border: 1px solid transparent; transition: all var(--dur) var(--ease); position: relative; }
.buy-card__icon { font-size: 28px; margin-bottom: var(--sp-sm); }
.buy-card__action { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-md); font-family: var(--f-display); font-weight: 900; font-size: clamp(22px, 2.6vw, 32px); letter-spacing: -0.005em; line-height: 1; text-transform: uppercase; }
.buy-card__arrow { display: inline-block; font-weight: 700; transition: transform var(--dur) var(--ease); flex-shrink: 0; }
.buy-card:hover .buy-card__arrow { transform: translateX(8px); }
.buy-card__sub { font-family: var(--f-mono); font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.78; }

/* Variant: primary (cyan filled — Amazon, the default path) */
.buy-card--primary { background: var(--c-accent); color: var(--c-accent-ink); border-color: var(--c-accent); }
.buy-card--primary:hover { background: #FFFFFF; box-shadow: 0 0 36px var(--c-accent-glow), 0 14px 32px rgba(0,0,0,0.35); transform: translateY(-3px); }

/* Variant: signal (magenta outline — Thalia, the second path) */
.buy-card--signal { background: transparent; color: var(--c-signal); border-color: var(--c-signal); }
.buy-card--signal:hover { background: var(--c-signal); color: var(--c-accent-ink); box-shadow: 0 0 36px rgba(255,46,136,0.4), 0 14px 32px rgba(0,0,0,0.35); transform: translateY(-3px); }
.buy-card--signal .buy-card__sub { opacity: 0.85; }

/* Legacy fallback for any unconfigured buy-card */
.buy-card:not(.buy-card--primary):not(.buy-card--signal) { background: var(--c-card); border-color: var(--c-line); color: var(--c-fg); }
.buy-card:not(.buy-card--primary):not(.buy-card--signal):hover { border-color: var(--c-line-strong); transform: translateY(-3px); }
.buy-formats { display: flex; justify-content: center; gap: var(--sp-xl); margin-top: var(--sp-xl); flex-wrap: wrap; }
.buy-format { text-align: center; }
.buy-format__icon { width: 56px; height: 56px; margin: 0 auto var(--sp-sm); display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--c-border); }
.buy-format__icon svg { width: 24px; height: 24px; fill: none; stroke: var(--c-silver); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.buy-format__label { font-family: var(--f-display); font-size: 13px; font-weight: 700; color: var(--c-white); letter-spacing: 0.05em; }
.buy-format__status { font-size: var(--ts-small); color: var(--c-muted); margin-top: 2px; }

/* ── EVENTS / TOUR ───────────────────── */
.events-list { max-width: var(--max-w-text); }
.event-item { display: grid; grid-template-columns: 100px 1fr auto; gap: var(--sp-lg); align-items: center; padding: var(--sp-lg) 0; border-bottom: 1px solid var(--c-border); }
.event-item:last-child { border-bottom: none; }
.event-item__date { font-family: var(--f-display); font-size: clamp(14px, 1.4vw, 16px); font-weight: 700; color: var(--c-amber); text-transform: uppercase; letter-spacing: 0.05em; }
.event-item__info {}
.event-item__title { font-family: var(--f-display); font-size: clamp(16px, 1.6vw, 20px); font-weight: 700; color: var(--c-white); }
.event-item__location { font-size: var(--ts-small); color: var(--c-muted); margin-top: 2px; }
.event-item__action { white-space: nowrap; }
.event-item__placeholder { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-faint); background: rgba(255,255,255,0.04); padding: 2px 8px; }
@media (max-width: 600px) {
  .event-item { grid-template-columns: 1fr; gap: var(--sp-sm); }
  .event-item__action { justify-self: start; }
}

/* ── AUTHOR SOCIAL LINKS ─────────────── */
.author-card__links { display: flex; gap: var(--sp-md); margin-top: var(--sp-md); }
.author-card__link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--f-display); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-muted); transition: color var(--dur) var(--ease); }
.author-card__link:hover { color: var(--c-amber); }
.author-card__link svg { width: 16px; height: 16px; fill: currentColor; }
.author-card__credentials { display: flex; flex-wrap: wrap; gap: var(--sp-xs); margin-top: var(--sp-sm); margin-bottom: var(--sp-sm); }
.author-card__credential { display: inline-block; font-family: var(--f-display); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; background: rgba(255,46,136,0.08); color: var(--c-amber); border: 1px solid rgba(255,46,136,0.2); }

/* ── STICKY CTA (floating mini-book) ─────────── */
.sticky-cta { position: fixed; bottom: 24px; right: 24px; z-index: 90; opacity: 0; transform: translateY(20px) scale(0.92); pointer-events: none; transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); display: flex; flex-direction: column; align-items: center; gap: 8px; text-decoration: none; }
.sticky-cta.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.sticky-cta__book { display: block; width: 64px; height: auto; border-radius: 2px; box-shadow: 0 10px 28px rgba(0,0,0,0.6), 0 0 24px rgba(0,229,255,0.35); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.sticky-cta:hover .sticky-cta__book { transform: scale(1.06) rotateY(-6deg); box-shadow: 0 14px 36px rgba(0,0,0,0.7), 0 0 36px rgba(0,229,255,0.6); }
.sticky-cta__label { font-family: var(--f-mono); font-size: 10px; font-weight: 600; color: var(--c-accent); letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; }
@media (max-width: 768px) {
  .sticky-cta { bottom: 16px; right: 16px; }
  .sticky-cta__book { width: 52px; }
}

/* ── BACK TO TOP ─────────────────────── */
.back-to-top { position: fixed; bottom: 24px; left: 24px; z-index: 90; opacity: 0; transform: translateY(20px); pointer-events: none; transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.back-to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.back-to-top__btn { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: var(--c-panel); border: 1px solid var(--c-border); border-radius: 50%; cursor: pointer; transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease); box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.back-to-top__btn:hover { background: var(--c-navy); border-color: var(--c-amber); transform: translateY(-3px); }
.back-to-top__btn svg { width: 20px; height: 20px; fill: none; stroke: var(--c-silver); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke var(--dur) var(--ease); }
.back-to-top__btn:hover svg { stroke: var(--c-amber); }
@media (max-width: 768px) {
  .back-to-top { bottom: 16px; left: 16px; }
}

/* ── SECTION ILLUSTRATION ──────────── */
.section-illustration { margin-top: var(--sp-xl); border: 1px solid var(--c-border); border-radius: 4px; overflow: hidden; background: var(--c-panel); }
.section-illustration img { width: 100%; height: auto; display: block; }
.section-illustration--compact { max-width: 600px; }
.section-illustration__caption { padding: var(--sp-sm) var(--sp-md); font-family: var(--f-display); font-size: var(--ts-small); color: var(--c-muted); letter-spacing: 0.05em; border-top: 1px solid var(--c-border); }

/* ── BLICK INS BUCH GALLERY ────────── */
.gallery { background: var(--c-navy); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.gallery__track { display: flex; gap: var(--sp-md); overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: var(--sp-md) 0; scrollbar-width: thin; scrollbar-color: var(--c-faint) transparent; }
.gallery__track::-webkit-scrollbar { height: 6px; }
.gallery__track::-webkit-scrollbar-track { background: transparent; }
.gallery__track::-webkit-scrollbar-thumb { background: var(--c-faint); border-radius: 3px; }
.gallery__item { flex: 0 0 auto; width: clamp(260px, 35vw, 400px); scroll-snap-align: start; border: 1px solid var(--c-border); border-radius: 4px; overflow: hidden; background: var(--c-panel); transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease); }
.gallery__item:hover { border-color: var(--c-amber); transform: translateY(-2px); }
.gallery__item img { width: 100%; height: auto; display: block; }
.gallery__item-caption { padding: var(--sp-sm) var(--sp-md); font-family: var(--f-display); font-size: var(--ts-small); color: var(--c-muted); letter-spacing: 0.03em; }
@media (max-width: 768px) {
  .gallery__item { width: 80vw; }
}

/* ═══════════════ NEW COMPONENTS — see docs/DESIGN.md ═══════════════ */

/* ── BRAND-MARK (Mono terminal-prefix wordmark) ── */
.brand-mark { display: inline-flex; align-items: center; font-family: var(--f-mono); font-size: 12px; font-weight: 500; letter-spacing: 0.04em; color: var(--c-accent); text-decoration: none; white-space: nowrap; }
.brand-mark::before { content: '›'; margin-right: 6px; color: var(--c-accent); }
.brand-mark--lg { font-size: 14px; }

/* ── CURSOR BLINK ── */
.cursor { display: inline-block; width: 8px; height: 1em; background: var(--c-accent); margin-left: 4px; vertical-align: text-bottom; animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ── NAV-BRAND OVERRIDE (terminal idiom) ── */
.nav__brand { font-family: var(--f-mono); font-size: 13px; font-weight: 500; letter-spacing: 0.04em; color: var(--c-accent); display: inline-flex; align-items: center; gap: 6px; }
.nav__brand::before { content: '›'; color: var(--c-accent); }
.nav__brand span { color: var(--c-fg); }

/* ── ECOSYSTEM STRIP (peer-brand footer block) ── */
.ecosystem { padding: var(--sp-2xl) 0; border-top: 1px solid var(--c-line); }
.ecosystem__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-lg); margin-top: var(--sp-md); }
.ecosystem__item { display: block; padding: var(--sp-lg); background: var(--c-card); border: 1px solid var(--c-line); border-radius: var(--r-lg); text-decoration: none; transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), transform var(--dur) var(--ease); }
.ecosystem__item:hover { background: var(--c-card-2); border-color: var(--c-line-strong); transform: translateY(-2px); }
.ecosystem__item .brand-mark { margin-bottom: var(--sp-sm); }
.ecosystem__item p { font-family: var(--f-body); font-size: 14px; color: var(--c-fg-soft); line-height: 1.6; margin: 0; }
@media (max-width: 768px) { .ecosystem__grid { grid-template-columns: 1fr; } }

/* ── HEADLINE TYPOGRAPHY HARD UPPERCASE ── */
.hero__headline,
.section .container > h1,
.section .container > h2 { text-transform: uppercase; letter-spacing: -0.01em; }

/* ── BODY HARDENING — Inter rendering on dark ── */
body { font-feature-settings: "cv02", "cv03", "cv04", "cv11"; }

/* ═══════════════ BUILDERORG-SPECIFIC ═══════════════ */
/* Publication-mode expression of the shared brand system. */

/* ── HERO (centered, text-led) ── */
.hero--centered { min-height: 88vh; min-height: 88dvh; display: flex; align-items: center; justify-content: center; padding: var(--sp-2xl) var(--gutter); position: relative; overflow: hidden; }
.hero__centered-inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: var(--sp-lg); }
.hero__centered-inner .hero__eyebrow { margin-bottom: 0; }
.hero__headline--mega { font-size: clamp(56px, 10vw, 132px); font-weight: 900; line-height: 0.95; letter-spacing: -0.02em; color: var(--c-fg); text-transform: none; }
.hero__headline--mega::after { content: ''; display: inline-block; width: 0.08em; height: 0.85em; background: var(--c-accent); margin-left: 0.08em; vertical-align: -0.08em; animation: blink 1s steps(2) infinite; box-shadow: 0 0 16px var(--c-accent-glow); }
.hero--centered .hero__sub { max-width: 640px; font-size: clamp(17px, 1.6vw, 21px); color: var(--c-fg-soft); font-weight: 300; line-height: 1.55; margin: 0; }
.btn-group--center { justify-content: center; gap: var(--sp-md); flex-wrap: wrap; }
.hero__attribution { font-family: var(--f-mono); font-size: 11px; color: var(--c-fg-mute); letter-spacing: 0.06em; margin-top: var(--sp-md); }
.hero__voxels { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
@media (max-width: 768px) {
  .hero--centered { min-height: auto; padding: var(--sp-xl) var(--gutter); }
  .hero__headline--mega { font-size: clamp(40px, 12vw, 72px); }
}

/* ── BENTO (asymmetric two-card composition) ── */
.bento { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-lg); margin-top: var(--sp-xl); }
.bento__card { background: var(--c-card); border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: var(--sp-xl); display: flex; flex-direction: column; transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.bento__card:hover { background: var(--c-card-2); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.bento__card--briefing:hover { border-color: var(--c-line-strong); box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 0 1px var(--c-accent-soft); }
.bento__card--circle:hover { border-color: rgba(255,46,136,0.4); box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 0 1px var(--c-signal-soft); }
.bento__tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-accent); margin-bottom: var(--sp-md); }
.bento__tag--signal { color: var(--c-signal); }
.bento__title { font-family: var(--f-display); font-size: clamp(36px, 4vw, 56px); font-weight: 900; line-height: 0.95; letter-spacing: -0.01em; color: var(--c-fg); text-transform: uppercase; margin-bottom: var(--sp-md); }
.bento__desc { font-family: var(--f-body); font-size: 15px; color: var(--c-fg-soft); line-height: 1.6; margin-bottom: var(--sp-lg); }
.bento__facts { list-style: none; margin: 0 0 var(--sp-lg); padding-top: var(--sp-md); border-top: 1px solid var(--c-line); display: flex; flex-direction: column; gap: var(--sp-xs); }
.bento__facts li { display: flex; justify-content: space-between; padding: 6px 0; font-family: var(--f-mono); font-size: 13px; }
.bento__key { color: var(--c-fg-mute); }
.bento__val { color: var(--c-fg); font-weight: 500; }
.bento__action { margin-top: auto; }
.bento__fine { font-family: var(--f-mono); font-size: 11px; color: var(--c-fg-mute); letter-spacing: 0.04em; margin-top: var(--sp-sm); }
@media (max-width: 820px) {
  .bento { grid-template-columns: 1fr; gap: var(--sp-md); }
  .bento__card { padding: var(--sp-lg); }
}

/* ── BUTTON: block (full-width) ── */
.btn--block { display: flex; width: 100%; justify-content: center; }

/* ── FORM FIELDS (for Circle Bewerbung) ── */
.field { display: flex; flex-direction: column; gap: var(--sp-xs); margin-bottom: var(--sp-lg); }
.field__label { font-family: var(--f-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-fg-soft); }
.field__hint { font-family: var(--f-mono); font-size: 11px; color: var(--c-fg-mute); letter-spacing: 0.02em; margin-top: 4px; }
.input--textarea { resize: vertical; min-height: 100px; font-family: var(--f-body); line-height: 1.55; padding: 14px 16px; }
.circle-form .input, .briefing-form .input { background: rgba(0,0,0,0.4); border: 1px solid var(--c-line); color: var(--c-fg); padding: 14px 16px; border-radius: var(--r-md); font-family: var(--f-body); font-size: 15px; outline: none; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.circle-form .input:focus, .briefing-form .input:focus { border-color: var(--c-accent); box-shadow: 0 0 0 3px var(--c-accent-soft); }

/* ── THANKS PAGE — checkmark mark ── */
.thanks__mark { color: var(--c-accent); margin-bottom: var(--sp-md); animation: thanksPop 0.7s var(--ease) both; filter: drop-shadow(0 0 24px var(--c-accent-glow)); }
.thanks__mark svg { display: block; margin: 0 auto; }
.thanks__mark svg path { stroke-dasharray: 60; stroke-dashoffset: 60; animation: thanksDraw 0.6s var(--ease) 0.2s forwards; }
@keyframes thanksPop { from { opacity: 0; transform: scale(0.7); } to { opacity: 1; transform: none; } }
@keyframes thanksDraw { to { stroke-dashoffset: 0; } }

/* ── MODAL (Circle Bewerbung overlay) ── */
.modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: var(--sp-md); }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(6,10,16,0.78); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); animation: modalFade 0.25s var(--ease); cursor: pointer; }
.modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  max-height: calc(100vh - var(--sp-xl));
  overflow-y: auto;
  background: var(--c-card);
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-xl);
  padding: var(--sp-2xl) var(--sp-xl) var(--sp-xl);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px var(--c-accent-soft);
  animation: modalRise 0.32s var(--ease);
}
.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  color: var(--c-fg-soft);
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.modal__close:hover { border-color: var(--c-accent); color: var(--c-accent); background: var(--c-accent-soft); }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalRise { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }

body.modal-open { overflow: hidden; }

@media (max-width: 600px) {
  .modal__panel { padding: var(--sp-xl) var(--sp-lg) var(--sp-lg); border-radius: var(--r-lg); }
  .modal__close { top: 10px; right: 10px; }
}

/* ── ORIGIN block (text + small book) ── */
.origin-grid { display: grid; grid-template-columns: 1fr auto; gap: var(--sp-2xl); align-items: center; }
.origin-book { display: block; width: 220px; perspective: 1400px; }
.origin-book__img { width: 100%; height: auto; display: block; border-radius: 2px; box-shadow: -20px 24px 40px rgba(0,0,0,0.55), -6px 10px 16px rgba(0,0,0,0.4); transform: rotateY(-10deg); transition: transform 0.4s var(--ease); }
.origin-book:hover .origin-book__img { transform: rotateY(-4deg) translateY(-4px); }
@media (max-width: 820px) {
  .origin-grid { grid-template-columns: 1fr; gap: var(--sp-xl); text-align: center; }
  .origin-book { margin: 0 auto; width: 180px; }
  .origin-book__img { transform: rotateY(-6deg); }
}


