:root {
  color-scheme: light;
  --sky: #77c8ee;
  --sun: #ffd45a;
  --leaf: #32a66a;
  --ink: #163447;
  --deep: #0d2538;
  --cream: #fff7dc;
  --coral: #f26f5b;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 212, 90, 0.72), transparent 18rem),
    radial-gradient(circle at 82% 20%, rgba(242, 111, 91, 0.22), transparent 16rem),
    linear-gradient(180deg, #a9e3f7 0%, #e8fbff 48%, #fff8de 100%);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  left: -8vw;
  right: -8vw;
  height: 24vh;
  min-height: 150px;
  bottom: -10vh;
  border-radius: 50% 50% 0 0;
  background: var(--leaf);
}

.page-shell::after {
  bottom: -15vh;
  background: #258854;
  transform: translateX(14vw);
  opacity: 0.72;
}

.hero {
  width: min(100%, 840px);
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
  padding: clamp(22px, 5vw, 52px) clamp(18px, 5vw, 56px);
  position: relative;
  z-index: 1;
}

.logo-wrap {
  width: min(70vw, 360px);
  aspect-ratio: 1.65;
  display: grid;
  place-items: center;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 26px rgba(18, 59, 78, 0.18));
}

.eyebrow {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #0b6b6b;
}

h1 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.lede {
  max-width: 620px;
  margin: 0;
  color: #24485c;
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  line-height: 1.55;
}

.status-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
  margin-top: 8px;
  border: 2px solid rgba(13, 37, 56, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #173f55;
  font-size: 0.95rem;
  font-weight: 750;
  box-shadow: 0 18px 40px rgba(28, 83, 111, 0.12);
  backdrop-filter: blur(10px);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(242, 111, 91, 0.18);
}

.loop-wrap {
  width: min(100%, 520px);
  margin-top: 18px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(18, 59, 78, 0.18);
  background: rgba(255, 255, 255, 0.35);
}

.loop-video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 560px) {
  .page-shell {
    padding: 22px;
    place-items: start center;
  }

  .hero {
    min-height: 86vh;
    align-content: center;
    gap: 16px;
  }

  .logo-wrap {
    width: min(82vw, 340px);
  }
}
