:root {
  --paper: #ffffff;
  --canvas: #f4f4f7;
  --surface: #ffffff;
  --surface-soft: #f8f8fa;
  --ink: #171721;
  --ink-soft: #34343f;
  --muted: #7c7c88;
  --line: #dedee5;
  --pink: #ff2d6f;
  --pink-deep: #e8185b;
  --pink-soft: #ffe1ea;
  --coral: #ff655e;
  --orange: #ff9b61;
  --green: #23b875;
  --yellow: #ffd45a;
  --danger: #e9344f;
  --shadow-ink: 5px 5px 0 var(--ink);
  --shadow-pink: 5px 5px 0 var(--pink);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --safe-bottom: max(96px, calc(82px + env(safe-area-inset-bottom)));
  --top-safe: env(safe-area-inset-top);
  color-scheme: light;
}

html[data-theme="dark"] {
  --paper: #101015;
  --canvas: #0c0c11;
  --surface: #191920;
  --surface-soft: #21212a;
  --ink: #f8f8fb;
  --ink-soft: #d7d7df;
  --muted: #9b9ba8;
  --line: #33333e;
  --pink-soft: #451529;
  --shadow-ink: 5px 5px 0 #000000;
  color-scheme: dark;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; min-height: 100%; background: var(--canvas); }
body {
  font-family: Inter, ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  overflow-x: hidden;
}
button, input, textarea, select { font: inherit; }
button { color: inherit; }
button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--pink) 45%, transparent);
  outline-offset: 2px;
}

.ambient { position: fixed; pointer-events: none; z-index: 0; opacity: .16; filter: blur(2px); }
.ambient-one { width: 160px; height: 160px; border-radius: 38% 62% 64% 36%; background: var(--pink); top: 70px; right: -90px; transform: rotate(18deg); }
.ambient-two { width: 120px; height: 120px; border-radius: 50%; border: 24px solid var(--orange); bottom: 120px; left: -82px; }

.app-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  min-height: 100dvh;
  margin: 0 auto;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  border-inline: 1px solid color-mix(in srgb, var(--line) 65%, transparent);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: calc(72px + var(--top-safe));
  padding: calc(10px + var(--top-safe)) 18px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
}
.brand { display: flex; align-items: center; gap: 11px; padding: 0; border: 0; background: none; text-align: left; cursor: pointer; }
.brand-mark { width: 48px; height: 48px; border: 2px solid var(--ink); border-radius: 15px; overflow: hidden; background: #fff; box-shadow: 3px 3px 0 var(--pink); flex: 0 0 auto; }
.brand-mark img { width: 100%; height: 100%; display: block; object-fit: cover; }
.brand-copy { display: grid; gap: 1px; }
.brand-copy strong { font-size: 21px; line-height: 1; letter-spacing: .04em; font-weight: 950; }
.brand-copy small { color: var(--muted); font-size: 12px; font-weight: 650; }
.icon-button { width: 44px; height: 44px; border-radius: 15px; border: 2px solid var(--ink); background: var(--surface); display: grid; place-items: center; cursor: pointer; box-shadow: 3px 3px 0 var(--ink); transition: transform .15s, box-shadow .15s; }
.icon-button:active { transform: translate(3px,3px); box-shadow: none; }
.icon-button svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.screen { min-height: calc(100dvh - 72px); padding: 18px 18px calc(var(--safe-bottom) + 18px); }
.screen-enter { animation: screenIn .22s ease both; }
@keyframes screenIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin: 4px 0 18px; }
.page-kicker { color: var(--pink); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.page-title { margin: 4px 0 0; font-size: clamp(29px, 8vw, 38px); line-height: .98; letter-spacing: -.04em; font-weight: 950; }
.page-note { margin: 7px 0 0; color: var(--muted); font-size: 14px; line-height: 1.4; font-weight: 600; }

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 202px;
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-xl);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-pink);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}
.hero-card::before { content: ""; position: absolute; width: 170px; height: 170px; border-radius: 38% 62% 56% 44%; background: var(--pink); right: -70px; top: -80px; transform: rotate(22deg); }
.hero-card::after { content: ""; position: absolute; width: 68px; height: 68px; border: 16px solid var(--orange); border-radius: 50%; right: 42px; bottom: -42px; }
.hero-copy, .progress-orbit { position: relative; z-index: 1; }
.hero-eyebrow { color: #ff9fbc; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 900; }
.hero-number { display: block; margin-top: 8px; font-size: 48px; line-height: .92; letter-spacing: -.05em; font-weight: 950; }
.hero-label { margin-top: 10px; max-width: 210px; color: #d8d8df; font-size: 14px; line-height: 1.45; font-weight: 600; }
.progress-orbit { --p: 0; width: 112px; height: 112px; border-radius: 50%; background: conic-gradient(var(--pink) calc(var(--p) * 1%), #353540 0); display: grid; place-items: center; transform: rotate(-14deg); }
.progress-orbit::before { content: ""; width: 78px; height: 78px; border-radius: 50%; background: var(--ink); border: 2px solid #4a4a57; }
.progress-orbit span { position: absolute; transform: rotate(14deg); font-size: 22px; font-weight: 950; }

.section-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 25px 2px 12px; }
.section-row h2 { margin: 0; font-size: 20px; letter-spacing: -.025em; font-weight: 900; }
.text-button { border: 0; background: none; padding: 7px 0; color: var(--pink); font-size: 13px; font-weight: 850; cursor: pointer; }

.timeline { display: grid; gap: 12px; }
.task-card {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 4px 4px 0 color-mix(in srgb, var(--ink) 90%, transparent);
  transition: transform .15s, opacity .15s;
}
.task-card:active { transform: translate(2px,2px); }
.task-card.is-taken { border-color: color-mix(in srgb, var(--green) 75%, var(--ink)); box-shadow: 4px 4px 0 var(--green); }
.task-card.is-skipped, .task-card.is-missed { opacity: .7; box-shadow: 4px 4px 0 var(--line); }
.task-time { min-width: 58px; padding: 9px 8px; border-radius: 14px; background: var(--ink); color: #fff; text-align: center; font-size: 15px; font-weight: 900; }
.task-card.is-taken .task-time { background: var(--green); }
.task-main { min-width: 0; }
.task-name { margin: 0; font-size: 16px; line-height: 1.2; font-weight: 900; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.task-meta { margin-top: 5px; color: var(--muted); font-size: 12px; line-height: 1.3; font-weight: 650; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.task-actions { display: flex; gap: 7px; align-items: center; }
.mini-action { width: 39px; height: 39px; border-radius: 13px; border: 2px solid var(--ink); background: var(--surface); display: grid; place-items: center; cursor: pointer; font-size: 18px; font-weight: 900; }
.mini-action.primary { background: var(--pink); color: #fff; }
.mini-action.good { background: var(--green); color: #fff; }
.mini-action svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.status-pill { display: inline-flex; align-items: center; gap: 5px; padding: 7px 9px; border-radius: 999px; background: var(--surface-soft); font-size: 11px; font-weight: 850; white-space: nowrap; }

.empty-state { padding: 28px 22px; border: 2px dashed var(--line); border-radius: var(--radius-xl); text-align: center; background: color-mix(in srgb, var(--surface) 88%, transparent); }
.empty-cat { width: 92px; height: 92px; margin: 0 auto 12px; border: 2px solid var(--ink); border-radius: 25px; overflow: hidden; background: #fff; box-shadow: 4px 4px 0 var(--pink); }
.empty-cat img { width: 100%; height: 100%; object-fit: cover; }
.empty-state h3 { margin: 0; font-size: 20px; font-weight: 900; }
.empty-state p { margin: 8px auto 16px; max-width: 310px; color: var(--muted); font-size: 14px; line-height: 1.45; }

.primary-button, .secondary-button, .danger-button {
  min-height: 48px;
  border-radius: 16px;
  padding: 12px 17px;
  border: 2px solid var(--ink);
  font-weight: 900;
  cursor: pointer;
  transition: transform .14s, box-shadow .14s, opacity .14s;
}
.primary-button { background: var(--pink); color: #fff; box-shadow: 4px 4px 0 var(--ink); }
.secondary-button { background: var(--surface); color: var(--ink); box-shadow: 4px 4px 0 var(--ink); }
.danger-button { background: var(--danger); color: #fff; box-shadow: 4px 4px 0 var(--ink); }
.primary-button:active, .secondary-button:active, .danger-button:active { transform: translate(4px,4px); box-shadow: none; }
.primary-button:disabled, .secondary-button:disabled { opacity: .45; pointer-events: none; }
.full { width: 100%; }

.calendar-card { padding: 16px; border: 2px solid var(--ink); border-radius: var(--radius-xl); background: var(--surface); box-shadow: var(--shadow-ink); }
.calendar-head { display: grid; grid-template-columns: 44px 1fr 44px; align-items: center; gap: 10px; margin-bottom: 13px; }
.calendar-head h2 { margin: 0; text-align: center; font-size: 19px; font-weight: 950; text-transform: capitalize; }
.calendar-arrow { width: 42px; height: 42px; border-radius: 14px; border: 2px solid var(--ink); background: var(--surface-soft); cursor: pointer; font-size: 20px; font-weight: 900; }
.weekdays, .calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.weekdays { margin-bottom: 5px; }
.weekdays span { text-align: center; color: var(--muted); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.calendar-day { position: relative; aspect-ratio: 1; border: 0; border-radius: 13px; background: transparent; color: var(--ink); display: grid; place-items: center; cursor: pointer; font-size: 13px; font-weight: 800; }
.calendar-day.has-items { background: var(--surface-soft); }
.calendar-day.is-selected { background: var(--ink); color: var(--paper); }
.calendar-day.is-today::after { content: ""; position: absolute; inset: 3px; border: 2px solid var(--pink); border-radius: 11px; }
.calendar-day.is-outside { opacity: .18; pointer-events: none; }
.day-dot { position: absolute; bottom: 5px; width: 5px; height: 5px; border-radius: 50%; background: var(--pink); }
.calendar-day.is-complete .day-dot { background: var(--green); }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.stat-card { padding: 15px 10px; border: 2px solid var(--ink); border-radius: 18px; background: var(--surface); box-shadow: 3px 3px 0 var(--ink); text-align: center; }
.stat-card:nth-child(2) { box-shadow: 3px 3px 0 var(--pink); }
.stat-card strong { display: block; font-size: 25px; letter-spacing: -.04em; font-weight: 950; }
.stat-card span { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; line-height: 1.2; font-weight: 800; }

.history-list { display: grid; gap: 14px; }
.history-day { border: 2px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); overflow: hidden; }
.history-day-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 14px 15px; border-bottom: 1px solid var(--line); }
.history-day-head strong { font-size: 15px; font-weight: 900; }
.history-day-head span { color: var(--muted); font-size: 12px; font-weight: 800; }
.history-row { display: grid; grid-template-columns: 50px 1fr auto; gap: 10px; align-items: center; padding: 12px 15px; border-bottom: 1px solid var(--line); }
.history-row:last-child { border-bottom: 0; }
.history-row time { font-size: 13px; font-weight: 900; }
.history-row b { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }
.history-status { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 9px; background: var(--surface-soft); font-size: 13px; font-weight: 900; }
.history-status.taken { background: color-mix(in srgb, var(--green) 20%, var(--surface)); color: var(--green); }
.history-status.skipped, .history-status.missed { color: var(--muted); }

.profile-card { position: relative; overflow: hidden; padding: 20px; border: 2px solid var(--ink); border-radius: var(--radius-xl); background: var(--surface); box-shadow: var(--shadow-pink); display: flex; align-items: center; gap: 15px; }
.profile-card::after { content: ""; position: absolute; width: 100px; height: 100px; border-radius: 28px; background: var(--pink-soft); right: -50px; top: -48px; transform: rotate(20deg); }
.profile-avatar { position: relative; z-index: 1; width: 64px; height: 64px; border-radius: 21px; background: var(--ink); color: #fff; display: grid; place-items: center; font-size: 23px; font-weight: 950; box-shadow: 4px 4px 0 var(--pink); }
.profile-info { position: relative; z-index: 1; min-width: 0; }
.profile-info h2 { margin: 0; font-size: 21px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.profile-info p { margin: 5px 0 0; color: var(--muted); font-size: 13px; font-weight: 650; }
.settings-list { display: grid; gap: 10px; margin-top: 18px; }
.setting-row { width: 100%; min-height: 62px; padding: 12px 14px; border: 2px solid var(--line); border-radius: 18px; background: var(--surface); display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 11px; text-align: left; cursor: pointer; }
.setting-icon { width: 40px; height: 40px; border-radius: 13px; background: var(--pink-soft); color: var(--pink); display: grid; place-items: center; font-size: 18px; font-weight: 900; }
.setting-copy strong { display: block; font-size: 14px; font-weight: 900; }
.setting-copy span { display: block; margin-top: 3px; color: var(--muted); font-size: 11px; font-weight: 650; }
.setting-value { color: var(--muted); font-size: 12px; font-weight: 800; }
.disclaimer { margin-top: 18px; padding: 15px; border-radius: 18px; background: var(--surface-soft); color: var(--muted); font-size: 12px; line-height: 1.5; font-weight: 600; }

.segmented { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; padding: 5px; border: 2px solid var(--ink); border-radius: 17px; background: var(--surface-soft); }
.segmented button { min-height: 40px; border: 0; border-radius: 12px; background: transparent; cursor: pointer; font-size: 12px; font-weight: 850; }
.segmented button.is-active { background: var(--ink); color: var(--paper); }

.bottom-nav {
  position: fixed;
  z-index: 30;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(100%, 560px);
  min-height: calc(76px + env(safe-area-inset-bottom));
  padding: 9px 10px env(safe-area-inset-bottom);
  border-top: 2px solid var(--ink);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: grid;
  grid-template-columns: 1fr 1fr 62px 1fr 1fr;
  align-items: end;
  gap: 2px;
}
.nav-item { border: 0; background: none; min-height: 54px; padding: 6px 2px 4px; border-radius: 13px; display: grid; justify-items: center; align-content: center; gap: 4px; color: var(--muted); cursor: pointer; }
.nav-item svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.nav-item span { font-size: 9px; font-weight: 850; }
.nav-item.is-active { color: var(--pink); background: var(--pink-soft); }
.nav-add { align-self: start; width: 58px; height: 58px; margin-top: -27px; border: 2px solid var(--ink); border-radius: 19px; background: var(--pink); color: #fff; box-shadow: 4px 4px 0 var(--ink); display: grid; place-items: center; cursor: pointer; transform: rotate(-3deg); }
.nav-add:active { box-shadow: none; transform: translate(4px,4px) rotate(-3deg); }
.nav-add svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 2.3; stroke-linecap: round; }

.sheet-backdrop { position: fixed; inset: 0; z-index: 90; background: rgba(0,0,0,.5); backdrop-filter: blur(4px); }
.sheet { position: fixed; z-index: 100; left: 50%; bottom: 0; transform: translateX(-50%); width: min(100%, 560px); max-height: 92dvh; overflow: auto; overscroll-behavior: contain; border: 2px solid var(--ink); border-bottom: 0; border-radius: 28px 28px 0 0; background: var(--paper); padding: 10px 18px calc(24px + env(safe-area-inset-bottom)); box-shadow: 0 -18px 50px rgba(0,0,0,.2); animation: sheetIn .24s ease both; }
@keyframes sheetIn { from { transform: translate(-50%, 105%); } to { transform: translate(-50%, 0); } }
.sheet-handle { width: 48px; height: 5px; margin: 2px auto 14px; border-radius: 999px; background: var(--line); }
.sheet-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 17px; }
.sheet-header h2 { margin: 0; font-size: 24px; letter-spacing: -.03em; font-weight: 950; }
.sheet-close { width: 40px; height: 40px; border: 2px solid var(--ink); border-radius: 13px; background: var(--surface); font-size: 20px; font-weight: 800; cursor: pointer; }

.form-grid { display: grid; gap: 15px; }
.field { display: grid; gap: 7px; }
.field label, .field-label { font-size: 12px; font-weight: 900; }
.field small { color: var(--muted); font-size: 11px; line-height: 1.35; }
.input, .textarea, .select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 2px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  color: var(--ink);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.input:focus, .textarea:focus, .select:focus { border-color: var(--ink); box-shadow: 3px 3px 0 var(--pink); }
.textarea { min-height: 92px; resize: vertical; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { min-height: 40px; padding: 9px 12px; border: 2px solid var(--line); border-radius: 13px; background: var(--surface); cursor: pointer; font-size: 12px; font-weight: 850; }
.chip.is-active { border-color: var(--ink); background: var(--ink); color: var(--paper); box-shadow: 3px 3px 0 var(--pink); }
.category-chip { display: inline-flex; gap: 6px; align-items: center; }
.time-list { display: flex; flex-wrap: wrap; gap: 8px; }
.time-pill { display: inline-flex; align-items: center; gap: 7px; padding: 9px 10px 9px 12px; border: 2px solid var(--ink); border-radius: 13px; background: var(--pink-soft); font-size: 13px; font-weight: 900; }
.time-pill button { width: 23px; height: 23px; padding: 0; border: 0; border-radius: 8px; background: var(--ink); color: var(--paper); cursor: pointer; }
.time-adder { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.form-actions { display: grid; grid-template-columns: 1fr 1.5fr; gap: 10px; margin-top: 5px; }

.toast { position: fixed; z-index: 200; left: 50%; bottom: calc(92px + env(safe-area-inset-bottom)); transform: translate(-50%, 20px); width: min(calc(100% - 36px), 460px); padding: 13px 15px; border: 2px solid var(--ink); border-radius: 16px; background: var(--ink); color: #fff; box-shadow: 4px 4px 0 var(--pink); opacity: 0; pointer-events: none; transition: .22s ease; font-size: 13px; font-weight: 800; text-align: center; }
.toast.is-visible { opacity: 1; transform: translate(-50%,0); }
.toast.is-error { background: var(--danger); }

.skeleton { position: relative; overflow: hidden; background: var(--surface-soft); border-radius: 12px; min-height: 18px; }
.skeleton::after { content: ""; position: absolute; inset: 0; transform: translateX(-100%); background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--paper) 75%, transparent), transparent); animation: shimmer 1.2s infinite; }
@keyframes shimmer { to { transform: translateX(100%); } }

.boot { position: fixed; z-index: 500; inset: 0; background: #fff; color: #171721; display: grid; place-content: center; justify-items: center; gap: 12px; transition: opacity .25s, visibility .25s; }
.boot.is-hidden { opacity: 0; visibility: hidden; }
.boot-logo { width: 112px; height: 112px; border: 3px solid #171721; border-radius: 31px; overflow: hidden; box-shadow: 7px 7px 0 #ff2d6f; animation: bootPop .55s cubic-bezier(.2,.8,.2,1) both; }
.boot-logo img { width: 100%; height: 100%; object-fit: cover; }
.boot-word { margin-top: 5px; font-size: 28px; letter-spacing: .12em; font-weight: 950; }
.boot-bar { width: 130px; height: 6px; overflow: hidden; border-radius: 99px; background: #ececf1; }
.boot-bar span { display: block; width: 48%; height: 100%; border-radius: inherit; background: #ff2d6f; animation: loadbar 1s ease-in-out infinite alternate; }
@keyframes bootPop { from { opacity: 0; transform: scale(.75) rotate(-8deg); } to { opacity: 1; transform: none; } }
@keyframes loadbar { from { transform: translateX(-25%); } to { transform: translateX(135%); } }

.error-card { padding: 24px; border: 2px solid var(--ink); border-radius: var(--radius-xl); background: var(--surface); box-shadow: var(--shadow-pink); text-align: center; }
.error-card h2 { margin: 0; font-size: 22px; }
.error-card p { margin: 9px 0 18px; color: var(--muted); line-height: 1.5; font-size: 14px; }

@media (max-width: 380px) {
  .screen { padding-inline: 13px; }
  .topbar { padding-inline: 13px; }
  .hero-card { grid-template-columns: 1fr; }
  .progress-orbit { position: absolute; right: 18px; top: 44px; width: 92px; height: 92px; }
  .progress-orbit::before { width: 64px; height: 64px; }
  .task-card { grid-template-columns: 54px 1fr; }
  .task-actions { grid-column: 2; justify-content: flex-end; }
  .stats-grid { gap: 6px; }
  .stat-card { padding-inline: 5px; }
}

@media (min-width: 561px) {
  body { padding-block: 18px; }
  .app-shell { min-height: calc(100dvh - 36px); border-radius: 28px; overflow: hidden; box-shadow: 0 24px 80px rgba(22,22,30,.15); }
  .bottom-nav { bottom: 18px; border: 2px solid var(--ink); border-radius: 0 0 28px 28px; }
  .sheet { bottom: 18px; border-bottom: 2px solid var(--ink); border-radius: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
