:root {
  color: #102727;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Segoe UI", sans-serif;
  background: #e9fbf7;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.34) 1px, transparent 1px),
    radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.86), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(143, 235, 219, 0.55), transparent 38%),
    radial-gradient(circle at 50% 100%, rgba(240, 255, 249, 0.94), transparent 42%),
    linear-gradient(140deg, #f6fffc 0%, #d5f4ee 52%, #bdebe0 100%);
  background-size:
    118px 118px,
    118px 118px,
    auto,
    auto,
    auto,
    auto;
}

body::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 42%),
    radial-gradient(circle at center, transparent 48%, rgba(70, 120, 112, 0.16));
}

.landing-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #142727;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 760;
  line-height: 1;
}

.brand-lockup img {
  width: clamp(58px, 9vw, 82px);
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(18, 49, 45, 0.16));
}

@media (max-width: 620px) {
  body {
    overflow: auto;
  }

  .landing-shell {
    padding: 24px;
  }

  .brand-lockup {
    flex-direction: column;
    gap: 12px;
  }
}
