.wrap {
  width: min(920px, 100%);
}

.shell {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  padding: 28px;
  background: color-mix(in oklab, var(--card), black 2%);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* subtle top highlight */

.shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(1000px 120px at 50% -40px, rgba(255,255,255,.18), transparent 70%), radial-gradient(120px 120px at 14% 0, rgba(255,255,255,.08), transparent 60%), radial-gradient(120px 120px at 86% 0, rgba(255,255,255,.08), transparent 60%);
  mix-blend-mode: overlay;
}

header {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 8px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), color-mix(in oklab, var(--brand), white 18%));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 10px 30px rgba(255,103,27,.25);
  font-weight: 800;
  letter-spacing: .5px;
}

.brand b {
  font-weight: 700;
  letter-spacing: .2px;
}

.brand small {
  display: block;
  color: var(--muted);
  font-weight: 500;
  font-size: 12px;
  margin-top: -2px;
}

.status {
  margin: 22px 0 28px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: center;
}

.tick {
  width: 92px;
  height: 92px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, color-mix(in oklab, var(--ok), white 30%), var(--ok));
  box-shadow: inset 0 -8px 18px rgba(0,0,0,.25), 0 25px 60px rgba(39,194,129,.35);
  position: relative;
}

.tick svg {
  width: 44px;
  height: 44px;
  stroke: #042b18;
  stroke-width: 10;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tick svg path {
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
  animation: draw 1s ease .2s forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

h1 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  margin: 0 0 6px 0;
  letter-spacing: -.015em;
}

.lead {
  color: var(--muted);
  font-size: clamp(14px, 2.2vw, 18px);
}

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.1fr .9fr;
}

@media (max-width: 820px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .status {
    grid-template-columns: 72px 1fr;
  }
}

@media (max-width: 820px) {
  .tick {
    width: 72px;
    height: 72px;
    border-radius: 20px;
  }
}

@media (max-width: 820px) {
  .tick svg {
    width: 36px;
    height: 36px;
  }
}

.card {
  background: #ffffff;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.row + .row {
  border-top: 1px dashed rgba(255,255,255,.08);
}

.k {
  color: var(--muted);
}

.v {
  font-weight: 600;
}

.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: .2px;
  padding: 14px 18px;
  border-radius: 16px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}

.btn.primary {
  background: linear-gradient(180deg, color-mix(in oklab, var(--brand), white 22%), var(--brand));
  color: white;
  box-shadow: 0 10px 30px rgba(255,103,27,.35);
}

.btn.secondary {
  background: rgba(255,255,255,.06);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.10);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.help {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}

.help a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.help a:hover {
  opacity: .9;
}

/* Decorative subtle orbs */

.orbs {
  position: absolute;
  inset: -120px -80px -80px -80px;
  pointer-events: none;
  opacity: .18;
  filter: blur(30px);
}

.orb {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 999px;
}

.orb.o1 {
  left: -40px;
  top: 80px;
  background: conic-gradient(from 0deg, var(--brand), transparent 70%);
}

.orb.o2 {
  right: -20px;
  bottom: -40px;
  background: radial-gradient(circle at 40% 40%, var(--brand-2), transparent 60%);
}

/* Dark-mode text rendering */

@media (prefers-color-scheme: light) {
  :root {
    --bg: #f6f7fb;
    --bg-2: #ffffff;
    --card: #ffffff;
    --card-2: #ffffff;
    --ink: #101418;
    --muted: #5b6b79;
  }
}

@media (prefers-color-scheme: light) {
  body {
    background: radial-gradient(900px 500px at 80% -10%, rgba(27,54,93,.12), transparent 60%), radial-gradient(800px 500px at -10% 0, rgba(255,103,27,.10), transparent 55%), linear-gradient(180deg, var(--bg), var(--bg-2));
  }
}

@media (prefers-color-scheme: light) {
  .shell {
    border-color: rgba(0,0,0,.06);
  }
}

@media (prefers-color-scheme: light) {
  .row + .row {
    border-top-color: rgba(0,0,0,.06);
  }
}

@media (prefers-color-scheme: light) {
  .btn.secondary {
    background: rgba(0,0,0,.04);
    color: var(--ink);
    border-color: rgba(0,0,0,.06);
  }
}

@media (prefers-color-scheme: light) {
  .help a {
    border-bottom-color: rgba(0,0,0,.18);
  }
}

@media (prefers-color-scheme: light) {
  .orbs {
    opacity: .12;
  }
}

/* Accessibility: reduce motion */

@media (prefers-reduced-motion: reduce) {
  .tick svg path {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

