:root {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #151a29;
  background: #f5f6f8;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

.verification-page {
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.95), transparent 34rem),
    #f3f4f6;
}

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

.verification-card {
  width: min(100%, 650px);
  padding: 48px 58px 42px;
  text-align: center;
  background: #fff;
  border: 1px solid #eceef2;
  border-radius: 22px;
  box-shadow: 0 16px 50px rgba(31, 39, 58, 0.1), 0 3px 8px rgba(31, 39, 58, 0.08);
}

.verification-card h1 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.verification-card > p:not(.verification-status) {
  max-width: 530px;
  margin: 0 auto 34px;
  color: #5a6477;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.human-check {
  display: grid;
  grid-template-columns: 52px 1fr 80px;
  align-items: center;
  width: 100%;
  min-height: 116px;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  background: #fafafa;
  border: 1px solid #ccd1da;
  border-radius: 8px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.human-check:hover {
  border-color: #8290a7;
  box-shadow: 0 4px 18px rgba(32, 41, 57, 0.08);
}

.human-check:active {
  transform: scale(0.995);
}

.human-check:focus-visible,
.primary-action:focus-visible,
.secondary-action:focus-visible {
  outline: 3px solid rgba(49, 126, 246, 0.36);
  outline-offset: 3px;
}

.check-box {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 3px solid #9aa3b1;
  border-radius: 5px;
  transition: background 180ms ease, border-color 180ms ease;
}

.check-box svg {
  width: 29px;
  opacity: 0;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  transform: scale(0.5);
  transition: opacity 180ms ease, transform 180ms ease;
}

.check-label {
  padding-left: 14px;
  color: #3f4757;
  font-size: clamp(18px, 2.5vw, 23px);
  font-weight: 650;
}

.check-mark {
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #737c8c;
  font-size: 11px;
}

.check-mark svg {
  width: 50px;
  fill: none;
  stroke: #367ff5;
  stroke-linecap: round;
  stroke-width: 4;
}

.check-mark .fill {
  fill: #367ff5;
  stroke: none;
}

.check-mark small {
  margin-top: 2px;
}

.human-check.is-loading .check-box {
  border-color: #367ff5 transparent #367ff5 #367ff5;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.human-check.is-checked .check-box {
  background: #25ad69;
  border-color: #25ad69;
}

.human-check.is-checked .check-box svg {
  opacity: 1;
  transform: scale(1);
}

.verification-status {
  min-height: 22px;
  margin: 14px 0 -20px;
  color: #397353;
  font-size: 14px;
}

.transition-page {
  color: #f7f8fc;
  background:
    radial-gradient(circle at 12% 10%, rgba(115, 32, 145, 0.34), transparent 32%),
    radial-gradient(circle at 92% 90%, rgba(119, 45, 175, 0.28), transparent 35%),
    #070309;
}

.transition-page::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.transition-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 56px 20px;
}

.transition-card {
  position: relative;
  width: min(100%, 630px);
  padding: 66px 42px 40px;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(145deg, rgba(25, 18, 30, 0.98), rgba(13, 10, 17, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 48px;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.55);
}

.transition-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 50% 0, rgba(226, 46, 205, 0.12), transparent 35%);
}

.brand-logo {
  width: 152px;
  margin: 0 auto 34px;
  filter: drop-shadow(0 12px 20px rgba(209, 43, 198, 0.3));
}

.brand-logo svg {
  display: block;
  width: 100%;
}

.brand-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.brand-title h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 52px);
  letter-spacing: -0.035em;
}

.verified-badge {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #081319;
  font-size: 21px;
  font-weight: 900;
  background: #d83ec9;
  border-radius: 50%;
}

.group-label {
  display: inline-flex;
  margin-top: 22px;
  padding: 10px 22px;
  color: #ed59da;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0.14em;
  background: rgba(216, 62, 201, 0.09);
  border: 1px solid rgba(216, 62, 201, 0.36);
  border-radius: 999px;
}

.transition-copy {
  margin: 34px auto 40px;
  color: #989ba8;
  font-size: clamp(17px, 2.5vw, 21px);
  line-height: 1.55;
}

.transition-copy p {
  margin: 0 0 26px;
}

.primary-action,
.secondary-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 76px;
  border-radius: 22px;
  font-size: clamp(17px, 2.5vw, 22px);
  font-weight: 750;
  text-decoration: none;
}

.primary-action {
  color: #fff;
  background: linear-gradient(105deg, #7a3ff1, #dd35c4);
  box-shadow: 0 16px 34px rgba(179, 45, 194, 0.28);
  transition: filter 160ms ease, transform 160ms ease;
}

.primary-action:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.secondary-action {
  gap: 14px;
  margin-top: 18px;
  color: #f1f2f6;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.proxy-action {
  border-color: rgba(216, 62, 201, 0.28);
}

.proxy-action:hover {
  color: #fff;
  background: rgba(216, 62, 201, 0.1);
  border-color: rgba(216, 62, 201, 0.5);
}

.secondary-action svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.copy-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: #e458d2;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.disclaimer {
  margin: 12px 0 0;
  color: #646874;
  font-size: 12px;
  line-height: 1.5;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 640px) {
  .verification-card {
    padding: 36px 22px 30px;
    border-radius: 18px;
  }

  .human-check {
    grid-template-columns: 44px 1fr 60px;
    min-height: 98px;
    padding: 15px;
  }

  .check-box {
    width: 36px;
    height: 36px;
  }

  .check-mark svg {
    width: 42px;
  }

  .transition-shell {
    padding: 22px 14px;
  }

  .transition-card {
    padding: 44px 20px 28px;
    border-radius: 32px;
  }

  .brand-logo {
    width: 122px;
    margin-bottom: 24px;
  }

  .primary-action,
  .secondary-action {
    min-height: 66px;
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
