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

:root {
  color-scheme: light;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #eef1f5;
  color: #171d28;
  font-family: "Manrope", "Segoe UI", sans-serif;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.0) 36%),
    linear-gradient(180deg, #f3f5f8, #e4e8ee);
}

.grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 54, 68, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 54, 68, 0.08) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.35) 82%);
}

.orb {
  position: absolute;
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.46) 30%, rgba(255, 255, 255, 0.08) 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(224, 230, 238, 0.44));
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 24px 60px rgba(36, 44, 57, 0.12);
  backdrop-filter: blur(10px);
}

.orb-a {
  width: min(46vw, 520px);
  height: min(46vw, 520px);
  right: -6vw;
  bottom: -10vh;
}

.orb-b {
  width: min(18vw, 190px);
  height: min(18vw, 190px);
  left: 8vw;
  top: 14vh;
}

.card {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: min(720px, calc(100vw - 40px));
  padding: 34px 34px 30px;
  border-radius: 28px;
  background: rgba(250, 251, 253, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 80px rgba(30, 36, 48, 0.16);
  backdrop-filter: blur(18px);
}

.kicker {
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(70, 79, 95, 0.68);
}

h1 {
  margin: 10px 0 0;
  font-family: "Syne", "Manrope", sans-serif;
  font-size: clamp(2.5rem, 8vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.subheading {
  margin-top: 10px;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.3;
  color: rgba(28, 36, 48, 0.74);
}

.lede {
  margin: 24px 0 0;
  max-width: 54ch;
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.58;
  color: rgba(36, 44, 57, 0.78);
}

.status {
  margin: 18px 0 0;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(88, 97, 114, 0.72);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  max-width: 100%;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: rgba(25, 33, 45, 0.92);
  background: rgba(236, 240, 246, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(26, 33, 46, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.action.primary {
  background: rgba(27, 34, 46, 0.92);
  color: rgba(245, 248, 252, 0.96);
  border-color: rgba(27, 34, 46, 0.92);
}

.action:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(26, 33, 46, 0.16);
}

.action:focus-visible {
  outline: 2px solid rgba(40, 120, 255, 0.82);
  outline-offset: 2px;
}

@media (max-width: 720px) {
  .page-shell {
    min-height: 100svh;
    align-items: start;
    padding: 18px 18px 32px;
  }

  .card {
    width: min(100%, 560px);
    padding: 26px 22px 22px;
    border-radius: 24px;
    margin-top: 18px;
  }

  .grid {
    background-size: 84px 84px;
  }

  .orb-a {
    width: 72vw;
    height: 72vw;
    right: -16vw;
    bottom: -8vh;
  }

  .orb-b {
    width: 34vw;
    height: 34vw;
    left: -6vw;
    top: 11vh;
  }

  .actions {
    flex-direction: column;
  }

  .action {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .page-shell {
    padding: 14px 14px 28px;
  }

  .card {
    width: 100%;
    padding: 22px 16px 18px;
    border-radius: 20px;
    margin-top: 12px;
  }

  .actions {
    gap: 10px;
  }

  .action {
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.95rem;
  }
}
