* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
}

html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  color: white;
  background: black;
  position: relative;
  overflow: hidden;
}

.page-bg {
  position: fixed;
  inset: 0;
  background-image: var(--bg-image, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.page-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, var(--overlay-opacity, 0.6));
  z-index: 1;
}

.page-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
}

.center-wrap {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  text-align: center;
}

.narrow-wrap {
  width: 100%;
  max-width: 520px;
}

.medium-wrap {
  width: 100%;
  max-width: 900px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

.message {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  margin-bottom: 16px;
}

.submessage {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.58);
  margin-bottom: 20px;
}

.cta {
  display: inline-block;
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.65);
  padding: 12px 18px;
  font-size: 14px;
  letter-spacing: 0.2px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cta:hover {
  background: white;
  color: black;
  border-color: white;
}

.index-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.index-links a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.6px;
  text-transform: none;
}

.index-links a:hover {
  color: white;
}

.listen-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.listen-links a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.listen-links a:hover {
  color: white;
}



.inline-link {
  display: block;
  margin-top: 28px;
  font-size: 14px;
  letter-spacing: 0.2px;
  text-transform: none;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.inline-link:hover {
  color: rgba(255,255,255,0.85);
}

.coming-soon {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-top: 12px;
}

.embed-shell {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.placeholder {
  color: rgba(255,255,255,0.35);
  font-size: 14px;
  padding: 24px;
  line-height: 1.6;
}

.nav-arrow {
  position: fixed;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  transition: color 0.2s ease, opacity 0.2s ease;
  z-index: 10;
  user-select: none;
}

.nav-arrow:hover {
  color: rgba(255,255,255,0.85);
}

.nav-arrow.disabled {
  opacity: 0.18;
  pointer-events: none;
  cursor: default;
}

.nav-arrow.up {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.nav-arrow.down {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.nav-arrow.left {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.nav-arrow.right {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.simple-center {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
}

.simple-text {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
}

@media (max-width: 640px) {
  .nav-arrow {
    font-size: 16px;
  }

  .nav-arrow.up {
    top: 16px;
  }

  .nav-arrow.down {
    bottom: 16px;
  }

  .nav-arrow.left {
    left: 16px;
  }

  .nav-arrow.right {
    right: 16px;
  }

  .message,
  .simple-text {
    font-size: 16px;
  }

  .submessage {
    font-size: 13px;
  }

  .embed-shell,
  .embed-shell iframe {
    min-height: 260px;
    height: 260px;
  }
}

.flow-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.micro-links {
  margin-top: 18px;
}

.micro-links a,
.quiet-link {
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.2px;
}

.micro-links a:hover,
.quiet-link:hover {
  color: rgba(255,255,255,0.92);
}

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

.compact-links {
  margin-top: 28px;
}
