/* ===== Tokens ===== */
:root {
  --bg: #000000;
  --surface: #0d0d0d;
  --surface-2: #161616;
  --text: #ffffff;
  --text-muted: #888888;
  --green: #00e676;
  --green-dark: #00c853;
  --green-glow: rgba(0, 230, 118, 0.25);
  --border: rgba(255, 255, 255, 0.08);
  --radius: 20px;
  --max: 420px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100svh;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding:
    calc(80px + var(--safe-top))
    20px
    max(24px, calc(20px + var(--safe-bottom)));
}

.shell {
  width: 100%;
  max-width: var(--max);
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px 20px 20px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(0, 230, 118, 0.04);
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  animation: fade-up 420ms ease forwards;
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .status__dot,
  .title__money {
    animation: none;
  }
}

/* Badges */
.top-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.2);
}

.status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.status__text {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}

.age {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.age__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  padding: 2px 6px;
  border-radius: 5px;
  background: #fff;
  color: #000;
  font-size: 11px;
  font-weight: 800;
}

.age__text {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

/* Tag */
.tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* Title — Быстрые ДЕhЬГИ */
.title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 10px;
}

.title__top {
  font-size: clamp(18px, 5vw, 22px);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.title__money {
  font-size: clamp(36px, 10vw, 48px);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--green);
  text-shadow: 0 0 30px var(--green-glow);
  animation: glow-pulse 3s ease-in-out infinite;
}

.title__h {
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

@keyframes glow-pulse {
  0%, 100% { text-shadow: 0 0 20px var(--green-glow); }
  50% { text-shadow: 0 0 40px rgba(0, 230, 118, 0.5); }
}

.lead {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 18px;
}

/* Features */
.features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  text-align: left;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.feature--highlight {
  background: rgba(0, 230, 118, 0.06);
  border-color: rgba(0, 230, 118, 0.2);
}

.feature__icon {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.feature__text {
  font-size: 13px;
  font-weight: 500;
  color: #aaa;
  line-height: 1.35;
}

.feature__text strong {
  font-weight: 800;
  color: var(--green);
}

.feature--highlight .feature__text strong {
  color: #fff;
}

/* Buttons */
.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  padding: 14px 20px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.cta__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cta:active {
  transform: scale(0.98);
}

.cta:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.cta--primary {
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  color: #000;
  box-shadow: 0 4px 24px var(--green-glow);
}

.cta--primary:hover {
  box-shadow: 0 6px 32px rgba(0, 230, 118, 0.4);
}

.cta--secondary {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
}

.cta--secondary .cta__icon {
  color: var(--green);
}

.cta--secondary:hover {
  border-color: rgba(0, 230, 118, 0.3);
  background: rgba(0, 230, 118, 0.05);
}

.age-note {
  font-size: 11px;
  font-weight: 500;
  color: #555;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .card {
    padding: 28px 24px 24px;
  }

  .title__money {
    font-size: 52px;
  }

  .feature__text {
    font-size: 14px;
  }
}
