:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.84);
  --panel-soft: rgba(15, 23, 42, 0.58);
  --line: rgba(148, 163, 184, 0.22);
  --line-strong: rgba(34, 211, 238, 0.42);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --cyan: #22d3ee;
  --teal: #14b8a6;
  --green: #22c55e;
  --gold: #fbbf24;
  --rose: #fb7185;
  --blue: #60a5fa;
  --indigo: #818cf8;
  --patch-red: #ef4444;
  --patch-gold: #f59e0b;
  --patch-ink: #0f172a;
  --patch-asset: url("../assets/malicious-compliance-rebels-follow-rules-patch-transparent.png");
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(34, 211, 238, 0.16), transparent 34rem),
    radial-gradient(circle at 86% 22%, rgba(239, 68, 68, 0.09), transparent 24rem),
    linear-gradient(180deg, #020617 0%, #050816 48%, #020617 100%);
  /* Keep decorative paint bounded even on pages with very tall screenshots. */
  background-color: var(--bg);
  background-size: 100% 68rem;
  background-repeat: no-repeat;
  color: var(--text);
}

body::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 68rem;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 76%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  align-items: center;
  gap: 2px 12px;
  padding: 2px 12px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.brand-mark {
  grid-column: 1;
  grid-row: 1;
  flex: 0 0 auto;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-glyph {
  display: inline-grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, 0.44);
  border-radius: var(--radius);
  background: rgba(8, 47, 73, 0.52);
  color: var(--cyan);
  font-weight: 900;
}

.brand-mark strong {
  display: block;
  color: var(--cyan);
  font-size: 1.22rem;
  line-height: 1;
  font-weight: 900;
  font-style: italic;
}

.brand-mark small {
  display: block;
  margin-top: 0.22rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: none;
}

.brand-patch {
  display: block;
  width: 2.55rem;
  height: 2.55rem;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(34, 211, 238, 0.2));
}

.site-nav {
  grid-column: 2;
  grid-row: 1;
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  gap: 0 0.125rem;
}

.site-nav a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1px 4px;
  color: var(--muted-strong);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1rem;
  white-space: nowrap;
  text-transform: none;
}

.site-nav-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-nav-menu > summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 1px 4px;
  color: var(--muted-strong);
  cursor: pointer;
  font: inherit;
  line-height: 1rem;
  white-space: nowrap;
  list-style: none;
}

.site-nav-menu > summary::-webkit-details-marker { display: none; }

.site-nav-menu > summary::after {
  content: "⌄";
  color: var(--cyan);
  font-size: 0.7em;
  line-height: 1;
}

.site-nav-menu[open] > summary,
.site-nav-menu > summary:hover,
.site-nav-menu > summary:focus-visible {
  border-color: var(--line-strong);
  color: white;
  outline: none;
}

.site-nav-menu-panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 40;
  display: grid;
  min-width: 13rem;
  gap: 0.15rem;
  padding: 0.35rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(2, 6, 23, 0.98);
  box-shadow: var(--shadow);
}

.site-nav-menu-panel a {
  position: static;
  display: block;
  overflow: visible;
  padding: 0.45rem 0.55rem;
  border: 1px solid transparent;
  border-radius: calc(var(--radius) - 2px);
  color: var(--muted-strong);
  font: inherit;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
  text-transform: none;
}

.site-nav-menu-panel a::after { display: none; }

.site-nav-menu-panel a:hover,
.site-nav-menu-panel a:focus-visible {
  border-color: var(--line-strong);
  color: white;
  outline: none;
  background: rgba(34, 211, 238, 0.08);
}

.site-header-meta {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1rem;
}

.site-project-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.site-project-links a,
.site-version {
  font: inherit;
  white-space: nowrap;
}

.site-project-links a:hover,
.site-project-links a:focus-visible {
  color: var(--cyan);
  text-decoration: underline;
}

.site-version {
  display: inline-grid;
  grid-template-columns: 19px auto;
  grid-template-rows: 12px 12px;
  align-items: center;
  column-gap: 6px;
  padding-left: 10px;
  border-left: 1px solid rgba(40, 214, 198, 0.34);
  text-decoration: none;
}

.site-version img {
  grid-row: 1 / span 2;
  width: 19px;
  height: 19px;
}

.site-version-name {
  color: #eef8f9;
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
}

.site-version small {
  color: #7faab2;
  font-size: 10px;
  font-weight: 400;
  line-height: 12px;
}

.site-version:focus-visible {
  outline: 1px solid var(--cyan);
  outline-offset: 3px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: 0.18rem;
  z-index: -1;
  border-radius: calc(var(--radius) - 2px);
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.09), rgba(239, 68, 68, 0.05)),
    var(--patch-asset) center / contain no-repeat;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--line-strong);
  color: white;
  outline: none;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 0.14;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.44fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  min-height: 74vh;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 7rem) clamp(1rem, 5vw, 5.5rem) 7rem;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.78) 44%, rgba(2, 6, 23, 0.3) 100%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.92)),
    url("../assets/azubi42_login_intro_v27_2_43_poster.jpg");
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 42%;
  background: linear-gradient(180deg, transparent, #020617);
}

.hero-copy {
  align-self: center;
  width: min(820px, calc(100% - 2rem));
  margin-left: 0;
  padding: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.7rem;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: white;
  font-size: 4rem;
  line-height: 0.94;
  font-weight: 950;
}

.hero-lead {
  max-width: 660px;
  margin: 1.25rem 0 0;
  color: var(--muted-strong);
  font-size: 1.18rem;
  line-height: 1.7;
}

.mission-quote {
  display: grid;
  gap: 0.35rem;
  max-width: 620px;
  margin: 1.45rem 0 0;
  border-left: 4px solid var(--patch-red);
  padding: 0.2rem 0 0.2rem 0.9rem;
  color: var(--text);
}

.mission-quote span {
  color: var(--patch-gold);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mission-quote strong {
  display: block;
  color: white;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.2;
}

.mission-quote strong span {
  display: block;
}

.mission-quote em {
  display: block;
  max-width: 34rem;
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.45;
}

.hero-actions,
.connect-actions,
.section-actions,
.story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 1.7rem;
}

.hero-patch {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 0;
  width: clamp(260px, 32vw, 440px);
  margin: 0;
  justify-self: center;
  min-width: 0;
  isolation: isolate;
}

.hero-patch-primary {
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.hero-patch img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.56)) drop-shadow(0 0 24px rgba(34, 211, 238, 0.18));
}

.hero-patch figcaption {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 7.5%;
  z-index: 2;
  display: grid;
  gap: 0.25rem;
  width: auto;
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: var(--radius);
  padding: clamp(0.52rem, 1.5vw, 0.72rem);
  background: rgba(2, 6, 23, 0.54);
  color: var(--muted-strong);
  font-size: clamp(0.58rem, 1.1vw, 0.68rem);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  white-space: normal;
}

.hero-patch figcaption span {
  color: var(--patch-gold);
}

.hero-patch figcaption strong {
  color: white;
  font-size: clamp(0.72rem, 1.55vw, 0.84rem);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  background: rgba(15, 23, 42, 0.72);
  color: white;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.action:hover,
.action:focus-visible {
  border-color: var(--line-strong);
  outline: none;
}

.action-primary {
  border-color: rgba(34, 211, 238, 0.5);
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.9), rgba(20, 184, 166, 0.82));
}

.action-kristall {
  gap: 0.48rem;
  border-color: rgba(215, 255, 63, 0.58);
  background:
    linear-gradient(135deg, rgba(10, 24, 20, 0.96), rgba(42, 67, 28, 0.9));
  box-shadow: inset 0 0 22px rgba(215, 255, 63, 0.08);
}

.action-kristall-original {
  border-color: rgba(255, 255, 255, 0.62);
  background: #f8fafc;
  color: #111827;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.1);
}

.action-kristall-original:hover,
.action-kristall-original:focus-visible {
  border-color: white;
  background: white;
}

.action-gem {
  color: #d7ff3f;
  font-size: 1.2rem;
  line-height: 1;
  filter: drop-shadow(0 0 5px rgba(215, 255, 63, 0.72));
}

button.action {
  font: inherit;
  cursor: pointer;
}

.action[disabled],
.action[aria-disabled="true"] {
  border-color: rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.42);
  color: rgba(203, 213, 225, 0.58);
  cursor: not-allowed;
}

.public-tools-section {
  border: 1px solid rgba(34, 211, 238, 0.18);
  background:
    radial-gradient(circle at 12% 10%, rgba(34, 211, 238, 0.13), transparent 28%),
    linear-gradient(135deg, rgba(8, 47, 73, 0.22), rgba(15, 23, 42, 0.82));
}

.public-tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11.5rem, 1fr));
  gap: 0.8rem;
}

.public-generator-card {
  position: relative;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.6fr) minmax(18rem, 0.84fr);
  min-height: 20rem;
  overflow: hidden;
  border: 1px solid rgba(94, 234, 212, 0.38);
  border-radius: calc(var(--radius) + 0.35rem);
  background:
    radial-gradient(circle at 82% 18%, rgba(124, 58, 237, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(3, 18, 31, 0.96), rgba(6, 27, 38, 0.94));
  box-shadow: 0 1.2rem 3rem rgba(2, 6, 23, 0.48), inset 0 0 2.5rem rgba(45, 212, 191, 0.05);
  color: #f8fafc;
  text-decoration: none;
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.public-generator-card:hover,
.public-generator-card:focus-visible {
  transform: translateY(-0.18rem);
  border-color: rgba(94, 234, 212, 0.78);
  outline: none;
  box-shadow: 0 1.4rem 3.4rem rgba(2, 6, 23, 0.58), 0 0 2.4rem rgba(45, 212, 191, 0.16);
}

.public-generator-media {
  position: relative;
  min-width: 0;
  min-height: 20rem;
  margin: 0;
  overflow: hidden;
  background: #020712;
}

.public-generator-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 62%, rgba(3, 18, 31, 0.9) 100%);
  content: '';
  pointer-events: none;
}

.public-generator-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms ease, filter 180ms ease;
}

.public-generator-card:hover .public-generator-media img,
.public-generator-card:focus-visible .public-generator-media img {
  transform: scale(1.025);
  filter: saturate(1.08) brightness(1.05);
}

.public-generator-copy {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 0.82rem;
  min-width: 0;
  padding: clamp(1.25rem, 3vw, 2.35rem);
}

.public-generator-kicker {
  border: 1px solid rgba(94, 234, 212, 0.42);
  border-radius: 999px;
  padding: 0.32rem 0.62rem;
  background: rgba(13, 148, 136, 0.12);
  color: #99f6e4;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.public-generator-copy > strong {
  max-width: 16ch;
  font-size: clamp(1.45rem, 2.25vw, 2.2rem);
  line-height: 1.04;
}

.public-generator-copy p {
  max-width: 42rem;
  margin: 0;
  color: rgba(226, 232, 240, 0.82);
  font-size: 0.9rem;
  line-height: 1.55;
}

.public-generator-themes {
  color: rgba(165, 243, 252, 0.76);
  font-size: 0.72rem;
  font-weight: 760;
  line-height: 1.45;
}

.public-generator-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.18rem;
  border-radius: 999px;
  padding: 0.65rem 0.88rem;
  background: linear-gradient(135deg, #5eead4, #22d3ee);
  box-shadow: 0 0.75rem 1.8rem rgba(34, 211, 238, 0.18);
  color: #03222a;
  font-size: 0.78rem;
  font-weight: 950;
}

.public-tool-button {
  display: grid;
  gap: 0.42rem;
  min-height: 9.5rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: var(--radius);
  padding: 1rem;
  background: rgba(2, 6, 23, 0.58);
  color: white;
  text-align: left;
  cursor: pointer;
}

.public-tool-link {
  text-decoration: none;
}

.public-tool-redaction {
  border-color: rgba(52, 211, 153, 0.34);
}

.public-tool-button.public-tool-redaction span {
  border-color: rgba(52, 211, 153, 0.42);
  color: #6ee7b7;
}

.public-tool-button.public-tool-redaction:hover,
.public-tool-button.public-tool-redaction:focus-visible {
  border-color: rgba(52, 211, 153, 0.74);
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.24), rgba(15, 23, 42, 0.8));
}

.public-tool-button span {
  width: max-content;
  border: 1px solid rgba(34, 211, 238, 0.32);
  border-radius: 999px;
  padding: 0.25rem 0.48rem;
  color: var(--cyan);
  font-size: 0.64rem;
  font-weight: 950;
  text-transform: uppercase;
}

.public-tool-button strong {
  font-size: 1.05rem;
  line-height: 1.25;
}

.public-tool-button em {
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.45;
}

.public-tool-button:hover,
.public-tool-button:focus-visible,
.public-tool-button[aria-pressed="true"] {
  border-color: rgba(34, 211, 238, 0.72);
  outline: none;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.26), rgba(15, 23, 42, 0.8));
}

.public-action-status {
  min-height: 2.4rem;
  margin-top: 0.9rem;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: var(--radius);
  padding: 0.7rem 0.85rem;
  background: rgba(2, 6, 23, 0.55);
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 750;
}

.public-action-panel {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.65rem;
  border: 1px solid rgba(245, 158, 11, 0.24);
  border-radius: var(--radius);
  padding: 0.85rem;
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.1), transparent 70%),
    rgba(2, 6, 23, 0.5);
}

.public-action-panel strong {
  color: white;
  font-size: 0.9rem;
}

.public-action-panel span {
  color: var(--muted-strong);
  font-size: 0.78rem;
  line-height: 1.55;
}

.public-action-box {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: var(--radius);
  padding: 1rem;
  background:
    radial-gradient(circle at 100% 0, rgba(34, 211, 238, 0.1), transparent 34%),
    rgba(15, 23, 42, 0.72);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.public-action-box-donation {
  border-color: rgba(245, 158, 11, 0.26);
  background:
    radial-gradient(circle at 100% 0, rgba(245, 158, 11, 0.12), transparent 34%),
    rgba(15, 23, 42, 0.72);
}

.action-box-head {
  display: grid;
  gap: 0.35rem;
}

.action-box-head span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.action-box-head h3 {
  margin: 0;
  color: white;
  font-size: 1.1rem;
}

.public-method-grid,
.whistle-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.public-method-card {
  display: grid;
  gap: 0.5rem;
  min-height: 8rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: var(--radius);
  padding: 0.85rem;
  background: rgba(2, 6, 23, 0.48);
}

.public-method-card strong {
  color: white;
}

.public-method-card span,
.public-method-card code {
  color: var(--muted-strong);
  font-size: 0.78rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.public-method-card code {
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: 0.45rem;
  padding: 0.28rem 0.4rem;
  background: rgba(8, 47, 73, 0.36);
}

.public-method-card[aria-disabled="true"] {
  opacity: 0.72;
}

.public-action-list {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.public-action-list li,
.public-action-list span {
  border-left: 3px solid rgba(34, 211, 238, 0.45);
  padding: 0.18rem 0 0.18rem 0.58rem;
  color: var(--muted-strong);
  font-size: 0.78rem;
  line-height: 1.55;
}

.whistle-portal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.whistle-portal-card {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  min-height: 10.4rem;
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: var(--radius);
  padding: 0.9rem;
  background:
    linear-gradient(145deg, rgba(14, 165, 233, 0.1), transparent 70%),
    rgba(2, 6, 23, 0.58);
}

.whistle-portal-card span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 950;
  line-height: 1.35;
  text-transform: uppercase;
}

.whistle-portal-card strong {
  color: white;
  font-size: 0.98rem;
}

.whistle-portal-card p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.78rem;
  line-height: 1.55;
}

.whistle-form {
  border-color: rgba(251, 113, 133, 0.26);
  background:
    radial-gradient(circle at 100% 0, rgba(251, 113, 133, 0.11), transparent 34%),
    rgba(15, 23, 42, 0.72);
}

.whistle-form label {
  display: grid;
  gap: 0.4rem;
}

.whistle-form label span {
  color: var(--muted-strong);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.whistle-form input,
.whistle-form textarea,
.whistle-form select {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 0.55rem;
  padding: 0.7rem 0.78rem;
  background: rgba(2, 6, 23, 0.74);
  color: white;
  font: inherit;
  font-size: 0.84rem;
}

.whistle-form textarea {
  resize: vertical;
}

.whistle-form input:focus,
.whistle-form textarea:focus,
.whistle-form select:focus {
  border-color: rgba(34, 211, 238, 0.72);
  outline: none;
}

.whistle-field-wide {
  grid-column: 1 / -1;
}

.whistle-second-line-option {
  display: flex !important;
  align-items: flex-start;
  gap: 0.65rem !important;
  border: 1px solid rgba(251, 113, 133, 0.24);
  border-radius: var(--radius);
  padding: 0.75rem 0.85rem;
  background: rgba(127, 29, 29, 0.18);
}

.whistle-second-line-option input {
  width: 1rem !important;
  min-width: 1rem !important;
  height: 1rem;
  margin-top: 0.1rem;
  accent-color: var(--cyan);
}

.whistle-second-line-option span {
  color: var(--muted-strong) !important;
  font-size: 0.78rem !important;
  font-weight: 750 !important;
  line-height: 1.5;
  text-transform: none !important;
}

.hero-strip {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  bottom: 1.25rem;
  left: clamp(1rem, 4vw, 4rem);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.5rem;
}

.hero-strip a {
  display: block;
  min-height: 3rem;
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: var(--radius);
  padding: 0.9rem;
  background: rgba(2, 6, 23, 0.74);
  color: var(--muted-strong);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-strip a:hover,
.hero-strip a:focus-visible {
  border-color: var(--line-strong);
  color: white;
  outline: none;
}

.section {
  position: relative;
  width: min(1440px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4.5rem 0;
}

.section h2 {
  margin: 0;
  color: white;
  font-size: 2.2rem;
  line-height: 1.08;
}

.section p {
  color: var(--muted-strong);
  line-height: 1.75;
}

.origin-story-band {
  padding-block: 3.2rem;
  border-bottom: 1px solid var(--line);
}

.origin-story-shell {
  display: block;
  max-width: min(1280px, 100%);
  margin-inline: auto;
}

.origin-story-copy {
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(8, 47, 73, 0.32), rgba(15, 23, 42, 0.7)),
    rgba(15, 23, 42, 0.7);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.origin-story-copy {
  min-width: 0;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.origin-story-copy h2 {
  max-width: 920px;
}

.origin-story-short {
  max-width: 980px;
  margin: 1rem 0 0;
  font-size: 1.02rem;
}

.origin-story-details {
  min-width: 0;
  margin-top: 1rem;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.origin-story-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  min-height: 3.5rem;
  cursor: pointer;
  list-style: none;
  border: 1px solid rgba(245, 158, 11, 0.24);
  border-radius: var(--radius);
  padding: 0.85rem 0.95rem;
  background: rgba(2, 6, 23, 0.46);
  color: white;
  font-weight: 900;
  text-transform: uppercase;
}

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

.origin-story-details summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.origin-story-details summary strong {
  flex: 0 0 auto;
  border: 1px solid rgba(34, 211, 238, 0.36);
  border-radius: 999px;
  padding: 0.34rem 0.58rem;
  color: var(--cyan);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.origin-story-details[open] summary strong {
  color: var(--gold);
}

.origin-story-details[open] summary strong::before {
  content: "schließen";
}

.origin-story-details[open] summary strong {
  font-size: 0;
}

.origin-story-details[open] summary strong::before {
  font-size: 0.68rem;
}

.origin-story-long {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.85rem 0 0.1rem;
}

.origin-story-long p {
  margin: 0;
  border-left: 3px solid rgba(34, 211, 238, 0.32);
  border-radius: calc(var(--radius) - 2px);
  padding: 0.8rem 0.85rem;
  background: rgba(2, 6, 23, 0.42);
  color: var(--muted-strong);
  font-size: 0.95rem;
}

.mission-band {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.mission-patch-frame {
  display: grid;
  justify-items: center;
  gap: 0.7rem;
}

.mission-patch-frame img {
  display: block;
  width: min(260px, 70vw);
  height: auto;
  filter: drop-shadow(0 24px 54px rgba(0, 0, 0, 0.52)) drop-shadow(0 0 26px rgba(245, 158, 11, 0.16));
}

.mission-patch-frame span {
  color: var(--patch-gold);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mission-copy p {
  max-width: 880px;
}

.mission-subline {
  margin: -0.2rem 0 0.9rem;
  color: var(--patch-gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mission-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.mission-principles span {
  border: 1px solid rgba(245, 158, 11, 0.24);
  border-radius: var(--radius);
  padding: 0.78rem;
  background:
    linear-gradient(135deg, rgba(239, 68, 68, 0.1), transparent 70%),
    rgba(15, 23, 42, 0.62);
  color: var(--muted-strong);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) repeat(2, minmax(240px, 1fr));
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.intro-actions .action {
  flex: 1 1 180px;
  min-height: 44px;
}

.enterprise-guard-section {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 20%, rgba(96, 165, 250, 0.12), transparent 30rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.72), rgba(2, 6, 23, 0.94));
}

.enterprise-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.enterprise-card {
  display: grid;
  gap: 0.55rem;
  min-height: 100%;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: var(--radius);
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(129, 140, 248, 0.06)),
    rgba(15, 23, 42, 0.7);
}

.enterprise-card span {
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.enterprise-card h3 {
  margin: 0;
  color: white;
  font-size: 1rem;
}

.enterprise-card p {
  margin: 0;
}

.enterprise-card .enterprise-card-pronunciation {
  color: #a5f3fc;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.enterprise-card-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.enterprise-card-link:hover,
.enterprise-card-link:focus-visible {
  border-color: rgba(215, 255, 63, 0.72);
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.14), rgba(215, 255, 63, 0.08)),
    rgba(15, 23, 42, 0.84);
  transform: translateY(-2px);
  outline: 2px solid rgba(215, 255, 63, 0.46);
  outline-offset: 3px;
}

.enterprise-card-kristall-main {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
  margin: -0.25rem;
  padding: 0.25rem;
  border: 1px solid transparent;
  border-radius: 10px;
}

.enterprise-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: auto;
}

.enterprise-card-preview {
  display: grid;
  gap: 0;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(215, 255, 63, 0.52);
  border-radius: 12px;
  background: #091310;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.42);
}

.enterprise-card-preview > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.enterprise-card-preview figcaption {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.6rem;
  color: #d9f99d;
  background: rgba(9, 19, 16, 0.96);
  font-size: 0.67rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.enterprise-card-logo {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border: 1px solid rgba(215, 255, 63, 0.45);
  border-radius: 6px;
  object-fit: cover;
}

.enterprise-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 44px;
  margin-top: auto;
  padding: 0.65rem 0.75rem;
  color: #ecfccb;
  border: 1px solid rgba(215, 255, 63, 0.28);
  border-radius: 8px;
  background: rgba(215, 255, 63, 0.07);
  font-size: 0.78rem;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.enterprise-card-cta:hover,
.enterprise-card-cta:focus-visible {
  border-color: rgba(215, 255, 63, 0.72);
  outline: 2px solid rgba(215, 255, 63, 0.38);
  outline-offset: 2px;
}

.enterprise-card-cta-original {
  color: #111827;
  border-color: rgba(255, 255, 255, 0.72);
  background: #f8fafc;
}

.enterprise-card-cta-dev {
  color: #a5f3fc;
  border-color: rgba(34, 211, 238, 0.52);
  background: rgba(34, 211, 238, 0.08);
}

.enterprise-card-cta-linguistics {
  color: #f5d0fe;
  border-color: rgba(232, 121, 249, 0.5);
  background: rgba(232, 121, 249, 0.08);
}

.evidence-section {
  border-color: rgba(20, 184, 166, 0.34);
}

.evidence-link-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.12), transparent 55%),
    rgba(15, 23, 42, 0.72);
}

.evidence-link-panel h3 {
  margin: 0 0 0.35rem;
  color: white;
}

.evidence-link-panel p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
}

.compliance-matrix-wrap {
  margin-top: 1rem;
  overflow-x: auto;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius);
  background: rgba(2, 6, 23, 0.42);
}

.compliance-matrix {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.compliance-matrix caption {
  padding: 0.85rem 1rem;
  color: var(--patch-gold);
  font-size: 0.74rem;
  font-weight: 950;
  text-align: left;
  text-transform: uppercase;
}

.compliance-matrix th,
.compliance-matrix td {
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  padding: 0.78rem 0.9rem;
  vertical-align: top;
  text-align: left;
}

.compliance-matrix th {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.compliance-matrix td {
  color: var(--muted-strong);
  font-size: 0.82rem;
  line-height: 1.45;
}

.rights-helix-section,
.reinstatement-section,
.support-section,
.whistle-section,
.story-section {
  border-bottom: 1px solid var(--line);
}

.rights-helix-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.rights-helix-lead,
.rights-card,
.reinstatement-lead,
.reinstatement-card,
.reinstatement-flow article,
.reinstatement-warning,
.support-card,
.whistle-flow article,
.story-console {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.rights-helix-lead {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1.15rem;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.14), transparent 62%),
    rgba(15, 23, 42, 0.78);
}

.rights-helix-lead h3,
.rights-card h3,
.support-card h3,
.whistle-flow h3 {
  margin: 0;
  color: white;
}

.rights-helix-lead p,
.rights-card p,
.reinstatement-card p,
.reinstatement-flow p,
.reinstatement-warning span,
.support-card p,
.whistle-flow p,
.story-section p {
  margin: 0;
}

.reinstatement-section {
  background:
    linear-gradient(135deg, rgba(120, 53, 15, 0.17), rgba(2, 6, 23, 0.94)),
    radial-gradient(circle at 78% 18%, rgba(34, 211, 238, 0.12), transparent 32%);
}

.reinstatement-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.38fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.reinstatement-lead {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  padding: 1rem;
  border-color: rgba(251, 191, 36, 0.28);
}

.reinstatement-lead h3,
.reinstatement-card h3,
.reinstatement-flow h3 {
  margin: 0;
}

.reinstatement-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.reinstatement-badges span {
  border: 1px solid rgba(251, 191, 36, 0.36);
  border-radius: 999px;
  padding: 0.36rem 0.55rem;
  background: rgba(120, 53, 15, 0.24);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reinstatement-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.reinstatement-card {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  min-height: 15rem;
  padding: 1rem;
}

.reinstatement-card span {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, 0.32);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(8, 47, 73, 0.34);
  font-weight: 900;
}

.reinstatement-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.reinstatement-flow article {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  padding: 1rem;
  border-color: rgba(34, 211, 238, 0.2);
}

.reinstatement-flow strong {
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 0.55rem;
  color: #020617;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
}

.reinstatement-warning {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: flex-start;
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-color: rgba(244, 63, 94, 0.34);
  background: rgba(76, 5, 25, 0.32);
}

.reinstatement-warning strong {
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rights-meter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.rights-meter span {
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 999px;
  padding: 0.38rem 0.55rem;
  background: rgba(8, 47, 73, 0.35);
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rights-helix-grid,
.support-grid,
.whistle-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.rights-card,
.support-card,
.whistle-flow article {
  position: relative;
  display: grid;
  gap: 0.65rem;
  min-height: 190px;
  overflow: hidden;
  padding: 1rem;
}

.rights-card::after,
.support-card::after,
.whistle-flow article::after,
.story-console::after {
  content: "";
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  width: 4.2rem;
  height: 4.2rem;
  background: var(--patch-asset) center / contain no-repeat;
  opacity: 0.055;
  pointer-events: none;
}

.rights-card span,
.whistle-flow strong,
.story-console span {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, 0.34);
  border-radius: var(--radius);
  background: rgba(8, 47, 73, 0.45);
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 950;
}

.support-card {
  border-color: rgba(245, 158, 11, 0.22);
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.1), transparent 60%),
    rgba(15, 23, 42, 0.68);
}

.support-card-primary {
  border-color: rgba(34, 211, 238, 0.36);
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.14), rgba(245, 158, 11, 0.08)),
    rgba(15, 23, 42, 0.82);
}

.support-card span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.whistle-flow article {
  border-color: rgba(251, 113, 133, 0.22);
  background:
    linear-gradient(135deg, rgba(251, 113, 133, 0.1), transparent 58%),
    rgba(15, 23, 42, 0.68);
}

.whistle-flow strong {
  border-color: rgba(251, 113, 133, 0.34);
  background: rgba(76, 5, 25, 0.38);
  color: var(--rose);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.32fr);
  gap: 1rem;
  align-items: stretch;
}

.story-copy {
  display: grid;
  align-content: center;
  gap: 0.75rem;
}

.story-console {
  position: relative;
  display: grid;
  gap: 0.65rem;
  align-content: start;
  overflow: hidden;
  padding: 1rem;
  border-color: rgba(129, 140, 248, 0.3);
  background:
    linear-gradient(135deg, rgba(129, 140, 248, 0.12), transparent 60%),
    rgba(15, 23, 42, 0.74);
}

.story-console span {
  border-color: rgba(129, 140, 248, 0.38);
  background: rgba(49, 46, 129, 0.38);
  color: var(--indigo);
}

.story-console strong {
  color: white;
  font-size: 1.05rem;
}

.autopipeline-section {
  border-bottom: 1px solid var(--line);
}

.tech-section {
  border-bottom: 1px solid var(--line);
}

.tech-dashboard {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.35fr);
  gap: 1rem;
  align-items: stretch;
}

.tech-crew-card {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  grid-column: 1 / -1;
  gap: 1rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(45, 212, 191, 0.34);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 12%, rgba(168, 85, 247, 0.16), transparent 32%),
    rgba(2, 6, 23, 0.84);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.tech-crew-image-link {
  display: block;
  min-width: 0;
  color: inherit;
  background: #020617;
}

.tech-crew-image-link:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: -3px;
}

.tech-crew-image-link img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.tech-crew-copy {
  display: grid;
  gap: 0.8rem;
  align-content: center;
  padding: 1.2rem 1.2rem 1.2rem 0.25rem;
}

.tech-crew-copy h3,
.tech-crew-copy p {
  margin: 0;
}

.tech-crew-copy h3 {
  color: white;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.tech-brand-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.tech-brand-cloud span {
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 999px;
  padding: 0.38rem 0.58rem;
  background: rgba(15, 23, 42, 0.76);
  color: #dffcff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.025em;
}

.tech-console,
.tech-view-panel,
.tech-runtime-card {
  border: 1px solid rgba(45, 212, 191, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(45, 212, 191, 0.12), transparent 60%),
    rgba(15, 23, 42, 0.78);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
}

.tech-console {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  padding: 1.1rem;
}

.tech-console h3,
.tech-view-panel h3 {
  margin: 0;
  color: white;
  overflow-wrap: anywhere;
}

.tech-console p {
  margin: 0;
}

.tech-console-row {
  display: grid;
  gap: 0.25rem;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: var(--radius);
  padding: 0.82rem;
  background: rgba(2, 6, 23, 0.36);
}

.tech-console-row span,
.tech-runtime-card span,
.tech-atlas-card span,
.tech-view-item span {
  color: var(--cyan);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tech-console-row strong {
  color: white;
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.tech-atlas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.tech-atlas-card {
  position: relative;
  display: grid;
  gap: 0.55rem;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid rgba(45, 212, 191, 0.24);
  border-radius: var(--radius);
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(45, 212, 191, 0.12), transparent 58%),
    linear-gradient(160deg, rgba(34, 211, 238, 0.06), rgba(245, 158, 11, 0.055)),
    rgba(15, 23, 42, 0.72);
  color: var(--muted-strong);
  text-decoration: none;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
}

.tech-atlas-card::after {
  content: "";
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  width: 4.8rem;
  height: 4.8rem;
  background: var(--patch-asset) center / contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.tech-atlas-card strong {
  justify-self: start;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 999px;
  padding: 0.24rem 0.48rem;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tech-atlas-card h3 {
  margin: 0;
  color: white;
  font-size: 1.02rem;
  overflow-wrap: anywhere;
}

.tech-atlas-card p {
  margin: 0;
  overflow-wrap: anywhere;
}

.tech-view-panel {
  display: grid;
  gap: 0.8rem;
  grid-column: 1;
  padding: 1rem;
}

.tech-view-board {
  display: grid;
  gap: 0.55rem;
}

.tech-view-item {
  border: 1px solid rgba(34, 211, 238, 0.16);
  border-radius: var(--radius);
  padding: 0.72rem;
  background: rgba(2, 6, 23, 0.34);
}

.tech-view-item p {
  margin: 0.35rem 0 0;
}

.tech-runtime-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  grid-column: 2;
}

.tech-runtime-card {
  padding: 1rem;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.tech-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid rgba(45, 212, 191, 0.24);
  border-radius: var(--radius);
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(45, 212, 191, 0.12), transparent 58%),
    linear-gradient(160deg, rgba(34, 211, 238, 0.06), rgba(245, 158, 11, 0.055)),
    rgba(15, 23, 42, 0.72);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.24);
}

.tech-card::after {
  content: "";
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  width: 4.8rem;
  height: 4.8rem;
  background: var(--patch-asset) center / contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.tech-card-wide {
  grid-column: span 2;
}

.tech-card span {
  display: inline-flex;
  border: 1px solid rgba(45, 212, 191, 0.34);
  border-radius: 999px;
  margin-bottom: 0.95rem;
  padding: 0.34rem 0.58rem;
  background: rgba(13, 148, 136, 0.13);
  color: var(--cyan);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tech-card h3 {
  margin: 0;
  color: white;
  font-size: 1.1rem;
  overflow-wrap: anywhere;
}

.tech-card p {
  margin: 0.7rem 0 0;
  overflow-wrap: anywhere;
}

.pipeline-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.4fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.pipeline-console,
.pipeline-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.pipeline-console {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  padding: 1.1rem;
  border-color: rgba(34, 211, 238, 0.34);
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.13), transparent 62%),
    rgba(15, 23, 42, 0.78);
}

.pipeline-console h3,
.pipeline-step h3 {
  margin: 0;
  color: white;
}

.pipeline-console p,
.pipeline-step p {
  margin: 0;
}

.pipeline-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0;
}

.pipeline-stats div {
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: var(--radius);
  padding: 0.7rem;
  background: rgba(2, 6, 23, 0.38);
}

.pipeline-stats dt {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 950;
  text-transform: uppercase;
}

.pipeline-stats dd {
  margin: 0.22rem 0 0;
  color: white;
  font-size: 1.05rem;
  font-weight: 950;
}

.pipeline-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.pipeline-chip-row span {
  border: 1px solid rgba(20, 184, 166, 0.32);
  border-radius: 999px;
  padding: 0.34rem 0.52rem;
  background: rgba(20, 184, 166, 0.1);
  color: var(--muted-strong);
  font-size: 0.68rem;
  font-weight: 850;
}

.pipeline-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.pipeline-wire {
  position: absolute;
  top: 2.25rem;
  right: 7%;
  left: 7%;
  height: 2px;
  overflow: hidden;
  background: rgba(34, 211, 238, 0.22);
  pointer-events: none;
}

.pipeline-wire::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 35%;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: pipelinePulse 4.2s linear infinite;
}

.pipeline-step {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(245, 158, 11, 0.07)),
    rgba(15, 23, 42, 0.62);
}

.pipeline-step::after {
  content: "";
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  width: 4.4rem;
  height: 4.4rem;
  background: var(--patch-asset) center / contain no-repeat;
  opacity: 0.055;
  pointer-events: none;
}

.pipeline-step strong {
  display: inline-grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, 0.34);
  border-radius: var(--radius);
  margin-bottom: 0.9rem;
  background: rgba(8, 47, 73, 0.45);
  color: var(--cyan);
}

@keyframes pipelinePulse {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(320%);
  }
}

.buschitut-section {
  border-bottom: 1px solid var(--line);
}

.buschitut-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.buschitut-lead {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.15rem;
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.14), transparent 62%),
    rgba(15, 23, 42, 0.78);
}

.buschitut-lead h3,
.buschitut-card h3 {
  margin: 0;
  color: white;
}

.buschitut-lead p,
.buschitut-card p {
  margin: 0;
}

.buschitut-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.25rem;
}

.buschitut-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.buschitut-card {
  position: relative;
  min-height: 175px;
  overflow: hidden;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(34, 197, 94, 0.1)),
    rgba(15, 23, 42, 0.58);
}

.buschitut-card::after {
  content: "";
  position: absolute;
  right: 0.6rem;
  bottom: 0.6rem;
  width: 4.2rem;
  height: 4.2rem;
  background: var(--patch-asset) center / contain no-repeat;
  opacity: 0.055;
  pointer-events: none;
}

.buschitut-card span {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgba(34, 197, 94, 0.34);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  background: rgba(20, 83, 45, 0.34);
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 950;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.6rem;
}

.section-note {
  max-width: 650px;
  margin: 0;
}

.bibliothek-head { align-items: start; }
.bibliothek-intro,
.bibliothek-head .section-note { flex: 1; min-width: 0; }
.bibliothek-illustration.az42-image-stack { margin: 1rem 0 0; }
.bibliothek-illustration.az42-image-stack a {
  margin-bottom: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.mini-status {
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 999px;
  padding: 0.44rem 0.75rem;
  background: rgba(8, 47, 73, 0.5);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.atlas-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 1rem;
  align-items: start;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.module-card,
.profile-panel,
.viewpoint-item,
.stone-item,
.buschitut-lead,
.buschitut-card,
.career-card,
.career-sources,
.connect-band {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.module-card {
  position: relative;
  display: grid;
  gap: 0.85rem;
  min-height: 190px;
  padding: 1rem;
  overflow: hidden;
  cursor: pointer;
}

.module-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 4px solid var(--module-accent, var(--cyan));
  background: linear-gradient(135deg, var(--module-soft, rgba(34, 211, 238, 0.1)), transparent 55%);
  pointer-events: none;
}

.module-card::after {
  content: "";
  position: absolute;
  right: 0.55rem;
  bottom: 0.55rem;
  width: 4.6rem;
  height: 4.6rem;
  background: var(--patch-asset) center / contain no-repeat;
  opacity: 0.065;
  pointer-events: none;
}

.module-card > * {
  position: relative;
  z-index: 1;
}

.module-card[aria-current="true"] {
  border-color: var(--module-accent, var(--cyan));
  background: rgba(15, 23, 42, 0.9);
}

.module-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.75rem;
}

.module-icon {
  display: inline-grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--module-accent, var(--cyan)) 55%, transparent);
  border-radius: var(--radius);
  background: var(--module-soft, rgba(34, 211, 238, 0.1));
  color: var(--module-accent, var(--cyan));
  font-weight: 900;
}

.module-card h3 {
  margin: 0.15rem 0 0;
  font-size: 1.04rem;
}

.module-edition,
.profile-label,
.stone-status {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.module-card p {
  margin: 0;
  font-size: 0.88rem;
}

.module-action {
  justify-self: start;
  border: 1px solid color-mix(in srgb, var(--module-accent, var(--cyan)) 46%, transparent);
  border-radius: var(--radius);
  padding: 0.55rem 0.8rem;
  background: rgba(2, 6, 23, 0.55);
  color: white;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.module-card-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.module-link {
  color: var(--module-accent, var(--cyan));
}

.profile-panel {
  position: sticky;
  top: 5.5rem;
  display: grid;
  gap: 1.05rem;
  padding: 1.15rem;
  background: rgba(15, 23, 42, 0.86);
}

.profile-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.profile-hero .module-icon {
  width: 3rem;
  height: 3rem;
}

.profile-hero h3 {
  margin: 0.18rem 0 0;
  font-size: 1.45rem;
}

.profile-hero p {
  grid-column: 1 / -1;
  margin: 0;
}

.profile-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.profile-meta div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.72rem;
  background: rgba(2, 6, 23, 0.34);
}

.profile-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-meta strong,
.profile-meta a {
  display: block;
  margin-top: 0.35rem;
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 0.82rem;
}

.profile-block h4,
.viewpoint-item h3,
.stone-item h3 {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.feature-list,
.task-list {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.task-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted-strong);
  font-size: 0.88rem;
  line-height: 1.55;
}

.feature-list li::before,
.task-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--module-accent, var(--cyan));
}

.role-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.role-tabs button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.48rem 0.65rem;
  background: rgba(2, 6, 23, 0.38);
  color: var(--muted-strong);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.role-tabs button[aria-pressed="true"],
.role-tabs button:hover,
.role-tabs button:focus-visible {
  border-color: var(--module-accent, var(--cyan));
  color: white;
  outline: none;
}

.role-detail {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.8rem;
  background: rgba(2, 6, 23, 0.32);
}

.role-detail strong {
  display: block;
  color: white;
}

.role-detail p {
  margin: 0.45rem 0 0.75rem;
  font-size: 0.88rem;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.viewpoint-board,
.stone-rail,
.roadmap-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.career-atlas-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: 1rem;
  align-items: start;
}

.career-toolbar {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 0.8rem;
  align-items: end;
}

.career-search {
  display: grid;
  gap: 0.35rem;
}

.career-search span,
.career-card-head span,
.career-card-head strong,
.career-sources h3 {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.career-search input {
  width: 100%;
  min-height: 3rem;
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: var(--radius);
  background: rgba(2, 6, 23, 0.74);
  color: var(--text);
  padding: 0 0.9rem;
  font: inherit;
}

.career-search input:focus {
  border-color: var(--cyan);
  outline: none;
}

.career-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.career-filter button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.58rem 0.72rem;
  background: rgba(15, 23, 42, 0.72);
  color: var(--muted-strong);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.career-filter button[aria-pressed="true"],
.career-filter button:hover,
.career-filter button:focus-visible {
  border-color: var(--cyan);
  color: white;
  outline: none;
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.career-card {
  position: relative;
  display: grid;
  gap: 0.8rem;
  min-height: 270px;
  padding: 1rem;
  overflow: hidden;
}

.career-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 4px solid var(--patch-gold);
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.12), transparent 58%),
    var(--patch-asset) right 0.75rem bottom 0.75rem / 4.2rem 4.2rem no-repeat;
  opacity: 0.76;
  pointer-events: none;
}

.career-card > * {
  position: relative;
  z-index: 1;
}

.career-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.career-card-head strong {
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 999px;
  padding: 0.28rem 0.48rem;
  color: var(--patch-gold);
}

.career-card h3 {
  margin: 0;
  color: white;
  font-size: 1.15rem;
}

.career-card p {
  margin: 0;
  font-size: 0.9rem;
}

.career-chip-row,
.career-source-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.career-chip-row span,
.career-source-row a {
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 999px;
  padding: 0.34rem 0.5rem;
  background: rgba(2, 6, 23, 0.38);
  color: var(--muted-strong);
  font-size: 0.68rem;
  font-weight: 850;
}

.career-route-list {
  display: grid;
  gap: 0.38rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.career-route-list li {
  color: var(--muted-strong);
  font-size: 0.84rem;
}

.career-route-list li::before {
  content: ">";
  margin-right: 0.45rem;
  color: var(--patch-gold);
  font-weight: 900;
}

.career-source-row a {
  color: var(--cyan);
}

.career-sources {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.08), transparent 62%),
    rgba(15, 23, 42, 0.78);
}

.career-sources h3 {
  margin: 0;
  color: var(--cyan);
}

.career-sources p,
.career-empty {
  margin: 0;
}

.career-source-link {
  display: grid;
  gap: 0.28rem;
  border-top: 1px solid var(--line);
  padding: 0.7rem 0 0;
}

.career-source-link strong {
  color: white;
  font-size: 0.86rem;
}

.career-source-link span {
  color: var(--muted-strong);
  font-size: 0.8rem;
  line-height: 1.45;
}

.viewpoint-item,
.stone-item {
  padding: 1rem;
}

.viewpoint-item {
  border-color: color-mix(in srgb, var(--module-accent, var(--cyan)) 40%, rgba(148, 163, 184, 0.22));
}

.viewpoint-item p,
.stone-item p {
  margin: 0;
  font-size: 0.88rem;
}

.viewpoint-item .profile-label,
.stone-item .profile-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--module-accent, var(--cyan));
}

.stone-item {
  min-height: 170px;
}

.stone-status {
  display: inline-flex;
  margin-top: 0.8rem;
  border: 1px solid color-mix(in srgb, var(--module-accent, var(--cyan)) 40%, transparent);
  border-radius: 999px;
  padding: 0.35rem 0.55rem;
  color: var(--module-accent, var(--cyan));
}

.roadmap-lane {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.68);
  padding: 0.85rem;
}

.roadmap-lane-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.7rem;
  color: white;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.roadmap-lane-head strong {
  display: inline-grid;
  min-width: 2rem;
  min-height: 2rem;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 999px;
  color: var(--cyan);
}

.roadmap-items {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.roadmap-item {
  display: grid;
  gap: 0.25rem;
  border: 1px solid color-mix(in srgb, var(--module-accent, var(--cyan)) 32%, rgba(148, 163, 184, 0.16));
  border-radius: var(--radius);
  padding: 0.7rem;
  background: var(--module-soft, rgba(34, 211, 238, 0.1));
}

.roadmap-item span {
  color: var(--module-accent, var(--cyan));
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.roadmap-item strong {
  color: white;
  font-size: 0.86rem;
}

.detail-main {
  min-height: 100vh;
}

.detail-hero-section {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: 5rem clamp(1rem, 4vw, 4rem) 3rem;
  overflow: hidden;
}

.detail-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, var(--module-soft, rgba(34, 211, 238, 0.12)), transparent 58%),
    radial-gradient(circle at 80% 12%, color-mix(in srgb, var(--module-accent, var(--cyan)) 18%, transparent), transparent 24rem);
}

.breadcrumb {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.68rem;
  color: var(--muted-strong);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-hero-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  max-width: 980px;
  margin-top: 1.8rem;
}

.detail-hero-card .module-icon {
  width: 4rem;
  height: 4rem;
  font-size: 1.5rem;
}

.detail-hero-card h1 {
  margin: 0.25rem 0 0;
  font-size: 3.2rem;
  line-height: 1;
}

.detail-hero-card p {
  grid-column: 1 / -1;
  max-width: 780px;
  color: var(--muted-strong);
  font-size: 1.06rem;
  line-height: 1.75;
}

.detail-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.detail-shell {
  width: min(1440px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 1rem;
  align-items: start;
}

.detail-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.72);
  padding: 1rem;
}

.detail-panel h2,
.detail-panel h3 {
  margin: 0 0 0.85rem;
}

.detail-mission {
  display: grid;
  gap: 0.85rem;
  border-color: rgba(245, 158, 11, 0.26);
  background:
    linear-gradient(135deg, rgba(239, 68, 68, 0.1), transparent 60%),
    rgba(15, 23, 42, 0.72);
}

.detail-mission-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.detail-mission-mark img {
  display: block;
  width: 4.2rem;
  height: 4.2rem;
  object-fit: contain;
}

.detail-mission .section-kicker {
  margin-bottom: 0.15rem;
  color: var(--patch-gold);
}

.detail-mission p:last-child {
  margin: 0;
}

.detail-stack {
  display: grid;
  gap: 1rem;
}

.detail-viewpoint,
.module-stone-deep {
  border: 1px solid color-mix(in srgb, var(--module-accent, var(--cyan)) 28%, rgba(148, 163, 184, 0.18));
  border-radius: var(--radius);
  padding: 0.9rem;
  background: rgba(2, 6, 23, 0.34);
}

.detail-ecosystem {
  display: grid;
  gap: 1rem;
  border-color: color-mix(in srgb, var(--module-accent, var(--green)) 42%, rgba(148, 163, 184, 0.18));
  background:
    linear-gradient(135deg, var(--module-soft, rgba(34, 197, 94, 0.12)), transparent 58%),
    rgba(15, 23, 42, 0.76);
}

.ecosystem-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.ecosystem-card {
  border: 1px solid color-mix(in srgb, var(--module-accent, var(--cyan)) 26%, rgba(148, 163, 184, 0.18));
  border-radius: var(--radius);
  padding: 0.9rem;
  background: rgba(2, 6, 23, 0.32);
}

.age-phase-panel,
.legal-anchor-panel,
.mini-scenario-panel {
  display: grid;
  gap: 1rem;
  border-color: color-mix(in srgb, var(--module-accent, var(--cyan)) 36%, rgba(148, 163, 184, 0.18));
  background:
    linear-gradient(135deg, var(--module-soft, rgba(34, 211, 238, 0.12)), transparent 62%),
    rgba(15, 23, 42, 0.76);
}

.age-phase-grid,
.legal-anchor-grid,
.mini-scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.age-phase-card,
.legal-anchor-card,
.mini-scenario-card {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
  border: 1px solid color-mix(in srgb, var(--module-accent, var(--cyan)) 28%, rgba(148, 163, 184, 0.16));
  border-radius: var(--radius);
  padding: 0.95rem;
  background: rgba(2, 6, 23, 0.38);
}

.age-phase-card > span,
.legal-anchor-card > span,
.mini-scenario-head span {
  color: var(--module-accent, var(--cyan));
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.age-phase-card h3 {
  margin: 0;
  color: white;
}

.mini-scenario-head {
  display: grid;
  gap: 0.25rem;
}

.mini-scenario-head strong {
  color: white;
  font-size: 1rem;
}

.age-phase-card p,
.legal-anchor-card p,
.mini-scenario-card p {
  margin: 0;
}

.age-app-patterns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.age-app-patterns strong {
  border: 1px solid color-mix(in srgb, var(--module-accent, var(--cyan)) 30%, rgba(148, 163, 184, 0.18));
  border-radius: calc(var(--radius) - 2px);
  padding: 0.36rem 0.48rem;
  color: var(--muted-strong);
  font-size: 0.72rem;
  line-height: 1.25;
  background: rgba(15, 23, 42, 0.72);
}

.mini-scenario-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.mini-scenario-tags em {
  border: 1px solid color-mix(in srgb, var(--module-accent, var(--cyan)) 26%, rgba(148, 163, 184, 0.16));
  border-radius: calc(var(--radius) - 2px);
  padding: 0.32rem 0.45rem;
  color: var(--muted-strong);
  font-size: 0.7rem;
  font-style: normal;
  line-height: 1.2;
  background: rgba(15, 23, 42, 0.72);
}

.mini-scenario-card small {
  color: var(--module-accent, var(--cyan));
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-anchor-card:hover,
.legal-anchor-card:focus-visible {
  border-color: var(--module-accent, var(--cyan));
  outline: none;
}

.ecosystem-card h3 {
  margin-top: 0.35rem;
}

.detail-viewpoint h3,
.module-stone-deep h3,
.ecosystem-card h3 {
  color: white;
}

.detail-viewpoint p,
.module-stone-deep p,
.ecosystem-card p {
  margin: 0 0 0.7rem;
}

.connect-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  width: min(1440px, calc(100% - 2rem));
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.12), transparent 48%),
    rgba(15, 23, 42, 0.84);
}

.connect-band p {
  max-width: 780px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding: 1.4rem clamp(1rem, 4vw, 4rem);
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer span:first-child {
  color: var(--cyan);
  font-weight: 950;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.site-footer a {
  color: #dbeafe;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--cyan);
  outline: none;
}

@media (max-width: 1180px) {
  .atlas-layout,
  .intro-grid,
  .enterprise-card-grid,
  .origin-story-shell,
  .mission-band,
  .pipeline-layout,
  .tech-dashboard,
  .tech-runtime-board,
  .rights-helix-layout,
  .reinstatement-layout,
  .story-section,
  .buschitut-layout,
  .career-atlas-shell,
  .connect-band {
    grid-template-columns: 1fr;
  }

  .evidence-link-panel {
    grid-template-columns: 1fr;
  }

  .hero-patch {
    width: clamp(230px, 30vw, 360px);
  }

  .profile-panel {
    position: static;
  }

  .viewpoint-board,
  .stone-rail,
  .roadmap-board,
  .rights-helix-grid,
  .reinstatement-grid,
  .reinstatement-flow,
  .support-grid,
  .whistle-flow,
  .tech-atlas-grid,
  .pipeline-map,
  .buschitut-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tech-view-panel,
  .tech-runtime-board {
    grid-column: auto;
  }

  .tech-crew-card {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  }

  .pipeline-wire {
    display: none;
  }

  .career-sources {
    order: 2;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px), (pointer: coarse) {
  .site-header {
    position: static;
    top: auto;
  }
}

@media (max-width: 920px) and (max-height: 520px) {

  .brand-glyph,
  .brand-patch {
    width: 2.15rem;
    height: 2.15rem;
  }

  .brand-mark strong {
    font-size: 1rem;
  }

  .brand-mark small {
    font-size: 0.58rem;
  }
}

@media (max-width: 780px) {
  .public-generator-card {
    grid-template-columns: 1fr;
  }

  .public-generator-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .public-generator-media::after {
    background: linear-gradient(180deg, transparent 72%, rgba(3, 18, 31, 0.92) 100%);
  }

  .public-generator-copy {
    padding-top: 0.45rem;
  }

  .public-generator-copy > strong {
    max-width: 24ch;
  }

  .tech-crew-card {
    grid-template-columns: 1fr;
  }

  .tech-crew-image-link img {
    min-height: 0;
    height: auto;
  }

  .tech-crew-copy {
    padding: 0.2rem 1rem 1.1rem;
  }
  main,
  .hero,
  .section,
  .detail-main,
  .detail-hero-section,
  .detail-shell {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .brand-mark {
    max-width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0;
  }

  .hero-copy {
    width: calc(100% - 2rem);
    max-width: calc(100vw - 2rem);
    min-width: 0;
    margin: 0 auto;
    padding: 4rem 0 1.5rem;
  }

  .hero-patch {
    position: static;
    width: min(286px, 76vw);
    margin: 0 auto 1.25rem;
  }

  .hero-strip {
    position: static;
    width: calc(100% - 2rem);
    margin: 0 auto 1rem;
  }

  .hero h1 {
    font-size: 2.45rem;
    line-height: 1;
  }

  .hero h1,
  .hero-lead,
  .origin-story-copy h2,
  .origin-story-short,
  .origin-story-long,
  .origin-story-long p,
  .origin-story-details summary,
  .mission-quote strong,
  .section h2,
  .section p,
  .detail-hero-card,
  .detail-hero-card h1,
  .detail-hero-card p,
  .detail-panel p,
  .feature-list li,
  .task-list li {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .origin-story-long {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .connect-actions,
  .section-actions,
  .story-actions,
  .profile-actions,
  .buschitut-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .action {
    width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    text-align: center;
  }

  .hero-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mission-principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 3rem 0;
  }

  .section h2 {
    font-size: 1.75rem;
  }

  .section-head {
    display: grid;
  }

  .module-grid,
  .viewpoint-board,
  .stone-rail,
  .roadmap-board,
  .public-tool-grid,
  .enterprise-card-grid,
  .public-method-grid,
  .whistle-portal-grid,
  .whistle-form-grid,
  .rights-helix-grid,
  .reinstatement-grid,
  .reinstatement-flow,
  .support-grid,
  .whistle-flow,
  .tech-atlas-grid,
  .tech-runtime-board,
  .tech-grid,
  .pipeline-map,
  .buschitut-grid,
  .ecosystem-card-grid,
  .age-phase-grid,
  .legal-anchor-grid,
  .career-grid,
  .career-toolbar,
  .profile-meta {
    grid-template-columns: 1fr;
  }

  .tech-card-wide {
    grid-column: auto;
  }

  .detail-hero-card {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .detail-hero-card h1 {
    font-size: 2.2rem;
  }

  .detail-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-nav .action {
    width: 100%;
    min-width: 0;
    padding-inline: 0.7rem;
  }
}

@media (max-width: 620px) {

  .hero-strip,
  .public-tool-grid,
  .enterprise-card-grid,
  .public-method-grid,
  .whistle-portal-grid,
  .whistle-form-grid,
  .rights-helix-grid,
  .support-grid,
  .whistle-flow,
  .tech-atlas-grid,
  .tech-runtime-board,
  .tech-grid,
  .buschitut-grid,
  .mission-principles {
    grid-template-columns: 1fr;
  }

  .detail-nav {
    grid-template-columns: 1fr;
  }

  .intro-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .enterprise-card-preview figcaption {
    font-size: 0.62rem;
  }

  .enterprise-card-actions {
    grid-template-columns: 1fr;
  }

  .pipeline-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .section,
  .detail-shell,
  .hero-copy,
  .hero-strip {
    width: calc(100% - 2rem);
    max-width: 420px;
    margin-left: 1rem;
    margin-right: auto;
  }

  .detail-hero-section {
    padding-inline: 0;
  }

  .detail-hero-card,
  .detail-nav {
    width: calc(100% - 2rem);
    max-width: 420px;
    margin-left: 1rem;
    margin-right: auto;
  }

  .hero-patch {
    justify-self: start;
    width: min(300px, calc(100% - 2rem));
    margin-left: 1rem;
    margin-right: auto;
  }

  .hero h1 {
    font-size: 1.95rem;
  }

  .mission-quote strong {
    font-size: 0.98rem;
  }

  .hero-strip {
    width: calc(100% - 2rem);
    margin: 0 auto 1rem;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 1.15rem;
  }

  .hero-patch {
    margin-right: auto;
  }

  .hero-actions,
  .connect-actions,
  .profile-actions,
  .buschitut-actions {
    display: grid;
  }

  .action {
    width: 100%;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .pipeline-wire::after {
    animation: none;
  }
}

@media (max-width: 1120px) {
  .site-header { grid-template-columns: minmax(0, 1fr) max-content; }
  .site-header-meta { grid-column: 2; }
  .site-nav { grid-column: 1 / -1; grid-row: 2; width: 100%; }
}
@media (max-width: 620px) {
  .site-header { padding-inline: 8px; gap: 2px 8px; }
  .site-header-meta { display: grid; justify-items: end; gap: 2px; }
  .site-project-links { gap: 6px; }
  .site-nav-menu-panel { left: auto; right: 0; max-width: min(88vw, 20rem); }
  .brand-mark { gap: 6px; white-space: normal; }
  .brand-glyph, .brand-patch { width: 28px; height: 28px; flex: 0 0 28px; }
  .brand-mark strong { font-size: 1rem; }
  .brand-mark small { max-width: 100px; margin-top: 2px; font-size: 10px; line-height: 12px; }
}

/* Same AZUBI42 wordmark gradient as 01_1_Layout.js in the app. */
@supports ((background-clip: text) or (-webkit-background-clip: text)) {
  .brand-mark strong, .site-version-name {
    background-image: linear-gradient(to right, #22d3ee, #34d399, #059669);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
