:root {
  --bg: #09090b;
  --text: #ffffff;
  --muted: #a1a1aa;
  --muted-strong: #71717a;
  --accent: #34d399;
  --accent-hover: #4ade80;
  --accent-dark: rgba(6, 78, 59, 0.2);
  --accent-dark-soft: rgba(6, 78, 59, 0.1);
  --button-text: #09090b;
  --shadow: rgba(52, 211, 153, 0.2);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.background-glow {
  position: absolute;
  width: 40%;
  height: 40%;
  border-radius: 999px;
  filter: blur(120px);
  pointer-events: none;
}

.background-glow-top {
  top: -10%;
  left: -10%;
  background: var(--accent-dark);
}

.background-glow-bottom {
  right: -10%;
  bottom: -10%;
  background: var(--accent-dark-soft);
}

.main-content {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem 2rem;
}

.hero {
  width: 100%;
  max-width: 42rem;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.hero.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.success-icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 2.5rem;
}

.success-icon-glow {
  position: absolute;
  inset: 0;
  background: var(--accent);
  border-radius: 999px;
  opacity: 0.2;
  transform: scale(1.5);
  filter: blur(48px);
  animation: pulse 2s ease-in-out infinite;
}

.success-icon {
  position: relative;
  z-index: 1;
  width: 7rem;
  height: 7rem;
  color: var(--accent);
}

.hero h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.hero p {
  max-width: 34rem;
  margin: 0 auto 3rem;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: var(--muted);
}

.hero p span {
  color: var(--accent);
  font-weight: 600;
}

.actions {
  width: 100%;
}

.primary-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  background: var(--accent);
  color: var(--button-text);
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 24px 48px var(--shadow);
  transition: transform 0.3s ease, background 0.3s ease;
}

.primary-button:hover {
  background: var(--accent-hover);
  transform: translateY(-4px);
}

.primary-button:active {
  transform: scale(0.98);
}

.button-icon {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.3s ease;
}

.primary-button:hover .button-icon {
  transform: translateX(4px);
}

.status-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-top: 2.5rem;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-strong);
  font-size: 0.875rem;
}

.status-item svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.page-footer {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 3rem 1.5rem;
  text-align: center;
}

.page-footer p {
  margin: 0;
  color: #52525b;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1.45);
    opacity: 0.16;
  }

  50% {
    transform: scale(1.6);
    opacity: 0.24;
  }
}

@media (max-width: 767px) {
  .main-content {
    padding-top: 4rem;
  }

  .success-icon-wrap {
    margin-bottom: 2rem;
  }

  .status-list {
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
  }
}
