/* SNAPFO landing — палитра приложения (бежевый/коричневый/теал). */
* { box-sizing: border-box; margin: 0; }
body {
  font: 16px/1.55 -apple-system, "Segoe UI", Roboto, sans-serif;
  background: #f3e9e0;
  color: #3b1f10;
  min-height: 100vh;
}
.top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px;
}
.brand { font-weight: 800; letter-spacing: 2px; color: #5c3b2a; }
/* display у .who/.center перебивал бы атрибут hidden — фиксируем приоритет */
[hidden] { display: none !important; }
.who { display: flex; gap: 10px; align-items: center; font-size: 14px; color: #8b6050; }

main { max-width: 460px; margin: 4vh auto; padding: 0 16px; }
.card {
  background: #fff; border-radius: 20px; padding: 28px 24px;
  box-shadow: 0 6px 24px rgba(59, 31, 16, .08); margin-bottom: 16px;
}
.card.center { text-align: center; }
h1 { font-size: 22px; margin-bottom: 8px; }
.muted { color: #8b6050; font-size: 14px; }
.small { font-size: 12px; margin-top: 12px; }
a { color: #3b9c95; }

input[type="email"] {
  width: 100%; padding: 13px 16px; margin: 14px 0;
  border: 1px solid #e8d9cc; border-radius: 14px; font-size: 15px;
  background: #faf7f5;
}
.primary {
  display: block; width: 100%; padding: 14px; border: 0; cursor: pointer;
  background: linear-gradient(90deg, #5c3b2a, #8b5e3c);
  color: #fff; font-size: 15px; font-weight: 700; border-radius: 16px;
}
.primary[disabled] { opacity: .5; cursor: default; }
.as-btn { text-decoration: none; margin-top: 12px; }
.ghost {
  background: none; border: 0; color: #8b6050; cursor: pointer;
  font-size: 13px; text-decoration: underline; margin-top: 10px;
}

.plans { display: grid; gap: 10px; margin: 18px 0; }
.plan {
  display: flex; align-items: center; gap: 12px; cursor: pointer;
  border: 1.5px solid #e8d9cc; border-radius: 14px; padding: 13px 16px;
}
.plan:has(input:checked) { border-color: #3b9c95; background: #f2faf9; }
.plan-name { flex: 1; font-weight: 600; }
.plan-price { color: #5c3b2a; font-weight: 700; }

/* Ожидание оплаты: спиннер крутится только пока мы реально чего-то ждём. */
.spinner {
  width: 34px; height: 34px; margin: 18px auto; border-radius: 50%;
  border: 3px solid #e8d9cc; border-top-color: #3b9c95;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .spinner { animation-duration: 3s; } }

.err { color: #b3402b; font-size: 14px; margin-top: 12px; }
.big { font-size: 56px; color: #3b9c95; }

/* Контакт поддержки — виден всегда, в том числе на экранах ошибки. */
.support-contact {
  margin: 32px auto 24px;
  max-width: 420px;
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
  color: #8B6050;
}
.support-contact p { margin: 4px 0; }
.support-contact a { color: #CC6644; }
