/* landing.css — AUFN PUNKT world site. Builds on tokens.css + colors_and_type.css. */
.lp-root { position: relative; min-height: 100vh; }
.spiral-canvas {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}
.lp-root > main, .lp-nav, .lp-footer { position: relative; z-index: 1; }

/* ---- Nav ---- */
.lp-nav {
  position: sticky; top: 0; z-index: 1000;
  display: flex; align-items: center; gap: var(--space-4);
  height: var(--nav-h); padding: 0 var(--section-pad-x);
  background: var(--nav-bg); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.lp-logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-weight: 600; font-size: 17px;
  letter-spacing: 3px; color: var(--accent); text-decoration: none; cursor: pointer;
}
.lp-logo span { color: var(--accent2); }
.lp-logo-mark { width: 22px; height: 22px; color: var(--accent); }
.lp-links { display: flex; gap: clamp(12px, 3vw, 22px); margin-left: auto; align-items: center; }
.lp-links a {
  font-family: var(--font-mono); font-size: 13px; color: var(--text);
  text-decoration: none; cursor: pointer; padding: 6px 2px;
  text-transform: uppercase; letter-spacing: 1px;
  transition: color var(--dur-fast) var(--ease);
}
.lp-links a:hover, .lp-links a.is-active { color: var(--accent); }
.lp-handle { color: var(--accent2) !important; }
.lp-burger {
  display: none; margin-left: auto; width: var(--touch-min); height: var(--touch-min);
  background: none; border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--text); font-size: 20px; cursor: pointer;
}

/* ---- Hero (centered, wordmark — matches real landing) ---- */
.lp-hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: var(--section-pad-y) var(--section-pad-x);
}
.lp-hero-inner { max-width: 820px; margin: 0 auto; }
.lp-hero-tag {
  display: block; font-family: var(--font-mono); font-size: var(--fs-sm);
  letter-spacing: 4px; color: var(--accent); margin-bottom: var(--space-5);
}
.lp-hero-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: var(--fs-hero); line-height: 0.92; letter-spacing: -4px;
  margin: 0 0 var(--space-5); color: var(--text);
}
.neon { text-shadow: 0 0 5px var(--accent), 0 0 14px var(--accent); }
@media (prefers-reduced-motion: no-preference) {
  .glitch { animation: glitch-flicker 1.1s infinite linear alternate-reverse; }
}
@keyframes glitch-flicker {
  0% { transform: translate(0); } 20% { transform: translate(-1px,1px); }
  40% { transform: translate(-1px,-1px); } 60% { transform: translate(1px,1px); }
  80% { transform: translate(1px,-1px); } 100% { transform: translate(0); }
}
.lp-hero-lead {
  font-size: var(--fs-lg); line-height: 1.5; color: var(--text-dim);
  max-width: 560px; margin: 0 auto var(--space-7); text-wrap: pretty;
}
.lp-hero-cta { display: flex; gap: var(--space-3); flex-wrap: wrap; justify-content: center; margin-bottom: var(--space-7); }
.lp-cta {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  background: var(--accent); color: #000; font-family: var(--font-mono); font-weight: 600;
  font-size: 14px; padding: 15px 32px; border-radius: var(--radius-full);
  min-height: var(--touch-min); text-decoration: none; box-shadow: 0 0 0 1px var(--accent);
  transition: all var(--dur-base) var(--ease);
}
.lp-cta:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 10px 30px -10px var(--accent); }
.lp-cta.ghost { background: transparent; color: var(--text); box-shadow: inset 0 0 0 1px var(--border-soft); }
.lp-cta.ghost:hover { color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); background: transparent; transform: translateY(-2px); }
.lp-hero-tags { display: flex; gap: var(--space-2); flex-wrap: wrap; justify-content: center; }
.lp-tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-dim);
  border: 1px solid var(--border-soft); border-radius: var(--radius-full);
  padding: 5px 11px;
}
.lp-tag.sm { font-size: 10px; padding: 4px 9px; }

/* ---- Sections ---- */
.lp-section { padding: var(--section-pad-y) var(--section-pad-x); max-width: 1100px; margin: 0 auto; }
.lp-section-head { margin-bottom: var(--space-8); }
.lp-section-title { font-size: var(--fs-2xl); margin: var(--space-2) 0 var(--space-3); }
.lp-section-sub { color: var(--text-dim); font-size: var(--fs-base); margin: 0; }

.lp-events { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--space-5); }
.lp-event {
  background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: var(--card-pad);
  display: flex; flex-direction: column; gap: var(--space-3);
  transition: transform var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}
.lp-event:hover { transform: translateY(-3px); border-color: var(--border-soft); }
.lp-event.is-live.live-magenta { box-shadow: var(--glow-magenta); border-color: transparent; }
.lp-event-top { display: flex; justify-content: space-between; align-items: center; }
.lp-event-time { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); }
.lp-event-title { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-xl); margin: 0; }
.lp-event-where { font-size: var(--fs-sm); color: var(--text-dim); margin: 0; }
.lp-event-tags { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.lp-event-btn { margin-top: auto; font-size: 12px; align-self: flex-start; }
.lp-event-btn.hot { background: #333; border-color: var(--accent); color: var(--accent); }

/* ---- Teasers ---- */
.lp-teaser {
  display: flex; gap: var(--space-7); align-items: center;
  max-width: 1100px; margin: 0 auto; padding: var(--section-pad-y) var(--section-pad-x);
}
.lp-teaser-glyph {
  font-size: clamp(64px, 12vw, 128px); flex: none; line-height: 1;
  filter: drop-shadow(0 0 24px rgba(0,255,255,.3));
}
.teaser-magenta .lp-teaser-glyph { filter: drop-shadow(0 0 24px rgba(255,0,170,.35)); }
.lp-teaser-title { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-2xl); line-height: 1.04; margin: var(--space-2) 0 var(--space-4); }
.lp-teaser-text { color: var(--text-dim); font-size: var(--fs-md); line-height: 1.5; max-width: 52ch; margin: 0 0 var(--space-6); text-wrap: pretty; }

/* ---- Kollektiv ---- */
.lp-kollektiv { text-align: center; }
.lp-kollektiv-text { max-width: 60ch; margin: var(--space-4) auto var(--space-6); color: var(--text); font-size: var(--fs-md); line-height: 1.55; text-wrap: balance; }
.lp-kollektiv-row { display: flex; gap: var(--space-2); flex-wrap: wrap; justify-content: center; }

/* ---- Footer ---- */
.lp-footer { border-top: 1px solid var(--border); padding: var(--space-8) var(--section-pad-x); text-align: center; }
.lp-footer-mark { display: inline-flex; align-items: center; gap: 12px; margin-bottom: var(--space-3); }
.lp-footer-spiral { width: 34px; height: 34px; color: var(--accent); }
.lp-footer-word { font-size: var(--fs-xl); letter-spacing: 0.04em; }
.lp-footer-line { color: var(--text-dim); font-family: var(--font-mono); font-size: 12px; margin: 0 0 var(--space-4); }
.lp-footer-links { display: flex; gap: var(--space-5); justify-content: center; flex-wrap: wrap; margin-bottom: var(--space-4); }
.lp-footer-links a { font-family: var(--font-mono); font-size: 12px; color: var(--text); text-decoration: none; }
.lp-footer-links a:hover { color: var(--accent); }
.lp-footer-fine { color: var(--text-muted); font-size: 11px; margin: 0; }

.btn.magenta { background: var(--accent2); color: #000; border-color: var(--accent2); font-weight: 600; }
.btn.magenta:hover { background: #fff; color: #000; }

@media (max-width: 760px) {
  .lp-burger { display: flex; }
  .lp-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: var(--space-3) var(--section-pad-x); display: none;
  }
  .lp-links.open { display: flex; }
  .lp-links a { width: 100%; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
  .lp-teaser { flex-direction: column; text-align: center; align-items: center; }
  .lp-teaser-text { margin-left: auto; margin-right: auto; }
}
