/* V2: modern Mingleo treatment, preserving the original centred-card layout. */

body { display: flex; flex-direction: column; background: var(--sand); overflow-x: hidden; padding: 64px 0 48px; }

.wall {
  position: fixed; inset: 0; z-index: 0; overflow: hidden;
  background: var(--sand);
}
.wall::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, color-mix(in srgb, var(--white) 58%, transparent), transparent 52%);
}
.wall img { display: none; }
.wall::after { content: none; }

.top {
  position: fixed; inset: 0 0 auto; z-index: 20; display: flex; align-items: center; justify-content: space-between;
  min-height: 64px; padding: 11px clamp(18px, 4vw, 48px); background: color-mix(in srgb, var(--ink) 94%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--white) 16%, transparent); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}
.top__logo { width: 112px; height: auto; }
.top__signin {
  padding: 8px 17px; border: 1px solid color-mix(in srgb, var(--white) 55%, transparent); border-radius: 10px;
  color: var(--white); font-weight: 600; font-size: 14px; text-decoration: none; transition: background-color .2s, border-color .2s, transform .2s var(--ease);
}
.top__signin:hover { background: color-mix(in srgb, var(--white) 12%, transparent); border-color: var(--white); transform: translateY(-1px); }

.stage { position: relative; z-index: 1; flex: 1; display: grid; place-items: start center; padding: 34px 16px 48px; }
.card { width: 100%; max-width: 460px; background: var(--white); border: 1px solid color-mix(in srgb, var(--brand) 12%, transparent); border-radius: 24px; box-shadow: 0 2px 4px color-mix(in srgb, var(--ink) 5%, transparent), 0 24px 60px color-mix(in srgb, var(--brand) 12%, transparent); overflow: hidden; animation: card-enter .55s var(--ease) both; }
@keyframes card-enter { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.card__head {
  padding: 25px 28px 23px; background: var(--brand); color: var(--white); text-align: center;
  font-size: clamp(26px, 7vw, 32px); line-height: 1.08;
}
.card__head .city-name { text-decoration-color: color-mix(in srgb, var(--white) 58%, transparent); }
.card__body { display: grid; gap: 20px; justify-items: center; padding: 18px 20px 24px; text-align: center; }
.card__photo { width: 100%; height: auto; aspect-ratio: 16 / 11; object-fit: cover; object-position: 50% 30%; border-radius: 12px; }
.card__text { color: var(--ink-2); font-size: 16px; font-weight: 500; line-height: 1.55; max-width: 36ch; }
.card__q { margin-top: 2px; font-size: 29px; color: var(--ink); }
.card__answers { width: 100%; display: grid; gap: 10px; }
.card__answers .btn { min-height: 58px; border-radius: 11px; font-size: 16px; font-weight: 600; box-shadow: none; transition: background-color .2s, border-color .2s, transform .2s var(--ease), box-shadow .2s; }
.card__answers .btn:hover { transform: translateY(-1px); }
.card__answers .btn--primary { border: 1px solid var(--brand); box-shadow: 0 6px 16px color-mix(in srgb, var(--brand) 18%, transparent); }
.btn--teal { background: var(--white); color: var(--ink); border: 1px solid color-mix(in srgb, var(--ink) 28%, transparent); }
.btn--teal:hover { background: var(--cream); border-color: var(--ink); }
.card .tp { justify-items: center; margin-top: 2px; }
.card .legal { max-width: 38ch; }


@media (min-width: 768px) {
  .stage { padding-top: 48px; }
}

@media (max-width: 520px) {
  body { padding-top: 64px; }
  .stage { padding: 22px 12px 42px; }
  .card { border-radius: 20px; }
  .card__head { padding: 22px 20px 20px; }
  .card__body { gap: 17px; padding: 14px 14px 20px; }
  .card__q { font-size: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .card { animation: none; }
}
