@import url("https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&family=Geist+Mono:wght@500;600&display=swap");

:root {
  color-scheme: light;
  font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: #f7f8f5;
  color: #161916;
}

.site-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 2rem;
}

.site-shell::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgb(22 25 22 / 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgb(22 25 22 / 0.035) 1px, transparent 1px);
  background-size: 3rem 3rem;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.ambient {
  position: absolute;
  z-index: -1;
  width: 26rem;
  height: 26rem;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.72;
}

.ambient-one {
  top: -11rem;
  right: -8rem;
  background: radial-gradient(circle, rgb(189 224 198 / 0.8), rgb(189 224 198 / 0));
}

.ambient-two {
  bottom: -13rem;
  left: -9rem;
  background: radial-gradient(circle, rgb(220 211 177 / 0.78), rgb(220 211 177 / 0));
}

.announcement.card {
  width: min(100%, 42rem);
  overflow: hidden;
  border-color: rgb(22 25 22 / 0.12);
  border-radius: 1.5rem;
  background: rgb(255 255 255 / 0.86);
  box-shadow: 0 1.5rem 5rem rgb(35 45 35 / 0.1);
  backdrop-filter: blur(1rem);
}

.announcement-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgb(22 25 22 / 0.09);
  padding: 1.25rem 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.brand-mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 0.6rem;
  background: #161916;
}

.brand-mark img {
  width: 1.2rem;
  height: 1.2rem;
  filter: invert(1);
}

.announcement-content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: clamp(2rem, 7vw, 4rem) clamp(1.5rem, 7vw, 4rem) clamp(2rem, 7vw, 3.5rem);
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: #53705b;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.25rem, 8vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.lead {
  max-width: 35rem;
  margin: 1.5rem 0 0;
  color: #5e655f;
  font-size: clamp(1rem, 2.5vw, 1.14rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.app-link {
  gap: 0.65rem;
  margin-top: 2rem;
  min-height: 2.75rem;
  padding-inline: 1.15rem;
}

.app-link span {
  transition: transform 160ms ease;
}

.app-link:hover span {
  transform: translateX(0.18rem);
}

@media (max-width: 36rem) {
  .site-shell {
    padding: 1rem;
  }

  .announcement-header {
    align-items: flex-start;
  }

  .announcement-content {
    padding-top: 2.75rem;
    padding-bottom: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
