* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  background: #070b12;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

strong { font-weight: 650; }

/* Hintergrund: dunkel, galerietauglich, ohne Bilder */
.bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1200px 800px at 18% 8%, rgba(120, 255, 210, 0.10), transparent 60%),
    radial-gradient(900px 700px at 82% 18%, rgba(140, 190, 255, 0.09), transparent 55%),
    radial-gradient(1000px 900px at 50% 95%, rgba(255, 210, 140, 0.06), transparent 60%),
    linear-gradient(180deg, #05070c 0%, #070b12 35%, #05070c 100%);
  pointer-events: none;
}

/* subtile Körnung */
.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02), rgba(255,255,255,0.02) 1px, transparent 1px, transparent 3px);
  opacity: 0.22;
  mix-blend-mode: overlay;
}

/* Layout */
.wrap {
  position: relative;
  min-height: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Hero: schmaler (Galerie), schwebender */
.hero {
  max-width: 860px;           /* <- schmaler als Container */
  width: 100%;
  margin: 0 auto;             /* zentriert */
  background: rgba(255,255,255,0.048);
  border: 1px solid rgba(255,255,255,0.085);
  border-radius: 26px;
  padding: clamp(20px, 3.4vw, 38px);
  backdrop-filter: blur(10px);
  box-shadow:
    0 34px 110px rgba(0,0,0,0.55),
    0 1px 0 rgba(255,255,255,0.03) inset;
}

.title {
  margin: 0 0 8px 0;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(1.95rem, 4.2vw, 3.05rem);
}

.subtitle {
  margin: 0 0 16px 0;
  color: rgba(255,255,255,0.66);
  font-size: clamp(1.0rem, 1.3vw, 1.1rem);
}

/* Accent: subtiler, weniger „techy“ */
.accent {
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.92),
    rgba(190,255,236,0.78),
    rgba(198,214,255,0.78)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.95;
}

.body {
  margin: 0 0 12px 0;
  color: rgba(255,255,255,0.74);
  max-width: 72ch;
}
.body:last-of-type { margin-bottom: 0; }

.cta {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.78);
  font-size: 0.98rem;
}

/* Punkt: ruhiger (weniger Glow) */
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(185,255,232,0.75);
  box-shadow: 0 0 0 4px rgba(185,255,232,0.06); /* sehr dezenter Halo */
}

/* Footer */
.foot {
  margin-top: auto;
  padding: 6px 2px 0;
  color: rgba(255,255,255,0.60);
}
