/* ============================================================
   Date Nights — styles
   Warm, romantic, mobile-first. Centered column on desktop.
   ============================================================ */
:root {
  --bg:        #fff5f9;
  --bg-2:      #ffe6f0;
  --card:      #ffffff;
  --ink:       #2b2230;
  --ink-soft:  #5d5364;
  --muted:     #9a8f9e;
  --line:      #f6e1ea;

  --rose:      #ff4f8b;
  --rose-deep: #d8336e;
  --peach:     #ff86c2;
  --blue:      #b15bff;
  --green:     #1faf6a;
  --amber:     #e89512;
  --red:       #e3506a;

  --grad: linear-gradient(135deg, #ff4f8b, #ff86c2);

  --radius: 18px;
  --shadow: 0 8px 30px rgba(216, 51, 110, 0.12);
  --shadow-sm: 0 2px 10px rgba(43, 34, 48, 0.06);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
}
button { font-family: inherit; cursor: pointer; }
h1, h2, h3 { margin: 0; }
[hidden] { display: none !important; }

/* layout column */
#app, .login, .setup { max-width: 560px; margin: 0 auto; }

/* ---------- Top bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  padding: calc(12px + var(--safe-top)) 18px 12px;
  background: rgba(255, 247, 244, 0.86);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 1.15rem; }
.brand-heart { color: var(--rose); font-size: 1.2rem; }
.brand-name { letter-spacing: -0.01em; }
.topbar-actions { display: flex; align-items: center; gap: 8px; }
.whoami {
  border: none; background: var(--card); border-radius: 50%;
  width: 38px; height: 38px; display: grid; place-items: center;
  box-shadow: var(--shadow-sm); font-size: 1.15rem; flex: 0 0 auto;
}
.avatar { line-height: 1; }
#bell.nudge { animation: bell-pulse 1.8s ease-in-out infinite; }
@keyframes bell-pulse {
  0%, 100% { box-shadow: var(--shadow-sm); }
  50% { box-shadow: 0 0 0 5px rgba(255, 79, 139, 0.18); }
}

/* ---------- Next-date hero ---------- */
.next-hero {
  margin: 14px 16px 4px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow);
}
.next-hero .nh-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; opacity: .9; }
.next-hero .nh-title { font-size: 1.25rem; font-weight: 800; margin-top: 3px; }
.next-hero .nh-sub { opacity: .95; margin-top: 3px; font-size: .92rem; }

/* ---------- Views ---------- */
.views { padding: 8px 16px 120px; }
.view-title { font-size: 1.35rem; font-weight: 800; margin: 12px 2px 6px; }
.view-hint { color: var(--muted); font-size: .88rem; margin: 0 2px 14px; line-height: 1.4; }

/* date ideas */
.idea-add { display: flex; gap: 8px; margin-bottom: 16px; }
.idea-add .text-input { flex: 1; }
.idea-add .btn { flex: 0 0 auto; }
.idea-actions { display: flex; gap: 8px; margin-top: 9px; }
.idea-actions .chip { padding: 6px 11px; font-size: .82rem; cursor: pointer; }
.idea-actions .idea-plan { border-color: var(--rose); color: var(--rose-deep); }

/* ---------- Calendar ---------- */
.cal-head { display: flex; align-items: center; justify-content: space-between; margin: 10px 2px 8px; }
.cal-title { font-size: 1.15rem; font-weight: 800; }
.icon-btn {
  border: none; background: var(--card); box-shadow: var(--shadow-sm);
  width: 38px; height: 38px; border-radius: 12px; font-size: 1.3rem; color: var(--ink-soft);
  display: grid; place-items: center;
}
.icon-btn:active { transform: scale(.94); }

.cal-weekdays, .cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px;
}
.cal-weekdays { margin-bottom: 6px; }
.cal-weekdays span {
  text-align: center; font-size: .68rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .06em;
}
/* soft-3D "clay" calendar */
.cal-3d { perspective: 1300px; margin-bottom: 16px; }
.cal-3d .cal-grid { transform: rotateX(8deg); transform-origin: center top; }
.cal-cell {
  position: relative; min-height: 56px; border-radius: 15px;
  background: linear-gradient(150deg, #ffffff, #ffe6ef);
  box-shadow: 3px 5px 10px rgba(216, 51, 110, 0.16), -3px -3px 7px rgba(255, 255, 255, 0.92);
  padding: 5px 5px 4px; display: flex; flex-direction: column; gap: 3px;
  border: none; transition: transform .12s ease;
}
.cal-cell:active { transform: translateY(1px) scale(.97); }
.cal-cell.is-blank { background: transparent; box-shadow: none; }
.cal-cell.has-dates {
  background: linear-gradient(155deg, #ffffff, #ffd2e3);
  box-shadow: 3px 5px 12px rgba(216, 51, 110, 0.22), -2px -2px 6px rgba(255, 255, 255, 0.92), inset 0 0 0 1.5px rgba(216, 51, 110, 0.16);
}
.cal-cell.is-today {
  box-shadow: 0 0 0 2.5px var(--rose-deep), 3px 6px 13px rgba(216, 51, 110, 0.32), -2px -2px 6px rgba(255, 255, 255, 0.92);
}
.cal-cell.is-selected {
  background: linear-gradient(150deg, #ffd6e6, #ffc2da);
  box-shadow: inset 3px 3px 7px rgba(216, 51, 110, 0.24), inset -2px -2px 5px rgba(255, 255, 255, 0.7);
}
.cal-cell.in-flex { outline: 2px dashed rgba(216, 51, 110, 0.45); outline-offset: -3px; }
.cal-cell.is-busy {
  background: repeating-linear-gradient(45deg, #ececec, #ececec 4px, #f7f7f7 4px, #f7f7f7 8px);
  box-shadow: var(--shadow-sm);
}
.cal-cell.is-busy .daynum { color: var(--muted); }
.cal-cell.is-busy::after { content: '🚫'; position: absolute; top: 2px; right: 4px; font-size: .68rem; }

.flex-toggle { display: flex; align-items: center; gap: 8px; margin: 14px 2px 2px; font-size: .9rem; font-weight: 600; color: var(--ink-soft); cursor: pointer; }
.flex-toggle input { width: 18px; height: 18px; accent-color: var(--rose-deep); flex: 0 0 auto; }
.cal-cell .daynum { font-size: .78rem; font-weight: 700; color: var(--ink-soft); }
.cal-cell.is-today .daynum { color: var(--rose-deep); }
.cal-dots { display: flex; flex-wrap: wrap; gap: 3px; margin-top: auto; }
.cal-dot { width: 7px; height: 7px; border-radius: 50%; }
.cal-more { font-size: .6rem; color: var(--muted); font-weight: 700; }

.dot-proposed, .dot-countered { background: var(--amber); }
.dot-accepted { background: var(--green); }
.dot-declined, .dot-cancelled { background: var(--muted); }

.day-panel { margin-top: 18px; }
.day-panel-title { font-size: 1rem; font-weight: 800; margin-bottom: 8px; color: var(--ink); }

/* ---------- Cards ---------- */
.card-list { display: flex; flex-direction: column; gap: 10px; }
.card {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 13px 14px; display: flex; gap: 12px; align-items: flex-start;
  border-left: 4px solid var(--line); text-align: left; width: 100%; border-top: none;
  border-right: none; border-bottom: none;
}
.card:active { transform: scale(.992); }
.card.s-proposed, .card.s-countered { border-left-color: var(--amber); }
.card.s-accepted { border-left-color: var(--green); }
.card.s-declined, .card.s-cancelled { border-left-color: var(--muted); opacity: .82; }
.card-emoji { font-size: 1.5rem; line-height: 1.1; flex: 0 0 auto; }
.card-main { flex: 1 1 auto; min-width: 0; }
.card-title { display: block; font-weight: 800; font-size: 1rem; line-height: 1.25; }
.card-sub { display: block; }
.card-meta { color: var(--ink-soft); font-size: .85rem; margin-top: 3px; display: flex; flex-wrap: wrap; gap: 4px 10px; }
.card-sub { color: var(--muted); font-size: .8rem; margin-top: 5px; }
.card-status {
  font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  padding: 3px 8px; border-radius: 999px; white-space: nowrap; align-self: flex-start;
}
.st-proposed, .st-countered { background: #fdf0d8; color: var(--amber); }
.st-accepted { background: #def3e6; color: var(--green); }
.st-declined { background: #f6e3e6; color: var(--red); }
.st-cancelled { background: #efeaf0; color: var(--muted); }

.empty { color: var(--muted); font-size: .9rem; padding: 14px 4px; text-align: center; }

/* group sections */
.group { margin-top: 18px; }
.group-title {
  font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em;
  color: var(--muted); margin: 0 2px 9px; display: flex; align-items: center; gap: 8px;
}
.count-badge {
  background: var(--rose); color: #fff; border-radius: 999px; font-size: .72rem;
  min-width: 20px; height: 20px; padding: 0 6px; display: inline-grid; place-items: center;
}

/* ---------- FAB ---------- */
.fab {
  position: fixed; right: max(18px, calc(50% - 280px + 18px));
  bottom: calc(78px + var(--safe-bottom)); z-index: 35;
  width: 60px; height: 60px; border-radius: 50%; border: none; color: #fff;
  background: var(--grad); box-shadow: 0 10px 24px rgba(216, 51, 110, 0.42);
  font-size: 2rem; line-height: 1; display: grid; place-items: center;
}
.fab:active { transform: scale(.93); }

/* ---------- Tab bar ---------- */
.tabbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  max-width: 560px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr);
  background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding-bottom: var(--safe-bottom);
}
.tab {
  border: none; background: transparent; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 9px 4px 8px; font-size: .68rem; font-weight: 700; position: relative;
}
.tab-ico { font-size: 1.25rem; filter: grayscale(.4); opacity: .7; }
.tab.is-active { color: var(--rose-deep); }
.tab.is-active .tab-ico { filter: none; opacity: 1; }
.tab-dot { position: absolute; top: 7px; right: calc(50% - 18px); width: 9px; height: 9px; background: var(--rose); border-radius: 50%; }

/* ---------- Login / setup ---------- */
.login, .setup {
  min-height: 100vh; min-height: 100dvh; display: grid; place-items: center; padding: 24px;
}
.login-card, .setup-card {
  background: var(--card); border-radius: 24px; box-shadow: var(--shadow);
  padding: 30px 24px; width: 100%; max-width: 380px; text-align: center;
}
.setup-card { text-align: left; }
.setup-card ol { padding-left: 20px; line-height: 1.7; color: var(--ink-soft); }
.setup-card code { background: var(--bg-2); padding: 1px 6px; border-radius: 6px; font-size: .85em; }
.setup-foot { color: var(--muted); font-size: .85rem; margin-top: 16px; }
.login-heart { font-size: 2.6rem; color: var(--rose); }
.login-card h1 { font-size: 1.6rem; margin-top: 8px; }
.login-sub { color: var(--ink-soft); font-size: .95rem; margin: 8px 0 18px; line-height: 1.45; }
.login-msg { color: var(--red); font-size: .88rem; min-height: 1.1em; margin-top: 12px; }
.login-msg.ok { color: var(--green); }

/* ---------- Onboarding ---------- */
.onboard { position: fixed; inset: 0; z-index: 70; display: grid; place-items: center; padding: 22px; background: var(--bg); overflow-y: auto; }
.onboard-card { background: var(--card); border-radius: 24px; box-shadow: var(--shadow); padding: 28px 22px; width: 100%; max-width: 400px; text-align: center; margin: auto; }
.onb-hero { font-size: 3rem; line-height: 1; }
.onboard-card h1 { font-size: 1.5rem; margin-top: 8px; }
.onb-sub { color: var(--ink-soft); font-size: .98rem; margin: 8px 0 20px; line-height: 1.45; }
.onb-tour-list { list-style: none; padding: 0; margin: 8px 0 20px; text-align: left; display: flex; flex-direction: column; gap: 13px; }
.onb-tour-list li { display: flex; gap: 11px; align-items: flex-start; font-size: .92rem; color: var(--ink-soft); line-height: 1.4; }
.onb-tour-list li span { font-size: 1.4rem; flex: 0 0 auto; }
.onb-tour-list b { color: var(--ink); }

/* ---------- Forms ---------- */
.field-label { display: block; font-size: .82rem; font-weight: 700; color: var(--ink-soft); margin: 14px 2px 6px; text-align: left; }
.field-label .muted { font-weight: 500; color: var(--muted); }
.text-input {
  width: 100%; border: 1.5px solid var(--line); border-radius: 13px;
  padding: 13px 14px; font-size: 1rem; color: var(--ink); background: #fff;
  font-family: inherit; outline: none; -webkit-appearance: none;
}
.text-input:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(255, 79, 139, 0.18); }
textarea.text-input { resize: vertical; }
.field-row { display: flex; gap: 12px; }
.field-col { flex: 1; }
.muted { color: var(--muted); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1.5px solid var(--line); background: #fff; border-radius: 999px;
  padding: 8px 13px; font-size: .9rem; font-weight: 600; color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 6px;
}
.chip.is-on { border-color: transparent; background: var(--grad); color: #fff; box-shadow: var(--shadow-sm); }

#f-activities { max-height: 172px; overflow-y: auto; padding: 2px; }
.loc-chips { max-height: 104px; overflow-y: auto; margin-bottom: 8px; }
.loc-chip { font-size: .86rem; padding: 7px 11px; }
.add-own { display: flex; gap: 8px; margin-top: 10px; }
.add-own .text-input { flex: 1; }
.add-own .btn { flex: 0 0 auto; }

.card-acts { display: block; margin-top: 4px; font-size: .95rem; letter-spacing: 2px; }
.mini-tag {
  display: inline-flex; align-items: center; gap: 4px; background: var(--bg-2);
  color: var(--rose-deep); border-radius: 999px; padding: 3px 9px;
  font-size: .82rem; font-weight: 600; margin: 0 3px 4px 0;
}

/* ---------- avatars ---------- */
.avi {
  display: inline-grid; place-items: center; border-radius: 50%;
  background: var(--avi, var(--rose)); color: #fff; line-height: 1;
  width: 30px; height: 30px; font-size: 1rem; flex: 0 0 auto;
  box-shadow: var(--shadow-sm); user-select: none;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.avatar-photo-row { display: flex; gap: 8px; align-items: center; justify-content: center; margin: 4px 0 8px; flex-wrap: wrap; }
.avi-lg { width: 84px; height: 84px; font-size: 2.6rem; box-shadow: var(--shadow); }
.avi-xs { width: 22px; height: 22px; font-size: .72rem; box-shadow: none; }
.avi-cal { width: 19px; height: 19px; font-size: .66rem; border: 1.5px solid #fff; box-shadow: 0 1px 3px rgba(43, 34, 48, .18); }
#whoami { background: transparent; box-shadow: none; }
#whoami .avi { width: 38px; height: 38px; font-size: 1.2rem; box-shadow: var(--shadow-sm); }
.cal-avis { display: flex; flex-wrap: wrap; gap: 2px; margin-top: auto; align-items: center; }
.card-emoji-wrap { position: relative; flex: 0 0 auto; }
.avi-badge { position: absolute; right: -4px; bottom: -4px; width: 20px; height: 20px; font-size: .66rem; border: 2px solid #fff; box-shadow: none; }
.detail-from { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: .85rem; margin-top: 5px; }

/* avatar maker */
.seg-row { display: flex; gap: 6px; margin: 8px 0; }
.seg { flex: 1; min-width: 0; border: 1.5px solid var(--line); background: #fff; border-radius: 999px; padding: 9px 10px; font-weight: 800; color: var(--ink-soft); font-size: .9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.seg.is-on { background: var(--grad); color: #fff; border-color: transparent; box-shadow: var(--shadow-sm); }
.onboard-banner { background: var(--bg-2); border-radius: 13px; padding: 11px 13px; margin: 4px 0 6px; font-size: .92rem; color: var(--ink); line-height: 1.45; }
.link-btn { background: none; border: none; color: var(--rose-deep); font-weight: 700; text-decoration: underline; padding: 0 2px; cursor: pointer; font-size: .92rem; }
.avatar-preview { display: grid; place-items: center; margin: 8px 0 6px; }
.emoji-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.emoji-pick { border: 1.5px solid var(--line); background: #fff; border-radius: 12px; font-size: 1.3rem; padding: 9px 0; line-height: 1; }
.emoji-pick.is-on { border-color: var(--rose); background: var(--bg-2); transform: scale(1.05); }
.color-row { display: flex; flex-wrap: wrap; gap: 10px; }
.color-pick { width: 34px; height: 34px; border-radius: 50%; border: 3px solid #fff; box-shadow: 0 0 0 1.5px var(--line); }
.color-pick.is-on { box-shadow: 0 0 0 2.5px var(--ink); }

/* photo cropper */
#crop-area, #onb-crop { margin: 10px 0 4px; }
#crop-box, #onb-crop-box { position: relative; width: 150px; height: 150px; margin: 0 auto; border-radius: 14px; overflow: hidden; background: #eee; touch-action: none; cursor: grab; }
#crop-box img, #onb-crop-box img { position: absolute; left: 0; top: 0; user-select: none; -webkit-user-drag: none; }
.crop-ring { position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 999px rgba(255, 255, 255, 0.55); border: 2px solid rgba(216, 51, 110, 0.5); pointer-events: none; }
#crop-zoom, #onb-crop-zoom { width: 100%; margin-top: 10px; accent-color: var(--rose-deep); }

/* standing characters */
.char { display: block; flex: 0 0 auto; overflow: visible; }
.char-cal { width: 22px; height: 29px; }
.char-card { width: 44px; height: 60px; margin-top: 1px; }
.char-lg { width: 56px; height: 77px; }
.char-preview { width: 84px; height: 116px; margin: 0 auto; }
.couple-card { width: 72px; height: 55px; margin-top: 2px; }
.couple-lg { width: 96px; height: 74px; }
.cal-avis { gap: 0; justify-content: center; flex-wrap: nowrap; }
.cal-avis:has(.char-cal + .char-cal) .char-cal { width: 16px; height: 21px; }

/* a chosen (agreed) date — the couple scene fills the whole cell, the day number floats on top */
.cal-cell.has-scene { overflow: hidden; min-height: 64px; padding: 0; }
.char-cal-scene { position: absolute; inset: 0; width: 100%; height: 100%; }
.cal-cell.has-scene .daynum {
  position: absolute; top: 3px; left: 4px; z-index: 2; line-height: 1.3;
  background: rgba(255, 255, 255, 0.84); border-radius: 7px; padding: 0 5px;
  box-shadow: 0 1px 2px rgba(216, 51, 110, 0.18);
}
.cal-cell.has-scene .cal-agreed { position: absolute; top: 2px; right: 4px; z-index: 2; font-size: .66rem; }
.cal-cell.has-scene .cal-more {
  position: absolute; bottom: 2px; right: 5px; z-index: 2;
  background: rgba(255, 255, 255, 0.82); border-radius: 6px; padding: 0 3px;
}

/* ---------- Buttons ---------- */
.btn {
  border: none; border-radius: 13px; padding: 13px 18px; font-size: .98rem;
  font-weight: 800; color: var(--ink); background: var(--bg-2);
}
.btn:active { transform: scale(.97); }
.btn-block { width: 100%; margin-top: 14px; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink-soft); }
.btn-danger { background: #fbe6ea; color: var(--red); }
.btn-soft { background: var(--bg-2); color: var(--ink-soft); }
.btn:disabled { opacity: .55; }

/* ---------- Sheets / modals ---------- */
.sheet-backdrop {
  position: fixed; inset: 0; z-index: 60; background: rgba(43, 34, 48, 0.42);
  display: flex; align-items: flex-end; justify-content: center;
  animation: fade .18s ease;
}
.sheet {
  background: var(--card); width: 100%; max-width: 560px;
  border-radius: 26px 26px 0 0; padding: 8px 20px calc(24px + var(--safe-bottom));
  max-height: 92vh; overflow-y: auto; animation: slideup .26s cubic-bezier(.2, .8, .2, 1);
}
.sheet-grip { width: 42px; height: 5px; border-radius: 999px; background: var(--line); margin: 6px auto 12px; }
.sheet-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 4px; }
.sheet-actions { display: flex; gap: 10px; margin-top: 22px; justify-content: flex-end; }
.sheet-actions.wrap { flex-wrap: wrap; }
.sheet-actions .btn { flex: 1; min-width: 120px; }

@keyframes slideup { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* detail body */
.detail-head { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 4px; }
.detail-emoji { font-size: 2.2rem; }
.detail-h-title { display: block; font-size: 1.3rem; font-weight: 800; line-height: 1.2; }
.detail-rows { margin: 14px 0 4px; }
.detail-row { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.detail-row:last-child { border-bottom: none; }
.detail-row .dr-key { color: var(--muted); width: 92px; flex: 0 0 auto; font-weight: 600; }
.detail-row .dr-val { color: var(--ink); }
.timeline { margin-top: 14px; }
.timeline h4 { font-size: .76rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 8px; }
.tl-item { display: flex; gap: 9px; font-size: .86rem; color: var(--ink-soft); padding: 3px 0; }
.tl-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rose); margin-top: 6px; flex: 0 0 auto; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: calc(96px + var(--safe-bottom)); transform: translateX(-50%);
  z-index: 80; background: var(--ink); color: #fff; padding: 11px 18px; border-radius: 999px;
  font-size: .9rem; font-weight: 600; box-shadow: var(--shadow); animation: fade .2s ease;
  max-width: 90%; text-align: center;
}

/* ---------- Confetti ---------- */
.confetti { position: fixed; inset: 0; z-index: 90; pointer-events: none; overflow: hidden; }
.confetti span {
  position: absolute; top: -20px; font-size: 1.4rem;
  animation: drop linear forwards;
}
@keyframes drop {
  to { transform: translateY(110vh) rotate(540deg); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
