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

html, body {
  height: 100%;
}

body {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  background: #12adee;
}

a { color: inherit; text-decoration: none; }

.stage {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 480px;
  overflow: hidden;
  background: #12adee;
  padding: clamp(20px, 3.8vw, 38px) clamp(20px, 4.4vw, 44px);
  padding-bottom: clamp(20px, 4vh, 40px);
  row-gap: clamp(14px, 4vh, 40px);
}

/* ---------- background art ---------- */

.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.bg-narrow { display: none; }

@media (max-width: 700px) {
  .bg-wide { display: none; }
  .bg-narrow { display: block; }
}

/* ---------- top bar ---------- */

.topbar {
  position: relative;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  background: #f7f7f5;
  border-radius: 100px;
  padding: clamp(9px, 1.6vw, 12px) clamp(16px, 2.3vw, 22px);
}

.logo-pill img {
  display: block;
  height: clamp(32px, 4.6vw, 50px);
  width: auto;
}

.badge {
  font-weight: 700;
  font-size: clamp(15px, 2vw, 20px);
  letter-spacing: .14em;
  color: #fff;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .16);
  padding: clamp(12px, 1.8vw, 17px) clamp(20px, 2.6vw, 30px);
  border-radius: 100px;
  white-space: nowrap;
}

/* ---------- headline ---------- */

.headline {
  position: relative;
  grid-row: 3;
  font-weight: 800;
  font-size: clamp(40px, 5.45vw + 33px, 96px);
  line-height: .98;
  letter-spacing: -.02em;
  color: #fff;
  animation: rise .8s ease both;
}

.headline .accent {
  color: #F2FE0B;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- footer block: subtext + social ---------- */

.content {
  position: relative;
  grid-row: 4;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vh, 14px);
  transform: translate(clamp(8px, 3vw, 28px), clamp(-64px, -10vh, -32px));
}

.subtext {
  color: rgba(255, 255, 255, .85);
  font-size: clamp(14px, 1vw + 11px, 16px);
  font-weight: 500;
}

.follow-along {
  display: inline;
}

@media (max-width: 900px) {
  .follow-along { display: none; }
  .headline { order: -1; }
}

.bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 900px) {
  .bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.email {
  color: #fff;
  font-weight: 600;
  font-size: clamp(14px, 0.5vw + 12px, 15px);
  border-bottom: 2px solid rgba(255, 255, 255, .5);
  padding-bottom: 2px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .email {
    border-bottom: none;
    padding-bottom: 0;
    font-size: 14px;
  }
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(38px, 4vw, 42px);
  height: clamp(38px, 4vw, 42px);
  border-radius: 50%;
  transition: transform .25s ease;
}

.social-btn:hover {
  transform: translateY(-3px);
}

.social-btn svg {
  width: clamp(17px, 1.8vw, 19px);
  height: clamp(17px, 1.8vw, 19px);
}

.social-btn.ig {
  background: #f2fe0b;
  color: #12adee;
}

.social-btn.fb {
  background: #a9f000;
  color: #12adee;
}

@media (max-width: 900px) {
  .social-btn.fb { background: #ff957e; }
}

@media (prefers-reduced-motion: reduce) {
  .headline {
    animation: none !important;
  }
}
