:root {
  --primary: #ffffff;
  --accent: #10b981;
  --cosmic: #8b5cf6;
  --deep-black: #020205;
  --surface-institutional: rgba(255, 255, 255, 0.03);
  --emerald-glow: rgba(16, 185, 129, 0.4);
  --purple-glow: rgba(139, 92, 246, 0.3);
}

* {
  box-sizing: border-box;
}

body.selection-accent {
  margin: 0;
  background-color: var(--deep-black);
  color: #ffffff;
  font-family: "Inter", sans-serif;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.alert-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--accent);
  color: #0a0a0a;
  padding: 8px 0;
  text-align: center;
  overflow: hidden;
}

.alert-track {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.3em;
  font-size: 10px;
  animation: pulse 2.5s ease-in-out infinite;
}

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

.premium-nav {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  mix-blend-mode: difference;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 26px;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -0.02em;
}

.nav-brand span span {
  opacity: 0.5;
}

.nav-links {
  display: none;
  gap: 48px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.6;
}

.nav-access {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 200px 24px 80px;
  overflow: hidden;
}

.nebula-bg {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
    linear-gradient(to bottom, transparent, #020205),
    url("/picture/planeten.png");
  background-size: cover;
  background-position: center;
}

.eclipse-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.8em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 160px);
  font-weight: 900;
  line-height: 0.85;
  margin: 0 0 32px;
}

.hero h1 span {
  display: block;
  background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.2));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
  padding: 22px 64px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.4em;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero-cta:hover {
  background: transparent;
  color: #ffffff;
}

.hero-actions p {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  max-width: 520px;
}

.hero-footer {
  position: absolute;
  left: 48px;
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.hero-line {
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.deep-black {
  background: var(--deep-black);
}

.section {
  padding: 120px 0;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
}

.premium-plus-section {
  padding-top: 100px;
  padding-bottom: 120px;
}

.premium-carousel-head {
  text-align: center;
  margin-bottom: 40px;
}

.premium-carousel-head .section-eyebrow {
  display: block;
  margin-bottom: 18px;
}

.premium-carousel-head h2 {
  margin: 0;
  font-size: clamp(40px, 7vw, 78px);
  font-weight: 900;
  text-transform: uppercase;
}

.premium-plus-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.18);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 10px;
  transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.premium-plus-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 185, 129, 0.7);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
}

.premium-carousel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  position: relative;
}

.carousel-perspective {
  perspective: 1800px;
}

.carousel-stage {
  position: relative;
  width: min(1040px, 100%);
  height: clamp(320px, 46vw, 520px);
  display: grid;
  place-items: center;
}

.tool-card {
  position: absolute;
  width: min(720px, 90%);
  background: rgba(10, 10, 10, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
  transition: transform 600ms cubic-bezier(0.23, 1, 0.32, 1),
    opacity 600ms ease, filter 600ms ease, border-color 600ms ease;
  transform-style: preserve-3d;
}

.tool-card.active {
  transform: translateZ(120px) scale(1);
  opacity: 1;
  filter: blur(0);
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.18), 0 40px 90px rgba(0, 0, 0, 0.65);
  z-index: 3;
}

.tool-card.side-left {
  transform: translateX(-55%) translateZ(-180px) rotateY(18deg) scale(0.9);
  opacity: 0.35;
  filter: blur(6px);
  z-index: 1;
}

.tool-card.side-right {
  transform: translateX(55%) translateZ(-180px) rotateY(-18deg) scale(0.9);
  opacity: 0.35;
  filter: blur(6px);
  z-index: 1;
}

.tool-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.tool-kicker {
  font-weight: 800;
  color: #ffffff;
}

.tool-badge {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.35);
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  font-size: 9px;
  letter-spacing: 0.2em;
}

.tool-badge.muted {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.45);
}

.tool-media {
  border-radius: 18px;
  border: 1px solid rgba(16, 185, 129, 0.25);
  overflow: hidden;
}

.tool-media img {
  width: 100%;
  display: block;
}

.tool-placeholder {
  flex: 1;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  min-height: 220px;
}

.tool-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border-radius: 16px;
  border: 1px solid rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.18);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  align-self: flex-start;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 10, 10, 0.65);
  color: rgba(255, 255, 255, 0.6);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 200ms ease, color 200ms ease;
}

.carousel-nav:hover {
  border-color: rgba(16, 185, 129, 0.5);
  color: #10b981;
}

.carousel-nav.prev { left: 0; }
.carousel-nav.next { right: 0; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-dots span {
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
}

.carousel-dots span.active {
  background: rgba(16, 185, 129, 0.7);
}

.carousel-progress {
  width: min(420px, 80%);
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 6px;
}

.progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(16, 185, 129, 0.7);
  transform-origin: left;
  animation: progress-fill 6s linear infinite;
}

.carousel-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}

.carousel-note {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

@keyframes progress-fill {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

.screens-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1260px;
  margin: 0 auto;
}

.screen-card {
  margin: 0;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  cursor: zoom-in;
}

.screen-card.offset {
  margin-top: 0;
}

.screen-card img {
  width: 100%;
  display: block;
}

.screen-card:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 0 24px rgba(16, 185, 129, 0.25), 0 28px 70px rgba(0, 0, 0, 0.55);
  transform: translateY(-4px) scale(1.02);
}

.screen-card figcaption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(16, 185, 129, 0.4);
  font-size: 12px;
}

.interface-mockup {
  background: rgba(10, 10, 20, 0.9);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(16, 185, 129, 0.1);
  border-radius: 20px;
  padding: 8px;
}

.perspective-mockup {
  max-width: 1200px;
  margin: 0 auto;
  transform: perspective(1200px) rotateX(15deg) rotateY(-10deg) scale(1.08);
  transition: transform 0.2s ease;
  position: relative;
}

.mockup-zoom {
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
}

.mockup-preview {
  width: 100%;
  display: block;
  border-radius: 24px;
  border: 1px solid rgba(16, 185, 129, 0.4);
  box-shadow: 0 0 18px rgba(16, 185, 129, 0.35), 0 36px 90px rgba(0, 0, 0, 0.55);
  margin-bottom: 0;
}

.mockup-preview:hover {
  border-color: rgba(16, 185, 129, 0.7);
  box-shadow: 0 0 24px rgba(16, 185, 129, 0.45), 0 36px 90px rgba(0, 0, 0, 0.55);
}

.mockup-inner {
  background: rgba(2, 2, 5, 0.6);
  border-radius: 16px;
  padding: 32px;
  min-height: 600px;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.status {
  display: flex;
  gap: 16px;
  align-items: center;
}

.status-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
}

.status-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.status-title {
  font-weight: 700;
  font-size: 14px;
}

.status-meta {
  display: flex;
  gap: 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.status-meta strong {
  color: var(--accent);
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
}

.mockup-stream {
  grid-column: span 8;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
}

.stream-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.stream-bar {
  width: 96px;
  height: 4px;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 999px;
  overflow: hidden;
}

.stream-bar span {
  display: block;
  width: 60%;
  height: 100%;
  background: var(--accent);
}

.stream-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr auto;
  gap: 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
}

.stream-row:last-child {
  border-bottom: none;
}

.profit-text {
  color: var(--accent);
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
  font-weight: 700;
}

.tag {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent);
}

.tag.neutral {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
}

.mockup-side {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.side-card {
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 16px;
  padding: 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.side-card:last-child {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.side-value {
  font-size: 30px;
  font-weight: 900;
  color: var(--accent);
  margin: 12px 0;
}

.side-value.small {
  font-size: 20px;
  color: #ffffff;
}

.side-bars {
  display: flex;
  gap: 6px;
  align-items: flex-end;
}

.side-bars span {
  flex: 1;
  height: 24px;
  background: rgba(16, 185, 129, 0.2);
}

.side-bars span:nth-child(2) { height: 34px; background: rgba(16, 185, 129, 0.4); }
.side-bars span:nth-child(3) { height: 28px; background: rgba(16, 185, 129, 0.6); }
.side-bars span:nth-child(4) { height: 38px; background: var(--accent); }

.side-dots {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}

.side-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.side-dots .muted {
  background: rgba(255, 255, 255, 0.2);
}

.feature-section {
  padding-top: 8px;
  padding-bottom: 140px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: 20px;
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
}

.feature-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-head span {
  font-size: 28px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.2);
  font-family: "JetBrains Mono", monospace;
}

.feature-head h3 {
  margin: 0;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  line-height: 1.6;
}

.feature-card ul {
  margin: 0;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  list-style: square;
  display: grid;
  gap: 8px;
}

.join-section {
  padding-top: 120px;
  padding-bottom: 120px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-section {
  padding-top: 80px;
  padding-bottom: 120px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-head {
  text-align: left;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  content: "▸";
  display: inline-block;
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.6);
}

.faq-list details[open] summary::before {
  content: "▾";
}

.faq-list p {
  margin: 10px 0 0 22px;
  color: rgba(255, 255, 255, 0.5);
}

.join {
  text-align: center;
}

.join h2 {
  font-size: clamp(36px, 6vw, 72px);
  text-transform: uppercase;
  font-weight: 900;
  margin: 0 0 32px;
}

.join h2 span {
  color: rgba(255, 255, 255, 0.2);
  font-style: italic;
}

.join-body {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.join-cta {
  display: inline-flex;
  padding: 32px 72px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.4em;
  font-size: 10px;
}

.join-cta span {
  display: block;
}

.join-cta span:last-child {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.2em;
}

.join-divider {
  width: 1px;
  height: 64px;
  background: rgba(255, 255, 255, 0.1);
}

.join-copy {
  text-align: left;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.join-copy strong {
  display: block;
  font-size: 24px;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-transform: none;
  margin: 6px 0;
}

.premium-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-style: italic;
}

.footer-brand span span {
  opacity: 0.4;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px;
}

.footer-disclaimer {
  display: grid;
  gap: 8px;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  line-height: 1.6;
}

.footer-title {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}

.footer-columns a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.zoom-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.zoom-card {
  position: relative;
  max-width: min(92vw, 1400px);
  max-height: 92vh;
  background: rgba(5, 7, 10, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  overflow: auto;
}

.zoom-card img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.zoom-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
}

.community-tile {
  position: fixed;
  right: 28px;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 22px;
  border-radius: 16px;
  background: rgba(7, 12, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.45);
  color: #ffffff;
  text-decoration: none;
  text-align: left;
  max-width: 260px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  z-index: 60;
}

.tile-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
}

.tile-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex: 0 0 auto;
}

.community-tile:hover {
  border-color: rgba(125, 211, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.5);
}

.tile-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.tile-cta {
  font-size: 13px;
  font-weight: 800;
  color: #84f2d8;
}

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

@media (max-width: 900px) {
  .premium-nav { flex-direction: column; gap: 18px; }
  .hero-footer { position: static; justify-content: center; margin-top: 24px; }
  .mockup-grid { grid-template-columns: 1fr; }
  .mockup-stream { grid-column: span 12; }
  .mockup-side { grid-column: span 12; }
  .screens-grid { grid-template-columns: 1fr; }
  .carousel-nav { display: none; }
  .footer-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-disclaimer { max-width: 100%; }
  .feature-cards { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .alert-track { flex-direction: column; gap: 8px; }
  .hero h1 { font-size: 56px; }
  .hero-cta { width: 100%; }
  .join-body { flex-direction: column; }
  .join-divider { display: none; }
  .container { padding: 0 24px; }
  .tool-card {
    width: 100%;
    padding: 20px;
  }
  .tool-card.side-left,
  .tool-card.side-right {
    display: none;
  }
  .community-tile {
    right: 50%;
    transform: translateX(50%);
    bottom: 96px;
    max-width: 280px;
    width: calc(100% - 36px);
    text-align: center;
    align-items: center;
  }
  .tile-title {
    justify-content: center;
  }
}

@media (max-width: 1100px) {
  .premium-nav {
    padding: 20px 28px;
  }
  .nav-brand {
    font-size: 22px;
  }
  .nav-links {
    gap: 28px;
    letter-spacing: 0.28em;
  }
  .hero {
    padding: 180px 24px 72px;
  }
  .container {
    padding: 0 32px;
  }
}

@media (max-width: 840px) {
  .alert-bar {
    position: static;
    padding: 6px 0;
  }
  .alert-track {
    font-size: 9px;
    letter-spacing: 0.2em;
  }
  .premium-nav {
    position: static;
    mix-blend-mode: normal;
    background: rgba(4, 6, 10, 0.75);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 20px;
  }
  .nav-links {
    display: none;
  }
  .nav-access {
    font-size: 10px;
    letter-spacing: 0.25em;
  }
  .hero {
    min-height: auto;
    padding: 140px 20px 64px;
  }
  .nebula-bg {
    background-position: center 25%;
  }
  .hero-kicker {
    letter-spacing: 0.45em;
  }
  .hero-footer {
    display: none;
  }
  .carousel-stage {
    height: clamp(300px, 70vw, 460px);
  }
}

@media (max-width: 640px) {
  .nav-brand {
    font-size: 20px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero-actions p {
    font-size: 10px;
  }
  .section {
    padding: 90px 0;
  }
  .section-head {
    margin-bottom: 40px;
  }
  .premium-carousel-head h2 {
    font-size: 38px;
  }
  .tool-media img {
    max-height: 260px;
    object-fit: cover;
  }
  .carousel-progress {
    width: 100%;
  }
  .screens-grid {
    gap: 20px;
  }
  .screen-card figcaption {
    font-size: 10px;
  }
  .footer-columns {
    grid-template-columns: 1fr;
  }
  .alert-bar {
    display: none;
  }
  .nav-access {
    display: none;
  }
  .hero {
    padding-top: 110px;
  }
  .nebula-bg {
    background-size: cover;
    background-position: center 15%;
  }
  .community-tile {
    position: static;
    margin: 28px auto 0;
    right: auto;
    bottom: auto;
    transform: none;
    width: calc(100% - 32px);
    max-width: 320px;
    align-items: center;
    text-align: center;
  }
  .tile-title {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 120px 16px 56px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .alert-bar {
    display: none;
  }
  .nav-access {
    display: none;
  }
  .hero {
    padding-top: 96px;
  }
  .nebula-bg {
    background-image:
      radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.12) 0%, transparent 45%),
      linear-gradient(to bottom, rgba(2, 2, 5, 0.25), #020205),
      url("/picture/planeten.png");
    background-size: cover;
    background-position: center 8%;
  }
  .hero-cta {
    padding: 18px 28px;
    letter-spacing: 0.2em;
  }
  .tool-cta {
    width: 100%;
    justify-content: center;
  }
  .tile-title {
    font-size: 14px;
  }
  .tile-subtitle {
    font-size: 12px;
  }
}
