:root {
  --bg-base: #000000;
  --bg-card: #12121a;
  --bg-elevated: #1a1a26;
  --accent: #e8943a;
  --accent-hover: #f0a84f;
  --text: #f0f0f5;
  --text-muted: #9a9aad;
  --border: rgba(255, 255, 255, 0.08);
  --success: #3ecf8e;
  --danger: #f07178;
}

* {
  box-sizing: border-box;
}

body.site-body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-base);
  color: var(--text);
  min-height: 100vh;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.site-logo:hover {
  opacity: 0.9;
}

.site-logo-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 200px;
  object-fit: contain;
}

.site-support {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.site-support:hover {
  color: var(--accent);
}

.site-footer {
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.verify-card {
  max-width: 720px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.landing-card {
  max-width: 640px;
}

.verify-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.verify-lead {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.verify-note {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.verify-contact a {
  color: var(--accent);
  font-size: 1.1rem;
  text-decoration: none;
}

.verify-contact a:hover {
  color: var(--accent-hover);
}

.verify-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.verify-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  opacity: 0.4;
  transition: opacity 0.2s;
}

.verify-step.active,
.verify-step.done {
  opacity: 1;
}

.verify-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
}

.verify-step.active .verify-step-num {
  border-color: var(--accent);
  background: rgba(232, 148, 58, 0.15);
  color: var(--accent);
}

.verify-step.done .verify-step-num {
  border-color: var(--success);
  background: rgba(62, 207, 142, 0.15);
  color: var(--success);
}

.verify-step-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.verify-step-line {
  flex: 1;
  max-width: 60px;
  height: 2px;
  background: var(--border);
  margin: 0 0.5rem;
  margin-bottom: 1.25rem;
}

.verify-step-line.done {
  background: var(--success);
}

.verify-icon,
.verify-success-icon {
  color: var(--accent);
}

.verify-success-icon {
  color: var(--success);
}

.verify-alert {
  background: rgba(240, 113, 120, 0.1);
  border: 1px solid rgba(240, 113, 120, 0.3);
  color: #f5b0b5;
  border-radius: 10px;
}

.payment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, transform 0.15s;
  min-height: 120px;
}

.payment-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  color: var(--text);
}

.payment-card-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  border-style: dashed;
}

.payment-card-disabled:hover {
  border-color: var(--border);
  transform: none;
}

.payment-card-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.payment-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.btn-verify-primary {
  background: var(--accent);
  border: none;
  color: #0a0a0f;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 10px;
}

.btn-verify-primary:hover {
  background: var(--accent-hover);
  color: #0a0a0f;
}

.btn-verify-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 500;
  padding: 0.6rem 1.5rem;
  border-radius: 10px;
}

.btn-verify-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.yoti-frame-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  position: relative;
  box-shadow: inset 0 -24px 24px -24px rgba(0, 0, 0, 0.12);
}

.yoti-frame {
  width: 100%;
  min-height: 780px;
  border: none;
  display: block;
}

.yoti-scroll-hint {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.landing-steps {
  max-width: 420px;
  margin-top: 2rem;
}

.landing-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.landing-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(232, 148, 58, 0.15);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-step p {
  margin: 0.15rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.legal-card {
  max-width: 800px;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.legal-content {
  text-align: left;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-content h2 {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.75rem 0 0.75rem;
}

.legal-content p {
  margin-bottom: 0.75rem;
}

.legal-content ul {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.legal-content li {
  margin-bottom: 0.35rem;
}

.legal-content a {
  color: var(--accent);
  text-decoration: none;
}

.legal-content a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.contact-block {
  text-align: left;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.contact-block:first-of-type {
  margin-top: 1.5rem;
}

.contact-heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.contact-address,
.contact-line {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-line a,
.contact-block a {
  color: var(--accent);
  text-decoration: none;
}

.contact-line a:hover,
.contact-block a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-sep {
  margin: 0 0.5rem;
  color: var(--border);
}

.test-mode-banner code {
  font-size: 0.85em;
  color: var(--text);
}

.test-mode-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

@media (max-width: 576px) {
  .verify-card {
    padding: 1.25rem;
    border-radius: 12px;
  }

  .verify-title {
    font-size: 1.4rem;
  }

  .yoti-frame {
    min-height: 640px;
  }

  .verify-step-line {
    max-width: 24px;
  }
}
