/* =========================================================================
   ЛЕНДИНГ ПЕРЕД КВІЗОМ
   ========================================================================= */

:root{
  --bg:#EEF2FF;
  --surface:#FFFFFF;
  --ink:#1E1B4B;
  --ink-2:#3F3D7A;
  --muted:#6B7280;
  --line:#E9EDFB;
  --brand:#4F46E5;
  --brand-2:#6366F1;
  --brand-soft:#E0E7FF;
  --ok:#16A34A;
  --cta-1:#FB923C;
  --cta-2:#EA580C;
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;min-height:100vh;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",sans-serif;
  background:var(--bg);color:var(--ink);line-height:1.45;
}
img{max-width:100%;display:block}
button{font:inherit}

.app{max-width:500px;margin:0 auto;min-height:100vh;background:var(--surface);
  display:flex;flex-direction:column}
@media (min-width:560px){
  body{padding:22px 16px}
  .app{min-height:calc(100vh - 44px);border-radius:24px;overflow:hidden;
    box-shadow:0 24px 60px rgba(79,70,229,.16)}
}

/* ---------- шапка ---------- */
.top{
  padding:11px 16px;display:flex;align-items:center;justify-content:space-between;gap:10px;
  border-bottom:1px solid var(--line);
}
.top img{height:28px;width:auto}
.geo{
  flex:none;font-size:11.5px;font-weight:600;color:var(--ink-2);
  background:var(--brand-soft);border-radius:999px;padding:5px 10px;white-space:nowrap;
}

.hero{padding:18px 16px 8px;text-align:center}

/* ---------- плашка зверху ---------- */
.eyebrow{
  display:inline-flex;align-items:center;gap:7px;
  background:var(--brand-soft);color:var(--brand);
  font-size:11.5px;font-weight:800;letter-spacing:.2px;
  padding:7px 14px;border-radius:999px;
}
.eyebrow .dot{width:7px;height:7px;border-radius:50%;background:#22C55E;
  box-shadow:0 0 0 0 rgba(34,197,94,.6);animation:pulse 1.9s infinite}
@keyframes pulse{70%{box-shadow:0 0 0 8px rgba(34,197,94,0)}100%{box-shadow:0 0 0 0 rgba(34,197,94,0)}}

/* ---------- слайдер фото ---------- */
.shots{
  position:relative;margin:16px auto 0;width:100%;max-width:330px;
  aspect-ratio:4/3;border-radius:22px;overflow:hidden;
  background:var(--brand-soft);
  box-shadow:0 16px 36px rgba(79,70,229,.2);
}
.shots img{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  opacity:0;transition:opacity .7s ease;
}
.shots img.is-on{opacity:1}
.dots{display:flex;justify-content:center;gap:6px;margin-top:10px}
.dots i{width:6px;height:6px;border-radius:999px;background:#CBD5E1;transition:all .3s ease}
.dots i.is-on{width:20px;background:var(--brand)}

/* ---------- тексти ---------- */
h1{margin:16px 4px 0;font-size:25px;line-height:1.25;font-weight:700;letter-spacing:-.4px}
h1 b{font-weight:900;background:linear-gradient(92deg,var(--brand),#A855F7);
  -webkit-background-clip:text;background-clip:text;color:transparent}
.lead{margin:10px 2px 0;font-size:14px;line-height:1.5;color:var(--muted)}

/* ---------- кнопка ---------- */
.cta{
  position:relative;width:100%;border:0;cursor:pointer;display:block;
  padding:16px 52px 16px 20px;border-radius:999px;margin-top:18px;
  background:linear-gradient(95deg,var(--cta-1),var(--cta-2));color:#fff;
  font-size:16px;font-weight:800;text-align:center;text-decoration:none;
  box-shadow:0 10px 26px rgba(234,88,12,.4);
  transition:transform .12s ease,box-shadow .12s ease;
}
.cta:active{transform:translateY(2px);box-shadow:0 5px 14px rgba(234,88,12,.32)}
.cta .arw{
  position:absolute;right:7px;top:50%;transform:translateY(-50%);
  width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.22);
  display:grid;place-items:center;
}
.cta svg{width:16px;height:16px}

/* ---------- лічильник ---------- */
.live{
  display:flex;align-items:center;gap:10px;text-align:left;
  margin:16px 0 4px;padding:11px 13px;
  background:#F7F8FF;border:1px solid var(--line);border-radius:14px;
}
.faces{display:flex;flex:none}
.faces i{
  width:26px;height:26px;border-radius:50%;border:2px solid #fff;margin-left:-8px;
  display:grid;place-items:center;font-style:normal;font-size:10.5px;font-weight:800;color:#fff;
}
.faces i:first-child{margin-left:0}
.live p{margin:0;font-size:11.5px;line-height:1.4;color:var(--ink-2)}
.live b{font-weight:900;color:var(--brand);font-variant-numeric:tabular-nums}
.live .now{font-weight:800;color:var(--ink)}

/* ---------- кроки ---------- */
.steps{padding:6px 16px 0}
.step{
  display:flex;gap:12px;align-items:flex-start;
  padding:14px;border:1px solid var(--line);border-radius:16px;margin-bottom:10px;
  background:#fff;
}
.step b{
  flex:none;width:30px;height:30px;border-radius:10px;
  background:linear-gradient(160deg,var(--brand-2),var(--brand));color:#fff;
  font-size:14px;font-weight:900;display:grid;place-items:center;
}
.step h3{margin:2px 0 3px;font-size:15px;font-weight:700}
.step p{margin:0;font-size:12.5px;color:var(--muted);line-height:1.45}

/* ---------- переваги ---------- */
.feats{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;padding:8px 16px 0}
.feat{
  text-align:center;padding:12px 4px;border-radius:14px;
  background:#F7F8FF;border:1px solid var(--line);
}
.feat i{font-style:normal;font-size:18px;display:block;margin-bottom:4px}
.feat span{display:block;font-size:11px;font-weight:700;line-height:1.3;color:var(--ink-2)}

.bottom{padding:14px 16px 18px}
.note{margin:12px 2px 0;font-size:10.5px;line-height:1.5;color:#9AA0BF;text-align:center}
.legal{margin-top:8px;display:flex;justify-content:center;gap:6px;font-size:10.5px;color:#A6AABE}
.legal a{color:#A6AABE;text-decoration:underline;text-underline-offset:2px}

@media (prefers-reduced-motion:reduce){
  .shots img{transition:none}
  .eyebrow .dot{animation:none}
}
