/* ============================================================
   Cloud & AI Night 2026 – Brutalist Terminal Aesthetic
   Pure Black + Terminal Green + Zero Border-Radius + ASCII
   Inspired by kyberio.com v8 Monolith
   ============================================================ */

/* ── Self-hosted Fonts (DSGVO-konform, kein Google CDN) ────── */
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/jetbrains-mono-400.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/jetbrains-mono-500.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/jetbrains-mono-600.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/jetbrains-mono-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/inter-700.woff2') format('woff2');
}

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --mono-bg: #000000;
  --mono-surface: #0d0d0d;
  --mono-surface-hover: #111111;
  --mono-border: #1a1a1a;
  --mono-border-green: rgba(34, 197, 94, 0.2);
  --mono-green: #22c55e;
  --mono-green-dim: rgba(34, 197, 94, 0.15);
  --mono-green-muted: rgba(34, 197, 94, 0.4);
  --mono-text: #e5e5e5;
  --mono-text-muted: #b3b3b3;
  --mono-text-dim: #8a8a8a;
  --mono-white: #ffffff;
  --mono-font: 'JetBrains Mono', ui-monospace, 'Cascadia Code', 'Fira Code', monospace;
  --mono-container: 1200px;
  --mono-transition: 0.2s ease;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 17px;
  line-height: 1.65;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  background: var(--mono-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--mono-font);
  background: var(--mono-bg);
  color: var(--mono-text);
  overflow-x: hidden;
  min-height: 100vh;
}

::selection {
  background: var(--mono-green);
  color: var(--mono-bg);
}

:focus-visible {
  outline: 2px solid var(--mono-green);
  outline-offset: 2px;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--mono-green);
  text-decoration: none;
  transition: color var(--mono-transition);
}

a:hover { color: var(--mono-white); }

/* ── Utility ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--mono-container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.mono { font-family: var(--mono-font); }
.text-green { color: var(--mono-green); }

/* ── Scanline Overlay ──────────────────────────────────────── */
.scanline-overlay {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.08) 2px,
    rgba(0, 0, 0, 0.08) 4px
  );
  opacity: 0.5;
}

/* ── CRT Phosphor Dot Grid ─────────────────────────────────── */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    rgba(34, 197, 94, 0.03) 1px,
    transparent 1px
  );
  background-size: 4px 4px;
  opacity: 0.6;
}

/* ── Navigation ────────────────────────────────────────────── */
.nav-main {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.95);
  transition: background var(--mono-transition);
}

.nav-main.is-scrolled {
  background: rgba(0, 0, 0, 0.98);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.5rem;
  transition: height var(--mono-transition);
}

/* Text-based logo with cursor animation */
.nav-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--mono-font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--mono-white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  transition: font-size var(--mono-transition);
}

.nav-logo-cursor {
  display: inline-block;
  width: 0.55em;
  height: 1.15em;
  background: var(--mono-green);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: none;
}

.nav-logo-cursor.is-blinking {
  animation: blink 1s step-end infinite;
}

.nav-logo-link:hover .nav-logo-text {
  color: var(--mono-green);
}

.nav-logo-link:hover .nav-logo-cursor {
  background: var(--mono-white);
}

.nav-main.is-scrolled .nav-inner {
  height: 4rem;
}

.nav-main.is-scrolled .nav-logo-text {
  font-size: 0.82rem;
}

.nav-main.is-scrolled .nav-mobile {
  top: 4rem;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-links li a {
  font-family: var(--mono-font);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--mono-text-muted);
  padding: 0.375rem 0.75rem;
  border: 1px solid transparent;
  transition: all var(--mono-transition);
  text-transform: lowercase;
}

.nav-links li a:hover,
.nav-links li a:focus {
  color: var(--mono-green);
  background: var(--mono-green-dim);
  border-color: var(--mono-border-green);
}

.nav-cta {
  font-family: var(--mono-font) !important;
  font-size: 0.8rem !important;
  color: var(--mono-bg) !important;
  background: var(--mono-green) !important;
  padding: 0.375rem 0.875rem !important;
  border: 1px solid var(--mono-green) !important;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--mono-transition);
}

.nav-cta:hover {
  background: transparent !important;
  color: var(--mono-green) !important;
}

/* Mobile menu toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--mono-text);
  transition: all var(--mono-transition);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 5.5rem; left: 0; right: 0;
  transition: top var(--mono-transition);
  background: rgba(0, 0, 0, 0.98);
  border-bottom: 1px solid var(--mono-border);
  padding: 1rem 1.25rem 1.5rem;
  z-index: 99;
}

.nav-mobile.is-open { display: block; }

.nav-mobile a {
  display: block;
  font-family: var(--mono-font);
  font-size: 0.85rem;
  color: var(--mono-text-muted);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--mono-border);
  letter-spacing: 0.04em;
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--mono-green); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 1.25rem 80px;
  background: var(--mono-bg);
}

/* Grid-line background instead of bg-image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--mono-green) 1px, transparent 1px),
    linear-gradient(90deg, var(--mono-green) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Night sky canvas – subtle starfield + shooting stars */
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.85;
}

/* Subtle CRT glow instead of heavy gradient */
.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse at center,
    rgba(34, 197, 94, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 900px;
}

/* Hero badge */
.hero-badge {
  display: inline-block;
  font-family: var(--mono-font);
  font-size: 0.9rem;
  color: var(--mono-text-dim);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  padding: 0.5rem 0;
  border-top: 1px solid var(--mono-border);
  border-bottom: 1px solid var(--mono-border);
  text-transform: uppercase;
}

/* Hero heading */
.hero-h1 {
  font-family: var(--mono-font);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--mono-white);
  line-height: 1.15;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.hero-h1 .cursor {
  display: inline-block;
  width: 0.6em;
  height: 1.1em;
  background: var(--mono-green);
  margin-left: 4px;
  vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}

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

.hero-subtitle {
  font-family: var(--mono-font);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--mono-green);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero-text {
  font-family: var(--mono-font);
  font-size: 1.05rem;
  color: var(--mono-text-muted);
  line-height: 1.7;
  letter-spacing: 0.01em;
  max-width: 680px;
  margin-bottom: 2rem;
}

/* ── Buttons ───────────────────────────────────────────────── */
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono-font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mono-bg);
  background: var(--mono-green);
  padding: 0.625rem 1.5rem;
  border: 1px solid var(--mono-green);
  border-radius: 0;
  cursor: pointer;
  transition: all var(--mono-transition);
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  background: transparent;
  color: var(--mono-green);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono-font);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--mono-text-muted);
  background: transparent;
  padding: 0.625rem 1.5rem;
  border: 1px solid var(--mono-border);
  border-radius: 0;
  cursor: pointer;
  transition: all var(--mono-transition);
  letter-spacing: 0.02em;
}

.btn-secondary:hover {
  border-color: var(--mono-green);
  color: var(--mono-green);
  background: var(--mono-green-dim);
}

/* ── Stats Strip ───────────────────────────────────────────── */
.stats-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--mono-border);
  background: var(--mono-surface);
}

.stat-card {
  padding: 0.625rem 1rem;
  border-right: 1px solid var(--mono-border);
  font-family: var(--mono-font);
  font-size: 0.8rem;
  transition: background var(--mono-transition);
}

.stat-card:last-child {
  border-right: none;
}

.stat-card:hover {
  background: var(--mono-green-dim);
}

.stat-label {
  font-family: var(--mono-font);
  font-size: 0.75rem;
  color: var(--mono-text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stat-value {
  font-family: var(--mono-font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mono-green);
  line-height: 1.2;
}

.stat-desc {
  font-size: 0.75rem;
  color: var(--mono-text-dim);
  line-height: 1.55;
  margin-top: 0.15rem;
}

@media (min-width: 768px) {
  .stats-strip {
    flex-direction: row;
  }
  .stat-card {
    flex: 1;
  }
}

@media (max-width: 767px) {
  .stats-strip {
    flex-direction: column;
  }
  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--mono-border);
  }
  .stat-card:last-child {
    border-bottom: none;
  }
}

/* ── Countdown (Terminal Style) ────────────────────────────── */
.countdown-bar {
  margin-top: 2.5rem;
}

.countdown-terminal {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  font-family: var(--mono-font);
  font-size: 0.75rem;
  color: var(--mono-text-dim);
  background: var(--mono-surface);
  border: 1px solid var(--mono-border);
  padding: 0.6rem 1rem;
}

.countdown-terminal .cd-bracket {
  color: var(--mono-text-dim);
}

.countdown-terminal .cd-val {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--mono-green);
  min-width: 2ch;
  text-align: center;
}

.countdown-terminal .cd-label {
  font-size: 0.65rem;
  color: var(--mono-text-dim);
  letter-spacing: 0.06em;
  margin-right: 0.75rem;
}

.countdown-terminal .cd-label:last-child { margin-right: 0; }

.countdown-terminal .cd-sep {
  color: var(--mono-green-muted);
  margin: 0 0.15rem;
}

.cd-prompt {
  color: var(--mono-green);
  margin-right: 0.5rem;
  font-weight: 700;
}

/* ── Section Base ──────────────────────────────────────────── */
.section {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 3rem;
}

.section-label {
  font-family: var(--mono-font);
  font-size: 1rem;
  color: var(--mono-green);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--mono-font);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--mono-white);
  line-height: 1.25;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.section-desc {
  font-family: var(--mono-font);
  font-size: 1.05rem;
  color: var(--mono-text-muted);
  max-width: 680px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* ── Section Divider (ASCII Style) ─────────────────────────── */
.section-divider {
  font-family: var(--mono-font);
  font-size: 0.9rem;
  color: var(--mono-text-dim);
  letter-spacing: 0.1em;
  text-align: center;
  padding: 2rem 0;
  overflow: hidden;
}

.section-divider::before {
  content: '════════════════════════════════════════════════════════════════';
  display: block;
  color: var(--mono-border);
  overflow: hidden;
  white-space: nowrap;
}

/* ── Terminal Card (replaces Glass Card) ───────────────────── */
.glass-card {
  background: var(--mono-surface);
  border: 1px solid var(--mono-border);
  border-radius: 0;
  overflow: hidden;
  transition: border-color var(--mono-transition), background var(--mono-transition);
}

.glass-card:hover {
  border-color: var(--mono-border-green);
}

.glass-card-label {
  font-family: var(--mono-font);
  font-size: 0.9rem;
  color: var(--mono-text-dim);
  letter-spacing: 0.05em;
  text-transform: lowercase;
  margin-bottom: 0.75rem;
  padding: 0.375rem 0.75rem;
  background: var(--mono-bg);
  border-bottom: 1px solid var(--mono-border);
  margin: -1.5rem -1.5rem 1rem -1.5rem;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0;
  transition: all var(--mono-transition);
}

.glass-card-label::before {
  content: '┌── [';
  color: var(--mono-text-dim);
}

.glass-card-label::after {
  content: '] ─────────────────────────┐';
  color: var(--mono-text-dim);
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
}

.glass-card:hover .glass-card-label {
  background: var(--mono-green-dim);
  border-bottom-color: var(--mono-border-green);
  color: var(--mono-green);
}

.glass-card {
  padding: 1.5rem;
}

.glass-card-title {
  font-family: var(--mono-font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--mono-white);
  margin-bottom: 0.5rem;
}

.glass-card-text {
  font-size: 1rem;
  color: var(--mono-text-muted);
  line-height: 1.65;
}

.glass-card-code {
  font-family: var(--mono-font);
  font-size: 0.9rem;
  color: var(--mono-green);
  background: var(--mono-bg);
  border: 1px solid var(--mono-border);
  padding: 0.5rem 0.75rem;
  margin-top: 0.75rem;
  word-break: break-all;
  line-height: 1.5;
}

/* ── Format Section Grid ───────────────────────────────────── */
.format-bullets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 2.5rem;
  border: 1px solid var(--mono-border);
  background: var(--mono-surface);
}

.format-bullet {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--mono-border);
  transition: background var(--mono-transition);
}

.format-bullet:last-child {
  border-bottom: none;
}

.format-bullet:hover {
  background: var(--mono-green-dim);
}

.format-bullet-key {
  font-family: var(--mono-font);
  font-size: 0.9rem;
  color: var(--mono-green);
  white-space: nowrap;
  min-width: 120px;
  padding-top: 0.1rem;
  font-weight: 600;
}

.format-bullet-key::before {
  content: '> ';
  color: var(--mono-green);
}

.format-bullet-val {
  font-size: 1rem;
  color: var(--mono-text-muted);
  line-height: 1.65;
}

.format-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .format-bullets { grid-template-columns: 1fr; }
  .format-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ── Schedule Section ──────────────────────────────────────── */
.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
  border: 1px solid var(--mono-border);
  background: var(--mono-surface);
}

.schedule-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--mono-border);
  transition: background var(--mono-transition);
  font-family: var(--mono-font);
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-item::before {
  display: none;
}

.schedule-item:hover {
  background: var(--mono-green-dim);
}

.schedule-item.is-pre { opacity: 0.65; }
.schedule-item.is-pre:hover { opacity: 0.85; }

.schedule-time {
  font-family: var(--mono-font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--mono-green);
  min-width: 110px;
  white-space: nowrap;
}

.schedule-title {
  font-size: 1.05rem;
  color: var(--mono-white);
  font-weight: 600;
  line-height: 1.5;
}

.schedule-desc {
  font-family: var(--mono-font);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--mono-text-dim);
  line-height: 1.5;
  margin-top: 0.2rem;
}

.schedule-tag {
  font-family: var(--mono-font);
  font-size: 0.8rem;
  color: var(--mono-green);
  background: var(--mono-green-dim);
  border: 1px solid var(--mono-border-green);
  padding: 0.15rem 0.5rem;
  margin-left: 0.5rem;
  vertical-align: middle;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.schedule-footnote {
  font-family: var(--mono-font);
  font-size: 0.9rem;
  color: var(--mono-text-dim);
  margin-top: 1.5rem;
  padding-left: 1.25rem;
}

/* ── Speaker Section ──────────────────────────────────────── */
.speaker-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
}

@media (min-width: 640px) {
  .speaker-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .speaker-grid { grid-template-columns: repeat(4, 1fr); }
}

.speaker-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.speaker-photo-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
}

.speaker-photo-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--mono-border);
  transition: border-color var(--mono-transition);
}

/* Partial green accent arc – top-right quadrant */
.speaker-photo-ring::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--mono-green);
  border-right-color: var(--mono-green);
  transform: rotate(15deg);
  opacity: 0.8;
  transition: opacity var(--mono-transition);
}

.speaker-card:hover .speaker-photo-ring {
  border-color: var(--mono-border-green);
}

.speaker-card:hover .speaker-photo-ring::after {
  opacity: 1;
}

.speaker-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--mono-transition);
}

.speaker-card:hover .speaker-photo {
  filter: grayscale(0%);
}

/* Placeholder when no real photo exists */
.speaker-photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--mono-surface);
  border: 1px solid var(--mono-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono-font);
  font-size: 2rem;
  color: var(--mono-text-dim);
}

.speaker-name {
  font-family: var(--mono-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mono-white);
  line-height: 1.4;
}

.speaker-topic {
  font-family: var(--mono-font);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--mono-green);
  margin-top: 0.2rem;
  line-height: 1.4;
}

.speaker-role {
  font-family: var(--mono-font);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--mono-text-dim);
  margin-top: 0.15rem;
  line-height: 1.4;
}

.speaker-footnote {
  font-family: var(--mono-font);
  font-size: 0.9rem;
  color: var(--mono-text-dim);
  margin-top: 2rem;
  padding-left: 1.25rem;
}

/* ── Location Section ──────────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.location-image {
  border: 1px solid var(--mono-border);
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.9);
  transition: filter var(--mono-transition);
}

.location-image:hover img {
  filter: brightness(0.9) saturate(1);
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.location-address {
  font-family: var(--mono-font);
  font-size: 1rem;
  color: var(--mono-text);
  line-height: 1.7;
  padding: 1rem 1.25rem;
  background: var(--mono-surface);
  border: 1px solid var(--mono-border);
}

.location-address span {
  color: var(--mono-text-dim);
}

.location-travel {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.location-travel-item {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  font-size: 0.85rem;
  line-height: 1.6;
}

.location-travel-key {
  font-family: var(--mono-font);
  font-size: 0.75rem;
  color: var(--mono-green);
  min-width: 130px;
  font-weight: 600;
}

.location-travel-val {
  color: var(--mono-text-muted);
}

.location-access {
  font-family: var(--mono-font);
  font-size: 0.8rem;
  color: var(--mono-text-dim);
  line-height: 1.6;
  padding: 0.75rem 1rem;
  background: var(--mono-green-dim);
  border: 1px solid var(--mono-border-green);
}

@media (min-width: 768px) {
  .location-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Partners Section ──────────────────────────────────────── */
.partner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.partner-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.partner-card-role {
  font-family: var(--mono-font);
  font-size: 0.65rem;
  color: var(--mono-green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.partner-logo {
  height: 5rem;
  width: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1) opacity(0.7);
  transition: filter var(--mono-transition);
}

.partner-card:hover .partner-logo {
  filter: brightness(0) invert(1) opacity(1);
}

.partner-multi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.partner-multi .partner-logo { height: 4rem; }

.partner-cta {
  font-family: var(--mono-font);
  font-size: 0.85rem;
  color: var(--mono-text-dim);
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--mono-border);
  background: var(--mono-surface);
  line-height: 1.6;
  transition: border-color var(--mono-transition);
}

.partner-cta:hover {
  border-color: var(--mono-green);
}

.partner-cta a {
  color: var(--mono-green);
  text-decoration: none;
  font-weight: 600;
}

.partner-cta a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--mono-border);
  background: var(--mono-bg);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.footer-copy {
  font-family: var(--mono-font);
  font-size: 0.7rem;
  color: var(--mono-text-dim);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-family: var(--mono-font);
  font-size: 0.7rem;
  color: var(--mono-text-dim);
  transition: color var(--mono-transition);
}

.footer-links a:hover { color: var(--mono-green); }

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ── Sticky Mobile CTA ────────────────────────────────────── */
.sticky-cta {
  display: block;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 0.75rem 1.25rem;
  background: var(--mono-bg);
  border-top: 1px solid var(--mono-border);
}

.sticky-cta button {
  width: 100%;
  font-family: var(--mono-font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mono-bg);
  background: var(--mono-green);
  border: 1px solid var(--mono-green);
  padding: 0.85rem 1.5rem;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--mono-transition);
  letter-spacing: 0.03em;
}

.sticky-cta button:hover {
  background: transparent;
  color: var(--mono-green);
}

@media (min-width: 768px) {
  .sticky-cta { display: none; }
}

/* ── Modal ─────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.is-open {
  display: flex;
}

.modal-box {
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  background: var(--mono-surface);
  border: 1px solid var(--mono-border);
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--mono-border);
  background: var(--mono-bg);
}

.modal-title {
  font-family: var(--mono-font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mono-white);
}

.modal-close {
  font-family: var(--mono-font);
  font-size: 0.75rem;
  color: var(--mono-text-dim);
  background: var(--mono-surface);
  border: 1px solid var(--mono-border);
  padding: 0.3rem 0.75rem;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--mono-transition);
}

.modal-close:hover {
  color: var(--mono-green);
  border-color: var(--mono-border-green);
}

.modal-body {
  flex: 1;
  overflow-y: auto;
}

/* ── SSH Hero CTA ──────────────────────────────────────────── */
.ssh-hero-cta {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.ssh-cta-label {
  font-family: var(--mono-font);
  font-size: 0.75rem;
  color: var(--mono-text-dim);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.ssh-cta-block {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--mono-surface);
  border: 1px solid var(--mono-border);
  padding: 0.75rem 1.25rem;
  transition: all var(--mono-transition);
}

.ssh-cta-block:hover {
  border-color: var(--mono-border-green);
  background: var(--mono-green-dim);
}

.ssh-command {
  font-family: var(--mono-font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--mono-green);
  letter-spacing: 0.02em;
  user-select: all;
  cursor: text;
}

.ssh-copy-btn {
  font-family: var(--mono-font);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--mono-text-dim);
  background: var(--mono-bg);
  border: 1px solid var(--mono-border);
  padding: 0.25rem 0.6rem;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--mono-transition);
  white-space: nowrap;
}

.ssh-copy-btn:hover {
  color: var(--mono-green);
  border-color: var(--mono-border-green);
  background: var(--mono-green-dim);
}

.ssh-copy-btn.is-copied {
  color: var(--mono-green);
  border-color: var(--mono-green);
}

.ssh-cta-hint {
  font-family: var(--mono-font);
  font-size: 0.65rem;
  color: var(--mono-text-dim);
  margin-top: 0.5rem;
  letter-spacing: 0.03em;
}

/* ── Registration Modal (wider for multi-view) ─────────────── */
.registration-modal-box {
  max-width: 800px;
}

/* ── Modal Back Button ─────────────────────────────────────── */
.modal-back {
  font-family: var(--mono-font);
  font-size: 0.7rem;
  color: var(--mono-text-dim);
  background: none;
  border: 1px solid var(--mono-border);
  padding: 0.25rem 0.6rem;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--mono-transition);
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.modal-back:hover {
  color: var(--mono-green);
  border-color: var(--mono-border-green);
}

.modal-back[hidden] {
  display: none;
}

/* ── Modal View System ─────────────────────────────────────── */
.modal-view {
  display: none;
}

.modal-view.is-active {
  display: block;
}

/* ── Selection Grid ────────────────────────────────────────── */
.select-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .select-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Selection Cards ───────────────────────────────────────── */
.select-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background: var(--mono-surface);
  border: 1px solid var(--mono-border);
  border-radius: 0;
  padding: 1.5rem 1.25rem;
  cursor: pointer;
  transition: all var(--mono-transition);
  font-family: var(--mono-font);
  color: var(--mono-text);
  overflow: hidden;
}

.select-card:hover {
  border-color: var(--mono-border-green);
  background: var(--mono-surface-hover);
}

/* VIP Card (SSH) */
.select-card.is-vip {
  border-color: var(--mono-border-green);
}

.select-card.is-vip:hover {
  border-color: var(--mono-green);
  background: var(--mono-green-dim);
}

.select-card-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-family: var(--mono-font);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--mono-bg);
  background: var(--mono-green);
  padding: 0.15rem 0.5rem;
  letter-spacing: 0.08em;
}

.select-card-label {
  font-size: 0.65rem;
  color: var(--mono-green);
  letter-spacing: 0.08em;
  text-transform: lowercase;
  margin-bottom: 0.5rem;
}

.select-card-label::before {
  content: '$ ';
  color: var(--mono-text-dim);
}

.select-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mono-white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.select-card-desc {
  font-size: 0.78rem;
  color: var(--mono-text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.select-card-features {
  list-style: none;
  margin-bottom: 1rem;
  padding: 0;
  flex: 1;
}

.select-card-features li {
  font-size: 0.72rem;
  color: var(--mono-text-muted);
  padding: 0.15rem 0;
  line-height: 1.55;
}

.select-card-features li::before {
  content: '> ';
  color: var(--mono-green);
}

.select-card.is-vip .select-card-features li::before {
  content: '★ ';
  color: var(--mono-green);
}

.select-card-action {
  font-size: 0.72rem;
  color: var(--mono-green);
  transition: color var(--mono-transition);
  margin-top: auto;
}

.select-card:hover .select-card-action {
  color: var(--mono-white);
}

/* ── Terminal Emulator ─────────────────────────────────────── */
.terminal-emu {
  display: flex;
  flex-direction: column;
  height: 60vh;
  max-height: 500px;
  font-family: var(--mono-font);
  font-size: 0.82rem;
  line-height: 1.6;
}

.terminal-emu-output {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(34, 197, 94, 0.2) transparent;
}

.terminal-emu-output::-webkit-scrollbar {
  width: 5px;
}

.terminal-emu-output::-webkit-scrollbar-track {
  background: transparent;
}

.terminal-emu-output::-webkit-scrollbar-thumb {
  background: rgba(34, 197, 94, 0.2);
}

/* Terminal output line types */
.term-line {
  white-space: pre-wrap;
  word-break: break-word;
  margin-bottom: 0.15rem;
}

.term-system { color: var(--mono-text-dim); }
.term-prompt { color: var(--mono-green); }
.term-user { color: var(--mono-white); }
.term-error { color: #ef4444; }
.term-success { color: var(--mono-green); font-weight: 600; }
.term-divider { color: var(--mono-green); font-weight: 600; }
.term-info { color: var(--mono-text); }

.term-link {
  color: var(--mono-green);
  text-decoration: underline;
  cursor: pointer;
}

.term-link:hover { color: var(--mono-white); }

/* Terminal input line */
.terminal-emu-input-line {
  display: flex;
  align-items: center;
  padding: 0.5rem 1.5rem 1rem;
  border-top: 1px solid var(--mono-border);
  flex-shrink: 0;
}

.terminal-emu-input-line.is-hidden {
  visibility: hidden;
  height: 0;
  padding: 0;
  border: none;
  overflow: hidden;
}

.terminal-emu-prompt {
  color: var(--mono-green);
  font-weight: 600;
  flex-shrink: 0;
  user-select: none;
}

.terminal-emu-input {
  flex: 1;
  font-family: var(--mono-font);
  font-size: 0.82rem;
  color: var(--mono-white);
  background: transparent;
  border: none;
  outline: none;
  caret-color: var(--mono-green);
  padding: 0;
}

.terminal-emu-input::placeholder {
  color: var(--mono-text-dim);
}

/* ── Ticketshop iframe ─────────────────────────────────────── */
.shop-iframe {
  width: 100%;
  height: 70vh;
  border: none;
  background: var(--mono-bg);
}

/* ── Terminal Guide (Modal Content) ────────────────────────── */
.terminal-guide {
  padding: 1.5rem;
  font-family: var(--mono-font);
}

.terminal-guide-intro {
  margin-bottom: 1.5rem;
}

.terminal-guide-text {
  font-size: 0.85rem;
  color: var(--mono-text);
  line-height: 1.6;
}

.terminal-guide-cmd {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--mono-bg);
  border: 1px solid var(--mono-border);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.terminal-guide-cmd--small {
  padding: 0.65rem 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.terminal-guide-prompt {
  font-size: 1rem;
  font-weight: 700;
  color: var(--mono-green);
  flex-shrink: 0;
}

.terminal-guide-code {
  font-size: 1rem;
  font-weight: 600;
  color: var(--mono-green);
  flex: 1;
  user-select: all;
}

.terminal-guide-cmd--small .terminal-guide-prompt { font-size: 0.8rem; }
.terminal-guide-cmd--small .terminal-guide-code { font-size: 0.8rem; }

.terminal-guide-alt {
  margin-bottom: 1.5rem;
}

.terminal-guide-alt > p {
  font-size: 0.75rem;
  color: var(--mono-text-dim);
  margin-bottom: 0.25rem;
}

.terminal-guide-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--mono-surface);
  border: 1px solid var(--mono-border);
}

.terminal-guide-info-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--mono-text-muted);
  line-height: 1.5;
}

.terminal-guide-info-key {
  color: var(--mono-green);
  font-weight: 600;
  flex-shrink: 0;
  min-width: 7rem;
}

.terminal-guide-footer {
  font-size: 0.7rem;
  color: var(--mono-text-dim);
  letter-spacing: 0.03em;
}

/* ── HUD Corners (removed – no more corner decorations) ────── */
.hud-corners { position: relative; }
.hud-corners::before,
.hud-corners::after { display: none; }

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

.anim-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.anim-in:nth-child(2) { transition-delay: 0.08s; }
.anim-in:nth-child(3) { transition-delay: 0.16s; }
.anim-in:nth-child(4) { transition-delay: 0.24s; }
.anim-in:nth-child(5) { transition-delay: 0.32s; }

/* ============================================================
   RESPONSIVE TYPOGRAPHY SYSTEM
   Breakpoints: 320-374 | 375-479 | 480-639 | 640-767 | 768-1023 | 1024-1279 | 1280+
   Monospace principles: generous line-heights, controlled measure,
   wider letter-spacing at small sizes, tighter at large sizes.
   ============================================================ */

/* ── Desktop Large (1280px+) ───────────────────────────────── */
@media (min-width: 1280px) {
  html { font-size: 17px; }

  .hero-h1 {
    font-size: 5rem;
    line-height: 1.12;
    letter-spacing: -0.035em;
  }

  .hero-subtitle {
    font-size: 1.25rem;
    letter-spacing: 0.015em;
  }

  .hero-text {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 680px;
  }

  .hero-badge {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
  }

  .section-title {
    font-size: 2.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .section-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 680px;
  }

  .section-label {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
  }

  .ssh-command {
    font-size: 1.1rem;
    letter-spacing: 0.015em;
  }

  .countdown-terminal .cd-val {
    font-size: 1.35rem;
  }

  .format-bullet-val {
    line-height: 1.65;
  }

  .schedule-title {
    font-size: 1.05rem;
  }

  .glass-card-code {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .footer-copy,
  .footer-links a {
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    line-height: 1.6;
  }
}

/* ── Desktop (1024px – 1279px) ─────────────────────────────── */
@media (min-width: 1024px) and (max-width: 1279px) {
  html { font-size: 16px; }

  .hero-h1 {
    font-size: 4.25rem;
    line-height: 1.13;
    letter-spacing: -0.03em;
  }

  .hero-subtitle {
    font-size: 1.15rem;
    letter-spacing: 0.015em;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 640px;
  }

  .hero-badge {
    font-size: 0.82rem;
    letter-spacing: 0.07em;
  }

  .section-title {
    font-size: 2rem;
    line-height: 1.22;
    letter-spacing: -0.015em;
  }

  .section-desc {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 640px;
  }

  .section-label {
    font-size: 0.9rem;
    letter-spacing: 0.07em;
  }

  .ssh-command {
    font-size: 1.05rem;
  }

  .glass-card-code {
    font-size: 0.85rem;
    line-height: 1.55;
  }

  .footer-copy,
  .footer-links a {
    font-size: 0.72rem;
    line-height: 1.6;
  }
}

/* ── Tablet Landscape (768px – 1023px) ─────────────────────── */
@media (min-width: 768px) and (max-width: 1023px) {
  html { font-size: 16px; }

  .hero-h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    letter-spacing: -0.025em;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    letter-spacing: 0.02em;
  }

  .hero-text {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 580px;
  }

  .hero-badge {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }

  .section-title {
    font-size: 1.85rem;
    line-height: 1.22;
    letter-spacing: -0.01em;
  }

  .section-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 560px;
  }

  .section-label {
    font-size: 0.85rem;
    letter-spacing: 0.06em;
  }

  .format-bullet-key {
    font-size: 0.85rem;
    min-width: 110px;
  }

  .format-bullet-val {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .glass-card-label { font-size: 0.82rem; }
  .glass-card-text { font-size: 0.95rem; }
  .glass-card-code {
    font-size: 0.82rem;
    line-height: 1.55;
  }
  .glass-card-title { font-size: 1rem; }

  .schedule-time { font-size: 0.95rem; }
  .schedule-title { font-size: 1rem; }
  .schedule-tag { font-size: 0.75rem; }
  .schedule-footnote { font-size: 0.85rem; }

  .location-address { font-size: 0.95rem; }
  .location-travel-item { font-size: 0.82rem; }
  .location-travel-key { font-size: 0.72rem; }
  .location-access { font-size: 0.78rem; }

  .ssh-command { font-size: 1rem; }
  .ssh-cta-label { font-size: 0.72rem; }
  .ssh-cta-hint { font-size: 0.65rem; }
  .ssh-copy-btn { font-size: 0.68rem; }

  .stat-label { font-size: 0.72rem; }
  .stat-value { font-size: 1.05rem; }
  .stat-desc { font-size: 0.72rem; }

  .countdown-terminal { font-size: 0.72rem; }
  .countdown-terminal .cd-val { font-size: 1.2rem; }
  .countdown-terminal .cd-label { font-size: 0.62rem; }

  .btn-primary,
  .btn-secondary { font-size: 0.82rem; }

  .section-divider { font-size: 0.82rem; }

  .partner-card-role { font-size: 0.65rem; }

  .nav-links li a { font-size: 0.75rem; }
  .nav-cta { font-size: 0.75rem !important; }

  .footer-copy,
  .footer-links a {
    font-size: 0.72rem;
    line-height: 1.6;
  }
}

/* ── Tablet Portrait (640px – 767px) ───────────────────────── */
@media (min-width: 640px) and (max-width: 767px) {
  html { font-size: 16px; }

  body { padding-bottom: 4.5rem; }

  .hero {
    padding: 100px 1.25rem 60px;
    min-height: auto;
  }

  .hero-h1 {
    font-size: 3rem;
    line-height: 1.18;
    letter-spacing: -0.02em;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    letter-spacing: 0.02em;
  }

  .hero-text {
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 520px;
  }

  .hero-badge {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: 1.65rem;
    line-height: 1.25;
    letter-spacing: -0.005em;
  }

  .section-desc {
    font-size: 0.92rem;
    line-height: 1.65;
    max-width: 500px;
  }

  .section-label {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
  }

  .format-bullet-key {
    font-size: 0.82rem;
    min-width: 110px;
  }

  .format-bullet-val {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .glass-card-label { font-size: 0.78rem; }
  .glass-card-text { font-size: 0.92rem; }
  .glass-card-code {
    font-size: 0.78rem;
    line-height: 1.55;
    letter-spacing: 0.01em;
  }
  .glass-card-title { font-size: 0.95rem; }

  .schedule-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .schedule-time {
    font-size: 0.92rem;
    min-width: auto;
  }

  .schedule-title { font-size: 0.95rem; }
  .schedule-tag { font-size: 0.72rem; }
  .schedule-footnote { font-size: 0.82rem; }

  .location-address { font-size: 0.92rem; }
  .location-travel-item { font-size: 0.82rem; }
  .location-travel-key {
    font-size: 0.72rem;
    min-width: 115px;
  }
  .location-access { font-size: 0.78rem; }

  .ssh-command { font-size: 0.92rem; }
  .ssh-cta-block { flex-wrap: wrap; gap: 0.5rem; }
  .ssh-cta-label { font-size: 0.72rem; }
  .ssh-cta-hint { font-size: 0.65rem; }
  .ssh-copy-btn { font-size: 0.68rem; }

  .stat-label { font-size: 0.72rem; }
  .stat-value { font-size: 1rem; }
  .stat-desc { font-size: 0.72rem; }

  .countdown-terminal { font-size: 0.72rem; }
  .countdown-terminal .cd-val { font-size: 1.15rem; }
  .countdown-terminal .cd-label { font-size: 0.6rem; }

  .btn-primary,
  .btn-secondary { font-size: 0.82rem; }

  .sticky-cta button { font-size: 0.82rem; }

  .section-divider { font-size: 0.78rem; letter-spacing: 0.08em; }

  .partner-card-role { font-size: 0.65rem; }

  .nav-logo-text { font-size: 0.85rem; }
  .nav-main.is-scrolled .nav-logo-text { font-size: 0.78rem; }

  .nav-mobile a {
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    line-height: 1.5;
  }

  .footer-copy,
  .footer-links a {
    font-size: 0.72rem;
    line-height: 1.6;
  }

  .modal-title { font-size: 0.82rem; }
  .modal-close { font-size: 0.72rem; }
  .modal-back { font-size: 0.68rem; }

  .select-grid { padding: 1rem; gap: 0.75rem; }
  .select-card { padding: 1.25rem 1rem; }
  .select-card-title { font-size: 0.85rem; }
  .select-card-desc { font-size: 0.78rem; }
  .select-card-label { font-size: 0.65rem; }
  .select-card-features li { font-size: 0.72rem; }
  .select-card-action { font-size: 0.72rem; }
  .select-card-badge { font-size: 0.6rem; }

  .terminal-emu { height: 55vh; font-size: 0.78rem; }
  .terminal-emu-input { font-size: 0.78rem; }

  .terminal-guide-cmd { flex-wrap: wrap; gap: 0.5rem; }
  .terminal-guide-code { font-size: 0.85rem; }
  .terminal-guide-text { font-size: 0.85rem; }
  .terminal-guide-info-item { font-size: 0.75rem; }
  .terminal-guide-info-key { min-width: 6.5rem; }
  .terminal-guide-alt > p { font-size: 0.72rem; }
  .terminal-guide-footer { font-size: 0.68rem; }

  .registration-modal-box { max-width: 100%; max-height: 95vh; }
}

/* ── Mobile Large / Phablet (480px – 639px) ────────────────── */
@media (min-width: 480px) and (max-width: 639px) {
  html { font-size: 16px; }

  body { padding-bottom: 4.5rem; }

  .container { padding: 0 1.15rem; }

  .hero {
    padding: 95px 1.15rem 55px;
    min-height: auto;
  }

  .hero-h1 {
    font-size: 2.5rem;
    line-height: 1.18;
    letter-spacing: -0.02em;
  }

  .hero-subtitle {
    font-size: 1rem;
    letter-spacing: 0.02em;
    line-height: 1.5;
  }

  .hero-text {
    font-size: 0.88rem;
    line-height: 1.7;
    letter-spacing: 0.015em;
    max-width: 460px;
  }

  .hero-badge {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
  }

  .section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
    line-height: 1.25;
    letter-spacing: 0em;
  }

  .section-desc {
    font-size: 0.88rem;
    line-height: 1.65;
    letter-spacing: 0.015em;
    max-width: 440px;
  }

  .section-label {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }

  .format-bullet {
    flex-direction: column;
    gap: 0.35rem;
  }

  .format-bullet-key {
    font-size: 0.78rem;
    min-width: auto;
  }

  .format-bullet-val {
    font-size: 0.88rem;
    line-height: 1.65;
    letter-spacing: 0.015em;
  }

  .glass-card-label {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
  }
  .glass-card-text {
    font-size: 0.88rem;
    line-height: 1.65;
  }
  .glass-card-code {
    font-size: 0.75rem;
    line-height: 1.55;
    letter-spacing: 0.015em;
  }
  .glass-card-title { font-size: 0.92rem; }

  .schedule-item {
    flex-direction: column;
    gap: 0.4rem;
  }

  .schedule-time {
    font-size: 0.88rem;
    min-width: auto;
  }

  .schedule-title {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .schedule-tag { font-size: 0.68rem; }
  .schedule-footnote {
    font-size: 0.78rem;
    padding-left: 0;
  }

  .location-address {
    font-size: 0.88rem;
    line-height: 1.7;
  }
  .location-travel-item { font-size: 0.78rem; }
  .location-travel-key {
    font-size: 0.68rem;
    min-width: 105px;
  }
  .location-access {
    font-size: 0.75rem;
    line-height: 1.6;
  }

  .ssh-command { font-size: 0.85rem; }
  .ssh-cta-block { flex-wrap: wrap; gap: 0.5rem; }
  .ssh-cta-label {
    font-size: 0.68rem;
    letter-spacing: 0.03em;
  }
  .ssh-cta-hint { font-size: 0.62rem; }
  .ssh-copy-btn { font-size: 0.65rem; }

  .stat-card { font-size: 0.78rem; }
  .stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }
  .stat-value { font-size: 0.95rem; }
  .stat-desc { font-size: 0.68rem; }

  .countdown-terminal { font-size: 0.68rem; }
  .countdown-terminal .cd-val { font-size: 1.1rem; }
  .countdown-terminal .cd-label { font-size: 0.58rem; }

  .btn-primary,
  .btn-secondary {
    font-size: 0.82rem;
    padding: 0.6rem 1.25rem;
  }

  .sticky-cta button { font-size: 0.82rem; }

  .section-divider { font-size: 0.75rem; letter-spacing: 0.06em; }

  .partner-card-role { font-size: 0.62rem; }

  .nav-logo-text { font-size: 0.82rem; }
  .nav-main.is-scrolled .nav-logo-text { font-size: 0.75rem; }

  .nav-mobile a {
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    line-height: 1.5;
  }

  .footer-copy,
  .footer-links a {
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    line-height: 1.6;
  }

  .modal-title { font-size: 0.78rem; }
  .modal-close { font-size: 0.72rem; }
  .modal-back { font-size: 0.65rem; }

  .select-grid { padding: 1rem; gap: 0.75rem; }
  .select-card { padding: 1.25rem 1rem; }
  .select-card-title { font-size: 0.82rem; line-height: 1.35; }
  .select-card-desc { font-size: 0.75rem; line-height: 1.6; }
  .select-card-label { font-size: 0.62rem; }
  .select-card-features li { font-size: 0.72rem; line-height: 1.55; }
  .select-card-action { font-size: 0.72rem; }
  .select-card-badge { font-size: 0.58rem; }

  .terminal-emu { height: 55vh; font-size: 0.75rem; line-height: 1.65; }
  .terminal-emu-input { font-size: 0.75rem; }

  .terminal-guide-cmd { flex-wrap: wrap; gap: 0.5rem; }
  .terminal-guide-code { font-size: 0.82rem; }
  .terminal-guide-prompt { font-size: 0.88rem; }
  .terminal-guide-text { font-size: 0.82rem; line-height: 1.65; }
  .terminal-guide-info-item { flex-direction: column; gap: 0.15rem; font-size: 0.72rem; }
  .terminal-guide-info-key { min-width: auto; }
  .terminal-guide-alt > p { font-size: 0.68rem; }
  .terminal-guide-footer { font-size: 0.65rem; }
  .terminal-guide-cmd--small .terminal-guide-prompt,
  .terminal-guide-cmd--small .terminal-guide-code { font-size: 0.75rem; }

  .registration-modal-box { max-width: 100%; max-height: 95vh; }
}

/* ── Mobile (375px – 479px) ────────────────────────────────── */
@media (min-width: 375px) and (max-width: 479px) {
  html { font-size: 16px; }

  body { padding-bottom: 4.5rem; }

  .container { padding: 0 1rem; }

  .hero {
    padding: 90px 1rem 50px;
    min-height: auto;
  }

  .hero-h1 {
    font-size: 2.1rem;
    line-height: 1.2;
    letter-spacing: -0.015em;
  }

  .hero-subtitle {
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }

  .hero-text {
    font-size: 0.875rem;
    line-height: 1.7;
    letter-spacing: 0.015em;
    max-width: 100%;
    margin-bottom: 1.75rem;
  }

  .hero-badge {
    font-size: 0.6875rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-header {
    margin-bottom: 1.75rem;
  }

  .section-title {
    font-size: 1.35rem;
    line-height: 1.25;
    letter-spacing: 0em;
  }

  .section-desc {
    font-size: 0.875rem;
    line-height: 1.65;
    letter-spacing: 0.015em;
    max-width: 100%;
  }

  .section-label {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }

  .format-bullet {
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.875rem 1rem;
  }

  .format-bullet-key {
    font-size: 0.75rem;
    min-width: auto;
  }

  .format-bullet-val {
    font-size: 0.875rem;
    line-height: 1.65;
    letter-spacing: 0.015em;
  }

  .glass-card { padding: 1.25rem; }
  .glass-card-label {
    font-size: 0.75rem;
    margin: -1.25rem -1.25rem 0.875rem -1.25rem;
    padding: 0.4rem 0.65rem;
    letter-spacing: 0.04em;
  }
  .glass-card-text {
    font-size: 0.875rem;
    line-height: 1.65;
  }
  .glass-card-code {
    font-size: 0.75rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
  .glass-card-title { font-size: 0.9375rem; }

  .schedule-item {
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.875rem 1rem;
  }

  .schedule-time {
    font-size: 0.875rem;
    min-width: auto;
  }

  .schedule-title {
    font-size: 0.9375rem;
    line-height: 1.5;
  }

  .schedule-tag { font-size: 0.6875rem; }
  .schedule-footnote {
    font-size: 0.75rem;
    padding-left: 0;
  }

  .location-address {
    font-size: 0.875rem;
    line-height: 1.7;
  }
  .location-travel-item { font-size: 0.8125rem; }
  .location-travel-key {
    font-size: 0.6875rem;
    min-width: 95px;
  }
  .location-travel-val {
    line-height: 1.6;
  }
  .location-access {
    font-size: 0.75rem;
    line-height: 1.6;
  }

  .ssh-hero-cta {
    margin-top: 1.5rem;
    margin-bottom: 1.25rem;
  }
  .ssh-command { font-size: 0.78rem; }
  .ssh-cta-block {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
  }
  .ssh-cta-label {
    font-size: 0.65rem;
    letter-spacing: 0.03em;
  }
  .ssh-cta-hint { font-size: 0.6rem; letter-spacing: 0.03em; }
  .ssh-copy-btn { font-size: 0.62rem; }

  .stat-card {
    font-size: 0.75rem;
    padding: 0.5rem 0.875rem;
  }
  .stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.04em;
  }
  .stat-value { font-size: 0.92rem; }
  .stat-desc {
    font-size: 0.65rem;
    line-height: 1.55;
  }

  .countdown-terminal {
    font-size: 0.65rem;
    padding: 0.5rem 0.875rem;
  }
  .countdown-terminal .cd-val { font-size: 1rem; }
  .countdown-terminal .cd-label { font-size: 0.55rem; }

  .countdown-bar {
    margin-top: 2rem;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 0.78rem;
    padding: 0.55rem 1.15rem;
  }

  .cta-group {
    margin-bottom: 2rem;
  }

  .sticky-cta button {
    font-size: 0.82rem;
    padding: 0.75rem 1.25rem;
  }

  .section-divider {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    padding: 1.5rem 0;
  }

  .partner-card-role {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .nav-logo-text { font-size: 0.78rem; letter-spacing: 0.01em; }
  .nav-main.is-scrolled .nav-logo-text { font-size: 0.72rem; }
  .nav-logo-cursor { width: 0.5em; height: 1.1em; }

  .nav-mobile a {
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    line-height: 1.5;
    padding: 0.65rem 0;
  }

  .footer-copy,
  .footer-links a {
    font-size: 0.72rem;
    letter-spacing: 0.02em;
    line-height: 1.6;
  }

  .modal-title { font-size: 0.78rem; }
  .modal-close { font-size: 0.72rem; }
  .modal-back { font-size: 0.65rem; }

  .select-grid { padding: 0.875rem; gap: 0.65rem; }
  .select-card { padding: 1.15rem 0.875rem; }
  .select-card-title { font-size: 0.82rem; line-height: 1.35; }
  .select-card-desc { font-size: 0.75rem; line-height: 1.6; }
  .select-card-label { font-size: 0.62rem; letter-spacing: 0.06em; }
  .select-card-features li { font-size: 0.68rem; line-height: 1.55; }
  .select-card-action { font-size: 0.68rem; }
  .select-card-badge { font-size: 0.55rem; }

  .terminal-emu {
    height: 55vh;
    font-size: 0.72rem;
    line-height: 1.65;
  }
  .terminal-emu-input { font-size: 0.72rem; }

  .terminal-guide { padding: 1.15rem; }
  .terminal-guide-cmd { flex-wrap: wrap; gap: 0.5rem; padding: 0.75rem 1rem; }
  .terminal-guide-code { font-size: 0.78rem; }
  .terminal-guide-prompt { font-size: 0.82rem; }
  .terminal-guide-text { font-size: 0.78rem; line-height: 1.65; }
  .terminal-guide-info-item {
    flex-direction: column;
    gap: 0.15rem;
    font-size: 0.72rem;
    line-height: 1.55;
  }
  .terminal-guide-info-key { min-width: auto; }
  .terminal-guide-alt > p { font-size: 0.65rem; }
  .terminal-guide-footer { font-size: 0.62rem; }
  .terminal-guide-cmd--small .terminal-guide-prompt,
  .terminal-guide-cmd--small .terminal-guide-code { font-size: 0.72rem; }

  .registration-modal-box { max-width: 100%; max-height: 95vh; }
}

/* ── Mobile Small (320px – 374px) ──────────────────────────── */
@media (max-width: 374px) {
  html { font-size: 16px; }

  body { padding-bottom: 4.5rem; }

  .container { padding: 0 0.75rem; }

  .hero {
    padding: 85px 0.75rem 45px;
    min-height: auto;
  }

  .hero-h1 {
    font-size: 1.75rem;
    line-height: 1.22;
    letter-spacing: -0.01em;
    margin-bottom: 0.65rem;
  }

  .hero-subtitle {
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .hero-text {
    font-size: 0.875rem;
    line-height: 1.7;
    letter-spacing: 0.02em;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .hero-badge {
    font-size: 0.625rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin-bottom: 1rem;
    word-break: break-word;
  }

  .section {
    padding: 2.25rem 0;
  }

  .section-header {
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: 1.2rem;
    line-height: 1.28;
    letter-spacing: 0em;
    margin-bottom: 0.75rem;
  }

  .section-desc {
    font-size: 0.875rem;
    line-height: 1.65;
    letter-spacing: 0.02em;
    max-width: 100%;
  }

  .section-label {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
  }

  .format-bullet {
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 0.75rem;
  }

  .format-bullet-key {
    font-size: 0.75rem;
    min-width: auto;
  }

  .format-bullet-val {
    font-size: 0.875rem;
    line-height: 1.65;
    letter-spacing: 0.02em;
  }

  .glass-card { padding: 1rem; }
  .glass-card-label {
    font-size: 0.6875rem;
    margin: -1rem -1rem 0.75rem -1rem;
    padding: 0.35rem 0.6rem;
    letter-spacing: 0.04em;
  }
  .glass-card-text {
    font-size: 0.875rem;
    line-height: 1.65;
  }
  .glass-card-code {
    font-size: 0.6875rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
    padding: 0.4rem 0.6rem;
  }
  .glass-card-title { font-size: 0.875rem; }

  .schedule-item {
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.75rem 0.75rem;
  }

  .schedule-time {
    font-size: 0.875rem;
    min-width: auto;
  }

  .schedule-title {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .schedule-tag {
    font-size: 0.625rem;
    padding: 0.1rem 0.4rem;
  }

  .schedule-footnote {
    font-size: 0.75rem;
    padding-left: 0;
    line-height: 1.55;
  }

  .location-address {
    font-size: 0.875rem;
    line-height: 1.7;
    padding: 0.875rem 1rem;
  }
  .location-travel-item {
    font-size: 0.8125rem;
    line-height: 1.6;
    flex-direction: column;
    gap: 0.1rem;
  }
  .location-travel-key {
    font-size: 0.6875rem;
    min-width: auto;
  }
  .location-travel-val {
    line-height: 1.55;
  }
  .location-access {
    font-size: 0.75rem;
    line-height: 1.6;
    padding: 0.65rem 0.75rem;
  }

  .ssh-hero-cta {
    margin-top: 1.25rem;
    margin-bottom: 1rem;
  }
  .ssh-command {
    font-size: 0.75rem;
    letter-spacing: 0.02em;
  }
  .ssh-cta-block {
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.55rem 0.75rem;
  }
  .ssh-cta-label {
    font-size: 0.625rem;
    letter-spacing: 0.03em;
  }
  .ssh-cta-hint { font-size: 0.5625rem; letter-spacing: 0.03em; }
  .ssh-copy-btn { font-size: 0.5625rem; }

  .stat-card {
    font-size: 0.75rem;
    padding: 0.45rem 0.75rem;
  }
  .stat-label {
    font-size: 0.625rem;
    letter-spacing: 0.04em;
  }
  .stat-value { font-size: 0.875rem; }
  .stat-desc {
    font-size: 0.625rem;
    line-height: 1.55;
  }

  .countdown-terminal {
    font-size: 0.625rem;
    padding: 0.45rem 0.75rem;
  }
  .countdown-terminal .cd-val { font-size: 0.9375rem; }
  .countdown-terminal .cd-label { font-size: 0.5rem; }

  .countdown-bar {
    margin-top: 1.75rem;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
    letter-spacing: 0.02em;
  }

  .cta-group {
    margin-bottom: 1.75rem;
  }

  .sticky-cta button {
    font-size: 0.8125rem;
    padding: 0.7rem 1rem;
  }

  .section-divider {
    font-size: 0.6875rem;
    letter-spacing: 0.04em;
    padding: 1.25rem 0;
  }

  .partner-card-role {
    font-size: 0.5625rem;
    letter-spacing: 0.08em;
  }
  .partner-card { padding: 1.5rem 1rem; }

  .nav-logo-text { font-size: 0.7rem; letter-spacing: 0em; }
  .nav-main.is-scrolled .nav-logo-text { font-size: 0.65rem; }
  .nav-logo-cursor { width: 0.45em; height: 1em; }

  .nav-mobile a {
    font-size: 0.9375rem;
    letter-spacing: 0.03em;
    line-height: 1.5;
    padding: 0.6rem 0;
  }

  .footer {
    padding: 1.5rem 0;
  }
  .footer-copy,
  .footer-links a {
    font-size: 0.6875rem;
    letter-spacing: 0.02em;
    line-height: 1.6;
  }
  .footer-links { gap: 1rem; }

  .modal-title { font-size: 0.8125rem; }
  .modal-close { font-size: 0.6875rem; padding: 0.25rem 0.6rem; }
  .modal-back { font-size: 0.625rem; }
  .modal-header { padding: 0.65rem 1rem; }

  .select-grid { padding: 0.75rem; gap: 0.55rem; }
  .select-card { padding: 1rem 0.75rem; }
  .select-card-title { font-size: 0.8125rem; line-height: 1.35; }
  .select-card-desc { font-size: 0.75rem; line-height: 1.6; }
  .select-card-label { font-size: 0.5625rem; letter-spacing: 0.06em; }
  .select-card-features li { font-size: 0.6875rem; line-height: 1.55; }
  .select-card-action { font-size: 0.6875rem; }
  .select-card-badge { font-size: 0.5rem; }

  .terminal-emu {
    height: 50vh;
    font-size: 0.75rem;
    line-height: 1.7;
  }
  .terminal-emu-input { font-size: 0.75rem; }
  .terminal-emu-output { padding: 1rem; }

  .terminal-guide { padding: 1rem; }
  .terminal-guide-cmd {
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.65rem 0.75rem;
  }
  .terminal-guide-code { font-size: 0.75rem; }
  .terminal-guide-prompt { font-size: 0.8125rem; }
  .terminal-guide-text { font-size: 0.8125rem; line-height: 1.65; }
  .terminal-guide-info { padding: 0.75rem; }
  .terminal-guide-info-item {
    flex-direction: column;
    gap: 0.1rem;
    font-size: 0.75rem;
    line-height: 1.55;
  }
  .terminal-guide-info-key { min-width: auto; font-size: 0.6875rem; }
  .terminal-guide-alt > p { font-size: 0.625rem; }
  .terminal-guide-footer { font-size: 0.5625rem; }
  .terminal-guide-cmd--small .terminal-guide-prompt,
  .terminal-guide-cmd--small .terminal-guide-code { font-size: 0.6875rem; }

  .registration-modal-box { max-width: 100%; max-height: 95vh; }
}

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

  .anim-in {
    opacity: 1;
    transform: none;
  }

  .hero-h1 .cursor {
    animation: none;
    opacity: 1;
  }

  .hero-canvas {
    display: none;
  }
}

/* ── Legal Pages (Datenschutz, AGB, Impressum, Foto-Video) ── */
.legal-body { position: relative; z-index: 2; padding: 7rem 0 4rem; }
.legal-h1 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--mono-white); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: -0.01em; }
.legal-label { font-size: 0.85rem; color: var(--mono-green); letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.legal-meta { font-size: 0.75rem; color: var(--mono-text-dim); margin-bottom: 2.5rem; }
.legal-section { margin-bottom: 2.5rem; }
.legal-h2 { font-size: 1.05rem; font-weight: 700; color: var(--mono-green); margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.02em; }
.legal-h2::before { content: '## '; color: var(--mono-text-dim); }
.legal-p { font-size: 0.88rem; color: var(--mono-text-muted); line-height: 1.75; margin-bottom: 0.75rem; }
.legal-ul { list-style: none; padding: 0; margin-bottom: 0.75rem; }
.legal-ul li { font-size: 0.88rem; color: var(--mono-text-muted); line-height: 1.75; padding: 0.15rem 0; }
.legal-ul li::before { content: '> '; color: var(--mono-green); font-weight: 600; }
.legal-link { color: var(--mono-green); text-decoration: underline; text-underline-offset: 2px; }
.legal-link:hover { color: var(--mono-white); }
.legal-back { display: inline-block; font-size: 0.8rem; color: var(--mono-text-dim); border: 1px solid var(--mono-border); padding: 0.35rem 0.85rem; margin-bottom: 2rem; transition: all 0.2s ease; }
.legal-back:hover { color: var(--mono-green); border-color: var(--mono-border-green); }
.legal-back::before { content: '\2190 '; }
.legal-notice { font-size: 0.78rem; color: var(--mono-text-dim); border: 1px solid var(--mono-border); background: var(--mono-surface); padding: 1rem 1.25rem; line-height: 1.65; margin-top: 2rem; }
.legal-notice::before { content: '// '; color: var(--mono-green); }
.legal-table { width: 100%; border-collapse: collapse; margin-bottom: 0.75rem; font-size: 0.85rem; }
.legal-table td { padding: 0.4rem 0.75rem; border: 1px solid var(--mono-border); color: var(--mono-text-muted); vertical-align: top; line-height: 1.6; }
.legal-table td:first-child { color: var(--mono-green); font-weight: 600; white-space: nowrap; width: 35%; }

/* Legal page nav overrides */
.nav-main--legal { background: rgba(0, 0, 0, 0.98); }
.nav-inner--legal { height: 4rem; }
.legal-container { max-width: 800px; }

/* ── Ticketshop / Success (Inter font override) ────────────── */
.ticketshop-page { font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
.ticketshop-page :focus-visible { outline: 2px solid rgba(16, 185, 129, 0.95); outline-offset: 2px; }

/* ── Save-the-Date Page Specific ──────────────────────────── */
.std-badge {
  display: inline-block;
  border: 1px solid var(--mono-green);
  color: var(--mono-green);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4em 1.2em;
  margin-bottom: 1.8rem;
  animation: stdPulse 2.5s ease-in-out infinite;
}
@keyframes stdPulse {
  0%, 100% { border-color: var(--mono-green); box-shadow: 0 0 0 0 rgba(34,197,94,0); }
  50% { border-color: rgba(34,197,94,0.7); box-shadow: 0 0 20px 2px rgba(34,197,94,0.08); }
}
.std-notify {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--mono-border);
  background: var(--mono-surface);
  max-width: 520px;
}
.std-notify-label {
  color: var(--mono-green);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.std-notify-text {
  color: var(--mono-text-muted);
  font-size: 0.82rem;
  line-height: 1.7;
}
.std-notify-text a {
  color: var(--mono-green);
  text-decoration: none;
  border-bottom: 1px solid rgba(34,197,94,0.3);
  transition: border-color var(--mono-transition);
}
.std-notify-text a:hover {
  border-color: var(--mono-green);
}
.sticky-cta { display: none !important; }
noscript + .legal-body .anim-in,
.anim-in.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

/* ── Print ─────────────────────────────────────────────────── */
@media print {
  .scanline-overlay,
  .grid-bg,
  .hero-canvas,
  .nav-main,
  .sticky-cta,
  .modal-overlay { display: none !important; }
  body { background: #fff; color: #000; }
}
