:root {
  color-scheme: light;
  --ink: #101820;
  --muted: #526070;
  --line: rgba(16, 24, 32, 0.14);
  --paper: #f7f3ed;
  --panel: #fffaf2;
  --teal: #176b66;
  --coral: #d9654f;
  --gold: #c89a2b;
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(16, 24, 32, 0.055) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
}

button,
input {
  font: inherit;
}

.page-shell {
  display: grid;
  min-height: 100vh;
  padding: 32px;
  place-items: center;
}

.hero {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 24px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.72);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(4.6rem, 14vw, 10.5rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.intro {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.notify-form {
  width: min(520px, 100%);
  margin-top: 42px;
}

.notify-form label {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.input-row input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  background: rgba(255, 250, 242, 0.9);
  color: var(--ink);
  outline: none;
}

.input-row input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(23, 107, 102, 0.13);
}

.input-row button {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  padding: 0 20px;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.input-row button:hover {
  background: var(--teal);
  transform: translateY(-1px);
}

.input-row input:disabled,
.input-row button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.input-row button:disabled:hover {
  background: var(--ink);
  transform: none;
}

.launch-panel {
  position: relative;
  width: min(420px, 100%);
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background:
    radial-gradient(circle at 24% 18%, rgba(216, 101, 79, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(255, 250, 242, 0.96), rgba(255, 255, 255, 0.88));
  box-shadow: var(--shadow);
}

.launch-panel::before {
  content: "";
  position: absolute;
  inset: 74px 22px auto auto;
  width: 86px;
  height: 86px;
  border: 2px solid rgba(200, 154, 43, 0.48);
  border-radius: 50%;
}

.panel-topbar {
  display: flex;
  gap: 8px;
  padding-bottom: 18px;
}

.panel-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.panel-topbar span:nth-child(1) {
  background: var(--coral);
}

.panel-topbar span:nth-child(2) {
  background: var(--gold);
}

.panel-topbar span:nth-child(3) {
  background: var(--teal);
}

.profile-mark {
  display: grid;
  width: clamp(140px, 18vw, 190px);
  aspect-ratio: 1;
  margin: 10px auto 24px;
  place-items: center;
  border: 1px solid rgba(16, 24, 32, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 107, 102, 0.96), rgba(16, 24, 32, 0.96)),
    var(--teal);
  color: #fffaf2;
  font-size: clamp(4rem, 10vw, 6.4rem);
  font-weight: 800;
}

.status-stack {
  display: grid;
  gap: 10px;
}

.status-stack > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.62);
}

.status-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.status-stack strong {
  text-align: right;
  font-size: 0.95rem;
}

.progress-block {
  margin-top: 22px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.progress-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 24, 32, 0.12);
}

.progress-track span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--coral), var(--gold));
}

@media (max-width: 820px) {
  .page-shell {
    padding: 24px;
    place-items: start center;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 34px 0;
  }

  .launch-panel {
    justify-self: start;
  }
}

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

  .eyebrow {
    margin-bottom: 18px;
  }

  .intro {
    margin-top: 22px;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  .input-row button {
    width: 100%;
  }

  .status-stack > div {
    display: grid;
    gap: 4px;
  }

  .status-stack strong {
    text-align: left;
  }
}
