*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-deep: #08060e;
  --bg-card: rgba(14, 10, 24, 0.7);
  --border-subtle: rgba(116, 70, 141, 0.12);
  --border-hover: rgba(116, 70, 141, 0.35);
  --purple-accent: #9b6fb6;
  --purple-bright: #c9a0e8;
  --purple-dim: #74468d;
  --text-primary: #ede6f5;
  --text-secondary: #a89eb8;
  --text-muted: #7a7088;
}

html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: 5rem; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb {
  background: rgba(100, 80, 140, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(100, 80, 140, 0.5); }
html { scrollbar-color: rgba(100, 80, 140, 0.3) var(--bg-deep); scrollbar-width: thin; }

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.6rem 1.2rem;
  background: var(--purple-accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 0 0 8px 8px;
  z-index: 200;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* --- Focus Styles --- */
:focus-visible {
  outline: 2px solid var(--purple-bright);
  outline-offset: 2px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- Shared section background technique --- */
.bg-section {
  position: relative;
  overflow: hidden;
}
.bg-section .bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.bg-section .bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 20%, var(--bg-deep) 75%),
    linear-gradient(180deg, rgba(8,6,14,0.3) 0%, rgba(8,6,14,0.6) 100%);
}

/* --- Nav --- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  background: rgba(8, 6, 14, 0.65);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-brand svg { height: 38px; width: auto; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  color: #d0c8dc;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links .btn-nav {
  color: var(--purple-accent);
  border: 1px solid var(--border-hover);
  padding: 0.4rem 1.1rem;
  border-radius: 6px;
  transition: all 0.3s;
}
.nav-links .btn-nav:hover {
  background: rgba(116, 70, 141, 0.1);
  border-color: var(--purple-accent);
}
.nav-links .btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  background: linear-gradient(135deg, var(--purple-dim), #5a2d78);
  border: 1px solid rgba(155, 111, 182, 0.3);
  padding: 0.4rem 1.1rem;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}
.nav-links .btn-download:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(116, 70, 141, 0.3);
  border-color: var(--purple-accent);
}

/* --- Language Switcher --- */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lang-switch a,
.lang-switch .lang-active {
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.2rem 0.35rem;
  border-radius: 4px;
  font-size: 0.72rem;
  transition: color 0.3s, background 0.3s;
}
.lang-switch a:hover {
  color: var(--text-primary);
  background: rgba(116, 70, 141, 0.1);
}
.lang-switch .lang-active {
  color: var(--text-primary);
  cursor: default;
}
.lang-switch .lang-sep {
  color: var(--border-subtle);
  user-select: none;
}
.footer-lang { margin-top: 1.2rem; justify-content: center; }

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 7rem 2rem 2rem;
}
.hero .bg-img {
  background-image: url('../img/bg_hero.webp');
  opacity: 0.35;
}
.hero .bg-img::after {
  background:
    radial-gradient(ellipse at 50% 45%, transparent 15%, var(--bg-deep) 65%),
    linear-gradient(180deg, rgba(8,6,14,0.1) 0%, var(--bg-deep) 95%);
}
.hero-logo {
  position: relative; z-index: 1;
  margin-top: -6rem;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}
.hero-logo svg { height: 180px; width: auto; }
.hero-badge {
  position: relative; z-index: 1;
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-accent);
  border: 1px solid var(--border-hover);
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 2.5rem;
  background: rgba(116, 70, 141, 0.08);
  backdrop-filter: blur(8px);
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero h1 {
  position: relative; z-index: 1;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--purple-bright);
}
.hero-sub {
  position: relative; z-index: 1;
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 3rem;
  font-weight: 300;
  animation: fadeUp 0.8s ease 0.3s both;
}
.hero-actions {
  position: relative; z-index: 1;
  display: flex;
  gap: 1rem;
  animation: fadeUp 0.8s ease 0.4s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: rgba(6, 4, 12, 0.8);
  backdrop-filter: blur(8px);
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid rgba(155, 111, 182, 0.4);
  transition: all 0.3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(116, 70, 141, 0.3);
  border-color: var(--purple-accent);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: rgba(6, 4, 12, 0.8);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(155, 111, 182, 0.1), 0 2px 8px rgba(0, 0, 0, 0.4);
  color: #d0c8dc;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  transition: all 0.3s;
}
.btn-ghost:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
}

/* --- Stats --- */
.stats {
  padding: 2rem 2rem 4rem;
  margin-top: -9rem;
  position: relative;
  z-index: 1;
}
.stats-grid {
  display: flex; justify-content: center;
  gap: 5rem; flex-wrap: wrap;
  max-width: 900px; margin: 0 auto;
}
.stat { text-align: center; }
.stat-number {
  font-family: 'Instrument Serif', serif;
  font-size: 2.8rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

/* --- Divider --- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
  max-width: 500px;
  margin: 0 auto;
}

/* --- Cores section --- */
.cores {
  padding: 6rem 2rem;
}
.cores .bg-img {
  background-image: url('../img/bg_cores.webp');
  opacity: 0.2;
}
.cores .bg-img::after {
  background:
    linear-gradient(180deg, var(--bg-deep) 0%, transparent 20%, transparent 80%, var(--bg-deep) 100%),
    radial-gradient(ellipse at center, transparent 30%, var(--bg-deep) 70%);
}
.section-label {
  position: relative; z-index: 1;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #dcc0f0;
  text-align: center;
  margin-bottom: 1.4rem;
}
.section-title {
  position: relative; z-index: 1;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 400;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
  line-height: 1.15;
}
.cores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.core-card {
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
  min-height: 440px;
}
.core-card:hover { transform: translateY(-6px); }
.core-card-header {
  padding: 2rem 2.4rem 1.6rem;
}
.core-tag {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.core-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.core-card-body {
  padding: 2.2rem 2.4rem 2.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.core-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: #e4e0ee;
  line-height: 1.8;
  font-weight: 400;
}

/* --- Origin --- */
.origin {
  padding: 6rem 2rem;
  text-align: center;
}
.origin .bg-img {
  background-image: url('../img/bg_origin.jpg');
  opacity: 0.35;
}
.origin .bg-img::after {
  background:
    linear-gradient(180deg, var(--bg-deep) 0%, rgba(8,6,14,0.4) 30%, rgba(8,6,14,0.4) 70%, var(--bg-deep) 100%),
    radial-gradient(ellipse at center, transparent 20%, var(--bg-deep) 70%);
}
.origin-inner {
  position: relative; z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 3.5rem;
  background: rgba(14, 18, 32, 0.7);
  border: 1px solid rgba(100, 130, 200, 0.12);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.origin-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.2rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.origin-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #e0dcea;
  line-height: 1.8;
  margin-bottom: 1.8rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.origin-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s;
  color: #fff;
  letter-spacing: 0.02em;
}
.cta-btn--teal {
  background: rgba(60, 150, 170, 0.15);
  border: 1px solid rgba(70, 165, 185, 0.4);
}
.cta-btn--teal:hover {
  background: rgba(60, 150, 170, 0.3);
  border-color: #5ab8c2;
  box-shadow: 0 4px 24px rgba(60, 150, 170, 0.15);
}
.cta-btn--ghost {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
}
.cta-btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}

/* --- Footer --- */
footer {
  padding: 4rem 2rem 3rem;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  position: relative;
  z-index: 1;
}
.footer-logo { margin-bottom: 1.8rem; }
.footer-logo svg { height: 48px; width: auto; opacity: 0.7; transform: translateX(12px); }
.award-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-bright);
  text-decoration: none;
  border: 1px solid rgba(155, 111, 182, 0.3);
  padding: 0.45rem 1.2rem;
  border-radius: 6px;
  transition: all 0.3s;
  margin-bottom: 1.5rem;
}
.award-badge:hover {
  color: var(--purple-accent);
  border-color: var(--purple-accent);
}
footer p {
  font-size: 0.88rem;
  color: #c0b8d0;
  font-weight: 400;
}
footer a {
  color: #d8d0e6;
  text-decoration: none;
  transition: color 0.3s;
}
footer a:hover { color: var(--purple-accent); }

/* --- Content pages (Impressum, Datenschutz, 404) --- */
.page-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  position: relative;
  z-index: 1;
}
.page-content--centered {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.page-content h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.page-content h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.page-content p,
.page-content li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-weight: 300;
}
.page-content ul {
  list-style: none;
  padding: 0;
}
.page-content li {
  padding: 0.25rem 0;
}
.page-content a {
  color: var(--purple-accent);
  text-decoration: none;
  transition: color 0.3s;
}
.page-content a:hover {
  color: var(--purple-bright);
}

/* --- Press page (editorial layout) --- */
.band {
  width: 100%;
  padding: 5.5rem 2rem;
}
.band--hero {
  padding: 12rem 2rem 6rem;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border-subtle);
}
.band--alt {
  background: rgba(12, 10, 20, 1);
  border-top: 1px solid rgba(100, 130, 200, 0.06);
  border-bottom: 1px solid rgba(100, 130, 200, 0.06);
}
.band__inner {
  max-width: 720px;
  margin: 0 auto;
}
.hero-overline {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-bright);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(155, 111, 182, 0.22);
  display: inline-block;
}
.band--hero h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 2rem;
}
.band--hero h1 em {
  display: block;
  font-style: italic;
  color: var(--purple-bright);
  font-size: 0.7em;
  margin-top: 0.15em;
}
.hero-intro {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.85;
  max-width: 520px;
}
.press-section-header {
  margin-bottom: 3.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(100, 130, 200, 0.12);
}
.press-section-header .label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #dcc0f0;
  margin-bottom: 0.6rem;
}
.press-section-header h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.fact-list { margin-bottom: 3rem; }
.fact-item {
  display: flex;
  gap: 2.5rem;
  align-items: baseline;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(100, 130, 200, 0.08);
}
.fact-item:first-child { border-top: 1px solid rgba(100, 130, 200, 0.08); }
.fact-item .label {
  flex: 0 0 140px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-bright);
  padding-top: 0.15rem;
}
.fact-item .value {
  font-family: 'Instrument Serif', serif;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.3;
}
.fact-item .detail {
  font-size: 0.94rem;
  color: #d8d0e8;
  margin-top: 0.2rem;
  font-weight: 400;
}
.editorial-quote {
  padding: 4rem 0;
  text-align: left;
}
.editorial-quote blockquote {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-style: italic;
  color: #f0ecf8;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}
.editorial-quote blockquote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3rem;
  bottom: 0.3rem;
  width: 3px;
  background: linear-gradient(180deg, var(--purple-bright), var(--purple-dim));
  border-radius: 2px;
}
.editorial-quote cite {
  font-style: normal;
  font-size: 0.84rem;
  color: #b0aac4;
  font-weight: 400;
  padding-left: 2rem;
}
.timeline-editorial {}
.timeline-entry {
  display: flex;
  gap: 2.5rem;
  align-items: baseline;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(100, 130, 200, 0.08);
}
.timeline-entry:first-child { border-top: 1px solid rgba(100, 130, 200, 0.08); }
.timeline-entry .year {
  flex: 0 0 100px;
  font-family: 'Instrument Serif', serif;
  font-size: 1.8rem;
  color: #dcc0f0;
  line-height: 1;
}
.timeline-entry .body h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.35rem;
}
.timeline-entry .body p {
  font-size: 0.94rem;
  color: #d8d0e8;
  font-weight: 400;
  line-height: 1.7;
}
.download-list {}
.download-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(100, 130, 200, 0.08);
}
.download-item:first-child { border-top: 1px solid rgba(100, 130, 200, 0.08); }
.download-item .info {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.download-item .info svg {
  stroke: #dcc0f0;
  flex-shrink: 0;
}
.download-item .info h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
}
.download-item .info p {
  font-size: 0.86rem;
  color: #d0c8e0;
  font-weight: 400;
  margin-top: 0.1rem;
}
.download-item a {
  font-size: 0.76rem;
  font-weight: 500;
  text-decoration: none;
  color: #dcc0f0;
  border: 1px solid rgba(100, 130, 200, 0.2);
  padding: 0.4rem 1.1rem;
  border-radius: 6px;
  transition: all 0.3s;
  white-space: nowrap;
}
.download-item a:hover {
  background: rgba(100, 80, 180, 0.12);
  border-color: rgba(130, 110, 200, 0.4);
  color: #fff;
}
.contact-editorial {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
.contact-editorial .label-col {
  flex: 0 0 140px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-bright);
  padding-top: 0.2rem;
}
.contact-editorial .content-col h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.4rem;
}
.contact-editorial .content-col p {
  font-size: 0.96rem;
  color: #d8d0e8;
  font-weight: 400;
  line-height: 1.8;
}
.contact-editorial a {
  color: #dcc0f0;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-editorial a:hover { color: #fff; }
.contact-editorial .contact-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: #b0aac4;
}

/* --- Press page backgrounds --- */
.bg-img--press-hero {
  background-image: url('../img/bg_press.webp');
  opacity: 0.2;
}
.bg-img--press-hero::after {
  background:
    radial-gradient(ellipse at 50% 40%, transparent 10%, var(--bg-deep) 60%),
    linear-gradient(180deg, rgba(8,6,14,0.2) 0%, var(--bg-deep) 90%);
}
.bg-img--press-quote {
  background-image: url('../img/bg_origin.webp');
  opacity: 0.1;
}
.bg-img--press-quote::after {
  background:
    linear-gradient(180deg, var(--bg-deep) 0%, transparent 30%, transparent 70%, var(--bg-deep) 100%),
    radial-gradient(ellipse at center, transparent 20%, var(--bg-deep) 65%);
}
.bg-img--press-timeline {
  background-image: url('../img/bg_cores.webp');
  opacity: 0.08;
}
.bg-img--press-timeline::after {
  background:
    linear-gradient(180deg, var(--bg-deep) 0%, transparent 25%, transparent 75%, var(--bg-deep) 100%),
    radial-gradient(ellipse at center, transparent 30%, var(--bg-deep) 70%);
}
.band.bg-section .band__inner {
  position: relative;
  z-index: 1;
}

/* --- Architecture page --- */
.arch-hero {
  padding: 12rem 2rem 5rem;
  text-align: center;
  position: relative;
}
.arch-hero__overline {
  position: relative; z-index: 1;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--purple-bright); margin-bottom: 1.5rem;
}
.arch-hero h1 {
  position: relative; z-index: 1;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 400; color: var(--text-primary);
  letter-spacing: -0.04em; line-height: 1.05;
  margin-bottom: 1.2rem;
}
.arch-hero h1 em { font-style: italic; color: var(--purple-bright); }
.arch-hero__intro {
  position: relative; z-index: 1;
  max-width: 580px; margin: 0 auto;
  font-size: 1rem; color: var(--text-secondary); line-height: 1.85;
}

/* Hero background */
.arch-hero .bg-img {
  background-image: url('../img/bg_arch.webp');
  opacity: 0.2;
}
.arch-hero .bg-img::after {
  background:
    radial-gradient(ellipse at 50% 40%, transparent 10%, var(--bg-deep) 65%),
    linear-gradient(180deg, rgba(8,6,14,0.2) 0%, var(--bg-deep) 90%);
}

/* Pipeline band */
.arch-pipeline {
  padding: 3.5rem 2rem;
  background: rgba(12, 10, 20, 1);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.arch-pipeline__inner { max-width: 1100px; margin: 0 auto; }
.arch-pipeline__label {
  text-align: center;
  font-size: 0.88rem; color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Flow nodes */
.arch-flow {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap; padding: 1.5rem 0;
}
.arch-flow__node {
  width: 150px; height: 150px; border-radius: 50%;
  border: 1px solid var(--purple-accent);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: rgba(12, 10, 20, 0.8);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
}
.arch-flow__node:hover {
  transform: scale(1.06);
  box-shadow: 0 0 40px rgba(155, 111, 182, 0.2);
}
.arch-flow__abbr {
  font-family: 'Instrument Serif', serif;
  font-size: 1.8rem; color: var(--purple-bright);
  line-height: 1; margin-bottom: 0.3rem;
}
.arch-flow__name {
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--text-primary);
}
.arch-flow__role { font-size: 0.58rem; color: var(--text-muted); }
.arch-flow__arrow { color: var(--purple-accent); padding: 0 0.4rem; flex-shrink: 0; }

/* Stats */
.arch-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 2rem; text-align: center;
}
.arch-stats__num {
  font-family: 'Instrument Serif', serif;
  font-size: 1.7rem; color: var(--purple-bright); line-height: 1.1;
}
.arch-stats__label {
  font-size: 0.68rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.2rem;
}

/* Explorer */
.arch-explorer {
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 2rem 3rem;
}
.arch-explorer__header {
  text-align: center; margin-bottom: 3rem;
}
.arch-explorer__header h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 2.4rem; color: var(--text-primary);
  font-weight: 400; margin-bottom: 0.6rem;
}
.arch-explorer__header p {
  font-size: 0.92rem; color: var(--text-secondary);
}

/* Tabs */
.arch-tabs {
  display: flex; gap: 0.25rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 2.5rem;
  overflow-x: auto; scrollbar-width: none;
}
.arch-tabs::-webkit-scrollbar { display: none; }
.arch-tabs__btn {
  background: none; border: none;
  padding: 0.8rem 1.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem; font-weight: 500;
  color: var(--text-muted); cursor: pointer;
  white-space: nowrap; position: relative;
  transition: color 0.3s;
}
.arch-tabs__btn:hover { color: var(--text-secondary); }
.arch-tabs__btn.active { color: var(--purple-bright); }
.arch-tabs__btn::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 2px; background: var(--purple-bright);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.arch-tabs__btn.active::after { transform: scaleX(1); }
.arch-tabs__count {
  display: inline-block; margin-left: 0.4rem;
  padding: 0.1rem 0.4rem; font-size: 0.65rem;
  background: rgba(155, 111, 182, 0.12); border-radius: 10px;
  color: var(--text-muted);
}
.arch-tabs__btn.active .arch-tabs__count {
  color: var(--purple-accent); background: rgba(155, 111, 182, 0.2);
}

/* Tab panels */
.arch-panel { display: none; }
.arch-panel.active {
  display: flex; flex-direction: column; gap: 1.5rem;
  animation: archFade 0.4s ease;
}
@keyframes archFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Feature cards */
.arch-card {
  display: grid; grid-template-columns: 1fr 280px;
  gap: 2rem; align-items: center;
  background: rgba(14, 10, 24, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 14px; padding: 2rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.arch-card:hover {
  border-color: rgba(155, 111, 182, 0.35);
  box-shadow: 0 4px 24px rgba(116, 70, 141, 0.08);
}
.arch-card__info { display: flex; flex-direction: column; gap: 0.6rem; }
.arch-card__top { display: flex; align-items: baseline; gap: 1rem; }
.arch-card__abbr {
  font-family: 'Instrument Serif', serif;
  font-size: 2.8rem; color: var(--purple-bright); line-height: 1;
}
.arch-card__name {
  font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-primary);
}
.arch-card__full {
  font-size: 0.7rem; color: var(--text-muted); margin-top: 0.1rem;
}
.arch-card__desc {
  font-size: 0.92rem; color: var(--text-secondary);
  line-height: 1.75; max-width: 520px;
}

/* Video thumbnail */
.arch-thumb {
  position: relative; display: block;
  border-radius: 10px; overflow: hidden;
  aspect-ratio: 16 / 9;
  background: rgba(12, 10, 20, 1);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.3s, transform 0.3s;
  text-decoration: none;
}
.arch-thumb:hover {
  border-color: rgba(155, 111, 182, 0.35);
  transform: scale(1.02);
}
.arch-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; opacity: 0.85; transition: opacity 0.3s;
}
.arch-thumb:hover img { opacity: 1; }
.arch-thumb__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: rgba(8, 6, 14, 0.7);
  border: 1.5px solid rgba(201, 160, 232, 0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.arch-thumb:hover .arch-thumb__play {
  background: rgba(116, 70, 141, 0.6);
  border-color: var(--purple-bright);
  transform: translate(-50%, -50%) scale(1.1);
}
.arch-thumb__play svg { margin-left: 2px; }
.arch-thumb__label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.5rem 0.8rem;
  background: linear-gradient(transparent, rgba(8, 6, 14, 0.85));
  font-size: 0.68rem; color: var(--text-muted);
  letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500;
}

/* Architecture responsive */
@media (max-width: 900px) {
  .arch-card { grid-template-columns: 1fr; gap: 1.2rem; }
  .arch-thumb { max-width: 360px; }
}
@media (max-width: 768px) {
  .arch-flow { flex-direction: column; gap: 0.5rem; }
  .arch-flow__arrow svg { transform: rotate(90deg); }
  .arch-flow__node { width: 120px; height: 120px; }
  .arch-flow__abbr { font-size: 1.4rem; }
  .arch-stats { grid-template-columns: repeat(2, 1fr); }
  .arch-card__abbr { font-size: 2rem; }
  .arch-hero { padding: 9rem 1.5rem 3rem; }
  .arch-tabs__btn { padding: 0.6rem 1rem; font-size: 0.76rem; }
}

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .cores-grid { grid-template-columns: 1fr; }
  .stats-grid { gap: 2.5rem; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-logo svg { height: 70px; }
  nav { padding: 1rem 1.5rem; }
  .nav-brand svg { height: 20px; }
  .nav-links { gap: 0.6rem; flex-wrap: wrap; justify-content: flex-end; }
  .nav-links a:not(.btn-nav):not(.btn-download) { display: none; }
  .lang-switch { order: 1; }
  .nav-links .btn-nav { order: 2; }
  .band--hero { padding: 8rem 1.5rem 4rem; }
  .fact-item { flex-direction: column; gap: 0.3rem; }
  .fact-item .label { flex: none; }
  .timeline-entry { flex-direction: column; gap: 0.5rem; }
  .timeline-entry .year { flex: none; font-size: 1.3rem; }
  .download-item { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .contact-editorial { flex-direction: column; gap: 1rem; }
  .nav-links .btn-download { order: 3; }
}

/* --- Breadcrumb --- */
.breadcrumb {
  position: relative;
  z-index: 2;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  padding: 0 2rem;
  margin-bottom: -2rem;
}
.breadcrumb a {
  color: #b0aac0;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb__sep {
  margin: 0 0.4rem;
  color: rgba(176, 170, 192, 0.4);
}
.breadcrumb [aria-current="page"] {
  color: #dcd4ec;
}

/* --- About page --- */
.band--hero-editorial {
  padding: 10rem 2rem 2rem;
  border-bottom: 1px solid rgba(100, 130, 200, 0.08);
}
.band__inner--wide { max-width: 1100px; margin: 0 auto; }
.about-founder {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2rem 0 3rem;
}
.about-founder__avatar {
  width: 140px; height: 140px; border-radius: 50%; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: #6a6880;
  background: linear-gradient(135deg, #1a1e38 0%, #10142a 100%);
  border: 2px solid rgba(100, 130, 200, 0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.about-founder__info h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.8rem; font-weight: 400; color: #fff; margin-bottom: 0.3rem;
}
.about-founder__role {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem; color: #dcc0f0; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem;
}
.about-founder__info p {
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem; color: #d8d0e8; line-height: 1.8; max-width: 560px;
}
.about-mission-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
.about-mission-grid p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem; color: #e0dcea; line-height: 1.85; margin-bottom: 1.2rem;
}
.about-stats {
  display: flex; gap: 4rem; padding: 2.5rem 0; margin: 2rem 0 0;
  border-top: 1px solid rgba(100, 130, 200, 0.08);
  border-bottom: 1px solid rgba(100, 130, 200, 0.08);
}
.about-stat__num {
  font-family: 'Instrument Serif', serif;
  font-size: 2.2rem; font-weight: 400; color: #fff; line-height: 1;
}
.about-stat__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem; color: #a0a8c0; text-transform: uppercase;
  letter-spacing: 0.06em; margin-top: 0.3rem;
}
.about-values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.about-value-card {
  padding: 2.2rem; border-radius: 18px;
  background: linear-gradient(170deg, #121830 0%, #0c1020 100%);
  border: 1px solid rgba(100, 130, 200, 0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
}
.about-value-card:hover { transform: translateY(-4px); border-color: rgba(100, 130, 200, 0.2); }
.about-value-card__icon {
  width: 40px; height: 40px; border-radius: 10px; margin-bottom: 1.2rem;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  background: rgba(100, 80, 180, 0.12); border: 1px solid rgba(130, 110, 200, 0.2); color: #c0b0e8;
}
.about-value-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem; font-weight: 600; color: #fff; margin-bottom: 0.6rem;
}
.about-value-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem; color: #d0c8e0; line-height: 1.7;
}
@media (max-width: 768px) {
  .about-founder { grid-template-columns: 1fr; text-align: center; }
  .about-founder__avatar { margin: 0 auto; }
  .about-founder__info p { max-width: none; }
  .about-mission-grid { grid-template-columns: 1fr; }
  .about-stats { flex-wrap: wrap; gap: 2rem; }
  .about-values-grid { grid-template-columns: 1fr; }
}

/* --- Products page --- */
.produkte-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}
.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 3.5rem 0;
}
.product-row + .product-row {
  border-top: 1px solid rgba(100, 130, 200, 0.06);
}
.product-row--reverse .product-info { order: 2; }
.product-row--reverse .product-visual { order: 1; }
.product-screenshot {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #6a6880;
  letter-spacing: 0.05em;
  transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1);
}
.product-row:hover .product-screenshot { transform: scale(1.02); }
.product-screenshot--navy {
  background: linear-gradient(135deg, #141a32 0%, #0e1224 100%);
  border: 1px solid rgba(100, 130, 200, 0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.product-screenshot--teal {
  background: linear-gradient(135deg, #0c1e28 0%, #081420 100%);
  border: 1px solid rgba(70, 160, 180, 0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.product-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.8rem;
}
.product-tag--purple { color: #c0b0e8; background: rgba(120, 100, 180, 0.12); }
.product-tag--teal { color: #80d4e0; background: rgba(60, 150, 170, 0.1); }
.product-tag--muted { color: #8890a8; background: rgba(100, 110, 140, 0.08); }
.product-info h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.4rem;
  line-height: 1.15;
}
.product-tagline {
  font-size: 0.88rem;
  color: #b0aac4;
  margin-bottom: 1.2rem;
}
.product-info p {
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: #e0dcea;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.product-features {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}
.product-feature {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: #c8c0d8;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  border: 1px solid rgba(100, 130, 200, 0.12);
  background: rgba(60, 80, 140, 0.06);
}
.product-btn-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.product-coming-soon {
  margin-top: 1rem;
  padding: 2.5rem;
  border: 1px dashed rgba(100, 110, 140, 0.15);
  border-radius: 18px;
  background: linear-gradient(170deg, #121420 0%, #0c0e18 100%);
  opacity: 0.6;
}
.product-coming-soon h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #c0bcd0;
  margin-bottom: 0.3rem;
}
.product-coming-soon p {
  font-size: 0.88rem;
  color: #9894a8;
  line-height: 1.6;
}
.btn { /* shared across pages */
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s;
  color: #fff;
  letter-spacing: 0.02em;
}
.btn--purple { background: rgba(100, 80, 180, 0.2); border: 1px solid rgba(130, 110, 200, 0.35); }
.btn--purple:hover { background: rgba(100, 80, 180, 0.35); border-color: #9880d0; box-shadow: 0 4px 24px rgba(100, 80, 180, 0.2); }
.btn--teal { background: rgba(60, 150, 170, 0.15); border: 1px solid rgba(70, 165, 185, 0.4); }
.btn--teal:hover { background: rgba(60, 150, 170, 0.3); border-color: #5ab8c2; box-shadow: 0 4px 24px rgba(60, 150, 170, 0.15); }
.btn--ghost { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }
@media (max-width: 768px) {
  .product-row { grid-template-columns: 1fr; gap: 2rem; }
  .product-row--reverse .product-info { order: 1; }
  .product-row--reverse .product-visual { order: 2; }
}

/* --- Contact page --- */
.bg-img--kontakt-hero {
  background-image: url('../img/bg_origin.jpg');
  opacity: 0.25;
}
.bg-img--kontakt-hero::after {
  background:
    radial-gradient(ellipse at 50% 40%, transparent 10%, var(--bg-deep) 65%),
    linear-gradient(180deg, rgba(8,6,14,0.2) 0%, var(--bg-deep) 90%);
}
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.kontakt-card {
  padding: 2.4rem;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.2, 0, 0, 1);
}
.kontakt-card:hover { transform: translateY(-4px); }
.kontakt-card__tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.kontakt-card h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.8rem;
}
.kontakt-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: #e0dcea;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  flex: 1;
}
.kontakt-card__btn {
  display: block;
  padding: 0.75rem 1.8rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s;
  color: #fff;
  text-align: center;
  letter-spacing: 0.02em;
}
.kontakt-card--navy {
  background: #0e1220;
  border: 1px solid rgba(100, 130, 200, 0.12);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 20px 60px -10px rgba(50, 70, 140, 0.12);
}
.kontakt-card--navy .kontakt-card__tag { color: #c0b0e8; }
.kontakt-card--navy .kontakt-card__btn {
  background: rgba(100, 80, 180, 0.2);
  border: 1px solid rgba(130, 110, 200, 0.35);
}
.kontakt-card--navy .kontakt-card__btn:hover {
  background: rgba(100, 80, 180, 0.35);
  border-color: #9880d0;
  box-shadow: 0 4px 24px rgba(100, 80, 180, 0.2);
}
.kontakt-card--navy:hover {
  border-color: rgba(100, 130, 200, 0.25);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 30px 80px -10px rgba(50, 70, 140, 0.2);
}
.kontakt-card--teal {
  background: #0a1420;
  border: 1px solid rgba(70, 160, 180, 0.12);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 20px 60px -10px rgba(50, 130, 150, 0.1);
}
.kontakt-card--teal .kontakt-card__tag { color: #80d4e0; }
.kontakt-card--teal .kontakt-card__btn {
  background: rgba(60, 150, 170, 0.15);
  border: 1px solid rgba(70, 165, 185, 0.35);
}
.kontakt-card--teal .kontakt-card__btn:hover {
  background: rgba(60, 150, 170, 0.3);
  border-color: #5ab8c2;
  box-shadow: 0 4px 24px rgba(60, 150, 170, 0.15);
}
.kontakt-card--teal:hover {
  border-color: rgba(70, 160, 180, 0.2);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 30px 80px -10px rgba(50, 130, 150, 0.18);
}
.contact-note {
  display: flex;
  gap: 3rem;
  max-width: 680px;
  margin: 2.5rem auto 0;
  padding: 2rem 0 0;
  border-top: 1px solid rgba(100, 130, 200, 0.1);
}
.contact-note__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #dcc0f0;
  min-width: 100px;
  padding-top: 0.3rem;
}
.contact-note__content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #f0ecf8;
  margin-bottom: 0.5rem;
}
.contact-note__content p {
  font-size: 0.9rem;
  color: #c8c0d8;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .kontakt-grid { grid-template-columns: 1fr; }
  .contact-note { flex-direction: column; gap: 1rem; }
}

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

/* --- Blockquote cite inside footer (press page) --- */
.editorial-quote blockquote footer {
  margin-top: 1rem;
}

/* --- Product links in cards --- */
.product-link {
  display: block;
  margin-top: auto;
  padding: 0.75rem 1.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s;
  text-align: center;
  letter-spacing: 0.02em;
  color: #fff;
}

/* --- Card: Product (Deep Navy) --- */
.core-card--product {
  background: #0e1220;
  border: 1px solid rgba(100, 130, 200, 0.12);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 20px 60px -10px rgba(50, 70, 140, 0.12);
}
.core-card--product .core-card-header {
  background: linear-gradient(135deg, #1a2040 0%, #141838 100%);
  border-bottom: 1px solid rgba(100, 130, 200, 0.1);
}
.core-card--product .core-tag { color: #c0b0e8; }
.core-card--product .product-link {
  background: rgba(100, 80, 180, 0.2);
  border: 1px solid rgba(130, 110, 200, 0.35);
}
.core-card--product .product-link:hover {
  background: rgba(100, 80, 180, 0.35);
  border-color: #9880d0;
  box-shadow: 0 4px 24px rgba(100, 80, 180, 0.2);
}
.core-card--product:hover {
  border-color: rgba(100, 130, 200, 0.25);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 30px 80px -10px rgba(50, 70, 140, 0.2);
}

/* --- Card: Service (Deep Teal) --- */
.core-card--service {
  background: #0a1420;
  border: 1px solid rgba(70, 160, 180, 0.12);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 20px 60px -10px rgba(50, 130, 150, 0.1);
}
.core-card--service .core-card-header {
  background: linear-gradient(135deg, #0e2430 0%, #0c1e2a 100%);
  border-bottom: 1px solid rgba(70, 160, 180, 0.08);
}
.core-card--service .core-tag { color: #80d4e0; }
.core-card--service .product-link {
  background: rgba(60, 150, 170, 0.15);
  border: 1px solid rgba(70, 165, 185, 0.35);
}
.core-card--service .product-link:hover {
  background: rgba(60, 150, 170, 0.3);
  border-color: #5ab8c2;
  box-shadow: 0 4px 24px rgba(60, 150, 170, 0.15);
}
.core-card--service:hover {
  border-color: rgba(70, 160, 180, 0.2);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 30px 80px -10px rgba(50, 130, 150, 0.18);
}

/* --- Card: Muted (Coming Soon) --- */
.core-card--muted {
  background: #0c0e18;
  border: 1px dashed rgba(100, 110, 140, 0.15);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  opacity: 0.55;
}
.core-card--muted .core-card-header {
  background: #10121c;
  border-bottom: 1px solid rgba(100, 110, 140, 0.06);
}
.core-card--muted .core-tag { color: #8890a8; }
.core-card--muted h3 { color: #c0bcd0; }
.core-card--muted p { color: #9894a8; }
.core-card--muted:hover { opacity: 0.7; }
