/* ---------- Theme: Dark (Standard) ---------- */
:root {
  color-scheme: dark;
  --bg: #061a2e;
  --glow-a: rgba(60, 125, 185, 0.22);
  --glow-b: rgba(18, 58, 94, 0.4);
  --text-strong: #f4f7fb;
  --text-softer: #e6edf5;
  --text-soft: #cdd9e6;
  --text: #a9bacb;
  --text-muted: #8598ac;
  --accent-blue: #7fb2dd;
  --accent-blue-hover: #a6c9e6;
  --accent-blue-mid: #5895cd;
  --gold-text: #d7b56d;
  --tg-from: #f4f7fb;
  --tg-to: #7fb2dd;
  --band-bg: rgba(8, 33, 58, 0.4);
  --surface-a: rgba(13, 45, 74, 0.95);
  --surface-b: rgba(8, 33, 58, 0.95);
  --header-bg: rgba(6, 26, 46, 0.85);
  --footer-bg: rgba(6, 26, 46, 0.6);
  --field-bg: rgba(6, 26, 46, 0.5);
  --box-muted-bg: rgba(6, 26, 46, 0.4);
  --box-bg: rgba(13, 45, 74, 0.4);
  --compare-head-bg: rgba(13, 45, 74, 0.6);
  --compare-even-bg: rgba(6, 26, 46, 0.3);
  --compare-odd-bg: rgba(8, 33, 58, 0.3);
  --chip-bg: #0d2d4a;
  --chip-bg-strong: #0a2742;
  --avatar-bg: linear-gradient(135deg, #123a5e, #08213a);
  --final-bg: linear-gradient(135deg, #0d2d4a, #061a2e);
  --border: rgba(88, 149, 205, 0.16);
  --hairline: rgba(88, 149, 205, 0.1);
  --focus: #d7b56d;
  --danger-text: #e8837a;
  --bar-a: rgba(169, 186, 203, 0.5);
  --bar-b: rgba(169, 186, 203, 0.4);
  --bar-c: rgba(127, 178, 221, 0.7);
  --display-dark: block;
  --display-light: none;
  --icon-dim: none;
  --hero-overlay: linear-gradient(90deg, #061a2e 18%, rgba(6, 26, 46, 0.55) 52%, rgba(6, 26, 46, 0.15) 100%);
  --hero-overlay-rtl: linear-gradient(270deg, #061a2e 18%, rgba(6, 26, 46, 0.55) 52%, rgba(6, 26, 46, 0.15) 100%);
}

/* Helles Theme: automatisch nach Systemeinstellung ... */
@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
  color-scheme: light;
  --bg: #eef4f9;
  --glow-a: rgba(60, 125, 185, 0.14);
  --glow-b: rgba(60, 125, 185, 0.08);
  --text-strong: #12283c;
  --text-softer: #24405a;
  --text-soft: #2f4d68;
  --text: #405e79;
  --text-muted: #52708c;
  --accent-blue: #2f6b9f;
  --accent-blue-hover: #245a89;
  --accent-blue-mid: #3c7db9;
  --gold-text: #8a6a26;
  --tg-from: #12283c;
  --tg-to: #2f6b9f;
  --band-bg: rgba(60, 125, 185, 0.07);
  --surface-a: #ffffff;
  --surface-b: #f4f8fc;
  --header-bg: rgba(255, 255, 255, 0.92);
  --footer-bg: rgba(60, 125, 185, 0.06);
  --field-bg: #ffffff;
  --box-muted-bg: rgba(60, 125, 185, 0.05);
  --box-bg: rgba(255, 255, 255, 0.8);
  --compare-head-bg: rgba(60, 125, 185, 0.12);
  --compare-even-bg: rgba(60, 125, 185, 0.04);
  --compare-odd-bg: rgba(255, 255, 255, 0.6);
  --chip-bg: #ffffff;
  --chip-bg-strong: #ffffff;
  --avatar-bg: linear-gradient(135deg, #d9e8f4, #bcd5e9);
  --final-bg: linear-gradient(135deg, #ffffff, #e3eef7);
  --border: rgba(60, 125, 185, 0.3);
  --hairline: rgba(60, 125, 185, 0.18);
  --focus: #8a6a26;
  --danger-text: #b3442e;
  --bar-a: rgba(68, 96, 122, 0.45);
  --bar-b: rgba(68, 96, 122, 0.35);
  --bar-c: rgba(47, 107, 159, 0.7);
  --display-dark: none;
  --display-light: block;
  --icon-dim: brightness(0.55) saturate(1.2);
  --hero-overlay: linear-gradient(90deg, #eef4f9 22%, rgba(238, 244, 249, 0.82) 55%, rgba(238, 244, 249, 0.6) 100%);
  --hero-overlay-rtl: linear-gradient(270deg, #eef4f9 22%, rgba(238, 244, 249, 0.82) 55%, rgba(238, 244, 249, 0.6) 100%);
  }
}

/* ... oder manuell erzwungen. */
:root[data-theme="light"] {
  color-scheme: light;
  --bg: #eef4f9;
  --glow-a: rgba(60, 125, 185, 0.14);
  --glow-b: rgba(60, 125, 185, 0.08);
  --text-strong: #12283c;
  --text-softer: #24405a;
  --text-soft: #2f4d68;
  --text: #405e79;
  --text-muted: #52708c;
  --accent-blue: #2f6b9f;
  --accent-blue-hover: #245a89;
  --accent-blue-mid: #3c7db9;
  --gold-text: #8a6a26;
  --tg-from: #12283c;
  --tg-to: #2f6b9f;
  --band-bg: rgba(60, 125, 185, 0.07);
  --surface-a: #ffffff;
  --surface-b: #f4f8fc;
  --header-bg: rgba(255, 255, 255, 0.92);
  --footer-bg: rgba(60, 125, 185, 0.06);
  --field-bg: #ffffff;
  --box-muted-bg: rgba(60, 125, 185, 0.05);
  --box-bg: rgba(255, 255, 255, 0.8);
  --compare-head-bg: rgba(60, 125, 185, 0.12);
  --compare-even-bg: rgba(60, 125, 185, 0.04);
  --compare-odd-bg: rgba(255, 255, 255, 0.6);
  --chip-bg: #ffffff;
  --chip-bg-strong: #ffffff;
  --avatar-bg: linear-gradient(135deg, #d9e8f4, #bcd5e9);
  --final-bg: linear-gradient(135deg, #ffffff, #e3eef7);
  --border: rgba(60, 125, 185, 0.3);
  --hairline: rgba(60, 125, 185, 0.18);
  --focus: #8a6a26;
  --danger-text: #b3442e;
  --bar-a: rgba(68, 96, 122, 0.45);
  --bar-b: rgba(68, 96, 122, 0.35);
  --bar-c: rgba(47, 107, 159, 0.7);
  --display-dark: none;
  --display-light: block;
  --icon-dim: brightness(0.55) saturate(1.2);
  --hero-overlay: linear-gradient(90deg, #eef4f9 22%, rgba(238, 244, 249, 0.82) 55%, rgba(238, 244, 249, 0.6) 100%);
  --hero-overlay-rtl: linear-gradient(270deg, #eef4f9 22%, rgba(238, 244, 249, 0.82) 55%, rgba(238, 244, 249, 0.6) 100%);
}

/*
 * QloudOS — standalone stylesheet.
 * Faithful plain-CSS port of the Next.js / Tailwind design.
 * Colours, buttons, eyebrows, cards, illustration and animations all mirror
 * the production site. No build step, no dependencies.
 */

/* ---------- Design tokens ---------- */
/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: var(--border);
}

* {
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg);
  color: var(--text-strong);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-image: radial-gradient(
      60rem 40rem at 82% -8%,
      var(--glow-a),
      transparent 60%
    ),
    radial-gradient(50rem 40rem at 0% 0%, var(--glow-b), transparent 55%);
  background-repeat: no-repeat;
  background-attachment: fixed;
}

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

img,
img {
  display: block;
}

ul,
ol {
  list-style: none;
}

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

::selection {
  background: rgba(88, 149, 205, 0.45);
  color: var(--text-strong);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

/* ---------- Layout helpers ---------- */
.container-page {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .container-page {
    padding-inline: 2rem;
  }
}

/* Standard section rhythm (py-20 sm:py-24). */
.section {
  padding-block: 5rem;
  scroll-margin-top: 5rem;
}

@media (min-width: 640px) {
  .section {
    padding-block: 6rem;
  }
}

/* Alternating darker band with hairline top/bottom borders. */
.band {
  background: var(--band-bg);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.measure {
  max-width: 42rem;
}

/* ---------- Text helpers ---------- */
.text-gradient {
  background: linear-gradient(100deg, var(--tg-from) 0%, var(--tg-to) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Section heading ---------- */
.section-heading {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 42rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-text);
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: rgba(215, 181, 109, 0.6);
}

.section-heading h2 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}

@media (min-width: 640px) {
  .section-heading h2 {
    font-size: 2.25rem;
  }
}

.section-heading .intro {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}

@media (min-width: 640px) {
  .section-heading .intro {
    font-size: 1.125rem;
  }
}

.mt-grid {
  margin-top: 3rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.75rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn img {
  width: 1rem;
  height: 1rem;
}

.btn-md {
  padding: 0.625rem 1.25rem;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}

.btn-primary {
  background: #d7b56d;
  color: #061a2e;
  box-shadow: 0 8px 24px -8px rgba(215, 181, 109, 0.55);
}

.btn-primary:hover {
  background: #e5cd94;
}

.btn-secondary {
  border-color: rgba(88, 149, 205, 0.4);
  background: var(--hairline);
  color: var(--text-strong);
}

.btn-secondary:hover {
  background: rgba(88, 149, 205, 0.2);
  border-color: rgba(88, 149, 205, 0.6);
}

/* ---------- Cards ---------- */
.surface-card {
  background: linear-gradient(
    180deg,
    var(--surface-a),
    var(--surface-b)
  );
  border: 1px solid var(--border);
  border-radius: 1rem;
}

.surface-card-hover {
  transition: border-color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.surface-card-hover:hover {
  border-color: rgba(88, 149, 205, 0.4);
  transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
  .surface-card-hover:hover {
    transform: none;
  }
}

.p-6 {
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .p-6-8 {
    padding: 2rem;
  }
}

.p-6-8 {
  padding: 1.5rem;
}

/* Icon badge variants. */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  flex-shrink: 0;
}

.badge img {
  width: 1.25rem;
  height: 1.25rem;
}

.badge-lg {
  width: 3rem;
  height: 3rem;
}

.badge-lg img {
  width: 1.375rem;
  height: 1.375rem;
}

.badge-md {
  width: 2.75rem;
  height: 2.75rem;
}

.badge-sm {
  width: 2rem;
  height: 2rem;
}

.badge-sm img {
  width: 1rem;
  height: 1rem;
}

.badge-qloud {
  border: 1px solid rgba(88, 149, 205, 0.25);
  background: var(--hairline);
  color: var(--accent-blue);
}

.badge-gold {
  border: 1px solid rgba(215, 181, 109, 0.25);
  background: rgba(215, 181, 109, 0.1);
  color: var(--gold-text);
}

/* ---------- Grids ---------- */
.grid {
  display: grid;
  gap: 1.5rem;
}

.gap-5 {
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .md-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .md-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 640px) {
  .sm-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .lg-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Typography inside cards. */
.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-strong);
}

.card-title-sm {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-strong);
}

.card-body {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: var(--header-bg);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  min-height: 4rem;
  padding-block: 0.5rem;
}

/* Logo image. */
.logo-img {
  height: 2.75rem;
  width: auto;
}

.logo-img-footer {
  height: 3.25rem;
}

.nav-desktop {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}

.nav-desktop a:hover {
  color: var(--text-strong);
}

.header-cta {
  display: flex;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: var(--hero-overlay), url("../assets/digital-person.jpg");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

@media (min-width: 640px) {
  .hero {
    padding-top: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 5rem;
    padding-bottom: 6rem;
  }
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 2rem;
  }
}

.hero-copy {
  max-width: 42rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(88, 149, 205, 0.25);
  background: var(--hairline);
  padding: 0.375rem 0.875rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-blue);
}

@media (min-width: 640px) {
  .hero-pill {
    font-size: 0.875rem;
  }
}

.hero-pill .dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background: #d7b56d;
}

.hero h1 {
  margin-top: 1.5rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 2.375rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 2.75rem;
  }
}

.hero-supporting {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}

@media (min-width: 640px) {
  .hero-supporting {
    font-size: 1.125rem;
  }
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }
}

.hero-status {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.ping {
  position: relative;
  display: inline-flex;
  width: 0.625rem;
  height: 0.625rem;
}

.ping .ping-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(215, 181, 109, 0.6);
  animation: ping 1.4s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.ping .ping-core {
  position: relative;
  display: inline-flex;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 999px;
  background: #d7b56d;
}

@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.hero-illustration {
  padding: 1rem;
}

@media (min-width: 640px) {
  .hero-illustration {
    padding: 1.5rem;
  }
}

/* ---------- Value summary (horizontal items) ---------- */
.value-band {
  padding-block: 3.5rem;
}

.value-item {
  display: flex;
  height: 100%;
  align-items: flex-start;
  gap: 1rem;
}

.value-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-strong);
}

.value-item p {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text);
}

/* ---------- How it works ---------- */
.hiw-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hiw-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.hiw-steps {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .hiw-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hiw-steps {
    grid-template-columns: 1fr;
  }
}

.step {
  display: flex;
  gap: 1rem;
}

.step .num {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-text);
}

.step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-strong);
}

.step p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text);
}

/* ---------- Use cases (tabs) ---------- */
.uc-grid {
  display: grid;
  gap: 2rem;
}

.uc-panel {
  padding: 1.5rem;
}

.uc-panel + .uc-panel {
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .uc-panel {
    padding: 2rem;
  }
}

.uc-panel h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-strong);
}

@media (min-width: 640px) {
  .uc-panel h3 {
    font-size: 1.5rem;
  }
}

.uc-scenario {
  margin-top: 0.5rem;
  max-width: 42rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text);
}

@media (min-width: 640px) {
  .uc-scenario {
    font-size: 1rem;
  }
}

.uc-cols {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .uc-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

.uc-box {
  border-radius: 0.75rem;
  padding: 1.25rem;
}

.uc-box-fragmented {
  border: 1px solid var(--border);
  background: var(--box-muted-bg);
}

.uc-box-brings {
  border: 1px solid rgba(88, 149, 205, 0.25);
  background: rgba(88, 149, 205, 0.06);
}

.uc-box h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.uc-box-fragmented h4 {
  color: var(--text-muted);
}

.uc-box-brings h4 {
  color: var(--accent-blue);
}

.uc-box h4 img {
  width: 0.875rem;
  height: 0.875rem;
}

.uc-list {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.uc-list li {
  display: flex;
  gap: 0.625rem;
  font-size: 0.875rem;
}

.uc-list li::before {
  content: "";
  margin-top: 0.5rem;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 999px;
  flex-shrink: 0;
}

.uc-box-fragmented .uc-list li {
  color: var(--text);
}

.uc-box-fragmented .uc-list li::before {
  background: var(--text-muted);
}

.uc-box-brings .uc-list li {
  color: var(--text-soft);
}

.uc-box-brings .uc-list li::before {
  background: var(--accent-blue);
}

.uc-output {
  margin-top: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(215, 181, 109, 0.25);
  background: rgba(215, 181, 109, 0.07);
  padding: 1.25rem;
}

.uc-output img {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--gold-text);
}

.uc-output h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-text);
}

.uc-output p {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-softer);
}

.uc-link {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-blue);
  transition: color 0.2s;
}

.uc-link:hover {
  color: var(--accent-blue-hover);
}

.uc-link img {
  width: 0.9375rem;
  height: 0.9375rem;
}

/* ---------- Sovereignty ---------- */
.sov-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .sov-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.sov-list {
  display: grid;
  gap: 1rem;
}

.sov-point {
  display: flex;
  gap: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--box-bg);
  padding: 1.25rem;
}

.sov-point h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-strong);
}

.sov-point p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text);
}

/* ---------- Pillars ---------- */
.pillar {
  display: flex;
  height: 100%;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .pillar {
    padding: 1.75rem;
  }
}

.pillar h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-strong);
}

.pillar p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text);
}

/* ---------- Comparison ---------- */
.compare {
  margin-top: 3rem;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .compare-row {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.compare-head {
  background: var(--compare-head-bg);
  font-weight: 600;
}

.compare-head .cell-cat {
  display: none;
}

@media (min-width: 640px) {
  .compare-head .cell-cat {
    display: block;
    color: var(--text-muted);
  }
}

.compare .cell {
  padding: 1rem 1.25rem;
}

.compare-head .cell-frag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
}

.compare-head .cell-q {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-left: 1px solid rgba(215, 181, 109, 0.2);
  background: rgba(215, 181, 109, 0.06);
  color: var(--text-strong);
}

.compare-head img {
  width: 0.9375rem;
  height: 0.9375rem;
}

.compare-head .cell-frag img {
  color: var(--text-muted);
}

.compare-head .cell-q img {
  color: var(--gold-text);
}

.compare-body:nth-child(even) {
  background: var(--compare-even-bg);
}

.compare-body:nth-child(odd) {
  background: var(--compare-odd-bg);
}

.compare-body .cell-cat {
  grid-column: span 2;
  padding: 1rem 1.25rem 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .compare-body .cell-cat {
    grid-column: span 1;
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    color: var(--text-soft);
  }
}

.compare-body .cell-frag {
  padding: 0.25rem 1.25rem 1rem;
  color: var(--text);
}

@media (min-width: 640px) {
  .compare-body .cell-frag {
    padding: 1rem 1.25rem;
  }
}

.compare-body .cell-q {
  border-left: 1px solid rgba(215, 181, 109, 0.15);
  background: rgba(215, 181, 109, 0.03);
  padding: 0.25rem 1.25rem 1rem;
  color: var(--text-softer);
}

@media (min-width: 640px) {
  .compare-body .cell-q {
    padding: 1rem 1.25rem;
  }
}

.compare-note {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.compare-note b {
  font-weight: 500;
  color: var(--gold-text);
}

/* ---------- Pilot facts ---------- */
.facts {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .facts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .facts {
    grid-template-columns: repeat(4, 1fr);
  }
}

.fact {
  height: 100%;
  padding: 1.5rem;
}

.fact dt {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.fact dd {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-text);
}

/* ---------- Team ---------- */
.member {
  height: 100%;
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .member {
    padding: 2rem;
  }
}

.member-head {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  border-radius: 1rem;
  border: 1px solid rgba(88, 149, 205, 0.3);
  background: var(--avatar-bg);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-blue);
}

.member-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-strong);
}

.member-role {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold-text);
}

.member-focus {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-soft);
}

.member-bio {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text);
}

.member-quote {
  margin-top: 1.25rem;
  border-left: 2px solid rgba(215, 181, 109, 0.5);
  padding-left: 1rem;
  font-size: 0.875rem;
  font-style: italic;
  color: var(--text-soft);
}

.member-email {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--accent-blue);
  transition: color 0.2s;
}

.member-email:hover {
  color: var(--accent-blue-hover);
}

.member-email img {
  width: 0.9375rem;
  height: 0.9375rem;
}

/* ---------- Final CTA ---------- */
.final-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(215, 181, 109, 0.25);
  background: var(--final-bg);
  padding: 3.5rem 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .final-card {
    padding: 4rem 3rem;
  }
}

.final-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.6;
  pointer-events: none;
  background: radial-gradient(
    30rem 20rem at 50% -20%,
    rgba(215, 181, 109, 0.16),
    transparent 70%
  );
}

.final-inner {
  position: relative;
  max-width: 42rem;
  margin-inline: auto;
}

.final-inner h2 {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}

@media (min-width: 640px) {
  .final-inner h2 {
    font-size: 2.25rem;
  }
}

.final-inner p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}

@media (min-width: 640px) {
  .final-inner p {
    font-size: 1.125rem;
  }
}

.final-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .final-actions {
    flex-direction: row;
  }
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
  }
}

.contact-card {
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .contact-card {
    padding: 2rem;
  }
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-soft);
}

.field input,
.field select,
.field textarea {
  margin-top: 0.375rem;
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: var(--field-bg);
  padding: 0.625rem 0.875rem;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--text-strong);
  transition: border-color 0.2s;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-muted);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(88, 149, 205, 0.5);
}

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

.form-foot {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-foot {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.form-foot .note {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.form-foot .note a {
  color: var(--accent-blue);
}

.form-foot .note a:hover {
  color: var(--accent-blue-hover);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--footer-bg);
}

.footer-inner {
  padding-block: 3.5rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-desc {
  margin-top: 1rem;
  max-width: 24rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text);
}

.footer-col h2 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.footer-col ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--text);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text-strong);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ---------- Knowledge-flow diagram ---------- */
.diagram-desktop {
  display: none;
}

.diagram-desktop img {
  width: 100%;
  height: auto;
}

.diagram-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.diagram-mobile .sources {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.diagram-mobile .source {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--chip-bg);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--text-soft);
}

.diagram-mobile .source img {
  width: 0.9375rem;
  height: 0.9375rem;
  flex-shrink: 0;
  color: var(--accent-blue);
}

.diagram-mobile .brain {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(215, 181, 109, 0.4);
  background: var(--chip-bg-strong);
  padding: 1.25rem 2rem;
}

.diagram-mobile .brain img {
  width: 2rem;
  height: 2rem;
  color: var(--gold-text);
}

.diagram-mobile .brain span {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-strong);
}

.diagram-mobile .arrow {
  width: 18px;
  height: 26px;
  color: var(--accent-blue-mid);
}

.diagram-mobile .result {
  width: 100%;
  max-width: 20rem;
  padding: 1rem;
}

.diagram-mobile .result .label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-text);
}

.diagram-mobile .result .bars {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.diagram-mobile .result .bar {
  height: 0.375rem;
  border-radius: 999px;
}

.bar-a {
  width: 100%;
  background: var(--bar-a);
}

.bar-b {
  width: 80%;
  background: var(--bar-b);
}

.bar-c {
  width: 40%;
  margin-top: 0.75rem;
  background: var(--bar-c);
}

/* Show the SVG diagram from tablet up, the stacked version below. */
@media (min-width: 768px) {
  .diagram-desktop {
    display: block;
  }
  .diagram-mobile {
    display: none;
  }
}


/* ---------- Legal pages (Impressum / Datenschutz) ---------- */
.legal {
  max-width: 46rem;
}

.legal h1 {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}

.legal-intro {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.legal h2 {
  margin-top: 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-strong);
}

.legal p {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text);
}

.legal ul {
  margin-top: 0.75rem;
  padding-left: 1.25rem;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text);
}

.legal a {
  color: var(--accent-blue);
  transition: color 0.2s;
}

.legal a:hover {
  color: var(--accent-blue-hover);
}

.legal .placeholder {
  color: var(--danger-text);
  font-style: italic;
  font-weight: 600;
}

.legal-stand {
  margin-top: 3rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ---------- Cookie-Consent ---------- */
.cookie-consent {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 100;
  padding: 1rem;
  display: none;
}

.cookie-consent.visible {
  display: flex;
  justify-content: center;
}

.cookie-card {
  width: 100%;
  max-width: 40rem;
  background: linear-gradient(180deg, var(--surface-a), var(--surface-b));
  border: 1px solid rgba(88, 149, 205, 0.35);
  border-radius: 0.75rem;
  box-shadow: 0 18px 48px -12px rgba(0, 0, 0, 0.6);
  padding: 1.25rem;
}

@media (min-width: 640px) {
  .cookie-card {
    padding: 1.5rem;
  }
}

.cookie-card h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-strong);
}

.cookie-card p {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text);
}

.cookie-card a {
  color: var(--accent-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-card [hidden] {
  display: none !important;
}

.cookie-cats {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.cookie-cat {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  cursor: pointer;
}

.cookie-cat input {
  margin-top: 0.2rem;
  width: 1rem;
  height: 1rem;
  accent-color: var(--gold-text);
  flex-shrink: 0;
}

.cookie-cat b {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-softer);
}

.cookie-cat small {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.cookie-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
}

.cookie-actions .btn {
  flex: 1 1 auto;
}

@media (min-width: 640px) {
  .cookie-actions .btn {
    flex: 0 0 auto;
  }
}

.cookie-settings-toggle {
  background: none;
  border: none;
  padding: 0.5rem 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.cookie-settings-toggle:hover {
  color: var(--accent-blue-hover);
}

/* ---------- Responsive Feinschliff ---------- */
/* Kompakter Header auf Smartphones: nicht klebend, zentriert, engere Nav. */
@media (max-width: 767px) {
  .site-header {
    position: static;
  }

  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding-block: 1rem;
    min-height: 0;
  }

  .logo-img {
    height: 2.25rem;
  }

  .nav-desktop {
    justify-content: center;
    gap: 0.375rem 1rem;
    font-size: 0.875rem;
  }

  .header-cta,
  .header-cta .btn {
    width: 100%;
    max-width: 20rem;
  }

  .section {
    padding-block: 3.5rem;
    scroll-margin-top: 1rem;
  }

  .value-band {
    padding-block: 2.5rem;
  }

  .mt-grid {
    margin-top: 2rem;
  }

  .final-card {
    padding: 2.5rem 1.25rem;
  }
}

/* Sehr schmale Geräte (bis 380px). */
@media (max-width: 380px) {
  .container-page {
    padding-inline: 1rem;
  }

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

  .diagram-mobile .sources {
    grid-template-columns: 1fr;
  }
}

/* Grosse Bildschirme: mehr Luft, groessere Illustration bleibt scharf (SVG). */
@media (min-width: 1920px) {
  .container-page {
    max-width: 88rem;
  }
}

/* ---------- Theme-Umschaltung ---------- */
.theme-dark-only {
  display: var(--display-dark);
}

.theme-light-only {
  display: var(--display-light);
}

/* Farbige Icon-Dateien im hellen Theme abdunkeln (Logo bleibt unberührt). */
img[src*="-blue.svg"],
img[src*="-gold.svg"],
img[src*="-azure.svg"],
img[src*="-grey.svg"] {
  filter: var(--icon-dim);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.theme-toggle:hover {
  color: var(--text-strong);
  border-color: var(--accent-blue-mid);
}

.theme-toggle svg {
  width: 1.125rem;
  height: 1.125rem;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}


/* ---------- Foto-Karten (PNG/JPG-Illustrationen) ---------- */
.photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.photo-card img {
  width: 100%;
  height: auto;
  display: block;
}

.section-heading .photo-card {
  margin-top: 1.5rem;
}

.sov-illustration img {
  width: 100%;
  height: auto;
}

/* ---------- Sprachmenü (Dropdown) ---------- */
.lang-menu {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
}

/* Der Auslöser bleibt immer gleich groß — der Header wächst nie mit. */
.lang-menu > summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 3.5rem;
  height: 2.5rem;
  box-sizing: border-box;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-soft);
  cursor: pointer;
  user-select: none;
  transition: color 0.2s, border-color 0.2s;
  /* Standard-Dreieck des <details>-Elements in allen Browsern ausblenden */
  list-style: none;
}

.lang-menu > summary::marker,
.lang-menu > summary::-webkit-details-marker {
  display: none;
  content: ;
}

.lang-menu > summary::after {
  content: ;
  width: 0;
  height: 0;
  border-left: 0.25rem solid transparent;
  border-right: 0.25rem solid transparent;
  border-top: 0.25rem solid currentColor;
  transition: transform 0.2s;
}

.lang-menu[open] > summary::after {
  transform: rotate(180deg);
}

.lang-menu > summary:hover,
.lang-menu[open] > summary {
  color: var(--text-strong);
  border-color: var(--accent-blue-mid);
}

/* Die Liste schwebt über dem Inhalt und beeinflusst das Layout nicht. */
.lang-menu > ul {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  inset-inline-end: 0;
  inset-inline-start: auto;
  z-index: 70;
  margin: 0;
  padding: 0.375rem;
  width: max-content;
  min-width: 11rem;
  max-height: min(78vh, 33rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  list-style: none;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: linear-gradient(180deg, var(--surface-a), var(--surface-b));
  box-shadow: 0 18px 44px -12px rgba(0, 0, 0, 0.55);
}

.lang-menu > ul li {
  list-style: none;
}

.lang-menu > ul a {
  display: block;
  white-space: nowrap;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: var(--text);
  transition: background-color 0.2s, color 0.2s;
}

.lang-menu > ul a:hover,
.lang-menu > ul a:focus-visible {
  background: rgba(88, 149, 205, 0.14);
  color: var(--text-strong);
}

.lang-menu > ul a[aria-current] {
  color: var(--gold-text);
  font-weight: 600;
}

/* RTL: Menü an der anderen Kante ausrichten. */
[dir="rtl"] .lang-menu > ul {
  right: auto;
  left: 0;
}

/* Auf schmalen Geräten am Auslöser zentrieren, aber im Viewport halten. */
@media (max-width: 640px) {
  .lang-menu > ul {
    right: auto;
    left: 50%;
    inset-inline: auto;
    transform: translateX(-50%);
    max-height: 60vh;
  }
  [dir="rtl"] .lang-menu > ul {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ---------- Rechts-nach-links (Arabisch) ---------- */
[dir="rtl"] .hero {
  background-position: left center;
  background-image: var(--hero-overlay-rtl), url("../assets/digital-person.jpg");
}

[dir="rtl"] .eyebrow::before {
  order: 0;
}

[dir="rtl"] .member-quote {
  border-left: none;
  border-right: 2px solid rgba(215, 181, 109, 0.5);
  padding-left: 0;
  padding-right: 1rem;
}

[dir="rtl"] .compare-head .cell-q,
[dir="rtl"] .compare-body .cell-q {
  border-left: none;
  border-right: 1px solid rgba(215, 181, 109, 0.2);
}

[dir="rtl"] .uc-box h4,
[dir="rtl"] .legal ul {
  text-align: right;
}

[dir="rtl"] .legal ul {
  padding-left: 0;
  padding-right: 1.25rem;
}

[dir="rtl"] .uc-tab {
  text-align: right;
}

/* ---------- Spamschutz-Feld im Kontaktformular ---------- */
.captcha-field b {
  font-weight: 700;
  color: var(--text-strong);
}

.captcha-hint {
  display: block;
  margin-top: 0.375rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.captcha-error {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(232, 131, 122, 0.4);
  border-radius: 0.75rem;
  background: rgba(232, 131, 122, 0.1);
  color: var(--danger-text);
  font-size: 0.875rem;
}
