/* ==========================================================================
   OEDER GROUP v3 — Stylesheet
   Heritage-Gold · Premium · Editorial · Cinematic
   ========================================================================== */

:root {
  --bg-deep: #0A0A0B;
  --bg-soft: #131316;
  --bg-mid: #1A1A1E;
  --bg-card: #17171A;

  --ink-primary: #F5F2EC;
  --ink-secondary: #B8B5AE;
  --ink-muted: #8B8B91;
  --ink-dim: #5E5E64;

  /* Heritage Gold — Master */
  --heritage-gold: #9D7E3B;
  --heritage-gold-bright: #C9A961;
  --heritage-gold-soft: rgba(157, 126, 59, 0.4);
  --heritage-gold-glow: rgba(201, 169, 97, 0.5);

  /* Sub-Brand Colors — Rolex Heritage */
  --bordeaux: #7B1818;
  --bordeaux-bright: #9B2A28;
  --bordeaux-deep: #5A1010;
  --crown-green: #006039;
  --crown-green-bright: #1A7A52;
  --crown-green-deep: #004228;
  --bronze: #6E6657;
  --bronze-bright: #8A8170;
  --royal-blue: #1A3A6E;
  --royal-blue-bright: #2E5A9F;
  --royal-blue-deep: #102448;

  --line: rgba(157, 126, 59, 0.15);
  --line-gold: rgba(157, 126, 59, 0.3);
  --line-bright: rgba(157, 126, 59, 0.6);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter Tight', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-dramatic: cubic-bezier(0.87, 0, 0.13, 1);

  --max-w: 1440px;
  --pad-x: clamp(24px, 5vw, 64px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-deep);
  color: var(--ink-primary);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
  overflow-x: hidden;
  line-height: 1.6;
}

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

::selection { background: var(--heritage-gold); color: var(--bg-deep); }

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  top: 0; left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 6px; height: 6px;
  background: var(--heritage-gold-bright);
  transition: transform 0.2s var(--ease), width 0.3s, height 0.3s;
}

.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid var(--heritage-gold);
  transition: transform 0.4s var(--ease), width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-ring.is-hover {
  width: 60px; height: 60px;
  border-color: var(--heritage-gold-bright);
}

.cursor-dot.is-hover { width: 4px; height: 4px; }

@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
  body, a, button { cursor: auto; }
}

/* ==========================================================================
   GRAIN OVERLAY
   ========================================================================== */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px var(--pad-x);
  transition: all 0.4s var(--ease);
  backdrop-filter: blur(0px);
  background: linear-gradient(180deg, rgba(10,10,11,0.5) 0%, transparent 100%);
}

.nav.is-scrolled {
  padding: 14px var(--pad-x);
  backdrop-filter: blur(20px);
  background: rgba(10, 10, 11, 0.8);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.nav-brand {
  display: flex;
  align-items: center;
  color: var(--ink-primary);
  transition: opacity 0.3s var(--ease);
}

.nav-brand:hover { opacity: 0.75; }

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 1;
  color: currentColor;
}

.brand-word {
  display: inline-block;
}

.brand-divider {
  display: inline-block;
  width: 1px;
  height: 0.78em;
  background: #9D7E3B;
}

.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
}

.nav-links a {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-secondary);
  transition: color 0.3s var(--ease);
  position: relative;
}

.nav-num {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--heritage-gold);
  opacity: 0.7;
}

.nav-links a:hover {
  color: var(--ink-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--heritage-gold);
  transition: width 0.4s var(--ease);
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--heritage-gold);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--heritage-gold-bright);
  transition: all 0.4s var(--ease);
  background: rgba(157, 126, 59, 0.05);
}

.nav-cta:hover {
  background: var(--heritage-gold);
  color: var(--bg-deep);
  transform: translateY(-1px);
}

.nav-cta svg { transition: transform 0.4s var(--ease); }
.nav-cta:hover svg { transform: translate(2px, -2px); }

@media (max-width: 900px) {
  .nav-links { display: none; }
}

/* ==========================================================================
   HERO — LIVING LIGHT SPHERE
   ========================================================================== */
.hero {
  min-height: 100vh;
  padding: 140px var(--pad-x) 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 35%, rgba(157, 126, 59, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(10, 10, 11, 1) 0%, transparent 50%);
  pointer-events: none;
}

/* === The Sphere Stage === */
.sphere-stage {
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

.sphere-aura {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.22) 0%, rgba(157, 126, 59, 0.08) 40%, transparent 70%);
  animation: auraBreath 8s ease-in-out infinite;
  filter: blur(50px);
}

@keyframes auraBreath {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* Light Rays */
.sphere-rays {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: raysSpin 60s linear infinite;
}

.sphere-rays span {
  position: absolute;
  width: 1px;
  height: 280px;
  background: linear-gradient(180deg, transparent 0%, var(--heritage-gold) 30%, var(--heritage-gold-bright) 50%, var(--heritage-gold) 70%, transparent 100%);
  transform-origin: center bottom;
  opacity: 0.4;
  animation: rayPulse 4s ease-in-out infinite;
}

.sphere-rays span:nth-child(1) { transform: rotate(0deg) translateY(-140px); animation-delay: 0s; }
.sphere-rays span:nth-child(2) { transform: rotate(30deg) translateY(-140px); animation-delay: 0.3s; }
.sphere-rays span:nth-child(3) { transform: rotate(60deg) translateY(-140px); animation-delay: 0.6s; }
.sphere-rays span:nth-child(4) { transform: rotate(90deg) translateY(-140px); animation-delay: 0.9s; }
.sphere-rays span:nth-child(5) { transform: rotate(120deg) translateY(-140px); animation-delay: 1.2s; }
.sphere-rays span:nth-child(6) { transform: rotate(150deg) translateY(-140px); animation-delay: 1.5s; }
.sphere-rays span:nth-child(7) { transform: rotate(180deg) translateY(-140px); animation-delay: 1.8s; }
.sphere-rays span:nth-child(8) { transform: rotate(210deg) translateY(-140px); animation-delay: 2.1s; }
.sphere-rays span:nth-child(9) { transform: rotate(240deg) translateY(-140px); animation-delay: 2.4s; }
.sphere-rays span:nth-child(10) { transform: rotate(270deg) translateY(-140px); animation-delay: 2.7s; }
.sphere-rays span:nth-child(11) { transform: rotate(300deg) translateY(-140px); animation-delay: 3s; }
.sphere-rays span:nth-child(12) { transform: rotate(330deg) translateY(-140px); animation-delay: 3.3s; }

@keyframes raysSpin {
  to { transform: rotate(360deg); }
}

@keyframes rayPulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.7; }
}

/* The Sphere Core — MUCH MORE PRESENT than before */
.sphere-core {
  position: absolute;
  top: 50%; left: 50%;
  width: 240px; height: 240px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: sphereBreath 6s ease-in-out infinite;
}

.sphere-inner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 30%,
    #F5DCA0 0%,
    var(--heritage-gold-bright) 25%,
    var(--heritage-gold) 55%,
    #6B5524 85%,
    #2A2118 100%
  );
  box-shadow:
    inset -30px -40px 60px rgba(0, 0, 0, 0.5),
    inset 20px 30px 50px rgba(245, 220, 160, 0.4),
    0 0 80px rgba(201, 169, 97, 0.4),
    0 0 160px rgba(157, 126, 59, 0.25);
}

.sphere-highlight {
  position: absolute;
  top: 18%; left: 22%;
  width: 60px; height: 40px;
  background: radial-gradient(ellipse, rgba(255, 245, 220, 0.85) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(4px);
  animation: highlightFloat 5s ease-in-out infinite;
}

.sphere-shadow {
  position: absolute;
  bottom: 12%; right: 18%;
  width: 80px; height: 60px;
  background: radial-gradient(ellipse, rgba(20, 10, 0, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(8px);
}

@keyframes sphereBreath {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes highlightFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-6px, 4px); }
}

/* Orbiting Particles */
.sphere-particles {
  position: absolute;
  inset: 0;
  animation: particlesOrbit 30s linear infinite;
}

.sphere-particles span {
  position: absolute;
  top: 50%; left: 50%;
  width: 3px; height: 3px;
  background: var(--heritage-gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--heritage-gold-bright);
  animation: particleTwinkle 3s ease-in-out infinite;
}

.sphere-particles span:nth-child(1) { transform: rotate(0deg) translateX(180px); animation-delay: 0s; }
.sphere-particles span:nth-child(2) { transform: rotate(24deg) translateX(200px); animation-delay: 0.2s; }
.sphere-particles span:nth-child(3) { transform: rotate(48deg) translateX(165px); animation-delay: 0.4s; }
.sphere-particles span:nth-child(4) { transform: rotate(72deg) translateX(190px); animation-delay: 0.6s; }
.sphere-particles span:nth-child(5) { transform: rotate(96deg) translateX(175px); animation-delay: 0.8s; }
.sphere-particles span:nth-child(6) { transform: rotate(120deg) translateX(195px); animation-delay: 1s; }
.sphere-particles span:nth-child(7) { transform: rotate(144deg) translateX(170px); animation-delay: 1.2s; }
.sphere-particles span:nth-child(8) { transform: rotate(168deg) translateX(185px); animation-delay: 1.4s; }
.sphere-particles span:nth-child(9) { transform: rotate(192deg) translateX(200px); animation-delay: 1.6s; }
.sphere-particles span:nth-child(10) { transform: rotate(216deg) translateX(175px); animation-delay: 1.8s; }
.sphere-particles span:nth-child(11) { transform: rotate(240deg) translateX(190px); animation-delay: 2s; }
.sphere-particles span:nth-child(12) { transform: rotate(264deg) translateX(180px); animation-delay: 2.2s; }
.sphere-particles span:nth-child(13) { transform: rotate(288deg) translateX(195px); animation-delay: 2.4s; }
.sphere-particles span:nth-child(14) { transform: rotate(312deg) translateX(170px); animation-delay: 2.6s; }
.sphere-particles span:nth-child(15) { transform: rotate(336deg) translateX(185px); animation-delay: 2.8s; }

@keyframes particlesOrbit {
  to { transform: rotate(360deg); }
}

@keyframes particleTwinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Rings around sphere */
.sphere-rings {
  position: absolute;
  inset: 0;
}

.sphere-ring {
  position: absolute;
  top: 50%; left: 50%;
  border: 1px solid var(--heritage-gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
}

.sphere-ring-1 {
  width: 320px; height: 320px;
  animation: ringRotate 25s linear infinite;
}

.sphere-ring-2 {
  width: 400px; height: 400px;
  border-style: dashed;
  animation: ringRotate 40s linear infinite reverse;
}

.sphere-ring-3 {
  width: 480px; height: 480px;
  opacity: 0.08;
  animation: ringRotate 60s linear infinite;
}

@keyframes ringRotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 880px;
  padding-top: 60px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeUp 1s var(--ease) both;
}

.hero-eyebrow-line {
  height: 1px;
  width: 60px;
  background: var(--heritage-gold);
  opacity: 0.4;
}

.hero-eyebrow-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--heritage-gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink-primary);
  margin-bottom: 36px;
  animation: fadeUp 1.2s var(--ease) 0.2s both;
  text-shadow: 0 4px 30px rgba(10, 10, 11, 0.85), 0 0 80px rgba(10, 10, 11, 0.6);
  position: relative;
  z-index: 6;
}

.hero-title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--heritage-gold-bright) 0%, var(--heritage-gold) 50%, var(--heritage-gold-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
  color: var(--ink-secondary);
  max-width: 660px;
  margin: 0 auto 56px;
  animation: fadeUp 1.2s var(--ease) 0.4s both;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  animation: fadeUp 1.2s var(--ease) 0.6s both;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hero-meta-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--heritage-gold-bright);
}

.hero-meta-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

.hero-meta-divider {
  width: 1px;
  height: 32px;
  background: var(--line-gold);
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ink-muted);
  animation: heroScrollFadeIn 1.5s var(--ease) 1s both;
  z-index: 2;
}

@keyframes heroScrollFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(30px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Text span: kompensiere letter-spacing-Trailing-Space (nur Text, NICHT .scroll-line) */
.hero-scroll > span:first-child {
  padding-left: 0.3em;
}

/* Stelle sicher dass .scroll-line kein padding bekommt */
.hero-scroll .scroll-line {
  padding: 0 !important;
  margin: 0 !important;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--line-gold);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 50%;
  background: var(--heritage-gold);
  animation: scrollLine 2.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: translateY(-100%); }
  50% { transform: translateY(200%); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   SECTION HEAD (reused)
   ========================================================================== */
.section-head {
  max-width: 800px;
  margin: 0 auto 100px;
  text-align: center;
  padding: 0 var(--pad-x);
}

.section-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--heritage-gold);
  margin-bottom: 24px;
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--line-gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--heritage-gold-bright), var(--heritage-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-secondary);
}

/* ==========================================================================
   SECTION 01 — UNSERE UNTERNEHMEN (3 Cards nebeneinander)
   ========================================================================== */
.unternehmen {
  padding: 160px 0 140px;
  position: relative;
}

.unternehmen-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ============================================
   COMPANY CARD — Reference-Style
   ============================================ */
.company-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  background: var(--bg-deep);
  border: 1px solid var(--line);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.7s var(--ease);
  isolation: isolate;
}

.company-studios { --card-accent: #7B1818; --card-accent-bright: #9B2A28; --card-accent-rgb: 123, 24, 24; }
.company-invest { --card-accent: #006039; --card-accent-bright: #1A7A52; --card-accent-rgb: 0, 96, 57; }
.company-intelligence { --card-accent: #1A3A6E; --card-accent-bright: #2E5A9F; --card-accent-rgb: 26, 58, 110; }

.company-card:not(.company-locked):hover {
  border-color: var(--card-accent);
  transform: translateY(-4px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(var(--card-accent-rgb), 0.3);
}

.company-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--card-accent), transparent);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  z-index: 5;
}

.company-card:not(.company-locked):hover::before { opacity: 1; }

/* === Background Layer (Aura, Grid, Animation) === */
.card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.card-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(var(--card-accent-rgb), 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--card-accent-rgb), 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  transition: opacity 0.6s var(--ease);
}

.company-card:not(.company-locked):hover .card-bg-grid { opacity: 0.8; }

.card-bg-aura {
  position: absolute;
  top: -150px; right: -150px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(var(--card-accent-rgb), 0.2) 0%, transparent 65%);
  filter: blur(50px);
  transition: opacity 0.6s var(--ease), transform 0.8s var(--ease);
}

.company-card:not(.company-locked):hover .card-bg-aura {
  transform: scale(1.2);
}

.company-locked .card-bg-aura { opacity: 0.45; }

/* === Animation: Studios (Code Lines) === */
.anim-studios {
  position: absolute;
  top: 18%;
  left: 8%;
  right: 8%;
  height: 36%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0.45;
  transition: opacity 0.6s var(--ease);
}

.company-card:hover .anim-studios { opacity: 0.7; }

.code-line {
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(var(--card-accent-rgb), 0.6), transparent);
  border-radius: 1px;
  position: relative;
  animation: codeWrite 4s ease-in-out infinite;
}

.code-line-1 { width: 60%; animation-delay: 0s; }
.code-line-2 { width: 80%; animation-delay: 0.4s; }
.code-line-3 { width: 45%; animation-delay: 0.8s; }
.code-line-4 { width: 70%; animation-delay: 1.2s; }
.code-line-5 { width: 35%; animation-delay: 1.6s; }

@keyframes codeWrite {
  0%, 100% { transform: scaleX(0); transform-origin: left; opacity: 0; }
  20% { transform: scaleX(1); transform-origin: left; opacity: 1; }
  80% { transform: scaleX(1); transform-origin: right; opacity: 1; }
  100% { transform: scaleX(0); transform-origin: right; opacity: 0; }
}

.code-cursor {
  width: 8px;
  height: 14px;
  background: var(--card-accent-bright);
  position: absolute;
  bottom: 0;
  left: 0;
  animation: cursorBlink 1s steps(2) infinite;
}

@keyframes cursorBlink {
  to { opacity: 0; }
}

/* === Animation: Invest (Chart) === */
.anim-invest {
  position: absolute;
  top: 18%;
  left: 0;
  right: 0;
  height: 38%;
  opacity: 0.7;
  transition: opacity 0.6s var(--ease);
}

.company-card:hover .anim-invest { opacity: 1; }

.invest-chart {
  width: 100%;
  height: 100%;
}

.chart-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: chartDraw 4s ease-out forwards infinite;
}

@keyframes chartDraw {
  0%, 15% { stroke-dashoffset: 1000; }
  60%, 100% { stroke-dashoffset: 0; }
}

.chart-dot {
  opacity: 0;
  animation: dotAppear 4s ease-out infinite;
}

.chart-dot-1 { animation-delay: 0.8s; }
.chart-dot-2 { animation-delay: 1.2s; }
.chart-dot-3 { animation-delay: 1.6s; }
.chart-dot-4 { animation-delay: 2.0s; }
.chart-dot-5 { animation-delay: 2.4s; }
.chart-dot-6 { animation-delay: 2.8s; }
.chart-dot-7 { animation-delay: 3.2s; }
.chart-dot-end {
  animation: dotAppearGlow 4s ease-out infinite;
  animation-delay: 3.5s;
}

@keyframes dotAppear {
  0%, 70% { opacity: 0; }
  85%, 100% { opacity: 1; }
}

@keyframes dotAppearGlow {
  0%, 80% { opacity: 0; r: 5; }
  90% { opacity: 1; r: 8; filter: drop-shadow(0 0 8px #1A7A52); }
  100% { opacity: 1; r: 5; filter: drop-shadow(0 0 4px #1A7A52); }
}

.chart-fill {
  opacity: 0;
  animation: fillAppear 4s ease-out infinite;
}

@keyframes fillAppear {
  0%, 60% { opacity: 0; }
  100% { opacity: 1; }
}

/* === Animation: Intelligence (Neural Network) === */
.anim-intelligence {
  position: absolute;
  top: 16%;
  left: 0;
  right: 0;
  height: 42%;
  opacity: 0.55;
  transition: opacity 0.6s var(--ease);
}

.neural-net {
  width: 100%;
  height: 100%;
}

.neuron {
  transform-origin: center;
  transform-box: fill-box;
  animation: neuronPulse 3s ease-in-out infinite;
}

.neuron-1 { animation-delay: 0s; }
.neuron-2 { animation-delay: 0.3s; }
.neuron-3 { animation-delay: 0.6s; }
.neuron-4 { animation-delay: 0.9s; }
.neuron-5 { animation-delay: 1.2s; }
.neuron-6 { animation-delay: 1.5s; }
.neuron-7 { animation-delay: 1.8s; }
.neuron-8 { animation-delay: 2.1s; }

@keyframes neuronPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); filter: drop-shadow(0 0 6px #2E5A9F); }
}

.neural-lines line {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: lineDraw 4s ease-in-out infinite alternate;
}

@keyframes lineDraw {
  from { stroke-dashoffset: 100; opacity: 0.1; }
  to { stroke-dashoffset: 0; opacity: 0.5; }
}

/* === Top Meta Bar === */
.card-top {
  position: relative;
  z-index: 3;
  padding: 28px 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.card-meta-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-meta-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
  text-align: right;
}

.card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--ink-muted);
  font-weight: 400;
}

.card-meta-label,
.card-meta-est {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--ink-secondary);
  text-transform: uppercase;
}

.card-meta-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--card-accent-bright);
}

.card-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--card-accent-bright);
  box-shadow: 0 0 8px var(--card-accent-bright);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.card-status-locked {
  color: var(--royal-blue-bright);
}

.card-status-locked .card-status-dot { display: none; }

/* === Center: Brand Name + Tagline === */
.card-center {
  position: relative;
  z-index: 3;
  padding: 0 28px;
  position: absolute;
  bottom: 100px;
  left: 0;
  right: 0;
}

.card-name {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 400;
  line-height: 1;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.card-name em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--card-accent-bright) 0%, var(--card-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.company-locked .card-name em {
  background: linear-gradient(135deg, var(--royal-blue-bright) 0%, var(--royal-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-tagline {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-secondary);
  max-width: 90%;
  margin: 0;
}

/* === Bottom CTA === */
.card-bottom {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  z-index: 3;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--card-accent-bright);
  text-transform: uppercase;
  transition: gap 0.4s var(--ease);
}

.company-card:not(.company-locked):hover .card-cta { gap: 20px; }

.card-cta-locked {
  color: var(--royal-blue-bright);
  opacity: 0.85;
  gap: 10px;
}

.company-locked {
  cursor: default;
}

@media (max-width: 1100px) {
  .unternehmen-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .company-card {
    aspect-ratio: auto;
    min-height: 480px;
  }
  .card-center {
    bottom: 90px;
  }
}

@media (max-width: 600px) {
  .card-name {
    font-size: 56px;
  }
  .card-top {
    padding: 22px 22px 0;
  }
  .card-center {
    padding: 0 22px;
    bottom: 80px;
  }
  .card-bottom {
    bottom: 22px;
    left: 22px;
    right: 22px;
  }
}

/* ==========================================================================
   SECTION 02 — O&M CLUB
   ========================================================================== */
.omclub {
  padding: 180px 0 160px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-deep) 0%, #0D0B07 50%, var(--bg-deep) 100%);
}

.omclub::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--heritage-gold), transparent);
}

.omclub::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--heritage-gold), transparent);
}

.om-starfield {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.om-starfield span {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--heritage-gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 4px var(--heritage-gold-bright);
  opacity: 0.3;
  animation: starTwinkle 4s ease-in-out infinite;
}

.om-starfield span:nth-child(1) { top: 8%; left: 12%; animation-delay: 0s; }
.om-starfield span:nth-child(2) { top: 15%; left: 88%; animation-delay: 0.2s; }
.om-starfield span:nth-child(3) { top: 22%; left: 25%; animation-delay: 0.5s; }
.om-starfield span:nth-child(4) { top: 35%; left: 92%; animation-delay: 0.8s; }
.om-starfield span:nth-child(5) { top: 45%; left: 6%; animation-delay: 1.1s; }
.om-starfield span:nth-child(6) { top: 18%; left: 70%; animation-delay: 1.4s; }
.om-starfield span:nth-child(7) { top: 55%; left: 95%; animation-delay: 1.7s; }
.om-starfield span:nth-child(8) { top: 65%; left: 10%; animation-delay: 2s; }
.om-starfield span:nth-child(9) { top: 75%; left: 85%; animation-delay: 2.3s; }
.om-starfield span:nth-child(10) { top: 85%; left: 20%; animation-delay: 2.6s; }
.om-starfield span:nth-child(11) { top: 92%; left: 75%; animation-delay: 2.9s; }
.om-starfield span:nth-child(12) { top: 30%; left: 50%; animation-delay: 3.2s; }
.om-starfield span:nth-child(13) { top: 12%; left: 45%; animation-delay: 0.7s; }
.om-starfield span:nth-child(14) { top: 60%; left: 55%; animation-delay: 1.3s; }
.om-starfield span:nth-child(15) { top: 80%; left: 60%; animation-delay: 2.1s; }
.om-starfield span:nth-child(16) { top: 25%; left: 35%; animation-delay: 0.4s; }
.om-starfield span:nth-child(17) { top: 70%; left: 40%; animation-delay: 1.9s; }
.om-starfield span:nth-child(18) { top: 5%; left: 65%; animation-delay: 2.5s; }
.om-starfield span:nth-child(19) { top: 95%; left: 30%; animation-delay: 0.9s; }
.om-starfield span:nth-child(20) { top: 50%; left: 78%; animation-delay: 1.6s; }

@keyframes starTwinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.4); }
}

.om-head {
  max-width: 880px;
  margin: 0 auto 80px;
  text-align: center;
  padding: 0 var(--pad-x);
  position: relative;
  z-index: 2;
}

.om-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.om-eyebrow-line {
  height: 1px;
  width: 60px;
  background: var(--heritage-gold);
  opacity: 0.5;
}

.om-eyebrow-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--heritage-gold-bright);
}

.om-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 128px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.om-title span {
  display: inline-block;
}

.om-title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, #F5DCA0 0%, var(--heritage-gold-bright) 30%, var(--heritage-gold) 60%, #F5DCA0 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 6s ease-in-out infinite;
}

@keyframes goldShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.om-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--heritage-gold-bright);
  margin-bottom: 32px;
}

.om-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-secondary);
  max-width: 680px;
  margin: 0 auto;
}

/* === om-intro: kurze Erklärung in Dennis' Worten === */
.om-intro {
  max-width: 740px;
  margin: 0 auto 80px;
  padding: 0 var(--pad-x);
  position: relative;
  z-index: 2;
  text-align: center;
}

.om-intro p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-secondary);
  margin-bottom: 24px;
  font-family: var(--font-body);
}

.om-intro p:last-child { margin-bottom: 0; }

.om-intro p::first-line {
  color: var(--ink-primary);
}

/* === Stats Kacheln (4er Grid) === */
.om-stats-grid {
  max-width: var(--max-w);
  margin: 0 auto 100px;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.om-stat-tile {
  padding: 32px 24px 28px;
  background: linear-gradient(180deg, rgba(157, 126, 59, 0.04) 0%, rgba(157, 126, 59, 0.01) 100%);
  border: 1px solid var(--line-gold);
  text-align: center;
  position: relative;
  transition: all 0.5s var(--ease);
  overflow: hidden;
}

.om-stat-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--heritage-gold), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.om-stat-tile:hover {
  border-color: var(--heritage-gold);
  background: linear-gradient(180deg, rgba(157, 126, 59, 0.07) 0%, rgba(157, 126, 59, 0.02) 100%);
  transform: translateY(-4px);
}

.om-stat-tile:hover::before { opacity: 1; }

.stat-num-row {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(44px, 4.5vw, 64px);
  font-weight: 400;
  color: var(--heritage-gold-bright);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  font-style: italic;
  color: var(--heritage-gold);
  line-height: 1;
}

.stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--ink-primary);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.stat-sub {
  display: block;
  font-size: 11px;
  color: var(--ink-muted);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .om-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* === 4 Pillars Kacheln === */
.om-pillars {
  max-width: var(--max-w);
  margin: 0 auto 100px;
  padding: 0 var(--pad-x);
  position: relative;
  z-index: 2;
}

.om-pillars-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -0.02em;
  color: var(--ink-primary);
}

.om-pillars-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--heritage-gold-bright), var(--heritage-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.om-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.om-pillar {
  padding: 36px 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.5s var(--ease);
  overflow: hidden;
}

.om-pillar::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--heritage-gold), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.om-pillar:hover {
  background: var(--bg-mid);
  border-color: var(--line-gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.om-pillar:hover::after { opacity: 1; }

.om-pillar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.om-pillar-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  color: var(--heritage-gold);
}

.om-pillar-icon {
  width: 36px;
  height: 36px;
  color: var(--heritage-gold-bright);
  transition: transform 0.5s var(--ease);
}

.om-pillar:hover .om-pillar-icon { transform: scale(1.1) rotate(-5deg); }

.om-pillar-icon svg { width: 100%; height: 100%; }

.om-pillar h4 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--ink-primary);
}

.om-pillar p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-secondary);
}

@media (max-width: 1100px) {
  .om-pillars-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .om-pillars-grid { grid-template-columns: 1fr; }
  .om-stats-grid { grid-template-columns: 1fr; }
}

/* === Logo Showcase === */
.om-showcase {
  position: relative;
  width: 480px;
  height: 480px;
  margin: 0 auto 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.om-logo-rings {
  position: absolute;
  inset: 0;
}

.om-ring {
  position: absolute;
  top: 50%; left: 50%;
  border: 1px solid var(--heritage-gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.om-ring-1 {
  width: 320px; height: 320px;
  opacity: 0.3;
  animation: ringRotate 30s linear infinite;
}

.om-ring-2 {
  width: 400px; height: 400px;
  opacity: 0.2;
  border-style: dashed;
  animation: ringRotate 45s linear infinite reverse;
}

.om-ring-3 {
  width: 470px; height: 470px;
  opacity: 0.12;
  animation: ringRotate 60s linear infinite;
}

.om-logo-aura {
  position: absolute;
  inset: 60px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.25) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(30px);
  animation: auraBreath 6s ease-in-out infinite;
}

.om-logo-glow {
  position: absolute;
  inset: 30%;
  background: radial-gradient(circle, rgba(245, 220, 160, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
}

.om-logo {
  position: relative;
  z-index: 2;
  width: 280px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(157, 126, 59, 0.4));
  animation: logoBreath 5s ease-in-out infinite;
}

@keyframes logoBreath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.om-sparkles {
  position: absolute;
  inset: 0;
}

.om-sparkles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--heritage-gold-bright);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--heritage-gold-bright);
  animation: sparkle 2.5s ease-in-out infinite;
}

.om-sparkles span:nth-child(1) { top: 18%; left: 70%; animation-delay: 0s; }
.om-sparkles span:nth-child(2) { top: 75%; left: 22%; animation-delay: 0.3s; }
.om-sparkles span:nth-child(3) { top: 35%; left: 12%; animation-delay: 0.6s; }
.om-sparkles span:nth-child(4) { top: 65%; left: 82%; animation-delay: 0.9s; }
.om-sparkles span:nth-child(5) { top: 88%; left: 60%; animation-delay: 1.2s; }
.om-sparkles span:nth-child(6) { top: 15%; left: 30%; animation-delay: 1.5s; }
.om-sparkles span:nth-child(7) { top: 50%; left: 90%; animation-delay: 1.8s; }
.om-sparkles span:nth-child(8) { top: 22%; left: 55%; animation-delay: 2.1s; }

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; transform: scale(1.5); }
}

/* === Stats Row — FIXED + ALIGNMENT === */
.om-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 140px;
  padding: 0 var(--pad-x);
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* THE FIX: stat-row keeps number + suffix on same line */
.stat-row {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  color: var(--heritage-gold-bright);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  font-style: italic;
  color: var(--heritage-gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--line-gold);
}

@media (max-width: 900px) {
  .om-stats { gap: 32px; }
  .stat-divider { display: none; }
}

/* === PILLARS === */
.pillars {
  max-width: var(--max-w);
  margin: 0 auto 120px;
  padding: 0 var(--pad-x);
  position: relative;
  z-index: 2;
}

.pillars-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 64px;
  letter-spacing: -0.02em;
}

.pillars-title span {
  display: block;
}

.pillars-title em {
  font-style: italic;
  color: var(--heritage-gold);
  background: linear-gradient(135deg, var(--heritage-gold-bright), var(--heritage-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1100px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

.pillar {
  padding: 44px 32px 36px;
  background: rgba(157, 126, 59, 0.03);
  border: 1px solid var(--line-gold);
  position: relative;
  transition: all 0.6s var(--ease);
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--heritage-gold), transparent);
  transform: translateX(-100%);
  transition: transform 0.8s var(--ease);
}

.pillar:hover {
  border-color: var(--heritage-gold);
  background: rgba(157, 126, 59, 0.07);
  transform: translateY(-6px);
}

.pillar:hover::before { transform: translateX(100%); }

.pillar-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--heritage-gold);
  margin-bottom: 24px;
}

.pillar-icon {
  width: 40px;
  height: 40px;
  color: var(--heritage-gold-bright);
  margin-bottom: 24px;
  transition: transform 0.5s var(--ease);
}

.pillar:hover .pillar-icon { transform: scale(1.1) rotate(-3deg); }

.pillar-icon svg { width: 100%; height: 100%; }

.pillar h4 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--ink-primary);
}

.pillar p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-secondary);
}

/* === STAGES STRIP === */
.stages {
  max-width: 1440px;
  margin: 0 auto 120px;
  position: relative;
  z-index: 2;
}

.stages-title {
  display: flex;
  align-items: baseline;
  gap: 20px;
  justify-content: center;
  margin-bottom: 56px;
  padding: 0 48px;
  flex-wrap: wrap;
}

.stages-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--heritage-gold);
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--line-gold);
}

.stages-title > span:last-child {
  font-family: var(--font-display);
  font-size: 32px;
  font-style: italic;
  color: var(--ink-secondary);
  font-weight: 400;
}

.stages-track {
  overflow: hidden;
  position: relative;
  padding: 24px 0;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
  background: rgba(157, 126, 59, 0.02);
}

.stages-track::before,
.stages-track::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.stages-track::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-deep), transparent);
}

.stages-track::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-deep), transparent);
}

.stages-row {
  display: flex;
  gap: 60px;
  animation: stagesScroll 60s linear infinite;
  white-space: nowrap;
}

.stages-row span {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  color: var(--ink-muted);
  transition: color 0.3s, transform 0.3s;
  flex-shrink: 0;
  cursor: none;
}

.stages-row span:hover {
  color: var(--heritage-gold-bright);
  transform: scale(1.1);
}

@keyframes stagesScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === CTA === */
.omclub-cta {
  text-align: center;
  padding: 0 var(--pad-x);
  position: relative;
  z-index: 2;
}

.omclub-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 24px 48px;
  background: linear-gradient(135deg, var(--heritage-gold) 0%, var(--heritage-gold-bright) 100%);
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease);
  box-shadow: 0 12px 40px rgba(157, 126, 59, 0.3);
}

.omclub-cta-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.7s var(--ease);
}

.omclub-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(157, 126, 59, 0.5);
}

.omclub-cta-btn:hover::before { left: 100%; }

.cta-arrow { transition: transform 0.5s var(--ease); }
.omclub-cta-btn:hover .cta-arrow { transform: translate(4px, -4px); }

.omclub-cta-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  margin-top: 24px;
  text-transform: uppercase;
}

/* ==========================================================================
   CHRONIK / TIMELINE
   ========================================================================== */
.chronik {
  padding: 180px 0 140px;
  position: relative;
  overflow: hidden;
}

.chronik::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-gold), transparent);
}

.timeline {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
}

.timeline-path {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.5;
}

#timeline-svg-path.animated {
  animation: drawPath 3s var(--ease) forwards;
}

@keyframes drawPath {
  to { stroke-dashoffset: 0; }
}

.timeline-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.timeline-item {
  position: relative;
  padding-top: 80px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.timeline-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.t-dot {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--heritage-gold);
  box-shadow: 0 0 12px var(--heritage-gold);
}

.t-dot-current {
  width: 16px; height: 16px;
  background: var(--heritage-gold-bright);
  box-shadow: 0 0 20px var(--heritage-gold-bright);
}

.t-dot-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 32px; height: 32px;
  border: 1px solid var(--heritage-gold-bright);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.t-dot-future {
  background: transparent;
  border: 1.5px dashed var(--ink-muted);
  box-shadow: none;
}

.t-year {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--heritage-gold-bright);
  margin-bottom: 8px;
  text-align: center;
}

.t-phase {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--ink-muted);
  margin-bottom: 18px;
  text-align: center;
}

.t-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 14px;
  text-align: center;
  color: var(--ink-primary);
}

.t-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-secondary);
  text-align: center;
}

.timeline-item-future {
  opacity: 0.6;
}

.timeline-item-future .t-year,
.timeline-item-future .t-title { color: var(--ink-muted); }

@media (max-width: 1100px) {
  .timeline-items { grid-template-columns: repeat(2, 1fr); gap: 60px; }
  .timeline-path { display: none; }
}

@media (max-width: 600px) {
  .timeline-items { grid-template-columns: 1fr; gap: 40px; }
}

/* ==========================================================================
   FOUNDER
   ========================================================================== */
.founder {
  padding: 180px 0 140px;
  position: relative;
  background: linear-gradient(180deg, var(--bg-deep) 0%, #0E0D0A 100%);
}

.founder-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
}

@media (max-width: 1000px) {
  .founder-grid { grid-template-columns: 1fr; gap: 60px; }
  .founder-card { position: static !important; top: auto !important; }
}

.founder-card {
  position: sticky;
  top: 120px;
  align-self: start;
  padding: 36px;
  background: rgba(157, 126, 59, 0.03);
  border: 1px solid var(--line-gold);
}

.founder-portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 28px;
  background:
    radial-gradient(circle at 50% 60%, rgba(157, 126, 59, 0.18) 0%, transparent 55%),
    linear-gradient(135deg, #0F0D0A 0%, #07060A 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.founder-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(157, 126, 59, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 126, 59, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

.founder-portrait::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 6, 10, 0.6) 100%);
  pointer-events: none;
  z-index: 3;
}

.founder-frame {
  position: absolute;
  inset: 12px;
  border: 1px solid var(--heritage-gold);
  z-index: 4;
  pointer-events: none;
}

.founder-frame::before,
.founder-frame::after {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  background: var(--heritage-gold);
}

.founder-frame::before { top: -2px; left: -2px; clip-path: polygon(0 0, 100% 0, 0 100%); }
.founder-frame::after { bottom: -2px; right: -2px; clip-path: polygon(100% 0, 100% 100%, 0 100%); }

.founder-photo {
  position: relative;
  z-index: 2;
  width: 105%;
  height: 105%;
  object-fit: contain;
  object-position: center bottom;
  filter:
    drop-shadow(0 -20px 60px rgba(157, 126, 59, 0.25))
    drop-shadow(0 0 20px rgba(0, 0, 0, 0.5))
    contrast(1.05);
  transition: filter 0.6s var(--ease), transform 0.8s var(--ease);
  margin-bottom: -2%;
}

.founder-card:hover .founder-photo {
  filter:
    drop-shadow(0 -20px 80px rgba(157, 126, 59, 0.4))
    drop-shadow(0 0 30px rgba(0, 0, 0, 0.6))
    contrast(1.1);
  transform: scale(1.02);
}

.founder-disc {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--heritage-gold-bright) 0%, var(--heritage-gold) 50%, var(--heritage-gold-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--bg-deep);
  letter-spacing: 0.05em;
  box-shadow: 0 8px 24px rgba(157, 126, 59, 0.4);
  position: relative;
  z-index: 2;
}

.founder-meta {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.founder-name {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink-primary);
  margin-bottom: 4px;
}

.founder-role {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--heritage-gold);
  text-transform: uppercase;
}

.founder-facts {
  list-style: none;
}

.founder-facts li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
}

.founder-facts li:last-child { border-bottom: none; }

.founder-facts span {
  color: var(--ink-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder-facts em {
  font-style: normal;
  color: var(--ink-primary);
  font-family: var(--font-display);
  font-size: 14px;
}

.founder-story {
  font-size: 16px;
  line-height: 1.8;
}

.story-chapter {
  margin-bottom: 48px;
}

.story-chapter-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--heritage-gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line-gold);
}

.story-h {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--ink-primary);
}

.story-chapter p {
  color: var(--ink-secondary);
  margin-bottom: 18px;
}

.story-pullquote {
  margin: 48px 0;
  padding: 32px 36px;
  border-left: 2px solid var(--heritage-gold);
  background: rgba(157, 126, 59, 0.04);
  position: relative;
}

.story-pullquote::before {
  content: '"';
  position: absolute;
  top: 8px; left: 16px;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--heritage-gold);
  line-height: 1;
  opacity: 0.3;
}

.story-pullquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.4;
  color: var(--heritage-gold-bright);
  padding-left: 40px;
}

.story-signature {
  margin-top: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line-gold);
}

.signature-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--heritage-gold), transparent);
}

.signature-meta {
  display: flex;
  flex-direction: column;
  text-align: right;
  gap: 4px;
}

.sig-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--heritage-gold-bright);
}

.sig-context {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

/* ==========================================================================
   KONTAKT
   ========================================================================== */
.kontakt {
  padding: 160px 0 140px;
  position: relative;
}

.kontakt::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-gold), transparent);
}

.kontakt .section-head {
  margin-bottom: 80px;
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-channel {
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  background: rgba(157, 126, 59, 0.03);
  border: 1px solid var(--line-gold);
  transition: all 0.5s var(--ease);
  position: relative;
  min-width: 0;
  min-height: 240px;
}

.contact-channel:hover {
  background: rgba(157, 126, 59, 0.07);
  border-color: var(--heritage-gold);
  transform: translateY(-4px);
}

.channel-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--heritage-gold);
  margin-bottom: 20px;
}

.channel-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--ink-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.channel-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  color: var(--heritage-gold-bright);
  margin-bottom: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
}

.channel-note {
  display: block;
  font-size: 12px;
  color: var(--ink-secondary);
  margin-top: auto;
}

.contact-locations {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.location {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.loc-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

.loc-value {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--heritage-gold-bright);
}

.loc-divider {
  width: 1px;
  height: 30px;
  background: var(--line-gold);
}

@media (max-width: 700px) {
  .loc-divider { display: none; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  padding: 80px var(--pad-x) 40px;
  background: #07070A;
  border-top: 1px solid var(--line-gold);
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand-mark {
  margin-bottom: 24px;
  color: var(--ink-primary);
}

.footer-brand-mark svg { width: 140px; height: auto; }

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--heritage-gold-bright);
  margin-bottom: 24px;
  line-height: 1.3;
}

.footer-address {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  line-height: 1.7;
  letter-spacing: 0.1em;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--heritage-gold);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
}

.footer-col li { margin-bottom: 12px; }

.footer-col a {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink-secondary);
  transition: color 0.3s var(--ease);
}

.footer-col a:hover { color: var(--heritage-gold-bright); }

.link-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.footer-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.footer-divider-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.footer-divider-mark {
  font-size: 18px;
  color: var(--heritage-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--ink-dim);
  text-transform: uppercase;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: var(--ink-muted);
  transition: color 0.3s var(--ease);
}

.footer-legal a:hover { color: var(--heritage-gold); }

/* ==========================================================================
   MOBILE RESPONSIVE TWEAKS
   ========================================================================== */
@media (max-width: 768px) {
  .sphere-stage {
    width: 320px;
    height: 320px;
  }
  .sphere-core { width: 160px; height: 160px; }
  .sphere-ring-1 { width: 220px; height: 220px; }
  .sphere-ring-2 { width: 280px; height: 280px; }
  .sphere-ring-3 { width: 320px; height: 320px; }

  .hero { padding-top: 120px; min-height: 90vh; }
  .hero-meta { flex-wrap: wrap; gap: 20px; }
  .hero-meta-divider { display: none; }

  .om-showcase { width: 340px; height: 340px; }
  .om-logo { width: 200px; }
  .om-ring-1 { width: 220px; height: 220px; }
  .om-ring-2 { width: 280px; height: 280px; }
  .om-ring-3 { width: 330px; height: 330px; }

  .nav-cta { padding: 10px 16px; font-size: 11px; }

  .pillars-title { font-size: 32px; }
  .stages-row span { font-size: 22px; }

  .section-head { margin-bottom: 60px; }
  .unternehmen, .omclub, .chronik, .founder, .kontakt { padding: 100px 0 80px; }
}

/* ==========================================================================
   LEGAL MODALS
   ========================================================================== */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.legal-modal.is-open {
  display: flex;
  animation: modalFade 0.3s var(--ease);
}

@keyframes modalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.legal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 10, 0.85);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.legal-dialog {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line-gold);
  max-width: 800px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 56px 56px 48px;
  animation: modalSlide 0.5s var(--ease);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7), 0 0 80px rgba(157, 126, 59, 0.15);
}

@keyframes modalSlide {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.legal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-secondary);
  border: 1px solid var(--line);
  background: var(--bg-deep);
  transition: all 0.3s var(--ease);
  z-index: 2;
}

.legal-close:hover {
  color: var(--heritage-gold-bright);
  border-color: var(--heritage-gold);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--ink-primary);
}

.legal-content h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--heritage-gold-bright), var(--heritage-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal-content .legal-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--heritage-gold);
  text-transform: uppercase;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-gold);
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--heritage-gold-bright);
}

.legal-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-secondary);
  margin-bottom: 12px;
}

.legal-content strong {
  color: var(--ink-primary);
  font-weight: 500;
}

.legal-content a {
  color: var(--heritage-gold-bright);
  border-bottom: 1px solid var(--heritage-gold-soft);
  transition: border-color 0.3s var(--ease);
}

.legal-content a:hover {
  border-bottom-color: var(--heritage-gold);
}

.legal-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.legal-content li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  color: var(--ink-secondary);
  line-height: 1.6;
}

.legal-content li::before {
  content: '·';
  position: absolute;
  left: 8px;
  color: var(--heritage-gold);
}

@media (max-width: 700px) {
  .legal-dialog { padding: 48px 24px 32px; }
  .legal-content h2 { font-size: 28px; }
}

/* === Contact Grid 3-Column + Primary Channel === */
.contact-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-channel-primary {
  background: linear-gradient(180deg, rgba(157, 126, 59, 0.1) 0%, rgba(157, 126, 59, 0.04) 100%);
  border-color: var(--heritage-gold);
}

.contact-channel-primary:hover {
  background: linear-gradient(180deg, rgba(157, 126, 59, 0.15) 0%, rgba(157, 126, 59, 0.07) 100%);
}

@media (max-width: 900px) {
  .contact-grid-3 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   SUB-HEADER (Meta-Bar direkt unter Nav)
   ========================================================================== */
.sub-header {
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0 var(--pad-x);
  pointer-events: none;
  transition: top 0.4s var(--ease), opacity 0.3s var(--ease);
}

.nav.is-scrolled ~ .sub-header {
  top: 68px;
  opacity: 0;
}

.sub-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 0;
  border-top: 0;
}

.sub-meta-label,
.sub-meta-status {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

.sub-meta-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--heritage-gold);
}

.sub-meta-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--heritage-gold);
  box-shadow: 0 0 8px var(--heritage-gold);
  animation: statusPulse 2s ease-in-out infinite;
}

@media (max-width: 700px) {
  .sub-header { display: none; }
}

/* Lock-Icon vor Intelligence Brand-Name */
.card-name-locked {
  display: flex;
  align-items: center;
  gap: 14px;
}

.card-name-lock {
  width: clamp(28px, 3vw, 42px);
  height: auto;
  color: var(--royal-blue-bright);
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(46, 90, 159, 0.4));
}
