html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #000;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Main hero container */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Video occupies most of the page */
.hero-video {
  width: 100%;
  height: 85vh;
  object-fit: cover;
}

/* Bottom overlay */
.hero-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Small text under video */
.hero-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  letter-spacing: 0.12em;
}

/* Small explore button bottom-right */
.explore-btn {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

.explore-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Mute / unmute button */
.mute-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 18px;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.mute-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* Page container */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 64px 24px;
}

/* INVITATION BLOCK */
.reach-out {
  background: radial-gradient(
    circle at top,
    rgba(255, 215, 0, 0.08),
    rgba(0, 0, 0, 1) 70%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 56px 32px;
  margin-bottom: 48px;
}

.reach-out h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.reach-sub {
  font-size: 18px;
  opacity: 0.75;
  margin-bottom: 20px;
}

/* EMAIL — make it feel important */
.email {
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
  color: #ffd54f;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid rgba(255, 213, 79, 0.4);
}

.email:hover {
  border-bottom-color: #ffd54f;
}

/* EXPLANATORY NOTE */
.collective-note {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 48px;
}

/* BACK BUTTON */
.back-btn {
  display: inline-block;
  font-size: 14px;
  text-decoration: none;
  opacity: 0.6;
}

.back-btn:hover {
  opacity: 1;
}
