:root {
  --green: #0f6659;
  --green-deep: #0b4d43;
  --black: #0a0a0c;
  --black-soft: #131316;
  --burgundy: #4a1420;
  --burgundy-light: #6b1d2c;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

body {
  position: relative;
  min-height: 100vh;
  background: var(--black);
}

.stage {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

/* ---------- Vertical split halves — the only layout, at every screen size ---------- */
.half {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 4vh 4vw;
  padding-top: 29vh;
}

.half-green {
  left: 0;
  background: linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%);
}

.half-black {
  left: 50%;
  background: linear-gradient(160deg, var(--black-soft) 0%, var(--black) 100%);
}

.side-content {
  margin: 0;
  align-items: center;
  text-align: center;
  gap: 10px;
  max-width: 100%;
  color: var(--white);
  display: flex;
  flex-direction: column;
}

.text-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 170px;
  justify-content: flex-start;
}

.tagline {
  font-size: clamp(0.95rem, 2.2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
}

.half-green .tagline { color: #d9f2ec; }
.half-black .tagline { color: #f2d9dd; }

/* Tagline stays centered (inherited above); the paragraph itself reads left-aligned */
.blurb {
  font-size: clamp(0.7rem, 1.6vw, 1.1rem);
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
  text-align: left;
}

.door-wrap {
  margin: 6px 0;
  text-align: center;
}

.door-wrap svg {
  width: clamp(40px, 6vw, 70px);
  height: auto;
}

.invite {
  font-size: clamp(0.6rem, 1.3vw, 0.9rem);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.85;
  margin: 0;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.half-black .socials { justify-content: center; }

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(30px, 4.5vw, 46px);
  height: clamp(30px, 4.5vw, 46px);
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.socials a:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.socials svg { width: clamp(13px, 2vw, 20px); height: clamp(13px, 2vw, 20px); fill: currentColor; }

/* ---------- Center logo badge ---------- */
.logo-badge {
  position: absolute;
  top: 6vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.coming-soon {
  color: var(--white);
  font-size: clamp(0.55rem, 1.1vw, 0.8rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.9;
  margin: 0;
}

.logo {
  display: block;
  width: clamp(210px, 26vw, 340px);
  height: auto;
  margin: 0;
}

/* ---------- Door icons ---------- */
.door-line { fill: none; stroke: currentColor; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Pointers: logo callouts to each side — arrow exits near the logo's
   vertical middle and drops down toward the tagline, both sides identical ---------- */
.pointer {
  position: absolute;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--white);
  pointer-events: none;
}

.pointer-label {
  font-size: clamp(0.55rem, 1.1vw, 0.85rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  margin: 0;
}

.pointer-arrow {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}

/* Approximate anchor tuned for the phone-size logo; width/offset scale with the
   (also responsive) logo size so the arrow stays in proportion on wider screens */
.pointer-green,
.pointer-elite {
  top: calc(6vh + 23px);
  width: clamp(76px, 9vw, 130px);
}

.pointer-green { right: calc(50% + clamp(118px, 13vw + 13px, 183px)); }
.pointer-elite { left: calc(50% + clamp(118px, 13vw + 13px, 183px)); }

/* ---------- Extra-small phones ---------- */
@media (max-width: 420px) {
  .logo { width: 170px; }
  .text-block { min-height: 190px; }
  .door-wrap svg { width: 32px; }

  .pointer-label { font-size: 0.5rem; }

  /* logo now 170px wide (~67px tall) — recompute the same way as the larger tier */
  .pointer-green,
  .pointer-elite {
    top: calc(6vh + 20px);
    width: 60px;
  }

  .pointer-green { right: calc(50% + 96px); }
  .pointer-elite { left: calc(50% + 96px); }
}
