/* ============================================================
   Founder Platform — Design System v3
   "Deep Space" — product-grade dark UI mit einem Hauch Sci-Fi.
   Tiefes Blau-Schwarz, eisiges Weiß, Space Grotesk als Display,
   ein Sternenlicht-Blau als Akzent, Aurora-Verlauf nur an
   wenigen Stellen. Sterne als Andeutung, nicht als Kostüm.
   Drei Stimmungen: personal, starship (intensiver), corporate (nüchtern).
   ============================================================ */

/* ---- Design tokens ---------------------------------------- */
:root {
  /* color — deep space & starlight */
  --bg:            #06080e;
  --bg-2:          #0b0f17;
  --bg-3:          #111624;
  --line:          rgba(148, 178, 224, 0.10);
  --line-strong:   rgba(148, 178, 224, 0.20);
  --text:          #e8edf6;
  --text-dim:      #98a4ba;
  --text-faint:    #5c6880;
  --accent:        #6fb1ff;   /* starlight blue */
  --accent-bright: #a5cfff;
  --accent-2:      #a78bfa;   /* aurora violet — nur für Verläufe */
  --accent-ink:    #071120;   /* text on accent */
  --accent-glow:   rgba(111, 177, 255, 0.10);
  --danger:        #ff6b6b;

  /* type */
  --font-display: "Space Grotesk", "Inter", -apple-system, sans-serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* layout */
  --maxw: 1180px;
  --maxw-text: 720px;
  --radius: 10px;
  --radius-sm: 8px;

  /* motion */
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
  --dur: 0.3s;
}

/* ---- Reset ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
}

/* fixed atmosphere: cool aurora light from above */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 640px at 42% -14%, rgba(111, 177, 255, 0.08), transparent 62%),
    radial-gradient(900px 620px at 88% -8%, rgba(167, 139, 250, 0.05), transparent 55%),
    var(--bg);
  pointer-events: none;
}

/* starfield canvas (rendered by fx.js — parallax, twinkle) */
.starfield {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

/* ---- Theme: Starship — deeper atmosphere ------------------- */
body.theme-starship::before {
  background:
    radial-gradient(1300px 720px at 60% -16%, rgba(111, 177, 255, 0.12), transparent 60%),
    radial-gradient(1000px 800px at 4% 30%, rgba(167, 139, 250, 0.07), transparent 52%),
    var(--bg);
}

/* ---- Theme: Corporate (Brainova) — neutral graphite, sober -- */
body.theme-corporate {
  --bg:            #0d0f13;
  --bg-2:          #13161c;
  --bg-3:          #191d25;
  --line:          rgba(216, 227, 241, 0.08);
  --line-strong:   rgba(216, 227, 241, 0.17);
  --text:          #e8edf4;
  --text-dim:      #9aa7b8;
  --text-faint:    #5f6a7a;
  --accent:        #8ab4e8;
  --accent-bright: #aecdf5;
  --accent-2:      #8ab4e8;   /* kein Aurora-Verlauf im B2B-Kontext */
  --accent-ink:    #0a1119;
  --accent-glow:   rgba(138, 180, 232, 0.07);
}
body.theme-corporate::before {
  background:
    radial-gradient(1000px 600px at 12% -8%, rgba(138, 180, 232, 0.05), transparent 60%),
    var(--bg);
}
/* keine Sterne im B2B — fx.js überspringt theme-corporate */

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: rgba(111, 177, 255, 0.3); color: #f2f7ff; }
body.theme-corporate ::selection { background: rgba(138, 180, 232, 0.3); color: #f4f8fd; }

/* visible keyboard focus */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---- Layout primitives ------------------------------------ */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding-block: clamp(72px, 10vw, 140px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.divider { height: 1px; background: var(--line); border: 0; }

.prose { max-width: var(--maxw-text); }
.prose p { color: var(--text-dim); margin-block: 1em; }
.prose p:first-child { margin-top: 0; }
.prose strong { color: var(--text); font-weight: 600; }

/* ---- Typography ------------------------------------------- */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
h3, h4 {
  line-height: 1.25;
  letter-spacing: -0.015em;
  font-weight: 600;
}
.display {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.04;
}
.display em, h2 em {
  font-style: normal;
  color: var(--accent-bright);
}
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
.lead { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--text-dim); line-height: 1.55; font-weight: 400; }

/* aurora gradient text — der eine besondere Moment pro Seite */
.cyber-text-gradient {
  background: linear-gradient(94deg, var(--accent) 5%, var(--accent-2) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent); /* fallback */
}

/* mono section index, e.g. "01 / STARSHIP" */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
  flex: 0 0 auto;
}
.text-dim { color: var(--text-dim); }
.text-accent { color: var(--accent); }
.mono { font-family: var(--font-mono); }

/* tech-stack line (sim hero) */
.tag-line {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin-top: 18px;
}
.tag-line .sep { color: var(--accent); opacity: 0.7; margin: 0 0.2em; }

/* hero highlights — short promises under the stack line */
.hero-highlights {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  max-width: 660px;
}
.hero-highlights li {
  display: flex;
  gap: 0.75em;
  align-items: baseline;
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.55;
}
.hero-highlights strong { color: var(--text); font-weight: 600; }
.hero-highlights .hl-arrow {
  color: var(--accent);
  font-family: var(--font-mono);
  flex: 0 0 auto;
}

/* ---- Header / Nav ----------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  border-bottom: 1px solid transparent;
  transition: transform 0.4s var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--bg) 90%, transparent);
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 1.05rem;
  margin-right: auto;
}
.brand .glyph {
  color: var(--accent);
  font-size: 0.95rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  padding: 0;
}
.nav-links a {
  position: relative;
  padding: 8px 12px;
  font-size: 0.92rem;
  color: var(--text-dim);
  transition: color var(--dur) var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 3px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.is-active { color: var(--text); }
.nav-links a.is-active::after { transform: scaleX(1); }

.nav-tools { display: flex; align-items: center; gap: 8px; }
.lang-toggle {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 6px 13px;
  cursor: pointer;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.lang-toggle:hover { color: var(--text); border-color: var(--accent); }
.lang-toggle .on { color: var(--accent); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  width: 40px; height: 40px;
  cursor: pointer;
  color: var(--text);
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; }

/* ---- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: transparent;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.btn:hover {
  border-color: var(--accent);
  color: var(--accent-bright);
}
.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
  color: var(--accent-ink);
  box-shadow: 0 6px 24px -8px var(--accent-glow), 0 2px 10px -2px rgba(0,0,0,0.4);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text-dim);
}
.btn--ghost:hover {
  color: var(--accent-bright);
  border-color: var(--accent);
  background: var(--accent-glow);
}
.btn .arrow { transition: transform var(--dur) var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---- Hero (home) ------------------------------------------ */
.hero {
  position: relative;
  padding-block: clamp(72px, 9vw, 120px) clamp(56px, 7vw, 96px);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg-overlay { display: none; }
.hero .display { max-width: 24ch; }
.hero .lead { max-width: 56ch; margin-top: 24px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.hero-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  margin-top: 44px;
}
.tag {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 13px;
  background: transparent;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  position: relative;
  width: 100%;
}
.hero-text { display: flex; flex-direction: column; }
.hero-image {
  display: flex;
  justify-content: center;
  align-items: start;
  margin-top: 12px;
}
.hero-portrait-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin-inline: auto 0;
}
.hero-glow-blob {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(111, 177, 255, 0.14) 0%, rgba(167, 139, 250, 0.06) 45%, transparent 70%);
  filter: blur(70px);
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
}
.hero-portrait-wrapper .portrait-img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.92) contrast(1.04) brightness(0.98);
  mask-image: linear-gradient(to bottom, black 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 82%, transparent 100%);
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-image { order: -1; }
  .hero-portrait-wrapper { max-width: 210px; margin-inline: auto; }
}

/* ---- Section header --------------------------------------- */
.section-head { margin-bottom: clamp(36px, 5vw, 56px); max-width: 62ch; }
.section-head h2 { margin-top: 18px; }
.section-head p { margin-top: 16px; color: var(--text-dim); }

/* ---- Grid + cards ----------------------------------------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-top: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  overflow: hidden;
}
a.card:hover, .card.is-interactive:hover {
  border-color: var(--line-strong);
  border-top-color: var(--accent);
  background: var(--bg-3);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.7);
}
.card-image-container {
  position: relative;
  margin: -30px -28px 24px;
  overflow: hidden;
  height: 200px;
  border-bottom: 1px solid var(--line);
}
.card-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.04);
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}
.card.is-interactive:hover .card-media-img {
  transform: scale(1.03);
  filter: saturate(1) contrast(1.06);
}
.card h3 { margin-bottom: 10px; }
.card .card-index {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  opacity: 0.85;
}
.card p { color: var(--text-dim); font-size: 0.96rem; }
.card .card-cta {
  margin-top: auto;
  padding-top: 20px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card .card-cta .arrow { transition: transform var(--dur) var(--ease); }
a.card:hover .card-cta .arrow, .card.is-interactive:hover .card-cta .arrow { transform: translateX(3px); }
.card .card-cta .cta-logo {
  height: 14px;
  width: auto;
  opacity: 0.8;
}
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}
.chip {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 10px;
}

/* feature — the two flagship blocks on home */
.feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  position: relative;
}
.feature::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2) 55%, transparent 85%);
  opacity: 0.55;
  z-index: 4;
}
.feature-body { padding: clamp(32px, 4.5vw, 56px); display: flex; flex-direction: column; }
.feature-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.12;
  margin: 16px 0 14px;
}
.feature-body p { color: var(--text-dim); }
.feature-body .hero-cta { margin-top: 30px; }
.feature-visual {
  position: relative;
  min-height: 300px;
  background: var(--bg-3);
  border-left: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05) brightness(0.92);
  transition: all 0.5s var(--ease);
}
.feature:hover .feature-visual img {
  filter: saturate(0.95) contrast(1.08) brightness(1);
  transform: scale(1.015);
}
.viz-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 5;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 2px;
  border-left: 2px solid var(--accent);
  pointer-events: none;
}

.form-status {
  font-size: 0.95rem;
  color: var(--accent);
}
.form-status--error {
  color: #ff9d9d;
}

.hero-note {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--text-dim);
}

/* ---- Cinematic banner (starship page image) ---------------- */
.cyber-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
  aspect-ratio: 16 / 9; /* Cinematic aspect ratio */
}
.cyber-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2) 55%, transparent 85%);
  opacity: 0.6;
  z-index: 4;
}
.cyber-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9) contrast(1.05) saturate(0.88);
  transition: filter 0.5s var(--ease);
}
.cyber-banner:hover .cyber-banner-img {
  filter: brightness(1) contrast(1.07) saturate(0.98);
}
.cyber-grid-overlay { display: none; }
.cyber-banner-hud {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(5, 7, 12, 0.92) 0%, rgba(5, 7, 12, 0.55) 55%, transparent 100%);
  padding: clamp(16px, 3vw, 26px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 4;
  gap: 16px;
  flex-wrap: wrap;
}
.hud-tag {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hud-telemetry {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

/* ---- Domain / capability list ----------------------------- */
.domain-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line); }
.domain {
  padding: 26px 12px;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 22px;
  align-items: baseline;
  transition: background var(--dur) var(--ease);
}
.domain:hover { background: var(--accent-glow); }
.domain:nth-child(odd) { padding-right: 28px; }
.domain:nth-child(even) { padding-left: 28px; border-left: 1px solid var(--line); }
.domain .d-no {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  min-width: 2ch;
  opacity: 0.9;
}
.domain h4 { font-size: 1.06rem; font-weight: 600; }
.domain p { color: var(--text-dim); font-size: 0.92rem; margin-top: 6px; }

/* ---- Timeline --------------------------------------------- */
.timeline { border-left: 1px solid var(--line-strong); padding-left: 30px; display: flex; flex-direction: column; gap: 34px; }
.timeline li { position: relative; list-style: none; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -34px; top: 10px;
  width: 8px; height: 1px;
  background: var(--accent);
}
.timeline .t-when {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.timeline h4 { margin: 6px 0 4px; font-size: 1.12rem; }
.timeline p { color: var(--text-dim); font-size: 0.95rem; }

/* ---- Writing list ----------------------------------------- */
.entry {
  display: block;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: padding var(--dur) var(--ease);
}
.entry:hover { padding-inline: 8px; }
.entry-top { display: flex; gap: 16px; align-items: baseline; flex-wrap: wrap; }
.entry .e-cat { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.entry .e-date { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-faint); margin-left: auto; }
.entry h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; margin: 10px 0 6px; transition: color var(--dur) var(--ease); }
.entry:hover h3 { color: var(--accent-bright); }
.entry p { color: var(--text-dim); font-size: 0.95rem; max-width: 70ch; }

/* ---- Steps ------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 0; border-top: 1px solid var(--line); }
.step {
  display: flex;
  gap: 26px;
  padding: 28px 8px;
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 0.85rem;
  line-height: 2;
}
.step h4 { font-size: 1.12rem; margin-bottom: 6px; }
.step p { color: var(--text-dim); font-size: 0.95rem; }

/* ---- Statement band (CTA) ---------------------------------- */
.band {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background:
    radial-gradient(720px 260px at 50% -30%, var(--accent-glow), transparent 70%);
  padding: clamp(56px, 8vw, 104px) clamp(20px, 4vw, 48px);
  text-align: center;
}
.band h2 { margin-bottom: 18px; }
.band p { color: var(--text-dim); max-width: 56ch; margin-inline: auto; }
.band .hero-cta { justify-content: center; margin-top: 36px; }

/* ---- FAQ -------------------------------------------------- */
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  transition: color var(--dur) var(--ease);
}
.faq summary:hover { color: var(--accent-bright); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.4rem; font-family: var(--font-sans); transition: transform var(--dur) var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--text-dim); padding-bottom: 24px; max-width: 70ch; }

/* ---- Contact ---------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 40px 72px;
  align-items: start;
}
.contact-aside { display: grid; gap: 8px; align-content: start; }
.contact-aside .aside-label { font-size: 0.85rem; color: var(--text-dim); }
@media (max-width: 880px) {
  .contact-layout { grid-template-columns: 1fr; }
}
.contact-card {
  position: relative;
  border: 1px solid var(--line);
  border-top-color: var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg-2);
  padding: 30px;
  transition: border-color var(--dur) var(--ease);
}
.contact-card:hover { border-color: var(--line-strong); border-top-color: var(--accent); }
.contact-card .label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); opacity: 0.85; }
.contact-card .value { font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; margin-top: 10px; }
.contact-card .value a:hover { color: var(--accent-bright); }

.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 0.85rem; color: var(--text-dim); }
.field input, .field textarea, .field select {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--dur) var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 130px; }

/* ---- Page header (sub-pages) ------------------------------ */
.page-head { position: relative; padding-block: clamp(64px, 10vw, 128px) clamp(32px, 4vw, 52px); }
.page-head .display { max-width: 20ch; }
.page-head .lead { margin-top: 24px; max-width: 60ch; }

/* breadcrumb */
.crumbs { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; color: var(--text-faint); margin-bottom: 26px; text-transform: uppercase; }
.crumbs a { color: var(--text-dim); }
.crumbs a:hover { color: var(--accent); }

/* sub-nav (starship) */
.subnav-outer {
  position: sticky;
  top: 68px;
  z-index: 45;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  margin-bottom: 36px;
}
.subnav {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
  justify-content: center;
  padding-block: 2px;
}
.subnav a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 14px;
  color: var(--text-dim);
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.subnav a:hover { color: var(--text); }
.subnav a.is-active { color: var(--accent-bright); border-bottom-color: var(--accent); }

/* anchor offset below sticky header + subnav */
.theme-starship section[id] { scroll-margin-top: 130px; }

/* ---- Hero background media (video: sim page · image: starship page) ---- */
.page-head--hero {
  position: relative;
  overflow: hidden;
  transition: height 0.6s var(--ease), min-height 0.6s var(--ease);
}
.page-head--hero > .container {
  position: relative;
  z-index: 2;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.page-head--hero .hero-video,
.page-head--hero .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.32;
  pointer-events: none;
  filter: saturate(0.85);
  -webkit-mask-image: linear-gradient(to bottom, #000 45%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 45%, transparent 100%);
  transition: opacity 0.6s var(--ease);
}

body.cinema-active .site-header { transform: translateY(-100%); }
.page-head--hero.cinema-mode {
  height: 100vh;
  min-height: 500px;
}
.page-head--hero.cinema-mode > .container {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}
.page-head--hero.cinema-mode .hero-video {
  opacity: 0.9;
  filter: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-video-controls {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  display: flex;
  gap: 10px;
}
.btn-video-ctrl {
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  border: 1px solid var(--line-strong);
  color: var(--text-dim);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--dur) var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-video-ctrl:hover {
  color: var(--accent-bright);
  border-color: var(--accent);
}
.btn-video-ctrl.active {
  color: var(--accent-ink);
  border-color: var(--accent);
  background: var(--accent);
}
@media (max-width: 576px) {
  .hero-video-controls { right: 16px; bottom: 16px; gap: 8px; }
  .btn-video-ctrl { padding: 6px 10px; font-size: 0.68rem; }
}

/* ---- Footer ----------------------------------------------- */
.site-footer { border-top: 1px solid var(--line); margin-top: 48px; background: var(--bg); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; padding-block: 64px; }
.footer-grid h5 { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 18px; }
.footer-grid ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { color: var(--text-dim); font-size: 0.93rem; }
.footer-grid a:hover { color: var(--accent-bright); }
.footer-brand p { color: var(--text-dim); font-size: 0.93rem; margin-top: 16px; max-width: 34ch; }
.footer-creds {
  border-top: 1px solid var(--line);
  padding-block: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-creds p {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--text-faint);
  line-height: 1.8;
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  column-gap: 0.9em;
  align-items: baseline;
}
.footer-creds .creds-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.66rem;
  opacity: 0.85;
}
@media (max-width: 480px) {
  .footer-creds p { grid-template-columns: 1fr; row-gap: 2px; }
}
.footer-bottom { border-top: 1px solid var(--line); padding-block: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.82rem; color: var(--text-faint); }
.footer-bottom .mono { font-family: var(--font-mono); letter-spacing: 0.06em; }
.footer-legal a { color: var(--text-faint); }
.footer-legal a:hover { color: var(--accent); }

/* ---- About page ------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 768px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-hero-image { order: -1; }
}
.about-portrait-wrapper {
  position: relative;
  width: 100%;
  max-width: 280px;
  margin-inline: auto;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  filter: saturate(0.92) contrast(1.04) brightness(0.98);
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

/* ---- Utilities -------------------------------------------- */
.stack-sm > * + * { margin-top: 14px; }
.mt-0 { margin-top: 0; }
.center { text-align: center; }
[hidden] { display: none !important; }

/* reveal on scroll (progressive enhancement) */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.js-off .reveal { opacity: 1; transform: none; }

/* no-op legacy hooks (kept so old markup stays valid) */
.glitch-hover, .glitch-onload { animation: none; }

/* ---- Responsive ------------------------------------------- */
@media (max-width: 900px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .feature { grid-template-columns: 1fr; }
  .feature-visual { min-height: 220px; border-left: 0; border-top: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav-links, .nav .desktop-only { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links.is-open {
    display: flex;
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.is-open a { padding: 12px 14px; }
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .domain-list { grid-template-columns: 1fr; }
  .domain:nth-child(even) { padding-left: 4px; border-left: 0; }
  .domain:nth-child(odd) { padding-right: 4px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Case-Study Drawer
   ============================================================ */
.project-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 650px;
  height: 100vh;
  z-index: 2000;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
}
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 10, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: -1;
}
.drawer-content {
  width: 100%;
  height: 100%;
  background: var(--bg-2);
  border-left: 1px solid var(--line-strong);
  padding: 44px;
  overflow-y: auto;
  pointer-events: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -14px 0 44px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}
.project-drawer.is-open { pointer-events: auto; }
.project-drawer.is-open .drawer-overlay { opacity: 1; pointer-events: auto; }
.project-drawer.is-open .drawer-content { transform: translateX(0); }

.drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  color: var(--text-dim);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  z-index: 10;
}
.drawer-close:hover {
  border-color: var(--accent);
  color: var(--accent-bright);
  transform: rotate(90deg);
}
.drawer-close svg { width: 18px; height: 18px; }

.drawer-body h4 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 10px 0 24px;
  color: var(--text);
  line-height: 1.15;
}
.drawer-body h5 {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  margin: 30px 0 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.drawer-body p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.drawer-meta { margin-bottom: 20px; }
.drawer-visual {
  margin: 24px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  position: relative;
  background: var(--bg-3);
}
.drawer-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.drawer-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.drawer-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.drawer-video-caption {
  margin: 0;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-dim);
  border-top: 1px solid var(--line);
  background: var(--bg-3);
}
@media (max-width: 768px) {
  .drawer-content { padding: 24px; padding-top: 64px; }
}

.card.is-clickable { cursor: pointer; }

/* video preview thumbnails on cards */
.card-video-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.card-video-thumbs .card-video-thumb { margin-top: 0; flex: 1 1 45%; min-width: 0; }
.card-video-thumb {
  display: block;
  position: relative;
  width: 100%;
  margin-top: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  line-height: 0;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card-video-thumb:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.card-video-thumb img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; display: block; filter: saturate(0.85); }

/* bottom-align card media: text stays top, videos/thumbs stick to the card bottom
   so they line up across equally tall cards */
.card > .card-media-video,
.card > .card-video-thumbs,
.card > .card-video-thumb {
  margin-top: auto;
}
/* auto margin can shrink to 0 on the tallest card — guarantee a minimum gap via the preceding element */
.card > p:has(+ .card-media-video),
.card > p:has(+ .card-video-thumbs),
.card > p:has(+ .card-video-thumb),
.card > .card-meta:has(+ .card-media-video),
.card > .card-meta:has(+ .card-video-thumbs),
.card > .card-meta:has(+ .card-video-thumb) {
  margin-bottom: 18px;
}
/* keep the CTA directly under bottom-aligned media instead of splitting the free space */
.card > .card-media-video ~ .card-cta,
.card > .card-video-thumbs ~ .card-cta,
.card > .card-video-thumb ~ .card-cta {
  margin-top: 0;
}
/* cards whose media has no CTA below it: reserve the CTA row's height (same font metrics
   + padding) so their media lines up with media on neighboring CTA-cards */
.card:has(> .card-media-video:last-child)::before,
.card:has(> .card-video-thumbs:last-child)::before,
.card:has(> .card-video-thumb:last-child)::before {
  content: "\00a0";
  order: 1;
  padding-top: 20px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  pointer-events: none;
}
.card-media-video {
  display: block;
  width: 100%;
  margin-top: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: #000;
}
/* portrait videos (phone captures): keep the natural aspect ratio, cap the height
   and center them like a phone screen instead of stretching to card width */
.card-media-video--portrait {
  width: auto;
  max-width: 100%;
  max-height: 420px;
  margin-inline: auto;
}
.card-video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 7, 12, 0.65);
  border: 1px solid rgba(220, 233, 255, 0.25);
  border-radius: 50%;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.card-video-thumb:hover .card-video-play {
  background: var(--accent);
  border-color: var(--accent);
}
.card-video-play::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}
.card-video-thumb:hover .card-video-play::before {
  border-left-color: var(--accent-ink);
}

/* ============================================================
   Console widget (contact page easter egg)
   ============================================================ */
.terminal-header {
  background: var(--bg-2);
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
}
.terminal-title {
  color: var(--text-faint);
  font-size: 0.74rem;
  margin-left: 8px;
  letter-spacing: 0.06em;
}
.terminal-body {
  padding: 20px;
  height: 320px;
  display: flex;
  flex-direction: column;
}
/* ============================================================
   Engine dossier (starship-sim feature overview)
   ============================================================ */
.system-terminal {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-top: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 32px;
}
.system-terminal .terminal-header {
  background: transparent;
  border-bottom: 1px solid var(--line-strong);
  padding: 18px 26px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 768px) {
  .system-terminal .terminal-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.system-terminal .terminal-title {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}
.terminal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}
.terminal-tab-btn {
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--text-dim);
  padding: 10px 14px 14px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  margin-bottom: -1px;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.terminal-tab-btn:hover { color: var(--text); }
.terminal-tab-btn.active {
  color: var(--accent-bright);
  border-bottom-color: var(--accent);
}
.system-terminal .terminal-body {
  padding: 26px;
  height: auto;
  min-height: 280px;
  display: block;
  position: relative;
  transition: opacity 0.2s var(--ease);
}

.terminal-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
  margin-bottom: 26px;
}
.terminal-meta-item { font-family: var(--font-mono); font-size: 0.72rem; }
.terminal-meta-label {
  color: var(--text-faint);
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.06em;
}
.terminal-meta-value { color: var(--text); font-weight: 500; }
.terminal-meta-value.online { color: var(--accent-bright); }

.terminal-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px) {
  .terminal-features-grid { grid-template-columns: 1fr 1fr; }
}
.terminal-feature-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.terminal-feature-card:hover {
  background: var(--accent-glow);
  border-color: var(--line-strong);
}
.terminal-feature-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  font-family: var(--font-sans);
}
.terminal-feature-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.55;
}
.terminal-feature-card .tech-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-top: 14px;
  align-self: flex-start;
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

/* ============================================================
   Delight-Schicht (fx.js)
   ============================================================ */

/* Spotlight: Lichtschein folgt der Maus innerhalb der Karte */
@media (hover: hover) and (pointer: fine) {
  .card::after,
  .contact-card::after,
  .feature::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(300px circle at var(--mx, 50%) var(--my, 50%), var(--accent-glow), transparent 70%);
    opacity: 0;
    transition: opacity 0.35s var(--ease);
    pointer-events: none;
    z-index: 1;
  }
  .card:hover::after,
  .contact-card:hover::after,
  .feature:hover::after { opacity: 1; }
}

/* NAV-Telemetrie im STARSHIP-Hero (injiziert von fx.js) */
.nav-readout {
  position: absolute;
  right: 26px;
  bottom: 20px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: var(--text-faint);
  user-select: none;
  pointer-events: none;
}
.nav-readout .ok {
  color: var(--accent);
  animation: readout-pulse 2.6s ease-in-out infinite;
}
@keyframes readout-pulse { 50% { opacity: 0.5; } }
@media (max-width: 900px) { .nav-readout { display: none; } }
