:root {
  --bg: #050608;
  --bg-accent: rgba(14, 83, 58, 0.16);
  --card-glow: rgba(11, 189, 128, 0.08);
  --text: #f2efed;
  --muted: #cbc4c0;
  --muted-soft: #9a918d;
  --green: #d4ff2a;
  --green-strong: #dfff35;
}

* {
  box-sizing: border-box;
}

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

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

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

.card {
  width: min(100%, 760px);
  text-align: center;
  padding: 20px 18px 14px;
}

.status-icon {
  width: 102px;
  height: 102px;
  margin: 0 auto 38px;
  color: var(--green-strong);
}

.status-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.status-icon circle {
  stroke-width: 6;
}

.status-icon path {
  stroke-width: 7;
}

h1 {
  margin: 0;
  font-size: clamp(2.9rem, 5vw, 4.6rem);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.description {
  max-width: 660px;
  margin: 28px auto 48px;
  font-size: clamp(1.1rem, 1.55vw, 1.35rem);
  line-height: 1.65;
  color: var(--muted);
  font-weight: 400;
}

.description span {
  color: var(--green-strong);
  font-weight: 700;
}

.cta-button {
  width: min(100%, 625px);
  height: 78px;
  border: 0;
  border-radius: 18px;
  background: var(--green);
  color: #1f1a18;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 18px 50px var(--card-glow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 22px 60px rgba(11, 189, 128, 0.16);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-row {
  margin-top: 62px;
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}

.info-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-soft);
  font-size: 0.98rem;
  font-weight: 300;
}

.info-item svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.95;
}

.copyright {
  margin: 42px 0 0;
  font-size: 0.92rem;
  color: rgba(118, 125, 141, 0.8);
}

@media (max-width: 640px) {
  .page {
    padding: 28px 16px;
  }

  .card {
    padding: 12px 8px;
  }

  .status-icon {
    width: 88px;
    height: 88px;
    margin-bottom: 28px;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.3rem);
  }

  .description {
    margin: 22px auto 36px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .cta-button {
    height: 70px;
    border-radius: 16px;
    font-size: 1rem;
    padding: 0 18px;
  }

  .info-row {
    margin-top: 42px;
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }

  .info-item {
    font-size: 0.94rem;
  }

  .copyright {
    margin-top: 34px;
    font-size: 0.86rem;
  }
}
