:root {
  --background: #f4f8f5;
  --background-secondary: #eaf4ee;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-border: #dce9e1;
  --logo-border: #e4ece7;
  --text: #15251d;
  --muted: #607168;
  --accent: #168657;
  --accent-dark: #0f6742;
  --accent-soft: #e7f6ed;
  --shadow: 0 24px 70px rgba(31, 76, 51, 0.12);
  --logo-shadow: 0 14px 36px rgba(34, 76, 53, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(107, 210, 153, 0.22), transparent 28rem),
    radial-gradient(circle at 90% 88%, rgba(124, 190, 151, 0.18), transparent 30rem),
    linear-gradient(145deg, var(--background) 0%, #fbfdfb 52%, var(--background-secondary) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(36, 96, 62, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 96, 62, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 780px);
  margin: auto;
  padding: 3.5rem 0 2rem;
}

.launch-card {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 7vw, 4.5rem);
  text-align: center;
  border: 1px solid var(--surface-border);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.launch-card::before,
.launch-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.launch-card::before {
  width: 210px;
  height: 210px;
  top: -145px;
  left: -105px;
  background: rgba(72, 190, 125, 0.16);
}

.launch-card::after {
  width: 240px;
  height: 240px;
  right: -150px;
  bottom: -165px;
  background: rgba(54, 159, 101, 0.13);
}

.status {
  position: relative;
  z-index: 1;
  width: max-content;
  margin: 0 auto 1.8rem;
  padding: 0.45rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid #c9e8d5;
  border-radius: 999px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
}

.logo-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  min-height: 146px;
  margin: 0 auto 2rem;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--logo-border);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--logo-shadow);
}

.logo {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 112px;
  object-fit: contain;
}

.eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 0.7rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1 {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  color: var(--text);
  font-size: clamp(2.25rem, 7vw, 4.45rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.intro {
  position: relative;
  z-index: 1;
  max-width: 590px;
  margin: 1.45rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  text-wrap: pretty;
}

.feature-line {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  color: #3d5548;
  font-size: 0.93rem;
  font-weight: 650;
}

.feature-line span[aria-hidden="true"] {
  color: var(--accent);
}

.domain {
  position: relative;
  z-index: 1;
  margin: 2.4rem 0 0;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

footer {
  position: relative;
  z-index: 1;
  padding: 1rem 1rem 1.5rem;
  text-align: center;
  color: #788a80;
  font-size: 0.78rem;
}

footer p {
  margin: 0;
}

@media (max-width: 520px) {
  .page-shell {
    width: min(100% - 1.25rem, 780px);
    padding-top: 1.25rem;
  }

  .launch-card {
    padding: 1.6rem 1.25rem 2.2rem;
    border-radius: 24px;
  }

  .logo-panel {
    min-height: 118px;
    padding: 1.15rem 1.3rem;
    border-radius: 18px;
  }

  .logo {
    max-height: 90px;
  }

  .feature-line {
    flex-direction: column;
    gap: 0.15rem;
  }

  .feature-line span[aria-hidden="true"] {
    display: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .status-dot {
    animation: pulse 2.4s ease-out infinite;
  }

  @keyframes pulse {
    0%, 100% {
      box-shadow: 0 0 0 0 rgba(22, 134, 87, 0.23);
    }
    50% {
      box-shadow: 0 0 0 8px rgba(22, 134, 87, 0);
    }
  }
}
