:root {
  --bg: #08111f;
  --bg-soft: #0f1a2c;
  --card: rgba(255,255,255,.94);
  --card-strong: #ffffff;
  --text: #0f172a;
  --muted: #667085;
  --muted-strong: #344054;
  --green: #16a34a;
  --green-dark: #15803d;
  --green-soft: rgba(22,163,74,.14);
  --blue: #2563eb;
  --blue-soft: rgba(37,99,235,.12);
  --border: rgba(148,163,184,.20);
  --border-strong: rgba(148,163,184,.30);
  --shadow: 0 30px 80px rgba(2, 6, 23, .34);
  --shadow-soft: 0 12px 30px rgba(15, 23, 42, .10);
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,"PingFang SC","Microsoft YaHei",sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(34,197,94,.15), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(37,99,235,.18), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(99,102,241,.10), transparent 28%),
    linear-gradient(145deg, #06101c 0%, #0b1525 48%, #0b1322 100%);
  color: var(--text);
  position: relative;
  overflow-x: hidden;
}
body::before, body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
}
body::before {
  top: -120px;
  left: -120px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34,197,94,.15) 0%, rgba(34,197,94,0) 72%);
  filter: blur(14px);
}
body::after {
  right: -120px;
  bottom: -120px;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37,99,235,.20) 0%, rgba(37,99,235,0) 72%);
  filter: blur(18px);
}
.wrap {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 24px 16px;
  position: relative;
  z-index: 1;
}
.card {
  width: min(760px, 100%);
  background: linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(247,249,252,.95) 100%);
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.20);
  padding: 26px;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #22c55e 0%, #14b8a6 45%, #3b82f6 100%);
}
.card::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  border: 1px solid rgba(148,163,184,.12);
  pointer-events: none;
}
.hero {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
}
.hero-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15,23,42,.04);
  border: 1px solid rgba(148,163,184,.18);
  color: #0f172a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hero-top::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,.14);
}
.hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(220px, .9fr);
  gap: 16px;
  align-items: stretch;
}
.hd {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 4px 0;
}
.badge {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(34,197,94,.18), rgba(34,197,94,.08));
  border: 1px solid rgba(34,197,94,.24);
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 0 10px 22px rgba(22,163,74,.12);
  flex: 0 0 auto;
}
.badge::after {
  content: "";
  width: 16px;
  height: 8px;
  border-left: 3px solid var(--green-dark);
  border-bottom: 3px solid var(--green-dark);
  transform: rotate(-45deg);
  margin-top: -3px;
}
h1 {
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.14;
  margin: 0;
  font-weight: 850;
  letter-spacing: -.035em;
  color: #0f172a;
}
p, .hero-copy {
  margin: 10px 0 0;
  color: var(--muted-strong);
  line-height: 1.72;
  font-size: 15px;
}
.hero-side {
  display: grid;
  gap: 12px;
}
.mini-stat {
  border-radius: 18px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(15,23,42,.03), rgba(15,23,42,.06));
  border: 1px solid rgba(148,163,184,.18);
  box-shadow: var(--shadow-soft);
}
.mini-stat.accent {
  background: linear-gradient(180deg, rgba(34,197,94,.08), rgba(37,99,235,.08));
}
.mini-stat-k {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.mini-stat-v {
  font-size: 15px;
  line-height: 1.45;
  color: #0f172a;
}
.form-shell {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(148,163,184,.18);
  border-radius: 22px;
  padding: 18px;
}
.form-shell-primary {
  position: relative;
  box-shadow: 0 18px 34px rgba(15,23,42,.08);
}
.form-shell-primary::before {
  content: "Verification";
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.16);
  color: #166534;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.compact-grid { margin-top: 6px; }
.info-item {
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(148,163,184,.16);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow-soft);
}
.info-k {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.info-v {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 750;
  color: #0f172a;
}
.meta-panel {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}
.steps-list, ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  counter-reset: step;
}
.steps-list li, ol li {
  position: relative;
  padding: 14px 14px 14px 50px;
  color: var(--muted-strong);
  font-size: 14px;
  line-height: 1.6;
  border-radius: 16px;
  background: rgba(248,250,252,.9);
  border: 1px solid rgba(148,163,184,.16);
}
.steps-list li::before, ol li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #22c55e, #16a34a);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(22,163,74,.22);
}
.btn {
  width: 100%;
  border: 0;
  border-radius: 16px;
  padding: 15px 18px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .01em;
  cursor: pointer;
  color: white;
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 16px 30px rgba(22,163,74,.24);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 34px rgba(22,163,74,.28);
  filter: brightness(1.02);
}
.btn:active { transform: translateY(0); }
.btn:disabled {
  opacity: .55;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: 0 0 0 4px rgba(255,255,255,.12);
}
.small {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
  word-break: break-all;
}
.small.is-destination {
  margin-top: 14px;
  padding: 12px 14px;
  text-align: left;
  border-radius: 14px;
  background: rgba(15,23,42,.03);
  border: 1px solid rgba(148,163,184,.16);
}
.field {
  display: grid;
  gap: 8px;
}
.field-label {
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 700;
}
input[type="text"], input[type="password"], input[type="url"] {
  width: 100%;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,.26);
  background: #fff;
  outline: none;
  font-size: 15px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
input:focus {
  border-color: rgba(34,197,94,.62);
  box-shadow: 0 0 0 5px rgba(34,197,94,.12);
}
.cf-turnstile {
  width: 100%;
  display: flex;
  justify-content: center;
  min-height: 70px;
  padding: 6px 0 2px;
}
.alert {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 13px;
}
@media (max-width: 820px) {
  .card { width: min(680px, 100%); }
  .hero-main { grid-template-columns: 1fr; }
  .hero-side { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .wrap { padding: 12px; align-items: start; }
  .card { padding: 18px 14px 16px; border-radius: 22px; }
  .card::after { inset: 10px; border-radius: 18px; }
  .hero { gap: 10px; margin-bottom: 12px; }
  .hd { gap: 12px; }
  .badge { width: 48px; height: 48px; border-radius: 14px; }
  h1 { font-size: 18px; line-height: 1.22; }
  .hero-copy { font-size: 13px; line-height: 1.58; margin-top: 8px; }
  .hero-side { grid-template-columns: 1fr 1fr; gap: 10px; }
  .mini-stat { padding: 12px; border-radius: 14px; }
  .mini-stat-v { font-size: 13px; }
  .form-shell { padding: 14px; border-radius: 18px; }
  .form-shell-primary::before { margin-bottom: 12px; padding: 6px 10px; font-size: 10px; }
  .compact-grid { grid-template-columns: 1fr; gap: 10px; }
  .info-item { padding: 12px; border-radius: 14px; }
  .steps-list li, ol li { padding: 12px 12px 12px 44px; font-size: 13px; border-radius: 14px; }
  .steps-list li::before, ol li::before { left: 12px; width: 22px; height: 22px; }
  .btn { padding: 14px 16px; border-radius: 14px; font-size: 15px; }
  .small.is-destination { padding: 10px 12px; font-size: 11px; }
}
