:root {
  --teal: #2f6f73;
  --teal-dark: #143f42;
  --teal-deep: #102326;
  --orange: #d65a2e;
  --orange-dark: #b84625;
  --cream: #fffaf1;
  --paper: #f7f3ec;
  --white: #ffffff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--white);
  background: var(--teal-deep);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.launch-page {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: clamp(28px, 6vw, 72px);
  isolation: isolate;
}

.launch-page::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(120deg, rgba(16, 35, 38, 0.96), rgba(20, 63, 66, 0.9) 48%, rgba(47, 111, 115, 0.84)),
    url("https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
}

.launch-page::after {
  position: absolute;
  inset: auto -18vw -28vw auto;
  z-index: -1;
  width: min(58vw, 680px);
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(214, 90, 46, 0.5), rgba(214, 90, 46, 0) 68%);
}

.launch-hero {
  display: flex;
  width: min(100%, 920px);
  min-height: min(720px, calc(100vh - 56px));
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 6vw, 76px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  text-align: center;
  background: rgba(16, 35, 38, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.launch-logo {
  width: clamp(130px, 17vw, 210px);
  height: auto;
  margin-bottom: clamp(28px, 5vw, 44px);
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.28));
}

.launch-kicker {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 7vw, 6.9rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
}

.launch-copy {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.26rem);
  line-height: 1.7;
}

.instagram-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 30px;
  border-radius: 6px;
  padding: 0 22px;
  color: var(--white);
  background: var(--orange);
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease;
}

.instagram-button:hover,
.instagram-button:focus-visible {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.launch-note {
  max-width: 620px;
  margin: 34px 0 0;
  color: rgba(255, 250, 241, 0.76);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .launch-page {
    padding: 18px;
  }

  .launch-hero {
    min-height: calc(100vh - 36px);
    min-height: calc(100svh - 36px);
    padding: 28px 18px;
  }

  .launch-logo {
    width: 136px;
  }

  .instagram-button {
    width: 100%;
  }
}
