/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Page Background ===== */
html, body {
  height: 100%;
  font-family: system-ui, -apple-system, "Segoe UI", Inter, Roboto, Arial;
  color: white;
  overflow-x: hidden;

  background-image: url("sky2026.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* ===== Light Atmospheric Tint ===== */
.tint {
  position: fixed;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.04),
    rgba(0,0,0,0.18)
  );
  z-index: 0;
  pointer-events: none;
}

/* ===== Header ===== */
header {
  position: fixed;
  top: 24px;
  left: 32px;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.logo img {
  width: 44px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  display: grid;
  place-items: center;
  z-index: 1;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
}

/* ===== Icy 3D Flying Text ===== */
.glass-text {
  font-size: clamp(64px, 10vw, 140px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  position: relative;

  color: rgba(0, 94, 255, 0.017);

  text-shadow:
    0 1px 0 rgba(255,255,255,0.35),
    0 2px 0 rgba(255,255,255,0.30),
    0 3px 0 rgba(255,255,255,0.25),
    0 6px 10px rgba(0,0,0,0.18),
    0 14px 24px rgba(0,0,0,0.22),
    0 30px 60px rgba(0,0,0,0.28);
}

/* ===== Subtext (float free / evoke lightness) ===== */
.subtext {
  font-size: clamp(32px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.22);

  text-shadow:
    0 0 4px rgba(255,255,255,0.25),
    0 8px 20px rgba(0,0,0,0.25);
}

/* ===== Gap Text ===== */
.gap-text {
  margin-bottom: 16px;
  text-align: center;
}

/* ===== Jumper ===== */
.jumper {
  position: absolute;
  bottom: -25%;
  left: 50%;
  transform: translateX(-50%);
  width: min(360px, 60vw);
  pointer-events: none;
  will-change: transform;
  z-index: 2;
}

/* ===== Sections ===== */
.section {
  padding: 30vh 0;   /* ← THIS is the key */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  z-index: 1;
}

/* ===== Floating Gap ===== */
.floating-gap {
  position: relative;
  min-height: 18vh; /* keeps balloon room */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 0;
  z-index: 1;
}


/* ===== Balloon ===== */
.balloon {
  width: min(360px, 50vw);
  pointer-events: none;
  will-change: transform;
}

/* ===== Glass Link ===== */
.glass-link {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.35);
}
