@charset "UTF-8";

/* ===========================================
   FONTS (lokal)
=========================================== */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

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

/* ===========================================
   TOKENS
=========================================== */
:root {
  --bg:        #080b14;
  --bg2:       #0d1628;
  --surface:   rgba(255,255,255,0.04);
  --surface2:  rgba(255,255,255,0.07);
  --border:    rgba(255,255,255,0.09);
  --accent:    #00ccff;
  --accent2:   #6366f1;
  --adim:      rgba(0,204,255,0.10);
  --text:      #eef4ff;
  --muted:     #6a90a8;
  --subtle:    #344d61;
  --radius:    18px;
  --radiussm:  10px;
  --shadow:    0 8px 40px rgba(0,0,0,0.55);
  --twitch:    #9146ff;
  --youtube:   #ff4444;
  --discord:   #5865f2;
  --igcolor:   #e1306c;
}

/* ===========================================
   BASE
=========================================== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.accent {
  color: var(--accent);
}

/* ===========================================
   BACKGROUND
=========================================== */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: radial-gradient(
    circle,
    rgba(255,255,255,0.045) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(ellipse 100% 70% at 50% 0%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 100% 70% at 50% 0%, black 30%, transparent 100%);
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  -webkit-filter: blur(90px);
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
}

.glow-1 {
  width: 600px;
  height: 600px;
  top: -150px;
  left: -200px;
  background: radial-gradient(circle, rgba(0,200,255,0.10), transparent 70%);
}

.glow-2 {
  width: 500px;
  height: 500px;
  right: -150px;
  bottom: 10%;
  background: radial-gradient(circle, rgba(99,102,241,0.08), transparent 70%);
}

/* ===========================================
   LAYOUT
=========================================== */
.wrap {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding-top: 88px;
  padding-bottom: 88px;
}

.section-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-title {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 700;
}

/* ===========================================
   NAVIGATION
=========================================== */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  background-color: rgba(8,11,20,0.82);
}

.nav-inner {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  height: 62px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.nav-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.nav-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 6px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--radiussm);
  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
}

.nav-link:hover {
  color: var(--text);
  background-color: var(--surface);
}

/* ===========================================
   BUTTONS
=========================================== */
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  border-radius: var(--radiussm);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  -webkit-transition: -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
  text-decoration: none;
}

.btn:hover {
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}

.btn:active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 14px 26px;
  font-size: 0.975rem;
}

.btn-primary {
  background: -webkit-linear-gradient(315deg, #0090cc, var(--accent));
  background: linear-gradient(135deg, #0090cc, var(--accent));
  color: #fff;
  -webkit-box-shadow: 0 4px 22px rgba(0,204,255,0.28);
  box-shadow: 0 4px 22px rgba(0,204,255,0.28);
}

.btn-primary:hover {
  -webkit-box-shadow: 0 6px 32px rgba(0,204,255,0.44);
  box-shadow: 0 6px 32px rgba(0,204,255,0.44);
  color: #fff;
}

.btn-ghost {
  background-color: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background-color: var(--surface2);
  border-color: rgba(255,255,255,0.15);
  color: var(--text);
}

/* ===========================================
   HERO
=========================================== */
.hero {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Desktop: content links, visual rechts */
.hero-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px auto;
  grid-template-columns: 1fr auto;
  -ms-grid-rows: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
  grid-template-areas: "content visual";
}

.hero-content {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: content;
  max-width: 560px;
}

.hero-visual {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: visual;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* --- Logo mit rotierendem Farbverlauf-Rahmen --- */
/*
 * Technik: .logo-outer hat overflow:hidden und feste Groesse.
 * .logo-spin ist ein grosses Element mit conic-gradient das sich dreht.
 * .logo-cutout liegt drueber und maskiert auf die Logo-Groesse.
 * Kompatibel mit allen modernen Browsern ohne @property.
 */
.logo-outer {
  position: relative;
  width: 286px;
  height: 286px;
  border-radius: 28px;
  overflow: hidden;
  -webkit-box-shadow:
    0 0  60px rgba(0,200,255,0.14),
    0 0 120px rgba(0,200,255,0.07);
  box-shadow:
    0 0  60px rgba(0,200,255,0.14),
    0 0 120px rgba(0,200,255,0.07);
}

.logo-spin {
  position: absolute;
  /* 3x so gross wie parent, zentriert – dadurch dreht sich der Rand gleichmaessig */
  inset: -100%;
  width: 300%;
  height: 300%;
  background: conic-gradient(
    from 0deg,
    var(--accent)  0deg,
    var(--accent2) 180deg,
    var(--accent)  360deg
  );
  -webkit-animation: spin-logo 7s linear infinite;
  animation: spin-logo 7s linear infinite;
}

.logo-cutout {
  position: absolute;
  inset: 3px;
  border-radius: 25px;
  overflow: hidden;
  background-color: var(--bg2);
}

.logo-img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

@-webkit-keyframes spin-logo {
  to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes spin-logo {
  to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

/* --- Hero Typografie --- */
.eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 18px;
  padding: 5px 13px;
  border: 1px solid rgba(0,204,255,0.28);
  border-radius: 999px;
  background-color: rgba(0,204,255,0.06);
}

.hero-title {
  font-size: clamp(2.1rem, 4.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 46ch;
}

.hero-ctas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

/* --- Wochentage-Chips --- */
.hero-days {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.days-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--subtle);
}

.days-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

.day {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--subtle);
  background-color: var(--surface);
}

.day.on {
  border-color: rgba(0,204,255,0.38);
  color: var(--accent);
  background-color: rgba(0,204,255,0.08);
}

/* ===========================================
   STREAM
=========================================== */
.stream-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background-color: #020408;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

.twitch-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.twitch-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.stream-noscript {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  padding: 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.stream-noscript a {
  color: var(--accent);
}

/* ===========================================
   INFO KARTEN
=========================================== */
.info-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}

.card:hover {
  border-color: rgba(255,255,255,0.14);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radiussm);
  background-color: var(--adim);
  border: 1px solid rgba(0,204,255,0.18);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.card-sub {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 20px;
}

/* Streamplan */
.sched-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.sched-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--radiussm);
  border: 1px solid var(--border);
  background-color: rgba(255,255,255,0.02);
  font-size: 0.875rem;
  font-weight: 500;
}

.tag-live {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #22c55e;
  background-color: rgba(34,197,94,0.10);
  border: 1px solid rgba(34,197,94,0.24);
  padding: 3px 9px;
  border-radius: 999px;
}

/* Content-Pills */
.pill-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background-color: var(--surface);
  color: var(--muted);
  -webkit-transition: border-color 0.2s, color 0.2s, background-color 0.2s;
  transition: border-color 0.2s, color 0.2s, background-color 0.2s;
}

.pill:hover {
  border-color: rgba(0,204,255,0.30);
  color: var(--text);
  background-color: var(--adim);
}

/* ===========================================
   SOCIALS
=========================================== */
.socials-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.social-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--surface);
  color: var(--text);
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.social-card:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  background-color: var(--surface2);
  color: var(--text);
}

.social-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.3rem;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.social-info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.social-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}

.social-info span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.s-arrow {
  font-size: 0.82rem;
  color: var(--subtle);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: color 0.2s, -webkit-transform 0.2s;
  transition: color 0.2s, transform 0.2s;
}

.social-card:hover .s-arrow {
  -webkit-transform: translate(2px, -2px);
  transform: translate(2px, -2px);
}

/* Plattform-Varianten */
.s-twitch   .social-icon { background-color: rgba(145,70,255,0.12); color: var(--twitch);  }
.s-youtube  .social-icon { background-color: rgba(255,68,68,0.11);  color: var(--youtube); }
.s-discord  .social-icon { background-color: rgba(88,101,242,0.12); color: var(--discord); }
.s-instagram .social-icon { background-color: rgba(225,48,108,0.11); color: var(--igcolor); }

.s-twitch:hover    { border-color: rgba(145,70,255,0.32);  -webkit-box-shadow: 0 8px 32px rgba(145,70,255,0.11);  box-shadow: 0 8px 32px rgba(145,70,255,0.11);  }
.s-youtube:hover   { border-color: rgba(255,68,68,0.30);   -webkit-box-shadow: 0 8px 32px rgba(255,68,68,0.09);   box-shadow: 0 8px 32px rgba(255,68,68,0.09);   }
.s-discord:hover   { border-color: rgba(88,101,242,0.32);  -webkit-box-shadow: 0 8px 32px rgba(88,101,242,0.11);  box-shadow: 0 8px 32px rgba(88,101,242,0.11);  }
.s-instagram:hover { border-color: rgba(225,48,108,0.28);  -webkit-box-shadow: 0 8px 32px rgba(225,48,108,0.09); box-shadow: 0 8px 32px rgba(225,48,108,0.09); }

.s-twitch:hover    .social-icon { background-color: rgba(145,70,255,0.22); }
.s-youtube:hover   .social-icon { background-color: rgba(255,68,68,0.20);  }
.s-discord:hover   .social-icon { background-color: rgba(88,101,242,0.22); }
.s-instagram:hover .social-icon { background-color: rgba(225,48,108,0.20); }

.s-twitch:hover    .s-arrow { color: var(--twitch);   }
.s-youtube:hover   .s-arrow { color: var(--youtube);  }
.s-discord:hover   .s-arrow { color: var(--discord);  }
.s-instagram:hover .s-arrow { color: var(--igcolor);  }

/* ===========================================
   FOOTER
=========================================== */
.site-footer {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  padding-bottom: 24px;
  margin-top: 20px;
}

.footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--subtle);
}

.footer-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--text);
}

.footer-legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* ===========================================
   LEGAL PAGES (Impressum / Datenschutz)
=========================================== */
.legal-wrap {
  padding-top: 56px;
  padding-bottom: 80px;
  max-width: 720px;
}

.back-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 32px;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--text);
}

.legal-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 32px;
}

.legal-card {
  margin-bottom: 16px;
}

.legal-h2 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 0;
}

.legal-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

.legal-card p + p {
  margin-top: 10px;
}

.legal-card a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-list {
  list-style: none;
  margin: 12px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
}

.legal-list li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}

.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--accent);
}

.legal-updated {
  font-size: 0.8rem;
  color: var(--subtle);
  margin-top: 24px;
}

/* ===========================================
   RESPONSIVE
=========================================== */

/* Tablets und kleinere Desktops */
@media (max-width: 960px) {
  .hero-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .hero-visual {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .hero-content {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    max-width: 100%;
  }

  .hero-ctas,
  .hero-days {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .hero-sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .logo-outer {
    width: 220px;
    height: 220px;
  }

  .socials-grid {
    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Smartphones */
@media (max-width: 640px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .info-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .nav-link {
    display: none;
  }

  .logo-outer {
    width: 180px;
    height: 180px;
  }

  .hero-title {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
  }

  .days-row {
    gap: 4px;
  }

  .day {
    width: 30px;
    height: 30px;
    font-size: 0.68rem;
  }
}

/* Sehr kleine Displays */
@media (max-width: 420px) {
  .socials-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

/* ===========================================
   REDUCED MOTION
=========================================== */
@media (prefers-reduced-motion: reduce) {
  .logo-spin {
    -webkit-animation: none;
    animation: none;
  }

  .btn,
  .social-card,
  .nav-link,
  .pill {
    -webkit-transition: none;
    transition: none;
  }
}
