/* ==========================================================================
   huhu.Media — concepts-v2
   Fluid CSS, no frameworks. Design tokens first, components second.
   ========================================================================== */

/* ---------- Fonts (lokal, DSGVO-konform) ---------- */
@font-face {
  font-family: 'Archivo Black';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/archivo-black-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/space-grotesk-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/space-grotesk-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/space-grotesk-700.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/ibm-plex-mono-400.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/ibm-plex-mono-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-700.woff2') format('woff2');
}

/* ---------- Tokens ---------- */
:root {
  color-scheme: dark;

  --bg: #0b0713;
  --ink: #f2f2ef;
  --muted: #a99fc2;
  --muted-2: #6d6485;
  --lime: #ccff00;
  --violet: #7c5cff;
  --pink: #ff6ec7;
  --red: #e84c3c;
  --coral: #ff7a5c;

  --surface: rgba(255, 255, 255, .04);
  --surface-violet: linear-gradient(160deg, rgba(124, 92, 255, .16), rgba(255, 255, 255, .04));
  --border: rgba(255, 255, 255, .09);
  --border-strong: rgba(255, 255, 255, .14);

  --font-display: 'Archivo Black', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Fluid type scale */
  --text-xs: clamp(.72rem, .68rem + .2vw, .81rem);
  --text-sm: clamp(.84rem, .8rem + .2vw, .94rem);
  --text-base: clamp(1rem, .95rem + .25vw, 1.19rem);
  --text-lg: clamp(1.06rem, 1rem + .35vw, 1.31rem);
  --text-h3: clamp(1.35rem, 1.15rem + 1vw, 1.7rem);
  --text-h2: clamp(2rem, 1.4rem + 3vw, 3.25rem);
  --text-h1: clamp(2.75rem, 1.6rem + 5.75vw, 6.9rem);
  --text-stat: clamp(1.9rem, 1.5rem + 2vw, 2.6rem);

  /* Fluid space scale */
  --space-2xs: clamp(.375rem, .35rem + .15vw, .5rem);
  --space-xs: clamp(.625rem, .55rem + .3vw, .875rem);
  --space-s: clamp(.875rem, .8rem + .4vw, 1.25rem);
  --space-m: clamp(1.375rem, 1.2rem + .8vw, 2rem);
  --space-l: clamp(2.125rem, 1.8rem + 1.6vw, 3.5rem);
  --space-xl: clamp(3.5rem, 2.8rem + 3.5vw, 6.75rem);

  --gutter: clamp(1.25rem, .75rem + 2.5vw, 3rem);
  --radius: 20px;
  --radius-lg: 28px;
  --pill: 99px;

  --shadow-lime: 0 8px 40px rgba(204, 255, 0, .25);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  overflow-x: clip;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4, p { margin: 0; }

h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.02em;
  text-wrap: balance;
}

h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }

h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-h3);
  line-height: 1.12;
}

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--lime); color: var(--bg); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--lime);
  color: var(--bg);
  padding: .75rem 1.25rem;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

/* ---------- Layout ---------- */
.container {
  width: min(100% - 2 * var(--gutter), 87.5rem);
  margin-inline: auto;
}

.section {
  position: relative;
  z-index: 1;
  padding-block: var(--space-xl) var(--space-l);
}

.section__head { margin-bottom: var(--space-l); }

.section__head--split {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-m);
  flex-wrap: wrap;
}

.eyebrow {
  font-family: var(--font-mono);
  color: var(--lime);
  font-size: var(--text-xs);
  letter-spacing: .04em;
  margin-bottom: var(--space-s);
}

.accent { color: var(--lime); }

.lead {
  color: var(--muted);
  font-size: var(--text-lg);
  line-height: 1.6;
  max-width: 36em;
}

/* Animated gradient word (hero) */
.gradient-word {
  background: linear-gradient(90deg, #e84c3c 0%, #ff7a5c 14%, #ff6ec7 34%, #7c5cff 60%, #ccff00 84%, #e84c3c 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: grad-shift 6s ease infinite;
}

.cursor-blink {
  color: var(--lime);
  animation: blink 1s steps(1) infinite;
}

/* ---------- Ambient background blobs ---------- */
.blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(45px);
}

.blob--violet {
  top: -12.5rem; left: -9rem;
  width: 44rem; height: 44rem;
  background: radial-gradient(circle, rgba(124, 92, 255, .22), transparent 65%);
  animation: blob-a 22s ease-in-out infinite;
}

.blob--lime {
  top: 30%; right: -15rem;
  width: 50rem; height: 50rem;
  background: radial-gradient(circle, rgba(204, 255, 0, .08), transparent 65%);
  animation: blob-b 28s ease-in-out infinite;
}

.blob--pink {
  bottom: -19rem; left: 20%;
  width: 47rem; height: 47rem;
  background: radial-gradient(circle, rgba(255, 110, 199, .12), transparent 65%);
  animation: blob-a 26s ease-in-out infinite reverse;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 7, 19, .75);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-m);
  padding-block: .7rem;
}

.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img, .brand svg { width: clamp(7.5rem, 6rem + 4vw, 11.5rem); height: auto; }

/* Text-Wortmarke (Inter lokal — SVG-Logo lud Fonts nicht) */
.wordmark {
  font-family: 'Inter', var(--font-body);
  font-weight: 300;
  font-size: clamp(1.45rem, 1.2rem + .9vw, 1.95rem);
  letter-spacing: -.01em;
  color: #fff;
  white-space: nowrap;
  line-height: 1;
}

.wordmark strong { font-weight: 700; }

.wordmark__dot { color: var(--red); font-weight: 700; }

.site-footer .wordmark { font-size: 1.15rem; }

/* Offizielles Logo als Bild (identisch zum Marken-Asset) */
.brand-logo {
  display: block;
  height: clamp(1.3rem, 1.1rem + .8vw, 1.65rem);
  width: auto;
}

.site-footer .brand-logo { height: 1.1rem; }

.site-nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.5vw, 2.25rem); }

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: var(--text-base);
  transition: color .2s;
}

.nav-link:hover { color: var(--lime); }

.nav-link[aria-current="page"] {
  color: var(--ink);
  border-bottom: 2px solid var(--lime);
  padding-bottom: .15rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: .9rem .5rem;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 1.9rem;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease-out), width .3s var(--ease-out), background .2s;
}

.nav-toggle__bar + .nav-toggle__bar {
  margin-top: 8px;
  width: 1.15rem;
  margin-left: auto;
}

.nav-toggle:hover .nav-toggle__bar { background: var(--lime); width: 1.9rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: var(--pill);
  text-decoration: none;
  font-weight: 700;
  font-size: var(--text-base);
  padding: clamp(.85rem, .7rem + .6vw, 1.15rem) clamp(1.6rem, 1.3rem + 1.2vw, 2.4rem);
  border: 0;
  cursor: pointer;
  transition: transform .2s, background .2s, border-color .2s, color .2s;
}

.btn--primary {
  background: var(--lime);
  color: var(--bg);
  box-shadow: var(--shadow-lime);
}

.btn--primary:hover { transform: translateY(-3px); }

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--ink);
  font-weight: 400;
}

.btn--ghost:hover { border-color: var(--lime); color: var(--lime); }

.btn--small {
  padding: .6rem 1.4rem;
  font-size: var(--text-sm);
  box-shadow: none;
}

/* ---------- Orbit badge ---------- */
.orbit {
  position: absolute;
  top: clamp(1rem, 4vw, 4.5rem);
  right: var(--gutter);
  width: clamp(7.5rem, 6rem + 8vw, 13.75rem);
  aspect-ratio: 1;
  border: 1px dashed rgba(204, 255, 0, .6);
  border-radius: 50%;
  animation: spin 22s linear infinite;
  pointer-events: none;
}

.orbit svg { width: 100%; height: 100%; }

.orbit text {
  fill: var(--lime);
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 4.5px;
}

.orbit--link {
  pointer-events: auto;
  display: block;
  text-decoration: none;
  transition: filter .25s;
}

.orbit--link:hover {
  animation-play-state: paused;
  filter: drop-shadow(0 0 18px rgba(204, 255, 0, .55));
}

.orbit__center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  color: var(--lime);
  font-size: var(--text-h3);
  animation: spin 22s linear infinite reverse; /* keep center upright */
}

/* ---------- Marquee (seamless) ---------- */
.marquee {
  position: relative;
  z-index: 1;
  background: var(--lime);
  overflow: hidden;
  padding-block: .8rem;
  transform: rotate(-1.2deg);
  margin-block: var(--space-m);
  margin-inline: -1.5rem;
  width: calc(100% + 3rem);
}

.marquee--up { transform: rotate(1.2deg); }

.marquee__track {
  display: flex;
  width: max-content;
  animation: marq 28s linear infinite;
}

.marquee--reverse .marquee__track { animation-direction: reverse; }

.marquee__group {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding-right: 1.75rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, .9rem + .6vw, 1.375rem);
  color: var(--bg);
  white-space: nowrap;
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr));
  gap: var(--space-s);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 1.2rem + 1.4vw, 2.4rem) clamp(1.25rem, 1rem + 1.2vw, 2rem);
  transition: transform .25s, border-color .25s;
}

a.card { text-decoration: none; display: block; }

.card:hover { border-color: var(--lime); transform: translateY(-6px); }

.card--violet {
  background: var(--surface-violet);
  border-color: rgba(124, 92, 255, .35);
}

.card__num {
  font-family: var(--font-mono);
  color: var(--lime);
  font-size: var(--text-xs);
}

.card h3 { margin: var(--space-s) 0 var(--space-xs); }

.card p { color: var(--muted); font-size: var(--text-sm); line-height: 1.65; }

.card__more {
  color: var(--muted);
  font-size: var(--text-sm);
  margin-top: var(--space-s);
}

.card:hover .card__more { color: var(--lime); }

/* ---------- Chips ---------- */
.chip-row {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: var(--space-m);
}

.chip {
  border: 1px solid var(--border-strong);
  padding: .5rem 1rem;
  border-radius: var(--pill);
  font-size: var(--text-sm);
  color: var(--ink);
}

.chip--mono { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--muted); }

.chip--lime {
  background: rgba(204, 255, 0, .12);
  border-color: rgba(204, 255, 0, .4);
  color: var(--lime);
}

/* ---------- Steps (bordered grid) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  overflow: hidden;
}

.step {
  padding: clamp(1.5rem, 1.2rem + 1.2vw, 2.2rem) clamp(1.25rem, 1rem + 1vw, 1.75rem);
  border-right: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  transition: background .25s;
}

.step:hover { background: rgba(204, 255, 0, .05); }

.step__num {
  font-family: var(--font-display);
  color: var(--lime);
  font-size: clamp(2rem, 1.6rem + 1.6vw, 2.75rem);
}

.step__title {
  font-weight: 700;
  font-size: var(--text-lg);
  margin: .75rem 0 .5rem;
}

.step p { color: var(--muted); font-size: var(--text-sm); line-height: 1.55; }

/* ---------- Stats ---------- */
.stats {
  display: flex;
  gap: clamp(1.5rem, 1rem + 3vw, 2.5rem);
  flex-wrap: wrap;
  margin-top: var(--space-l);
}

.stat__num {
  font-family: var(--font-display);
  color: var(--lime);
  font-size: var(--text-stat);
}

.stat__label { color: var(--muted); font-size: var(--text-sm); }

/* ---------- CTA panel ---------- */
.cta-panel {
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 2rem + 4vw, 5rem) clamp(1.5rem, 1rem + 3vw, 3.75rem);
  background: linear-gradient(120deg, rgba(204, 255, 0, .14), rgba(124, 92, 255, .2), rgba(255, 110, 199, .16), rgba(204, 255, 0, .14));
  background-size: 250% 250%;
  animation: grad-shift 9s ease infinite;
  border: 1px solid rgba(255, 255, 255, .12);
  text-align: center;
}

.cta-panel h2 { margin-top: var(--space-s); letter-spacing: -.03em; }

.cta-panel .lead { margin: var(--space-m) auto 0; max-width: 32em; }

.cta-panel__actions {
  display: flex;
  gap: .9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-l);
}

.btn--mail { font-family: var(--font-mono); font-weight: 400; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-block: var(--space-m);
  color: var(--muted-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-m);
  flex-wrap: wrap;
}

.site-footer__brand { display: flex; align-items: center; gap: .9rem; }

.site-footer__brand img, .site-footer__brand svg { width: 6rem; height: auto; }

.site-footer__links { display: flex; gap: 1.25rem; flex-wrap: wrap; }

.site-footer a { color: inherit; text-decoration: none; transition: color .2s; }

.site-footer a:hover { color: var(--lime); }

/* ---------- Accordion (details/summary) ---------- */
.accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  margin-bottom: var(--space-xs);
  overflow: hidden;
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-s);
  padding: clamp(1.1rem, 1rem + .6vw, 1.6rem) clamp(1.25rem, 1rem + 1vw, 2rem);
  font-weight: 700;
  font-size: var(--text-lg);
  transition: color .2s;
}

.accordion summary::-webkit-details-marker { display: none; }

.accordion summary::after {
  content: "+";
  font-family: var(--font-display);
  color: var(--lime);
  font-size: 1.4em;
  line-height: 1;
  transition: rotate .25s var(--ease-out);
}

.accordion[open] summary::after { rotate: 45deg; }

.accordion[open] summary { color: var(--lime); }

.accordion__body {
  padding: 0 clamp(1.25rem, 1rem + 1vw, 2rem) clamp(1.1rem, 1rem + .6vw, 1.6rem);
  color: var(--muted);
  max-width: 60em;
}

.accordion__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--lime);
  border: 1px solid rgba(204, 255, 0, .4);
  border-radius: var(--pill);
  padding: .25rem .8rem;
  margin-bottom: .6rem;
}

/* ---------- Fit-Check (2 columns) ---------- */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: var(--space-s);
}

.fit-col {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: clamp(1.5rem, 1.2rem + 1.4vw, 2.4rem);
}

.fit-col--yes {
  border-color: rgba(204, 255, 0, .4);
  background: rgba(204, 255, 0, .06);
}

.fit-col h3 { margin-bottom: var(--space-s); }

.fit-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .9rem;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.55;
}

.fit-col li { display: flex; gap: .7rem; align-items: baseline; }

.fit-col li::before { content: "✕"; color: var(--muted-2); flex: 0 0 auto; }

.fit-col--yes li::before { content: "✓"; color: var(--lime); }

/* ---------- Forms ---------- */
.field { display: grid; gap: .45rem; }

.field__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--lime);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  color: var(--ink);
  font: inherit;
  padding: .9rem 1.1rem;
  transition: border-color .2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--lime);
}

.field textarea { min-height: 9rem; resize: vertical; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: var(--space-s);
}

.checkbox {
  display: flex;
  gap: .7rem;
  align-items: baseline;
  color: var(--muted);
  font-size: var(--text-sm);
}

.checkbox input { accent-color: var(--lime); }

/* ---------- Tabs ---------- */
.tabs {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--pill);
  background: var(--surface);
  padding: .35rem;
  gap: .35rem;
}

.tab {
  flex: 1;
  border: 0;
  background: none;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  padding: .85rem 1rem;
  border-radius: var(--pill);
  cursor: pointer;
  transition: background .2s, color .2s;
}

.tab[aria-selected="true"] { background: var(--lime); color: var(--bg); }

[role="tabpanel"][hidden] { display: none; }

/* ---------- Filter pills ---------- */
.filter-row { display: flex; gap: .6rem; flex-wrap: wrap; }

.filter-pill {
  border: 1px solid var(--border-strong);
  background: none;
  color: var(--ink);
  font: inherit;
  font-size: var(--text-sm);
  padding: .55rem 1.3rem;
  border-radius: var(--pill);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}

.filter-pill:hover { border-color: var(--lime); }

.filter-pill[aria-pressed="true"] { background: var(--lime); color: var(--bg); border-color: var(--lime); }

/* ---------- Info boxes (Kontakt) ---------- */
.info-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  gap: var(--space-s);
}

.info-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: var(--space-m);
}

.info-box__badge {
  font-family: var(--font-display);
  color: var(--lime);
  font-size: var(--text-stat);
}

.info-box__title { font-weight: 700; margin: .5rem 0 .25rem; }

.info-box p { color: var(--muted); font-size: var(--text-sm); }

/* ---------- Portrait ---------- */
.portrait-frame {
  border: 2px solid var(--lime);
  border-radius: var(--radius);
  rotate: 2deg;
  box-shadow: 0 0 60px rgba(204, 255, 0, .18);
  position: relative;
  animation: floaty 5s ease-in-out infinite;
}

.portrait-frame img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 3px);
}

.portrait-badge {
  position: absolute;
  top: -1.1rem;
  right: -1.4rem;
  z-index: 2;
  rotate: 4deg;
  background: var(--lime);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: var(--text-base);
  padding: .5rem 1.05rem;
  border-radius: 11px;
  border: 2px solid var(--bg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .5), 0 3px 14px rgba(204, 255, 0, .45);
}

/* ---------- Page: hero / about / blog teaser ---------- */
.hero-row {
  display: flex;
  gap: var(--space-l);
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: var(--space-l);
}

.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 23.75rem) 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (max-width: 53.99rem) {
  .about-grid { grid-template-columns: 1fr; gap: var(--space-l); }
  .about-grid .portrait-frame { max-width: 20rem; }
}

.about-lead { margin-top: var(--space-m); }

.card__post-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-lg);
  line-height: 1.35;
  margin-top: .9rem;
  color: var(--ink);
}

.card__date {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--muted-2);
  margin-top: .5rem;
}

/* ---------- Scroll-bold headlines (Signature der Live-Site) ---------- */
h2[data-scroll-bold] {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1.15;
}

h2[data-scroll-bold] .word { display: inline-block; white-space: nowrap; }

h2[data-scroll-bold] .char {
  font-weight: 400;
  color: var(--muted);
  transition: font-weight .15s ease, color .15s ease;
}

h2[data-scroll-bold] .char.bold {
  font-weight: 700;
  color: inherit;
}

/* ---------- Scroll reveal ---------- */
[data-reveal] { transition: opacity .7s var(--ease-out), translate .7s var(--ease-out); }

.reveal-hidden { opacity: 0; translate: 0 34px; }

/* ---------- Animations ---------- */
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes grad-shift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes blob-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(7.5rem, 3.75rem) scale(1.15); }
  66% { transform: translate(-5rem, 7.5rem) scale(.95); }
}
@keyframes blob-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-8.75rem, -5rem) scale(1.2); }
}

/* ---------- Mobile nav (greift bereits ab Tablet-Breite) ---------- */
@media (max-width: 63.99rem) {
  .nav-toggle { display: block; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(11, 7, 19, .97);
    border-bottom: 1px solid var(--border);
    padding: .5rem var(--gutter) 1.25rem;
    display: none;
  }

  .site-nav.is-open { display: flex; }

  .site-nav .nav-link {
    padding: .9rem 0;
    font-size: var(--text-lg);
    border-bottom: 1px solid var(--border);
  }

  .site-nav .nav-link[aria-current="page"] { border-bottom: 1px solid var(--lime); }

  .site-nav .btn { margin-top: 1rem; }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { transform: translateY(-5px) rotate(-45deg); width: 1.9rem; }
}

@media (max-width: 47.99rem) {
  .orbit { display: none; }

  .step { border-right: 0; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal-hidden { opacity: 1; translate: none; }
}
