/*
 * THE Ä-TEAM – style.css v3
 * Design: Original theaeteam.de — Weißer Hintergrund, Gelb #FFFC03, Schwarz
 * Optimiert nach yourIT Praxisleitfaden Website-Qualität 2026
 */

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ===== VARIABLES (DARK THEME) ===== */
:root {
  --yellow:  #FFFC03;
  --yellow-deep: #F2D900;
  --black:   #0E0E0C;   /* Ink: Text, Ränder, Überschriften auf hellem Grund */
  --ink:     #000000;
  --white:   #FFFFFF;   /* Karten-/Oberfläche hell */
  --offwhite:#FFFFFF;   /* helle erhabene Fläche (auf grauem Body) */
  --light:   #EDEDEA;   /* Hover / dezente Fläche */
  --border:  rgba(0,0,0,0.14);
  --muted:   #6B6B66;
  --text:    #1A1A17;
  --text2:   #4A4843;
  --red:#CC2C24; --blue:#00AEEF; --green:#6CC24A; --magenta:#0B7FA8;
  --nav-h:   66px;
  --display: 'Open Sans', system-ui, -apple-system, sans-serif;
  --body: 'Open Sans', system-ui, -apple-system, sans-serif;
}

/* ===== BASE ===== */
body {
  font-family: var(--body);
  background: #F2F2F0;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--blue);
  color: var(--black);
  padding: 0.6rem 1.2rem;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 0 0 4px 4px;
  transition: top 0.15s;
}
.skip-link:focus { top: 0; }

/* ===== NAVIGATION ===== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: var(--white);
  border-bottom: 2px solid var(--blue);
  transition: box-shadow 0.3s;
}
#nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }

.nav-logo {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  color: var(--black);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo .ae { color: var(--blue); background: none; padding: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text2);
  padding: 0.45rem 0.7rem;
  border-radius: 3px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  min-height: 36px;
  display: flex;
  align-items: center;
}
.nav-links a:hover { color: var(--black); background: var(--light); }
.nav-links a.active { color: var(--black); background: var(--blue); }
.nav-links a:focus-visible { outline: 2px solid var(--black); outline-offset: 2px; }
.nav-links .nav-cta {
  background: var(--blue) !important;
  color: #0E0E0C !important;
  font-weight: 700;
  margin-left: 0.5rem;
  border: 2px solid var(--blue);
}
.nav-links .nav-cta:hover { background: #000 !important; color: var(--blue) !important; border-color: var(--blue); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: 2px solid transparent;
  border-radius: 3px;
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
.burger:focus-visible { border-color: var(--black); outline: none; }
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: 0.3s;
}

#mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 190;
  background: var(--white);
  border-bottom: 2px solid var(--blue);
  padding: 1rem 1.5rem 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text2);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
#mobile-menu a:hover { color: var(--black); }
#mobile-menu a.mm-cta {
  margin-top: 0.75rem;
  background: var(--blue);
  color: #0E0E0C;
  font-weight: 700;
  padding: 0.85rem 1rem;
  text-align: center;
  border: 2px solid var(--blue);
  border-radius: 3px;
  border-bottom: 2px solid var(--blue);
  justify-content: center;
}

/* ===== YELLOW STRIPE / TICKER ===== */
.yellow-stripe {
  background: var(--blue);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.7rem 0;
  margin-top: var(--nav-h);
}
@media (prefers-reduced-motion: no-preference) {
  .yellow-stripe .stripe-inner { animation: stripe 28s linear infinite; }
}
.stripe-inner {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
}
.stripe-inner .dot { margin: 0 1rem; }
@keyframes stripe { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== SECTIONS ===== */
.section { padding: 5rem 2.5rem; }
.section, .page-hero { scroll-margin-top: var(--nav-h); }
.section-light { background: var(--white); }
.section-off   { background: var(--offwhite); }
.section-light-border { background: var(--light); border-top: 2px solid var(--blue); border-bottom: 2px solid var(--blue); }

/* ===== LABELS / HEADINGS ===== */
.label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--blue);
  display: inline-block;
  padding: 0.2rem 0.6rem;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 1.25rem;
  text-wrap: balance;
}
.section-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text2);
  max-width: 580px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--black);
  padding: 0.85rem 2rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--black);
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  min-height: 44px;
  text-decoration: none;
}
.btn-primary:hover { background: var(--black); color: var(--blue); }
.btn-primary:focus-visible { outline: 3px solid var(--black); outline-offset: 2px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--black);
  padding: 0.85rem 2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--black);
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  min-height: 44px;
  text-decoration: none;
}
.btn-secondary:hover { background: var(--black); color: var(--white); }
.btn-secondary:focus-visible { outline: 3px solid var(--black); outline-offset: 2px; }

/* ===== PACK CARDS ===== */
.pack-card {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 3px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s;
}
.pack-card:hover { transform: translateY(-3px); box-shadow: 4px 4px 0 var(--black); }
.pack-card.featured { background: var(--blue); }
.pack-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--black);
  letter-spacing: -0.015em;
  margin-bottom: 0.35rem;
  line-height: 1.05;
}
.pack-domains { font-size: 0.75rem; color: var(--text2); letter-spacing: 0.04em; margin-bottom: 0.6rem; font-family: monospace; }
.pack-for { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.pack-desc { font-size: 0.88rem; line-height: 1.65; color: var(--text2); flex: 1; }
.pack-status {
  align-self: flex-start;
  margin-top: 1.1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border: 2px solid var(--black);
  border-radius: 2px;
}
.status-avail { background: var(--blue); color: var(--black); }
.status-sold  { background: var(--light); color: var(--muted); border-color: var(--border); }
.status-req   { background: var(--black); color: var(--blue); }

/* ===== BLOG CARDS ===== */
.blog-card {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 3px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 4px 4px 0 var(--black); }
.blog-card:focus-visible { outline: 3px solid var(--black); outline-offset: 2px; }
.blog-date {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.blog-date::before { content: ''; display: inline-block; width: 20px; height: 2px; background: var(--blue); }
.blog-title { font-family: var(--display); font-weight: 800; font-size: 1.28rem; color: var(--black); line-height: 1.18; margin-bottom: 0.65rem; letter-spacing: -0.015em; }
.blog-excerpt { font-size: 0.87rem; line-height: 1.65; color: var(--text2); flex: 1; }
.blog-read { margin-top: 1rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); display: flex; align-items: center; gap: 0.4rem; }
.blog-read::after { content: '→'; }

/* ===== HINWEIS BAR ===== */
.hinweis-bar {
  background: var(--light);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  padding: 1.1rem 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.hinweis-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0E0E0C;
  background: var(--blue);
  padding: 0.15rem 0.5rem;
  flex-shrink: 0;
}
.hinweis-text {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text2);
}

/* ===== FAQ ===== */
.faq-item {
  border: 2px solid var(--black);
  border-radius: 3px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  transition: box-shadow 0.15s;
}
.faq-item.open { box-shadow: 3px 3px 0 var(--black); }
.faq-btn {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  font-family: var(--body);
  transition: background 0.15s;
}
.faq-btn:hover { background: var(--light); }
.faq-item.open .faq-btn { background: var(--blue); }
.faq-cat {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.faq-item.open .faq-cat { color: var(--black); opacity: 0.6; }
.faq-q { font-size: 0.95rem; font-weight: 600; color: var(--black); line-height: 1.4; }
.faq-arrow { font-size: 1rem; color: var(--black); flex-shrink: 0; margin-top: 2px; transition: transform 0.25s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 1.25rem 1.5rem;
  background: var(--offwhite);
  border-top: 2px solid var(--black);
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text2);
}
.faq-a a { color: var(--black); text-decoration: underline; font-weight: 600; }
.faq-item.open .faq-a { display: block; }

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  color: var(--white);
  padding: 3rem 2.5rem 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.65rem;
}
.footer-logo .ae { background: none; color: var(--blue); padding: 0; }
.footer-tagline { font-size: 0.82rem; line-height: 1.6; color: rgba(255,255,255,0.45); }
.footer-col .footer-h {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
  min-height: 28px;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.footer-col a:hover { color: var(--blue); }
.footer-col a:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.footer-col a[target="_blank"]::after { content: " ↗"; font-size: 0.65em; opacity: 0.5; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: color 0.15s; }
.footer-legal a:hover { color: var(--blue); }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 6rem 2.5rem 4.5rem;
  background: var(--offwhite);
  border-bottom: 2px solid var(--black);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  right: -1.5%;
  bottom: -34%;
  top: auto;
  transform: none;
  z-index: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(180px, 25vw, 420px);
  letter-spacing: -0.05em;
  line-height: 0.8;
  color: var(--blue);
  opacity: 0.8;
  pointer-events: none;
  user-select: none;
}
.page-hero .label { position: relative; z-index: 1; }
.page-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5.8vw, 5.2rem);
  line-height: 1.0;
  color: var(--black);
  max-width: 800px;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}
.page-sub {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text2);
  max-width: 560px;
  position: relative;
  z-index: 1;
}

/* ===== REVIEW ===== */
.review-box {
  background: var(--blue);
  border: 2px solid var(--black);
  border-radius: 3px;
  padding: 2rem;
}
.review-stars { font-size: 1.1rem; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.review-quote { font-size: 1rem; line-height: 1.75; color: var(--black); font-style: italic; margin-bottom: 0.75rem; }
.review-author { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(0,0,0,0.55); }

/* ===== CONTACT FORM ===== */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--white);
  border: 2px solid var(--black);
  color: var(--text);
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  border-radius: 3px;
  outline: none;
  font-family: var(--body);
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--blue); box-shadow: 3px 3px 0 var(--black); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 760px; }
.legal-content h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--black);
  margin: 2rem 0 0.75rem;
  letter-spacing: 0.03em;
  padding-left: 0.5rem;
  border-left: 4px solid var(--blue);
}
.legal-content h3 { font-size: 1rem; font-weight: 700; color: var(--black); margin: 1.25rem 0 0.4rem; }
.legal-content p { font-size: 0.92rem; line-height: 1.8; color: var(--text2); margin-bottom: 0.85rem; }
.legal-content a { color: var(--black); text-decoration: underline; font-weight: 600; }
.legal-content ul { list-style: none; margin: 0.5rem 0 1rem 0; }
.legal-content ul li {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text2);
  padding: 0.25rem 0 0.25rem 1.25rem;
  position: relative;
}
.legal-content ul li::before { content: '✦'; position: absolute; left: 0; color: var(--black); font-size: 0.6rem; top: 0.5rem; }

/* ===== SOCIAL LINKS ===== */
.soc-card {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 3px;
  padding: 1.5rem;
  display: block;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.soc-card:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 3px 3px 0 var(--black); }
.soc-card:focus-visible { outline: 3px solid var(--black); outline-offset: 2px; }

/* ===== ASSETS TABLE ===== */
.asset-row {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.5fr auto;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background 0.15s;
}
.asset-row:hover { background: var(--light); }
.asset-row.header { background: var(--black); color: var(--white); border-radius: 3px 3px 0 0; }
.asset-row.header span { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1060px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .burger { display: flex; }
}
@media (max-width: 780px) {
  #nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .section { padding: 3.5rem 1.25rem; }
  .page-hero { padding: calc(var(--nav-h) + 2rem) 1.25rem 2.5rem; }
  .hinweis-bar { padding: 1rem 1.25rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  footer { padding: 2rem 1.25rem 1.5rem; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ===== DOMÄN-LISTE ===== */
.dl-toolbar {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.5rem;
}
.dl-count {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--blue);
  border: 2px solid var(--black);
  border-radius: 3px;
  padding: 0.5rem 0.9rem;
  white-space: nowrap;
}
.dl-list {
  list-style: none;
  border: 2px solid var(--black);
  border-radius: 4px;
  overflow: hidden;
  columns: 4;
  column-gap: 0;
}
.dl-item {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 0.8rem;
  color: var(--text);
  padding: 0.5rem 0.9rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  break-inside: avoid;
  word-break: break-word;
  background: var(--white);
  transition: background 0.12s;
}
.dl-item:hover { background: var(--blue); }
.dl-empty {
  margin-top: 1.5rem;
  border: 2px solid var(--black);
  border-radius: 4px;
  background: var(--offwhite);
  padding: 2.25rem 2rem;
  box-shadow: 6px 6px 0 var(--blue);
}
.dl-empty-badge {
  display: inline-block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--blue);
  border: 2px solid var(--black);
  border-radius: 3px;
  padding: 0.3rem 0.7rem;
  margin-bottom: 1rem;
}
.dl-empty-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 0.65rem;
  text-wrap: balance;
}
.dl-empty-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text2);
  max-width: 560px;
  margin-bottom: 1.5rem;
}
.dl-empty-cta { display: flex; gap: 0.85rem; flex-wrap: wrap; }
@media (max-width: 1000px) { .dl-list { columns: 3; } }
@media (max-width: 680px)  { .dl-list { columns: 2; } }
@media (max-width: 440px)  { .dl-list { columns: 1; } }

/* ===== UMLAUT-LISTE ===== */
.umlaut-list {
  list-style: none;
  border: 2px solid var(--black);
  border-radius: 4px;
  overflow: hidden;
}
.umlaut-row {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.95rem 1.5rem;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.umlaut-row:first-child { border-top: none; }
.umlaut-row:nth-child(even) { background: var(--offwhite); }
.umlaut-name {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.015em;
  font-size: 1.18rem;
  color: var(--black);
}
.umlaut-domains {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 0.82rem;
  color: var(--text2);
  word-break: break-word;
}
.umlaut-row .pack-status { justify-self: end; white-space: nowrap; }
@media (max-width: 680px) {
  .umlaut-row {
    grid-template-columns: 1fr auto;
    gap: 0.3rem 1rem;
  }
  .umlaut-name { grid-column: 1; }
  .umlaut-row .pack-status { grid-column: 2; grid-row: 1; }
  .umlaut-domains { grid-column: 1 / -1; }
}

/* ===== HOMEPAGE HERO ===== */
.hero { background: var(--white); padding: 4.5rem 2.5rem 4.25rem; }
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-lead .label { margin-bottom: 1.25rem; }
.hero-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3.4rem, 7.5vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--black);
}
.hero-title .hl {
  color: var(--blue);
  padding: 0;
}
.hero-sub {
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.72;
  color: var(--text2);
  max-width: 480px;
  margin: 1.6rem 0 2.25rem;
}
.hero-cta { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.hero-art {
  position: relative;
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 4px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 8px 8px 0 rgba(255,252,3,0.18);
}
.hero-art-ae {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(210px, 28vw, 410px);
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: var(--blue);
  user-select: none;
}
.hero-art-tag {
  position: absolute;
  left: 1.25rem;
  bottom: 1.1rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-art-corner {
  position: absolute;
  top: 1.1rem;
  right: 1.25rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ===== STATS BAND ===== */
.stats-band {
  background: var(--ink);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--blue);
  padding: 2.5rem 2.5rem;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.stat { padding: 0.25rem 1.5rem; position: relative; }
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  height: 64%;
  width: 2px;
  background: rgba(255,255,255,0.12);
}
.stat-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.6;
  letter-spacing: -0.03em;
  color: var(--blue);
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-top: 0.55rem;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .hero-art { aspect-ratio: 16 / 10; max-width: 440px; }
}
@media (max-width: 780px) {
  .hero { padding: 3.25rem 1.25rem 3rem; }
  .stats-band { padding: 2rem 1.25rem; }
  .stats-inner { grid-template-columns: 1fr; gap: 0; }
  .stat { padding: 1.1rem 0; }
  .stat + .stat::before { left: 0; right: 0; top: 0; bottom: auto; transform: none; width: 100%; height: 2px; }
}

/* =====================================================================
   DARK THEME PATCHES
   --black ist jetzt hell (Text/Ränder). Gelbe Flächen brauchen dunklen
   Text; „invertierte" Bausteine (Footer, Header-Zeilen) bleiben dunkel.
   ===================================================================== */

/* Ink #0E0E0C = dunkler Text auf gelben Flächen */
.label,
.btn-primary,
.status-avail,
.dl-count,
.dl-empty-badge,
.stripe-inner,
.skip-link { color: #0E0E0C; }

.btn-primary:hover { background: #000; color: var(--blue); }
.btn-secondary:hover { background: var(--blue); color: #0E0E0C; border-color: var(--blue); }

/* Nav */
.nav-links a.active { color: #0E0E0C; background: var(--blue); }
.nav-links .nav-cta { color: var(--blue); }
.nav-links .nav-cta:hover { background: var(--blue) !important; color: #0E0E0C !important; }

/* Hero-Highlight: nur der Buchstabe gelb, kein Kasten */
.hero-title .hl { color: var(--blue); }

/* Featured Pack-Card (gelb) */
.pack-card.featured, .pack-card.featured * { color: #0E0E0C !important; }

/* Review-Box (gelb) */
.review-box, .review-box * { color: #0E0E0C !important; }
.review-author { color: rgba(0,0,0,0.6) !important; }

/* FAQ offen (gelb) */
.faq-item.open .faq-btn, .faq-item.open .faq-btn * { color: #0E0E0C !important; }

/* Domain-Liste Hover (gelb) */
.dl-item:hover { color: #0E0E0C; }

/* Status-Pills */
.status-req  { background: #000; color: var(--blue); }
.status-sold { background: var(--light); color: var(--muted); }

/* Footer bleibt tiefschwarz mit hellem Text */
footer { background: #000; color: var(--text); }
.footer-logo .ae { color: var(--blue); }

/* Tabellen-Kopfzeile (invertiert) */
.asset-row.header { background: #000; color: var(--text); }

/* Inline-Gelbboxen quer über alle Seiten: Text darauf immer dunkel */
[style*="background:var(--blue)"],
[style*="background: var(--blue)"] { color: #0E0E0C !important; }
[style*="background:var(--blue)"] *,
[style*="background: var(--blue)"] * { color: #0E0E0C !important; }

/* =====================================================================
   KONTRAST-REGEL (verbindlich): NIEMALS Weiß-auf-Gelb oder Gelb-auf-Weiß.
   In diesem Dark-Theme ist var(--black) hell (#F3F1EB). „Invertierte"
   Chips mit background:var(--black) + gelber/heller Schrift ergäben
   gelb-auf-hell (unlesbar) -> Hintergrund auf echtes Dunkel zwingen.
   ===================================================================== */
[style*="background:var(--black)"],
[style*="background: var(--black)"],
[style*="background:#F3F1EB"],
[style*="background: #F3F1EB"],
[style*="background:#f3f1eb"],
[style*="background:#fff"],
[style*="background: #fff"],
[style*="background:white"],
[style*="background: white"] { background: #0E0E0C !important; }

/* Soziale Karten: Hover-Gelb -> dunkler Text */
.soc-card:hover, .soc-card:hover * { color: #0E0E0C !important; }

/* ===== BLOG (Import) ===== */
.blog-toolbar { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-bottom: 1.25rem; }
.blog-search {
  flex: 1; min-width: 220px;
  background: var(--white); border: 2px solid var(--black); color: var(--text);
  padding: 0.8rem 1rem; font-size: 0.95rem; border-radius: 3px; outline: none; font-family: var(--body);
}
.blog-search:focus { border-color: var(--blue); }
.blog-count {
  font-family: var(--display); font-weight: 800; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase;
  color: #0E0E0C; background: var(--blue); border: 2px solid var(--black); border-radius: 3px; padding: 0.5rem 0.9rem; white-space: nowrap;
}
.blog-cats-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.blog-chip {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.4rem 0.75rem; border: 2px solid var(--border); border-radius: 3px;
  background: var(--white); color: var(--text2); cursor: pointer; font-family: var(--body); transition: background 0.12s, color 0.12s, border-color 0.12s;
}
.blog-chip:hover { border-color: var(--blue); color: var(--text); }
.blog-chip.active { background: var(--blue); color: #0E0E0C; border-color: var(--blue); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); gap: 1.25rem; }
.blog-tile {
  display: flex; flex-direction: column; background: var(--white); border: 2px solid var(--black); border-radius: 4px;
  overflow: hidden; text-decoration: none; transition: transform 0.15s, box-shadow 0.15s;
}
.blog-tile:hover { transform: translateY(-3px); box-shadow: 6px 6px 0 var(--blue); }
.blog-tile-img { width: 100%; aspect-ratio: 1 / 1; background: #000 center / cover no-repeat; border-bottom: 2px solid var(--black); }
.blog-tile-body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.blog-tile .blog-date { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.blog-tile .blog-title { font-family: var(--display); font-weight: 800; font-size: 1.05rem; line-height: 1.2; letter-spacing: -0.01em; color: var(--text); }
.blog-tile-cat { margin-top: auto; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ===== BLOG POST ===== */ 
.section:has(.post-wrap) { padding-top: 112px !important; }
.post-wrap { max-width: 820px; margin: 0 auto; }
.post-back { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--black); background: #fff; border: 2px solid var(--black); border-radius: 0; padding: 12px 18px; box-shadow: 3px 3px 0 var(--black); line-height: 1.2; margin-bottom: 1.5rem; scroll-margin-top: calc(var(--nav-h) + 1.5rem); transition: background 0.15s, color 0.15s, box-shadow 0.15s, transform 0.15s; }
.post-back:hover { color: #fff; background: var(--blue); border-color: var(--blue); box-shadow: 2px 2px 0 var(--black); transform: translate(1px, 1px); }
.post-meta { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; margin-bottom: 1.25rem; }
.post-date { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.post-cat { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; background: var(--blue); color: #0E0E0C; padding: 0.2rem 0.55rem; border-radius: 2px; }
.post-title { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 4.2vw, 3.2rem); line-height: 1.05; letter-spacing: -0.03em; color: var(--text); margin-bottom: 1.75rem; text-wrap: balance; }
.post-hero-img { width: 100%; max-height: 540px; object-fit: contain; background: #000; border: 2px solid var(--black); border-radius: 4px; margin-bottom: 2rem; }
.post-body p { font-size: 1.09rem; line-height: 1.78; color: #333333; margin-bottom: 1.15rem; }
.post-body > p:first-of-type { font-size: 1.22rem; line-height: 1.7; color: var(--text); margin-bottom: 1.5rem; }
.post-body h3 { font-family: var(--display); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.02em; color: var(--text); margin: 2.6rem 0 0.85rem; padding-top: 1.4rem; border-top: 2px solid var(--border); }
.post-body h4 { font-family: var(--display); font-weight: 800; font-size: 1.14rem; letter-spacing: -0.01em; color: var(--blue); margin: 1.9rem 0 0.5rem; }
.post-body ul.post-list { margin: 0 0 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 0.5rem; }
.post-body ul.post-list li { font-size: 1.09rem; line-height: 1.7; color: #333333; list-style: disc; }
.post-body ul.post-list li::marker { color: var(--blue); }
.post-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-top: 2.5rem; }
.post-gallery img { width: 100%; border: 2px solid var(--black); border-radius: 4px; background: #000; }
.post-orig { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); font-size: 0.85rem; color: var(--muted); }
.post-orig a { color:#0B7FA8; text-decoration: underline; }


/* ============================================================
   DS-2026 OVERRIDES — hell, mehrfarbig, Gelb als Akzent
   ============================================================ */
/* Dark nav band (wie Pilot) */
#nav { background: var(--ink); border-bottom: none; box-shadow: 0 1px 0 rgba(0,0,0,.15); }
#nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.25); }
.nav-logo { color: #fff; }
.nav-logo .ae { color: var(--blue); }
.nav-links a { color: #D9D7D0; }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.09); }
.nav-links a.active { color: var(--blue); background: transparent; }
.nav-links .nav-cta { background: var(--blue) !important; color: #0E0E0C !important; border-color: var(--blue); }
.nav-links .nav-cta:hover { background: #fff !important; color: #0E0E0C !important; border-color:#fff; }
.burger span { background: #fff; }
#mobile-menu { background: var(--ink); border-bottom: none; }
#mobile-menu a { color: #D9D7D0; }
#mobile-menu a:hover { color: #fff; }

/* Eyebrow-Label statt gelbem Block → entgelbt jede Sektion */
.label { background: transparent; color: var(--muted); padding: 0; letter-spacing: 0.2em; font-size: 0.72rem; }
.page-hero .label { color: var(--muted); }

/* Heller Hero, dezentes Wasserzeichen */
.page-hero { background: #fff; border-bottom: 1px solid var(--border); }
.page-hero-bg { opacity: 0.08; color: var(--blue); }

/* Grauer Body: Sektionen wechseln weiß/grau; Default-Sektion = grau (Body zeigt durch) */
.section { background: transparent; }
.section-off { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-light { background: #fff; }

/* Buttons: sekundär auf hellem Grund klar lesbar */
.btn-secondary { background:#fff; }
.btn-secondary:hover { background: var(--black); color:#fff; }

/* Karten leichter Schatten statt harter Klotz-Optik */
.pack-card, .blog-card, .soc-card { box-shadow: 0 1px 2px rgba(0,0,0,.04); }

/* Domänen-/FAQ-Flächen auf grauem Body abheben */
.dl-item { background:#fff; }
.faq-btn { background:#fff; }


/* MULTICOLOR-PASS-V1 */
/* ============================================================
   DS-2026 MEHRFARBIGKEIT — Akzentfarben über alle Seiten
   Marker/Badges in Listen rotieren durch die Palette,
   Section-Labels sind farbcodiert. Gelb bleibt ein Akzent.
   ============================================================ */

/* --- Aufzählungs-Marker (kleine ✦-Quadrate) & Step-Badges rotieren --- */
li:nth-child(5n+1) > span[style*="font-size:0.6rem"],
li:nth-child(5n+1) > span[style*="background:#0E0E0C"]{ background: var(--blue) !important;     color:#fff !important; }
li:nth-child(5n+2) > span[style*="font-size:0.6rem"],
li:nth-child(5n+2) > span[style*="background:#0E0E0C"]{ background:#0B7FA8 !important;    color:#fff !important; }
li:nth-child(5n+3) > span[style*="font-size:0.6rem"],
li:nth-child(5n+3) > span[style*="background:#0E0E0C"]{ background:#3F8E22 !important;   color:#fff !important; }
li:nth-child(5n+4) > span[style*="font-size:0.6rem"],
li:nth-child(5n+4) > span[style*="background:#0E0E0C"]{ background: var(--blue) !important; color:#fff !important; }
li:nth-child(5n+5) > span[style*="font-size:0.6rem"],
li:nth-child(5n+5) > span[style*="background:#0E0E0C"]{ background: var(--blue) !important;  color:#0E0E0C !important; }

/* --- Section-Labels farbcodiert (zyklisch) --- */
main .section:nth-of-type(5n+1) .label{ color: var(--blue); }
main .section:nth-of-type(5n+2) .label{ color:#0B7FA8; }
main .section:nth-of-type(5n+3) .label{ color:#3F8E22; }
main .section:nth-of-type(5n+4) .label{ color: var(--blue); }
main .section:nth-of-type(5n+5) .label{ color: #7A6A00; } /* dunkles Gold, lesbar auf hell */

/* --- Farbige Kicker-Bar über jeder Section-Überschrift --- */
.section-title::before{
  content:''; display:block; width:46px; height:5px; border-radius:3px;
  margin-bottom:1.1rem; background: var(--blue);
}
main .section:nth-of-type(5n+1) .section-title::before{ background: var(--blue); }
main .section:nth-of-type(5n+2) .section-title::before{ background: var(--blue); }
main .section:nth-of-type(5n+3) .section-title::before{ background: var(--blue); }
main .section:nth-of-type(5n+4) .section-title::before{ background: var(--blue); }
main .section:nth-of-type(5n+5) .section-title::before{ background: var(--blue); }

/* --- Karten: farbiger Oberkanten-Akzent, rotierend --- */
.pack-card, .blog-card, .soc-card{ border-top-width:5px; }
.blog-card:nth-child(3n+1){ border-top-color: var(--blue); }
.blog-card:nth-child(3n+2){ border-top-color: var(--blue); }
.blog-card:nth-child(3n+3){ border-top-color: var(--blue); }
.soc-card:nth-child(4n+1){ border-top-color: var(--blue); }
.soc-card:nth-child(4n+2){ border-top-color: var(--blue); }
.soc-card:nth-child(4n+3){ border-top-color: var(--blue); }
.soc-card:nth-child(4n+4){ border-top-color: var(--blue); }

/* --- Blog-Datum-Strich & FAQ-Kategorie farbig --- */
.blog-date::before{ background: var(--blue); }
.faq-cat{ color:#0B7FA8; }
.faq-item.open .faq-cat{ color: #0E0E0C; }

/* --- Legal-Seiten: farbige Abschnitts-Kante rotierend --- */
.legal-content h2:nth-of-type(4n+1){ border-left-color: var(--blue); }
.legal-content h2:nth-of-type(4n+2){ border-left-color: var(--blue); }
.legal-content h2:nth-of-type(4n+3){ border-left-color: var(--blue); }
.legal-content h2:nth-of-type(4n+4){ border-left-color: var(--blue); }

/* --- Domänen-Zähler-Chip: neutral statt gelb, damit Gelb Akzent bleibt --- */
.dl-count{ background:#0B7FA8; color:#fff; border-color:#0B7FA8; }


/* Footer-Text auf schwarzem Grund immer hell (fix theme-flip) */
footer{ color:#C7C4BC; }
.footer-logo{ color:#FFFFFF; }
.footer-logo .ae{ color:var(--blue); }


/* ===== SERIOUS-BLAU OVERRIDES ===== */
/* Gelb bleibt nur für EINEN CTA-Typ */
.btn-primary{ background:var(--yellow) !important; color:#0E0E0C !important; border-color:#0E0E0C !important; }
.btn-primary:hover{ background:#0E0E0C !important; color:var(--yellow) !important; }
#nav .nav-links .nav-cta, .nav-links .nav-cta{ background:var(--yellow) !important; color:#0E0E0C !important; border-color:var(--yellow) !important; }
.nav-links .nav-cta:hover{ background:#fff !important; color:#0E0E0C !important; border-color:#fff !important; }
#mobile-menu a.mm-cta{ background:var(--yellow) !important; color:#0E0E0C !important; border-color:var(--yellow) !important; }
/* Logo-Ä bleibt gelb (Umlaut-Hommage) */
.nav-logo .ae, .footer-logo .ae{ color:var(--yellow) !important; }
/* Labels neutral-grau statt bunt */
.label{ color:var(--muted) !important; }
/* Blaue Textstellen auf Hell lesbar */
.post-body h4{ color:#0B7FA8 !important; }
.blog-read{ color:#0B7FA8 !important; }
/* Inline-Gelbflächen aus Content -> dezenter Blau-Ton (dunkler Text bleibt lesbar) */
[style*="background:var(--yellow)"], [style*="background: var(--yellow)"]{ background:#E9F7FD !important; border-color:var(--blue) !important; }
/* Inline-Gelbtext aus Content (z.B. dunkle Chips) -> blau */
[style*="color:var(--yellow)"], [style*="color: var(--yellow)"]{ color:var(--blue) !important; }


/* Marker & Step-Badges: dunkleres Blau für lesbaren weißen Text */
li:nth-child(5n+1) > span[style*="font-size:0.6rem"], li:nth-child(5n+1) > span[style*="background:#0E0E0C"],
li:nth-child(5n+2) > span[style*="font-size:0.6rem"], li:nth-child(5n+2) > span[style*="background:#0E0E0C"],
li:nth-child(5n+3) > span[style*="font-size:0.6rem"], li:nth-child(5n+3) > span[style*="background:#0E0E0C"],
li:nth-child(5n+4) > span[style*="font-size:0.6rem"], li:nth-child(5n+4) > span[style*="background:#0E0E0C"],
li:nth-child(5n+5) > span[style*="font-size:0.6rem"], li:nth-child(5n+5) > span[style*="background:#0E0E0C"]{
  background:#0B7FA8 !important; color:#fff !important;
}

/* Beitragsbilder */
.post-content-img,.post-figure img{max-width:100%;height:auto;border-radius:8px;display:block;margin:1.5rem auto}
.post-figure{margin:1.5rem 0}
.post-figure figcaption{text-align:center;font-size:.85rem;color:#666;margin-top:.5rem;font-style:italic}
