
:root{
  --bg0:#0b0b0b; --bg1:#141414; --txt:#fff; --muted:rgba(255,255,255,.7);
}
*{box-sizing:border-box}
html,body{height:100%}
body{margin:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;background:linear-gradient(180deg,var(--bg0),var(--bg1));color:var(--txt);}
.hdr{position:fixed;inset:0 0 auto 0;display:flex;justify-content:space-between;align-items:center;padding:10px 16px;background:rgba(0,0,0,.3);backdrop-filter:saturate(140%) blur(10px);border-bottom:1px solid rgba(255,255,255,.1);z-index:10}
.hdr__brand{display:flex;gap:10px;align-items:center}
.spark{width:20px;height:20px;color:#fff;opacity:.85}
.hdr__title{font-weight:600}
.hdr__sub{color:var(--muted);font-size:12px;margin-top:2px}
#progress-bar{width:160px;height:6px;background:rgba(255,255,255,.12);border-radius:999px;overflow:hidden}
#progress-bar>span{display:block;width:0;height:100%;background:#fff;transform-origin:0 50%}

.app{position:relative;padding-top:60px}
.scene{position:relative;height:200vh}
.scene__bg{position:absolute;inset:0;background-size:cover;background-position:center}
.scene__veil{position:absolute;inset:0;background:rgba(0,0,0,.45)}
.scene__stick{position:sticky;top:0;min-height:calc(100vh - 60px);display:flex;align-items:center;padding:0 24px}
.card{position:relative;max-width:860px;margin:0 auto;text-align:center}
.kicker{font-weight:700;font-size:clamp(32px,6vw,56px);line-height:1.06}
.title{margin-top:8px;text-transform:uppercase;letter-spacing:.1em;font-size:12px;color:var(--muted)}
.text{margin-top:16px;line-height:1.7;color:rgba(255,255,255,.92)}
.btn{display:inline-flex;align-items:center;gap:8px;padding:10px 14px;border-radius:14px;border:none;background:#fff;color:#000;font-weight:600;cursor:pointer}
.btn--ghost{background:rgba(255,255,255,.1);color:#fff;border:1px solid rgba(255,255,255,.2)}
.btn--primary{background:#fff;color:#000}
.wish{margin-top:12px;display:inline-block;padding:12px 14px;border-radius:14px;border:1px solid rgba(255,255,255,.2);background:rgba(255,255,255,.1)}
.counter{margin-top:18px;color:rgba(255,255,255,.6);font-size:13px}

.quotes-dock{position:fixed;right:20px;bottom:20px;z-index:12}
.quotes{width: min(86vw, 380px);padding:16px;border-radius:16px;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);backdrop-filter:blur(8px);color:#fff;margin-bottom:10px}
.quotes.hidden{display:none}
.quotes__text{font-size:16px;line-height:1.6}
.quotes__src{margin-top:6px;font-size:12px;color:rgba(255,255,255,.7)}
.heart{display:inline-flex;align-items:center;gap:8px}
.heart svg{width:18px;height:18px}

.ftr{padding:40px 16px;text-align:center;color:rgba(255,255,255,.5)}
