:root {
  --ink: #171c27;
  --ink-soft: #616571;
  --paper: #f3f1e8;
  --surface: #fbfaf6;
  --white: #ffffff;
  --line: #deddd5;
  --purple: #6850ff;
  --purple-soft: #e7e1ff;
  --acid: #d9f65a;
  --coral: #ff725f;
  --coral-soft: #ffe1dc;
  --sky: #bce5ee;
  --sky-dark: #397c89;
  --green: #3b7e62;
  --shadow: 0 18px 55px rgba(23, 28, 39, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --sidebar: 236px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% -20%, rgba(104, 80, 255, .11), transparent 35%),
    var(--paper);
  font: 15px/1.5 "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, select { font: inherit; }
button { color: inherit; }
button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid rgba(104, 80, 255, .24);
  outline-offset: 2px;
}

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.app-shell { min-height: 100vh; min-height: 100dvh; display: grid; grid-template-columns: var(--sidebar) 1fr; }
.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sidebar);
  z-index: 20;
  display: flex;
  flex-direction: column;
  padding: 30px 20px 24px;
  background: #191e29;
  color: #fff;
}
.brand { display: flex; align-items: center; gap: 11px; padding: 0 8px; font: 800 21px/1 "Manrope", sans-serif; letter-spacing: -.5px; }
.brand-mark { position: relative; width: 30px; height: 30px; transform: rotate(-4deg); }
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; border-radius: 50% 50% 45% 55%; }
.brand-mark::before { inset: 1px 10px 6px 0; background: var(--acid); transform: rotate(28deg); }
.brand-mark::after { inset: 10px 0 0 11px; background: var(--coral); transform: rotate(-20deg); }
.side-label { margin: 43px 12px 11px; color: #747b8b; font-size: 10px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; }
.side-nav { display: grid; gap: 6px; }
.nav-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 0;
  border-radius: 12px;
  padding: 12px 13px;
  color: #9da3af;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  transition: .2s ease;
}
.nav-item .icon { width: 19px; height: 19px; }
.nav-item:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-item.active { color: #fff; background: #2c3240; box-shadow: inset 3px 0 var(--acid); }
.side-trip {
  margin-top: auto;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 17px;
  background: rgba(255,255,255,.045);
}
.side-trip-label { color: #8f96a5; font-size: 11px; }
.side-trip-name { margin-top: 3px; font-weight: 700; }
.side-trip-date { color: #b9bec8; font-size: 12px; }
.side-people { display: flex; margin-top: 12px; }
.mini-avatar { width: 27px; height: 27px; margin-left: -6px; border: 2px solid #252b37; border-radius: 50%; display: grid; place-items: center; color: var(--ink); font-size: 9px; font-weight: 800; }
.mini-avatar:first-child { margin-left: 0; }
.mini-avatar.more { background: #343b49 !important; color: #d4d7de; }
.profile { display: flex; align-items: center; gap: 10px; padding: 18px 5px 0; }
.profile-avatar { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: #293125; background: var(--acid); font-weight: 800; }
.profile-name { font-size: 13px; font-weight: 700; }
.profile-role { color: #858c9a; font-size: 11px; }

.main { grid-column: 2; min-width: 0; padding: 30px 42px 60px; }
.topbar { min-height: 56px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.eyebrow { color: var(--purple); font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 3px; font: 800 clamp(28px, 3vw, 38px)/1.12 "Manrope", sans-serif; letter-spacing: -1.3px; }
.top-subtitle { margin: 0; color: var(--ink-soft); }
.top-actions { display: flex; align-items: center; gap: 12px; }
.weather-pill { display: flex; align-items: center; gap: 7px; padding: 9px 13px; border: 1px solid var(--line); border-radius: 99px; background: rgba(255,255,255,.55); color: var(--ink-soft); font-size: 13px; }
.weather-pill .icon { width: 17px; color: #d99e18; }
.top-avatar { width: 39px; height: 39px; display: grid; place-items: center; border: 2px solid var(--surface); border-radius: 50%; background: var(--acid); font-weight: 800; box-shadow: 0 0 0 1px var(--line); }

.page { animation: pageIn .25s ease both; }
@keyframes pageIn { from { opacity: 0; transform: translateY(5px); } }
.dashboard-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(300px, .78fr); gap: 22px; }
.left-stack, .right-stack { display: grid; align-content: start; gap: 22px; }
.card { border: 1px solid rgba(214,213,205,.86); border-radius: var(--radius-lg); background: rgba(251,250,246,.92); box-shadow: 0 8px 30px rgba(23,28,39,.035); }
.card-head { display: flex; align-items: center; justify-content: space-between; padding: 21px 22px 16px; }
.card-title { margin: 0; font: 800 18px/1.2 "Manrope", sans-serif; letter-spacing: -.35px; }
.card-kicker { margin: 4px 0 0; color: var(--ink-soft); font-size: 12px; }
.link-button { display: inline-flex; align-items: center; gap: 5px; padding: 4px; border: 0; background: transparent; color: var(--purple); font-size: 12px; font-weight: 700; cursor: pointer; }
.link-button .icon { width: 15px; transition: transform .2s; }
.link-button:hover .icon { transform: translateX(3px); }

.trip-hero {
  position: relative;
  overflow: hidden;
  min-height: 255px;
  padding: 29px 30px;
  border-radius: var(--radius-xl);
  color: #fff;
  background: #6550f3;
  box-shadow: 0 20px 45px rgba(69,49,179,.22);
}
.trip-hero::before { content: ""; position: absolute; width: 270px; height: 270px; right: -55px; top: -80px; border: 44px solid rgba(255,255,255,.09); border-radius: 50%; }
.trip-hero::after { content: ""; position: absolute; width: 180px; height: 180px; right: 80px; bottom: -130px; border: 35px solid rgba(217,246,90,.16); border-radius: 50%; }
.hero-dots { position: absolute; right: 34px; bottom: 30px; width: 78px; height: 65px; opacity: .42; background-image: radial-gradient(circle, var(--acid) 2px, transparent 2.5px); background-size: 14px 14px; transform: rotate(-8deg); }
.hero-top { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; }
.hero-tag { padding: 6px 10px; border: 1px solid rgba(255,255,255,.2); border-radius: 99px; background: rgba(255,255,255,.1); font-size: 11px; font-weight: 700; letter-spacing: .35px; }
.icon-button { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; color: inherit; background: rgba(255,255,255,.08); cursor: pointer; }
.icon-button .icon { width: 16px; }
.trip-hero h2 { position: relative; z-index: 2; max-width: 480px; margin: 22px 0 15px; font: 800 clamp(29px, 4vw, 43px)/1.05 "Manrope", sans-serif; letter-spacing: -1.7px; }
.trip-meta { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 17px; }
.meta-item { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.83); font-size: 13px; }
.meta-item .icon { width: 17px; }
.hero-bottom { position: relative; z-index: 2; display: flex; align-items: center; gap: 14px; margin-top: 25px; }
.avatar-stack { display: flex; }
.avatar { width: 35px; height: 35px; margin-left: -8px; display: grid; place-items: center; border: 2px solid #6850ff; border-radius: 50%; color: #252a34; font-size: 11px; font-weight: 800; }
.avatar:first-child { margin-left: 0; }
.hero-people { color: rgba(255,255,255,.72); font-size: 12px; }

.countdown { overflow: hidden; display: grid; grid-template-columns: auto 1fr; min-height: 112px; background: var(--acid); border: 0; }
.countdown-number { align-self: center; padding: 0 23px 0 25px; font: 800 48px/1 "Manrope", sans-serif; letter-spacing: -2px; }
.countdown-copy { align-self: center; padding-right: 18px; }
.countdown-label { font-size: 11px; font-weight: 800; letter-spacing: 1.3px; text-transform: uppercase; }
.countdown-text { max-width: 180px; margin-top: 4px; font-size: 13px; font-weight: 600; }

.progress-card { padding: 22px; }
.progress-card-head { display: flex; align-items: flex-start; justify-content: space-between; }
.progress-ring { position: relative; width: 56px; height: 56px; border-radius: 50%; background: conic-gradient(var(--purple) var(--progress), var(--purple-soft) 0); }
.progress-ring::after { content: ""; position: absolute; inset: 6px; border-radius: 50%; background: var(--surface); }
.progress-value { position: absolute; z-index: 2; inset: 0; display: grid; place-items: center; font-size: 11px; font-weight: 800; }
.progress-list { display: grid; gap: 13px; margin-top: 20px; }
.mini-progress-label { display: flex; justify-content: space-between; margin-bottom: 6px; color: var(--ink-soft); font-size: 12px; }
.mini-progress-label strong { color: var(--ink); }
.bar { height: 6px; overflow: hidden; border-radius: 99px; background: #e8e6dd; }
.bar-fill { height: 100%; border-radius: inherit; background: var(--purple); transition: width .3s ease; }
.bar-fill.coral { background: var(--coral); }

.quick-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0 20px 20px; }
.quick-action { display: flex; align-items: center; gap: 10px; min-width: 0; padding: 12px; border: 1px solid var(--line); border-radius: 13px; background: #fff; text-align: left; cursor: pointer; transition: .2s; }
.quick-action:hover { transform: translateY(-2px); border-color: #cbc6ef; box-shadow: 0 7px 16px rgba(23,28,39,.06); }
.quick-icon { flex: 0 0 auto; width: 33px; height: 33px; display: grid; place-items: center; border-radius: 10px; background: var(--purple-soft); color: var(--purple); }
.quick-icon .icon { width: 17px; }
.quick-label { overflow: hidden; font-size: 12px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.quick-hint { color: var(--ink-soft); font-size: 10px; }

.task-list, .event-list { padding: 0 20px 9px; }
.task-row { display: grid; grid-template-columns: 23px 1fr auto; align-items: center; gap: 12px; min-height: 59px; border-top: 1px solid #e8e6de; }
.check-button { position: relative; width: 21px; height: 21px; display: grid; place-items: center; border: 1.5px solid #c2c1bb; border-radius: 7px; color: #fff; background: transparent; cursor: pointer; transition: .18s; }
.check-button::after { content: ""; position: absolute; inset: -10px; }
.check-button .icon { width: 13px; opacity: 0; transform: scale(.5); transition: .18s; }
.check-button.checked { border-color: #4f70df; background: #4f70df; }
.check-button.checked .icon { opacity: 1; transform: scale(1); }
.task-row.done .task-name { color: #989a9e; text-decoration: line-through; }
.task-name { font-size: 13px; font-weight: 600; }
.task-meta { color: var(--ink-soft); font-size: 10px; }
.assignee { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); font-size: 9px; font-weight: 800; }

.event-row { position: relative; display: grid; grid-template-columns: 50px 12px 1fr; gap: 10px; min-height: 65px; }
.event-time { padding-top: 2px; color: var(--ink-soft); font-size: 11px; font-weight: 700; }
.timeline-mark { position: relative; }
.timeline-mark::before { content: ""; position: absolute; left: 5px; top: 8px; bottom: -8px; width: 1px; background: var(--line); }
.event-row:last-child .timeline-mark::before { display: none; }
.timeline-dot { position: absolute; z-index: 2; top: 6px; left: 1px; width: 9px; height: 9px; border-radius: 50%; background: var(--event-color, var(--purple)); box-shadow: 0 0 0 4px var(--surface); }
.event-name { font-size: 13px; font-weight: 700; }
.event-place { color: var(--ink-soft); font-size: 11px; }
.today-empty { padding: 15px 20px 25px; color: var(--ink-soft); font-size: 13px; }

.section-page { max-width: 1180px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.section-title { margin-bottom: 5px; font: 800 clamp(27px, 3vw, 35px)/1.1 "Manrope", sans-serif; letter-spacing: -1px; }
.section-subtitle { max-width: 590px; margin: 0; color: var(--ink-soft); }
.primary-button, .secondary-button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 42px; padding: 0 17px; border-radius: 12px; font-size: 13px; font-weight: 700; cursor: pointer; transition: .2s; }
.primary-button { border: 1px solid var(--ink); color: #fff; background: var(--ink); }
.primary-button:hover { transform: translateY(-1px); background: #2b3240; box-shadow: 0 8px 20px rgba(23,28,39,.16); }
.primary-button.purple { border-color: var(--purple); background: var(--purple); }
.secondary-button { border: 1px solid var(--line); background: var(--surface); }
.secondary-button:hover { border-color: #c9c5e8; }
.primary-button .icon, .secondary-button .icon { width: 16px; }

.tabs { display: inline-flex; gap: 5px; padding: 5px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.46); }
.tab { border: 0; border-radius: 10px; padding: 9px 15px; background: transparent; color: var(--ink-soft); font-size: 12px; font-weight: 700; cursor: pointer; }
.tab.active { color: var(--ink); background: #fff; box-shadow: 0 2px 9px rgba(23,28,39,.08); }
.toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 0 0 18px; }
.toolbar-meta { color: var(--ink-soft); font-size: 12px; }
.toolbar-meta strong { color: var(--ink); }

.packing-layout { display: grid; grid-template-columns: minmax(0, 1fr) 270px; gap: 22px; align-items: start; }
.list-card { overflow: hidden; }
.category-block + .category-block { border-top: 1px solid var(--line); }
.category-head { display: flex; align-items: center; justify-content: space-between; padding: 17px 20px 10px; }
.category-name { display: flex; align-items: center; gap: 9px; font: 800 13px "Manrope", sans-serif; }
.category-dot { width: 8px; height: 8px; border-radius: 50%; }
.category-count { color: var(--ink-soft); font-size: 11px; }
.packing-items { padding: 0 13px 13px; }
.packing-row { display: grid; grid-template-columns: 25px minmax(0,1fr) auto auto; align-items: center; gap: 11px; min-height: 48px; padding: 0 8px; border-radius: 10px; }
.packing-row:hover { background: rgba(243,241,232,.65); }
.packing-name { font-size: 13px; font-weight: 600; }
.packing-row.done .packing-name { color: #97999e; text-decoration: line-through; }
.item-qty { color: var(--ink-soft); font-size: 11px; }
.owner-pill { min-width: 81px; display: inline-flex; align-items: center; gap: 6px; padding: 4px 7px; border: 1px solid var(--line); border-radius: 99px; background: #fff; font-size: 10px; font-weight: 600; }
.owner-pill .assignee { width: 20px; height: 20px; font-size: 7px; }
.claim-button { padding: 5px 9px; border: 1px solid #d9d4ff; border-radius: 8px; color: var(--purple); background: #f6f3ff; font-size: 10px; font-weight: 700; cursor: pointer; }
.row-menu { width: 29px; height: 29px; display: grid; place-items: center; border: 0; border-radius: 7px; background: transparent; color: #93969e; cursor: pointer; }
.row-menu:hover { background: #eeece4; color: var(--ink); }
.row-menu .icon { width: 15px; }

.summary-card { padding: 22px; }
.big-number { margin: 13px 0 3px; font: 800 38px/1 "Manrope", sans-serif; letter-spacing: -1px; }
.big-number-label { color: var(--ink-soft); font-size: 12px; }
.legend { display: grid; gap: 11px; margin-top: 21px; padding-top: 18px; border-top: 1px solid var(--line); }
.legend-row { display: flex; align-items: center; justify-content: space-between; font-size: 12px; }
.legend-label { display: flex; align-items: center; gap: 8px; color: var(--ink-soft); }
.summary-note { margin-top: 17px; padding: 12px; border-radius: 12px; background: var(--purple-soft); color: #5544b3; font-size: 11px; }

.task-board { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: start; }
.task-column { padding: 8px 16px 16px; }
.column-head { display: flex; align-items: center; justify-content: space-between; padding: 10px 5px 13px; }
.column-title { display: flex; align-items: center; gap: 8px; font: 800 14px "Manrope", sans-serif; }
.column-count { display: grid; place-items: center; min-width: 24px; height: 24px; padding: 0 7px; border-radius: 99px; background: #e8e6df; font-size: 10px; font-weight: 800; }
.task-board .task-row { padding: 7px 4px; min-height: 64px; }
.task-board .task-row:first-of-type { border-top: 0; }
.date-badge { padding: 5px 8px; border-radius: 8px; color: #a14437; background: var(--coral-soft); font-size: 10px; font-weight: 700; }
.date-badge.day { color: #5643bd; background: var(--purple-soft); }

.calendar-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 21px; }
.day-button { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 70px; padding: 10px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.48); cursor: pointer; transition: .2s; }
.day-button:hover { border-color: #cfc9ef; }
.day-button.active { color: #fff; border-color: var(--purple); background: var(--purple); box-shadow: 0 10px 25px rgba(104,80,255,.2); }
.day-number { font: 800 23px/1 "Manrope", sans-serif; }
.day-copy { text-align: left; }
.day-name { font-size: 11px; font-weight: 700; }
.day-month { opacity: .65; font-size: 9px; text-transform: uppercase; }
.planning-layout { display: grid; grid-template-columns: minmax(0, 1fr) 290px; gap: 22px; align-items: start; }
.schedule-card { padding: 5px 24px 19px; }
.schedule-row { display: grid; grid-template-columns: 69px 20px minmax(0, 1fr) auto; gap: 11px; min-height: 98px; }
.schedule-time { padding-top: 25px; font-size: 12px; font-weight: 800; }
.schedule-line { position: relative; }
.schedule-line::before { content: ""; position: absolute; left: 9px; top: 34px; bottom: -22px; width: 1px; background: var(--line); }
.schedule-row:last-child .schedule-line::before { display: none; }
.schedule-dot { position: absolute; z-index: 2; top: 30px; left: 5px; width: 9px; height: 9px; border-radius: 50%; background: var(--event-color); box-shadow: 0 0 0 5px var(--surface); }
.schedule-content { align-self: center; padding: 18px 0; }
.schedule-name { font: 800 14px "Manrope", sans-serif; }
.schedule-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; color: var(--ink-soft); font-size: 11px; }
.schedule-meta span { display: inline-flex; align-items: center; gap: 4px; }
.schedule-meta .icon { width: 13px; }
.schedule-type { align-self: center; padding: 5px 8px; border-radius: 8px; background: #efede6; color: var(--ink-soft); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.day-overview { overflow: hidden; }
.day-visual { position: relative; min-height: 138px; padding: 23px; color: #fff; background: #1f4852; }
.day-visual::before { content: ""; position: absolute; width: 160px; height: 160px; right: -72px; bottom: -75px; border: 27px solid rgba(188,229,238,.22); border-radius: 50%; }
.day-visual .icon { width: 28px; height: 28px; color: var(--sky); }
.day-visual h3 { position: relative; margin: 17px 0 2px; font: 800 21px "Manrope", sans-serif; }
.day-visual p { position: relative; margin: 0; color: rgba(255,255,255,.7); font-size: 12px; }
.day-facts { display: grid; gap: 14px; padding: 20px 22px; }
.fact { display: flex; align-items: center; justify-content: space-between; font-size: 12px; }
.fact span { color: var(--ink-soft); }
.fact strong { font-size: 12px; }

.trip-page-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(300px,.7fr); gap: 22px; align-items: start; }
.trip-details { padding: 25px; }
.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; margin-top: 22px; }
.detail-tile { padding: 17px; border-radius: 15px; background: #f1efe7; }
.detail-icon { width: 33px; height: 33px; display: grid; place-items: center; margin-bottom: 17px; border-radius: 10px; color: var(--purple); background: var(--purple-soft); }
.detail-icon .icon { width: 17px; }
.detail-label { color: var(--ink-soft); font-size: 10px; }
.detail-value { margin-top: 3px; font-weight: 700; }
.people-card { padding: 22px; }
.person-row { display: flex; align-items: center; gap: 11px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.person-row:last-child { border-bottom: 0; }
.person-row .assignee { width: 36px; height: 36px; font-size: 10px; }
.person-name { font-size: 13px; font-weight: 700; }
.person-role { color: var(--ink-soft); font-size: 10px; }
.you-tag { margin-left: auto; padding: 3px 7px; border-radius: 99px; background: var(--acid); font-size: 9px; font-weight: 800; }

.modal-backdrop { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(18,23,32,.48); backdrop-filter: blur(5px); animation: fadeIn .18s ease; }
@keyframes fadeIn { from { opacity: 0; } }
.modal { width: min(470px, 100%); padding: 24px; border-radius: 22px; background: var(--surface); box-shadow: 0 28px 80px rgba(0,0,0,.25); animation: modalIn .2s ease; }
@keyframes modalIn { from { transform: translateY(12px) scale(.98); opacity: 0; } }
.modal-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 21px; }
.modal-title { margin: 0; font: 800 21px "Manrope", sans-serif; }
.modal-subtitle { margin: 4px 0 0; color: var(--ink-soft); font-size: 12px; }
.modal-close { width: 32px; height: 32px; display: grid; place-items: center; border: 0; border-radius: 9px; background: #ebe9e1; cursor: pointer; }
.modal-close .icon { width: 16px; }
.form-grid { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label { font-size: 11px; font-weight: 700; }
.field input, .field select { width: 100%; min-height: 43px; padding: 0 12px; border: 1px solid var(--line); border-radius: 11px; color: var(--ink); background: #fff; }
.modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 21px; }
.toast { position: fixed; z-index: 150; right: 25px; bottom: 25px; display: flex; align-items: center; gap: 10px; padding: 13px 17px; border-radius: 13px; color: #fff; background: var(--ink); box-shadow: var(--shadow); font-size: 12px; font-weight: 600; animation: toastIn .25s ease both; }
@keyframes toastIn { from { opacity: 0; transform: translateY(10px); } }
.toast-check { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--acid); }
.toast-check .icon { width: 13px; }

.mobile-nav { display: none; }
.empty-state { padding: 42px 20px; text-align: center; color: var(--ink-soft); }
.empty-state .icon { width: 32px; height: 32px; margin-bottom: 8px; color: #aaa7a0; }

@media (max-width: 1020px) {
  :root { --sidebar: 210px; }
  .main { padding: 28px 25px 55px; }
  .dashboard-grid, .packing-layout, .planning-layout, .trip-page-grid { grid-template-columns: 1fr; }
  .right-stack { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .right-stack .countdown { grid-column: 1 / -1; }
  .packing-layout > aside, .planning-layout > aside { order: -1; }
  .summary-card { display: grid; grid-template-columns: 1fr 1fr; column-gap: 24px; }
  .summary-card .card-title, .summary-card .big-number, .summary-card .big-number-label { grid-column: 1; }
  .summary-card .legend { grid-column: 2; grid-row: 1 / span 3; margin-top: 0; padding: 0 0 0 22px; border-top: 0; border-left: 1px solid var(--line); }
  .summary-note { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body { background: var(--paper); }
  .app-shell { display: block; }
  .sidebar { display: none; }
  .main { padding: 19px 16px 96px; }
  .topbar { min-height: 48px; margin-bottom: 20px; }
  .topbar .eyebrow { display: none; }
  h1 { font-size: 27px; letter-spacing: -.8px; }
  .top-subtitle { font-size: 12px; }
  .weather-pill { display: none; }
  .dashboard-grid { display: block; }
  .left-stack, .right-stack { display: grid; grid-template-columns: 1fr; gap: 16px; }
  .right-stack { margin-top: 16px; }
  .trip-hero { min-height: 265px; padding: 24px; border-radius: 23px; }
  .trip-hero h2 { max-width: 280px; margin-top: 31px; font-size: 34px; }
  .hero-dots { right: 17px; bottom: 15px; }
  .countdown { grid-column: auto !important; }
  .quick-actions { grid-template-columns: 1fr; }
  .quick-action { min-height: 56px; }
  .right-stack .progress-card { order: 1; }
  .right-stack .countdown { order: 2; }
  .right-stack .card:last-child { order: 3; }
  .section-head { align-items: flex-start; }
  .section-head .primary-button { width: 42px; padding: 0; font-size: 0; }
  .toolbar { align-items: flex-start; flex-direction: column; }
  .tabs { width: 100%; }
  .tab { flex: 1; }
  .packing-layout, .planning-layout, .trip-page-grid { grid-template-columns: minmax(0,1fr); }
  .packing-row { grid-template-columns: 24px minmax(0,1fr) auto; padding: 4px; }
  .packing-row .row-menu { display: none; }
  .packing-name { font-size: 12px; }
  .owner-pill { min-width: 0; }
  .owner-pill span { display: none; }
  .task-board { grid-template-columns: 1fr; }
  .calendar-strip { gap: 7px; overflow-x: auto; padding-bottom: 5px; scroll-snap-type: x mandatory; }
  .day-button { min-width: 116px; scroll-snap-align: start; }
  .schedule-card { padding: 5px 13px 15px; }
  .schedule-row { grid-template-columns: 53px 18px minmax(0,1fr); }
  .schedule-type { display: none; }
  .schedule-time { font-size: 11px; }
  .detail-grid { grid-template-columns: 1fr; }
  .right-stack { grid-template-columns: 1fr; }
  .summary-card { display: block; }
  .summary-card .legend { margin-top: 21px; padding: 18px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .mobile-nav { position: fixed; z-index: 60; left: 10px; right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); display: grid; grid-template-columns: repeat(5, 1fr); padding: 6px; border: 1px solid rgba(255,255,255,.08); border-radius: 18px; color: #949aa7; background: rgba(25,30,41,.96); box-shadow: 0 16px 45px rgba(0,0,0,.26); backdrop-filter: blur(12px); }
  .mobile-nav .nav-item { justify-content: center; min-width: 0; padding: 9px 4px; border-radius: 12px; }
  .mobile-nav .nav-item span { display: none; }
  .mobile-nav .nav-item.active { box-shadow: none; color: var(--acid); background: #313745; }
  .toast { left: 16px; right: 16px; bottom: 88px; }
}

@media (max-width: 390px) {
  .main { padding-left: 12px; padding-right: 12px; }
  .trip-meta { gap: 10px; }
  .trip-meta .meta-item:last-child { width: 100%; }
  .card-head { padding-left: 17px; padding-right: 17px; }
  .task-list, .event-list { padding-left: 16px; padding-right: 16px; }
}

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

/* v2 — trip-first information architecture */
.brand-button { width: fit-content; border: 0; color: #fff; background: transparent; cursor: pointer; }
.all-trips-button { display: inline-flex; align-items: center; gap: 7px; width: fit-content; margin: 33px 8px 15px; padding: 0; border: 0; color: #8f96a5; background: transparent; font-size: 11px; font-weight: 700; cursor: pointer; }
.all-trips-button:hover { color: #fff; }
.all-trips-button .icon { width: 14px; }
.back-icon { transform: rotate(180deg); }
.active-trip-switcher { display: grid; grid-template-columns: 42px minmax(0,1fr) 16px; align-items: center; gap: 10px; width: 100%; padding: 10px; border: 1px solid rgba(255,255,255,.09); border-radius: 14px; color: #fff; background: rgba(255,255,255,.05); text-align: left; cursor: pointer; }
.active-trip-switcher > .icon { width: 14px; color: #767d8b; }
.active-trip-switcher span:nth-child(2) { min-width: 0; }
.active-trip-switcher small, .active-trip-switcher strong, .active-trip-switcher em { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.active-trip-switcher small { color: #767d8b; font-size: 8px; font-weight: 800; letter-spacing: .8px; }
.active-trip-switcher strong { margin: 2px 0; font-size: 12px; }
.active-trip-switcher em { color: #aeb3be; font-size: 9px; font-style: normal; }
.trip-switch-art { width: 42px; height: 42px; display: grid; place-items: center; overflow: hidden; border-radius: 10px; color: #fff; }
.trip-switch-art .icon { width: 19px; }
.trip-sidebar .side-label { margin-top: 31px; }
.trip-sidebar .side-prep { margin-top: auto; padding: 14px; border: 1px solid rgba(255,255,255,.08); border-radius: 14px; background: rgba(255,255,255,.035); }
.side-prep-top { display: flex; justify-content: space-between; color: #b7bcc7; font-size: 10px; font-weight: 700; }
.side-prep-top strong { color: var(--acid); }
.bar.dark { height: 4px; margin: 9px 0; background: #323845; }
.side-prep small { color: #737b8a; font-size: 9px; }
.trip-chip { display: inline-flex; align-items: center; gap: 6px; min-height: 39px; padding: 0 12px; border: 1px solid var(--line); border-radius: 99px; color: var(--ink-soft); background: rgba(255,255,255,.5); font-size: 11px; font-weight: 600; cursor: pointer; }
.trip-chip .icon { width: 14px; }

.trips-home { min-height: 100vh; min-height: 100dvh; background: var(--paper); }
.home-topbar { display: flex; align-items: center; justify-content: space-between; max-width: 1240px; margin: auto; padding: 29px 35px; }
.home-topbar .brand { color: var(--ink); }
.home-profile { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: 12px; font-weight: 600; }
.home-main { max-width: 1240px; margin: auto; padding: 52px 35px 80px; }
.home-intro { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 31px; }
.home-intro h1 { margin: 6px 0 8px; font-size: clamp(38px,5vw,62px); letter-spacing: -2.5px; }
.home-intro p { margin: 0; color: var(--ink-soft); }
.trip-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 21px; }
.trip-card { overflow: hidden; border: 1px solid rgba(210,209,202,.8); border-radius: 25px; background: var(--surface); box-shadow: 0 12px 34px rgba(23,28,39,.05); animation: tripCardIn .4s ease both; animation-delay: var(--delay); transition: transform .22s, box-shadow .22s; }
@keyframes tripCardIn { from { opacity: 0; transform: translateY(12px); } }
.trip-card:hover { transform: translateY(-5px); box-shadow: 0 21px 46px rgba(23,28,39,.11); }
.trip-card-art { position: relative; overflow: hidden; min-height: 155px; padding: 20px; color: #fff; background: var(--trip-bg); }
.trip-card-art::before, .trip-card-art::after { content: ""; position: absolute; border-radius: 50%; }
.trip-card-art::before { width: 170px; height: 170px; right: -56px; top: -85px; border: 30px solid rgba(255,255,255,.11); }
.trip-card-art::after { width: 95px; height: 95px; left: -40px; bottom: -48px; border: 20px solid rgba(255,255,255,.08); }
.trip-theme-purple { --trip-bg: #6850f3; }
.trip-theme-coral { --trip-bg: #e7624f; }
.trip-theme-green { --trip-bg: #245f55; }
.trip-switch-art.trip-theme-purple, .day-visual.trip-theme-purple { background-color: #6850f3; }
.trip-switch-art.trip-theme-coral, .day-visual.trip-theme-coral { background-color: #e7624f; }
.trip-switch-art.trip-theme-green, .day-visual.trip-theme-green { background-color: #245f55; }
.trip-card-date { position: relative; z-index: 2; padding: 6px 9px; border: 1px solid rgba(255,255,255,.2); border-radius: 99px; background: rgba(255,255,255,.1); font-size: 9px; font-weight: 800; letter-spacing: .7px; }
.active-trip-tag { position: absolute; z-index: 2; right: 18px; top: 18px; padding: 6px 9px; border-radius: 99px; color: var(--ink); background: var(--acid); font-size: 8px; font-weight: 900; letter-spacing: .7px; }
.trip-card-location { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 18px; display: flex; align-items: center; gap: 6px; font: 800 19px/1.2 "Manrope",sans-serif; }
.trip-card-location .icon { flex: 0 0 auto; width: 17px; }
.trip-card-body { padding: 20px; }
.trip-kind { color: var(--purple); font-size: 9px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.trip-card h2 { margin: 5px 0 15px; font: 800 20px/1.25 "Manrope",sans-serif; letter-spacing: -.6px; }
.trip-card-people { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: 10px; }
.trip-card-people .avatar { width: 28px; height: 28px; font-size: 8px; }
.trip-card-progress { margin-top: 19px; padding-top: 16px; border-top: 1px solid var(--line); }
.trip-card-progress > div:first-child { display: flex; justify-content: space-between; margin-bottom: 7px; color: var(--ink-soft); font-size: 10px; }
.trip-card-progress strong { color: var(--ink); }
.trip-card-next { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 17px; padding: 10px 10px 10px 12px; border-radius: 12px; background: #f0eee7; }
.trip-card-next > span { min-width: 0; display: flex; align-items: center; gap: 6px; overflow: hidden; color: var(--ink-soft); font-size: 9px; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.trip-card-next .icon { flex: 0 0 auto; width: 13px; }
.round-arrow { flex: 0 0 auto; width: 31px; height: 31px; display: grid; place-items: center; border: 0; border-radius: 50%; color: #fff; background: var(--ink); cursor: pointer; transition: .2s; }
.round-arrow:hover { transform: translateX(2px); background: var(--purple); }
.round-arrow .icon { width: 14px; }
.new-trip-card { min-height: 420px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 1.5px dashed #c9c7bf; border-radius: 25px; color: var(--ink); background: rgba(255,255,255,.25); cursor: pointer; transition: .2s; }
.new-trip-card:hover { border-color: var(--purple); background: rgba(255,255,255,.55); }
.new-trip-icon { width: 47px; height: 47px; display: grid; place-items: center; margin-bottom: 9px; border-radius: 15px; color: var(--purple); background: var(--purple-soft); }
.new-trip-icon .icon { width: 21px; }
.new-trip-card strong { font: 800 14px "Manrope",sans-serif; }
.new-trip-card > span:last-child { color: var(--ink-soft); font-size: 10px; }

.today-label { display: flex; align-items: center; gap: 6px; margin-bottom: 7px; color: var(--purple); font-size: 10px; font-weight: 800; letter-spacing: 1px; }
.today-label .icon { width: 14px; }
.planning-head { align-items: center; }
.planning-principle { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; padding: 12px 15px; border: 1px solid #d7d2f5; border-radius: 14px; color: #5446aa; background: #f0edff; }
.planning-principle > .icon { flex: 0 0 auto; width: 18px; }
.planning-principle div { min-width: 0; display: flex; flex-direction: column; }
.planning-principle strong { font-size: 11px; }
.planning-principle div span { color: #756bb1; font-size: 10px; }
.principle-example { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; color: #6256aa; font-size: 9px; font-weight: 700; white-space: nowrap; }
.tiny-check { width: 21px; height: 21px; display: grid; place-items: center; border-radius: 7px; color: #fff; background: var(--purple); }
.tiny-check .icon { width: 12px; }
.unified-planning { grid-template-columns: minmax(0,1fr) 275px; }
.unified-row { grid-template-columns: 69px 20px minmax(0,1fr) auto; }
.unified-row.done .schedule-name { color: #8d9096; text-decoration: line-through; }
.plan-check { align-self: center; min-width: 78px; display: inline-flex; align-items: center; justify-content: center; gap: 5px; padding: 7px 9px; border: 1px solid #dbd6fb; border-radius: 9px; color: var(--purple); background: #f5f2ff; font-size: 9px; font-weight: 800; cursor: pointer; }
.plan-check .icon { width: 12px; }
.plan-check.checked { color: #fff; border-color: var(--green); background: var(--green); }
.planned-label { align-self: center; padding: 5px 8px; border-radius: 8px; color: #8b8d93; background: #efede6; font-size: 8px; font-weight: 700; text-transform: uppercase; }

.prep-hero { display: grid; grid-template-columns: auto minmax(0,1fr) auto auto; align-items: center; gap: 22px; margin-bottom: 20px; padding: 23px 25px; }
.prep-ring { position: relative; width: 68px; height: 68px; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--purple) var(--progress), var(--purple-soft) 0); }
.prep-ring::after { content: ""; position: absolute; inset: 7px; border-radius: 50%; background: var(--surface); }
.prep-ring strong { position: relative; z-index: 2; font: 800 15px "Manrope",sans-serif; }
.prep-hero h3 { margin: 3px 0 2px; font: 800 19px "Manrope",sans-serif; }
.prep-hero p { margin: 0; color: var(--ink-soft); font-size: 11px; }
.prep-stat { min-width: 100px; padding-left: 20px; border-left: 1px solid var(--line); }
.prep-stat strong, .prep-stat span { display: block; }
.prep-stat strong { font: 800 20px "Manrope",sans-serif; }
.prep-stat span { color: var(--ink-soft); font-size: 9px; }
.preparation-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: 20px; align-items: start; }
.prep-task-card, .prep-pack-card { overflow: hidden; }
.prep-task-card .task-list { padding-bottom: 0; }
.prep-task-card .task-row { min-height: 66px; }
.card-add-button { width: calc(100% - 40px); min-height: 41px; display: flex; align-items: center; justify-content: center; gap: 6px; margin: 10px 20px 20px; border: 1px dashed #cfccc3; border-radius: 11px; color: var(--ink-soft); background: transparent; font-size: 10px; font-weight: 700; cursor: pointer; }
.card-add-button:hover { color: var(--purple); border-color: var(--purple); }
.card-add-button .icon { width: 14px; }
.icon-add { width: 33px; height: 33px; display: grid; place-items: center; border: 0; border-radius: 10px; color: #fff; background: var(--ink); cursor: pointer; }
.icon-add .icon { width: 15px; }
.list-switch { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin: 0 18px 10px; padding: 4px; border-radius: 12px; background: #eceae2; }
.list-switch button { display: flex; align-items: center; justify-content: space-between; min-height: 34px; padding: 0 10px; border: 0; border-radius: 9px; color: var(--ink-soft); background: transparent; font-size: 10px; font-weight: 700; cursor: pointer; }
.list-switch button.active { color: var(--ink); background: #fff; box-shadow: 0 2px 7px rgba(23,28,39,.07); }
.list-switch button span { min-width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; color: var(--purple); background: #eeebff; font-size: 8px; }
.compact-packing .category-head { padding-top: 12px; }
.compact-packing .packing-row { grid-template-columns: 25px minmax(0,1fr) auto; }
.field-hint { color: var(--ink-soft); font-size: 9px; }

@media (max-width: 1050px) {
  .trip-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .preparation-grid, .unified-planning { grid-template-columns: 1fr; }
  .unified-planning > aside { order: -1; }
  .prep-hero { grid-template-columns: auto 1fr auto; }
  .prep-hero .prep-stat:last-child { display: none; }
}

@media (max-width: 760px) {
  .home-topbar { padding: 21px 19px; }
  .home-main { padding: 31px 16px 80px; }
  .home-intro { align-items: flex-start; }
  .home-intro h1 { font-size: 39px; letter-spacing: -1.7px; }
  .home-intro p { max-width: 240px; font-size: 12px; }
  .home-intro .primary-button { width: 43px; padding: 0; font-size: 0; }
  .trip-grid { grid-template-columns: 1fr; }
  .trip-card-art { min-height: 143px; }
  .new-trip-card { min-height: 170px; }
  .trip-chip { display: none; }
  .mobile-nav.trip-nav { grid-template-columns: repeat(3,1fr); }
  .mobile-nav.trip-nav .nav-item span { display: block; margin-top: 2px; font-size: 8px; }
  .mobile-nav.trip-nav .nav-item { flex-direction: column; gap: 0; }
  .planning-principle { align-items: flex-start; }
  .principle-example { display: none; }
  .calendar-strip { grid-template-columns: repeat(4,1fr); }
  .unified-row { grid-template-columns: 48px 17px minmax(0,1fr) auto; }
  .unified-row .plan-check { min-width: 31px; width: 31px; height: 31px; padding: 0; }
  .unified-row .plan-check span { display: none; }
  .unified-row .planned-label { display: none; }
  .prep-hero { grid-template-columns: auto 1fr; gap: 14px; padding: 19px; }
  .prep-hero .prep-stat { display: none; }
  .prep-ring { width: 58px; height: 58px; }
  .preparation-grid { grid-template-columns: 1fr; }
  .compact-packing .packing-row { grid-template-columns: 24px minmax(0,1fr) auto; }
}

@media (max-width: 390px) {
  .home-profile span { display: none; }
  .trip-card-body { padding: 18px; }
  .planning-principle div span { display: none; }
  .unified-row { grid-template-columns: 43px 15px minmax(0,1fr) auto; }
  .schedule-meta span:nth-child(2) { display: none; }
}

/* v3 — mobile-first focus, continuous planning, sharing and people */
.profile-trigger, .profile-button, .avatar-button { border: 0; cursor: pointer; }
.profile-trigger { background: transparent; }
.profile-button { width: 100%; color: #fff; background: transparent; text-align: left; }
.avatar-button { padding: 0; }
.trip-card-art.has-cover, .trip-switch-art.has-cover { background-position: center; background-size: cover; }

.trip-cover-hero { position: relative; overflow: hidden; min-height: 220px; display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 14px; padding: 25px; border-radius: 24px; color: #fff; background-color: var(--trip-bg); background-position: center; background-size: cover; box-shadow: 0 15px 38px rgba(23,28,39,.12); }
.trip-cover-hero::before, .trip-cover-hero::after { content: ""; position: absolute; border-radius: 50%; }
.trip-cover-hero::before { width: 230px; height: 230px; right: -80px; top: -100px; border: 38px solid rgba(255,255,255,.1); }
.trip-cover-hero::after { width: 140px; height: 140px; left: -80px; bottom: -85px; border: 25px solid rgba(217,246,90,.12); }
.trip-cover-hero.has-cover::before, .trip-cover-hero.has-cover::after { display: none; }
.cover-content, .cover-actions { position: relative; z-index: 2; }
.cover-content > span { font-size: 9px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; }
.cover-content h2 { margin: 7px 0 12px; font: 800 29px/1.08 "Manrope",sans-serif; letter-spacing: -1px; }
.cover-people { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.75); font-size: 10px; }
.cover-people .avatar { width: 29px; height: 29px; font-size: 8px; }
.cover-actions { display: flex; gap: 8px; }
.cover-actions button { display: inline-flex; align-items: center; gap: 6px; min-height: 36px; padding: 0 11px; border: 1px solid rgba(255,255,255,.24); border-radius: 10px; color: #fff; background: rgba(18,23,32,.25); font-size: 9px; font-weight: 700; cursor: pointer; backdrop-filter: blur(8px); }
.cover-actions .icon { width: 14px; }

.planning-jumpbar { position: sticky; z-index: 32; top: 0; display: flex; gap: 7px; margin: 0 -4px 22px; padding: 9px 4px; background: rgba(243,241,232,.94); backdrop-filter: blur(12px); }
.day-jump { flex: 1; min-width: 0; min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 5px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); cursor: pointer; transition: .2s; }
.day-jump strong { font: 800 16px "Manrope",sans-serif; }
.day-jump span { color: var(--ink-soft); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.day-jump.active { color: #fff; border-color: var(--purple); background: var(--purple); box-shadow: 0 6px 16px rgba(104,80,255,.18); }
.day-jump.active span { color: rgba(255,255,255,.72); }
.continuous-planning { display: grid; gap: 26px; }
.continuous-day { scroll-margin-top: 68px; }
.sticky-day-header { position: sticky; z-index: 28; top: 66px; min-height: 70px; display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 12px; margin: 0 -2px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 16px; background: rgba(251,250,246,.96); box-shadow: 0 8px 24px rgba(23,28,39,.07); backdrop-filter: blur(12px); }
.sticky-date { display: flex; align-items: center; gap: 7px; padding-right: 12px; border-right: 1px solid var(--line); }
.sticky-date > strong { font: 800 27px/1 "Manrope",sans-serif; letter-spacing: -1px; }
.sticky-date > span { color: var(--purple); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.sticky-date small { display: block; color: var(--ink-soft); font-size: 8px; font-weight: 600; }
.sticky-title { min-width: 0; }
.sticky-title h2 { overflow: hidden; margin: 0; font: 800 15px/1.25 "Manrope",sans-serif; text-overflow: ellipsis; white-space: nowrap; }
.sticky-title span { display: block; overflow: hidden; margin-top: 2px; color: var(--ink-soft); font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.sticky-day-header > button { width: 34px; height: 34px; display: grid; place-items: center; border: 0; border-radius: 10px; color: var(--purple); background: var(--purple-soft); cursor: pointer; }
.sticky-day-header > button .icon { width: 15px; }
.day-summary { margin: 12px 8px 10px; color: var(--ink-soft); font-size: 11px; }
.day-timeline { padding: 3px 19px 7px; }
.day-action-summary { width: fit-content; display: flex; align-items: center; gap: 5px; margin: 8px 8px 0 auto; color: var(--ink-soft); font-size: 9px; }
.day-action-summary .icon { width: 13px; color: var(--green); }

.prep-invite { display: inline-flex; align-items: center; gap: 6px; min-height: 38px; padding: 0 12px; border: 1px solid #ddd8fc; border-radius: 10px; color: var(--purple); background: #f6f3ff; font-size: 9px; font-weight: 800; cursor: pointer; }
.prep-invite .icon { width: 14px; }
.focus-list .task-row { min-height: 68px; }
.individual-task { grid-template-columns: 23px minmax(0,1fr) auto; }
.people-progress { display: flex; align-items: center; gap: 5px; padding: 5px 7px; border: 1px solid var(--line); border-radius: 10px; background: #fff; cursor: pointer; }
.people-progress .avatar-stack { display: flex; }
.person-dot { width: 21px; height: 21px; display: grid; place-items: center; margin-left: -5px; border: 2px solid #fff; border-radius: 50%; color: var(--ink); background: var(--dot); font-size: 6px; font-style: normal; font-weight: 900; opacity: .45; }
.person-dot:first-child { margin-left: 0; }
.person-dot.done { opacity: 1; box-shadow: inset 0 0 0 2px var(--green); }
.people-progress strong { font-size: 8px; }
.completed-toggle { width: calc(100% - 40px); display: flex; align-items: center; justify-content: center; gap: 5px; margin: 7px 20px 0; padding: 8px; border: 0; color: var(--ink-soft); background: transparent; font-size: 9px; font-weight: 700; cursor: pointer; }
.completed-toggle .icon { width: 12px; }
.focus-empty { min-height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 25px; color: var(--ink-soft); text-align: center; }
.focus-empty > .icon { width: 28px; height: 28px; margin-bottom: 9px; color: var(--green); }
.focus-empty strong { color: var(--ink); font: 800 13px "Manrope",sans-serif; }
.focus-empty span { margin-top: 3px; font-size: 9px; }
.pack-focus-bar { display: flex; align-items: center; justify-content: space-between; padding: 4px 20px 9px; color: var(--ink-soft); font-size: 9px; }
.pack-focus-bar button { border: 0; color: var(--purple); background: transparent; font-size: 9px; font-weight: 800; cursor: pointer; }
.packed-away { width: calc(100% - 36px); display: flex; align-items: center; gap: 6px; margin: 8px 18px 18px; padding: 11px 12px; border: 0; border-radius: 10px; color: var(--ink-soft); background: #efede6; font-size: 9px; cursor: pointer; }
.packed-away .icon { width: 13px; color: var(--green); }
.packed-away span { margin-left: auto; color: var(--purple); font-weight: 800; }

.mobile-sheet { position: relative; }
.sheet-handle { display: none; }
.account-card { display: flex; align-items: center; gap: 11px; padding: 14px; border-radius: 15px; background: #efede6; }
.account-avatar { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 50%; background: var(--acid); font-weight: 800; }
.account-card > div:nth-child(2) { min-width: 0; flex: 1; }
.account-card strong, .account-card span { display: block; }
.account-card strong { font-size: 12px; }
.account-card span { overflow: hidden; color: var(--ink-soft); font-size: 9px; text-overflow: ellipsis; }
.login-badge { flex: 0 0 auto; padding: 4px 7px; border-radius: 99px; color: var(--green) !important; background: #dceee4; font-size: 7px !important; font-weight: 900; }
.sheet-menu { display: grid; margin-top: 15px; border-top: 1px solid var(--line); }
.sheet-menu button { display: grid; grid-template-columns: 32px minmax(0,1fr) 16px; align-items: center; gap: 9px; min-height: 62px; padding: 0 5px; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; }
.sheet-menu button > .icon { width: 17px; color: var(--purple); }
.sheet-menu button > .icon:last-child { width: 13px; color: #aaa; }
.sheet-menu strong, .sheet-menu small { display: block; }
.sheet-menu strong { font-size: 11px; }
.sheet-menu small { color: var(--ink-soft); font-size: 8px; }
.sheet-menu .danger-row { grid-template-columns: 32px 1fr; color: #a6493b; }
.sheet-menu .danger-row > .icon { color: #a6493b; }
.friends-list { max-height: 290px; overflow: auto; }
.friend-row { display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: 10px; min-height: 58px; border-bottom: 1px solid var(--line); }
.friend-row .assignee { width: 34px; height: 34px; }
.friend-row strong, .friend-row span { display: block; }
.friend-row strong { font-size: 11px; }
.friend-row div span { color: var(--ink-soft); font-size: 8px; }
.friend-status { color: var(--green); font-size: 7px !important; font-weight: 900; letter-spacing: .5px; }
.inline-add-friend { display: grid; grid-template-columns: 1fr 42px; gap: 7px; margin-top: 14px; }
.inline-add-friend input { min-width: 0; height: 42px; padding: 0 11px; border: 1px solid var(--line); border-radius: 10px; }
.inline-add-friend button { display: grid; place-items: center; border: 0; border-radius: 10px; color: #fff; background: var(--ink); cursor: pointer; }
.inline-add-friend .icon { width: 16px; }
.whatsapp-outline, .whatsapp-button { min-height: 44px; display: flex; align-items: center; justify-content: center; gap: 8px; border-radius: 11px; font-size: 10px; font-weight: 800; text-decoration: none; cursor: pointer; }
.whatsapp-outline { width: 100%; margin-top: 9px; border: 1px solid #bfe2c9; color: #257145; background: #eef9f1; }
.whatsapp-button { color: #fff; background: #20a956; }
.whatsapp-mark { width: 21px; height: 21px; display: grid; place-items: center; border: 1.5px solid currentColor; border-radius: 50%; font-size: 9px; font-weight: 900; }
.share-visual { display: flex; align-items: center; gap: 11px; margin-bottom: 15px; padding: 13px; border-radius: 14px; background: #efede6; }
.share-trip-icon { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 12px; color: #fff; background-color: var(--trip-bg); }
.share-trip-icon .icon { width: 20px; }
.share-visual strong, .share-visual span { display: block; }
.share-visual strong { font-size: 12px; }
.share-visual div span { color: var(--ink-soft); font-size: 8px; }
.invite-link { display: grid; grid-template-columns: 1fr 42px; gap: 6px; margin-top: 9px; }
.invite-link input { min-width: 0; height: 42px; padding: 0 10px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink-soft); background: #fff; font-size: 8px; }
.invite-link button { display: grid; place-items: center; border: 0; border-radius: 10px; color: var(--purple); background: var(--purple-soft); cursor: pointer; }
.invite-link .icon { width: 15px; }
.share-note { margin: 11px 2px 0; color: var(--ink-soft); font-size: 8px; }
.person-completions { display: grid; }
.person-completion { min-height: 59px; display: flex; align-items: center; justify-content: space-between; padding: 0 3px; border: 0; border-bottom: 1px solid var(--line); background: transparent; cursor: pointer; }
.person-completion > span:first-child { display: flex; align-items: center; gap: 10px; text-align: left; }
.person-completion .assignee { width: 35px; height: 35px; }
.person-completion strong, .person-completion small { display: block; }
.person-completion strong { font-size: 10px; }
.person-completion small { color: var(--ink-soft); font-size: 8px; }
.person-check { width: 26px; height: 26px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 8px; color: transparent; }
.person-check .icon { width: 13px; }
.person-completion.done .person-check { color: #fff; border-color: var(--green); background: var(--green); }

.login-page { position: relative; overflow: hidden; min-height: 100vh; min-height: 100dvh; display: grid; place-items: center; padding: 22px; color: #fff; background: #1a1f2a; }
.login-orbit { position: absolute; border: 40px solid rgba(104,80,255,.2); border-radius: 50%; }
.login-orbit.one { width: 330px; height: 330px; right: -150px; top: -110px; }
.login-orbit.two { width: 230px; height: 230px; left: -130px; bottom: -90px; border-color: rgba(217,246,90,.1); }
.login-card { position: relative; z-index: 2; width: min(400px,100%); }
.login-copy { margin: 70px 0 33px; }
.login-copy > span { color: var(--acid); font-size: 9px; font-weight: 900; letter-spacing: 1.3px; }
.login-copy h1 { margin: 9px 0 12px; font-size: 42px; letter-spacing: -2px; }
.login-copy p { max-width: 330px; color: #aeb3be; font-size: 11px; }
.login-page .field { margin-bottom: 12px; }
.login-page .field label { color: #b9bec8; }
.login-page .field input { border-color: #373e4c; color: #fff; background: #252b37; }
.login-submit { width: 100%; margin-top: 5px; color: var(--ink); border-color: var(--acid); background: var(--acid); }
.login-fineprint { margin: 14px 8px 0; color: #777f8d; font-size: 8px; text-align: center; }
.google-login { display: flex; align-items: center; justify-content: center; gap: 10px; }
.google-login[aria-busy="true"] { opacity: .72; cursor: wait; }
.google-mark { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; color: #3568d4; background: #fff; font: 900 13px Arial,sans-serif; }
.loading-card .brand { margin-bottom: 76px; }
.remote-loading { min-height: 126px; display: flex; align-items: center; justify-content: center; gap: 14px; color: #fff; }
.remote-loading.compact { min-height: 150px; flex-direction: column; color: var(--ink); }
.remote-loading strong, .remote-loading span { display: block; }
.remote-loading strong { font: 800 13px "Manrope",sans-serif; }
.remote-loading div > span { margin-top: 3px; color: #aeb3be; font-size: 9px; }
.loading-spinner { width: 28px; height: 28px; flex: 0 0 auto; border: 3px solid rgba(217,246,90,.22); border-top-color: var(--acid); border-radius: 50%; animation: loading-spin .8s linear infinite; }
.remote-loading.compact .loading-spinner { border-color: #ded9ff; border-top-color: var(--purple); }
@keyframes loading-spin { to { transform: rotate(360deg); } }

@media (max-width: 760px) {
  .main { padding-top: 16px; }
  .topbar { margin-bottom: 14px; }
  .trip-cover-hero { min-height: 190px; margin-left: -4px; margin-right: -4px; padding: 19px; border-radius: 20px; }
  .cover-content h2 { font-size: 25px; }
  .cover-actions { flex-direction: column; }
  .cover-actions button { width: 37px; min-height: 37px; justify-content: center; padding: 0; }
  .cover-actions button span { display: none; }
  .planning-jumpbar { margin-left: -16px; margin-right: -16px; padding-left: 16px; padding-right: 16px; }
  .day-jump { flex-direction: column; gap: 0; }
  .day-timeline { padding: 3px 12px 6px; }
  .day-timeline .schedule-row { min-height: 87px; }
  .day-timeline .schedule-line::before { top: 34px; bottom: -18px; }
  .mobile-prep-head { margin-bottom: 18px; }
  .prep-hero { grid-template-columns: auto minmax(0,1fr) auto; }
  .prep-invite { width: 38px; padding: 0; justify-content: center; }
  .prep-invite { font-size: 0; }
  .prep-invite .icon { width: 16px; }
  .mobile-sheet { position: fixed; inset: auto 0 0; width: 100%; max-height: 88vh; overflow-y: auto; padding: 13px 19px calc(20px + env(safe-area-inset-bottom)); border-radius: 23px 23px 0 0; animation: sheetIn .24s ease; }
  @keyframes sheetIn { from { transform: translateY(35px); opacity: 0; } }
  .sheet-handle { width: 38px; height: 4px; display: block; margin: 0 auto 14px; border-radius: 99px; background: #d1cfc7; }
  .mobile-sheet .modal-head { margin-bottom: 17px; }
  .modal-backdrop { align-items: end; padding: 0; }
  .modal-actions { padding-bottom: 2px; }
  .preparation-grid { gap: 16px; }
}

@media (min-width: 761px) {
  .continuous-planning { max-width: 840px; }
  .trip-cover-hero { max-width: 1120px; }
  .planning-jumpbar { max-width: 840px; }
  .sticky-day-header { top: 10px; }
}

/* v4 — echte deadlines en één persoonlijke status */
.deadline-panel { margin: 12px 0 13px; overflow: hidden; border: 1px solid #f0c9c2; border-radius: 16px; background: #fff6f3; box-shadow: 0 8px 22px rgba(162,73,59,.06); }
.deadline-panel-title { display: flex; align-items: center; gap: 10px; padding: 12px 15px 9px; }
.deadline-icon { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 9px; color: #a6493b; background: #ffe0da; }
.deadline-icon .icon { width: 15px; }
.deadline-panel-title strong, .deadline-panel-title span { display: block; }
.deadline-panel-title strong { color: #8e3d33; font: 800 11px "Manrope",sans-serif; }
.deadline-panel-title div span { color: #b16c62; font-size: 8px; }
.deadline-task-list { padding: 0 11px 10px; }
.deadline-task { min-height: 57px; display: grid; grid-template-columns: 23px minmax(0,1fr) auto; align-items: center; gap: 10px; padding: 7px 8px; border-top: 1px solid #f1d9d4; }
.deadline-task > div { min-width: 0; }
.deadline-task > div strong, .deadline-task > div span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.deadline-task > div strong { font-size: 11px; }
.deadline-task > div span { margin-top: 2px; color: var(--ink-soft); font-size: 8px; }
.deadline-task.done > div strong { color: #92949a; text-decoration: line-through; }
.deadline-people { display: inline-flex; align-items: center; gap: 4px; padding: 6px 8px; border: 1px solid #e6c7c1; border-radius: 9px; color: #99493e; background: #fff; font-size: 8px; font-weight: 800; cursor: pointer; }
.deadline-people .icon { width: 13px; }
.task-deadline-label { display: inline-flex; align-items: center; gap: 3px; color: #9b4d42; font-weight: 700; }
.task-deadline-label .icon { width: 10px; height: 10px; }
.optional-label { color: var(--ink-soft); font-size: 8px; font-weight: 500; }
.own-status-note { display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-radius: 12px; background: #efede6; }
.own-status-note .person-check { flex: 0 0 auto; }
.own-status-note .person-check.checked { color: #fff; border-color: var(--green); background: var(--green); }
.own-status-note strong, .own-status-note div span { display: block; }
.own-status-note strong { font-size: 10px; }
.own-status-note div span { margin-top: 2px; color: var(--ink-soft); font-size: 8px; }
.person-list-label { padding: 16px 3px 6px; color: var(--ink-soft); font-size: 7px; font-weight: 900; letter-spacing: .8px; }

@media (max-width: 760px) {
  .deadline-panel { margin-left: 1px; margin-right: 1px; }
  .deadline-task { grid-template-columns: 22px minmax(0,1fr) auto; }
}

/* v5 — heldere taaktypes, optionele deadlines en oppakken */
.task-owner-field.is-hidden { display: none; }
.claim-task-button { min-height: 31px; padding: 0 10px; border: 1px solid #cfc6ff; border-radius: 9px; color: #5038d5; background: #f2efff; font: 800 9px "Manrope",sans-serif; white-space: nowrap; cursor: pointer; }
.claim-task-button:hover { border-color: var(--purple); background: #e8e2ff; }
.claim-task-button.compact { min-height: 29px; padding-inline: 8px; background: #fff; }
.task-deadline-label.no-deadline { color: #92959c; font-weight: 600; }
.own-done-label { display: inline-flex; padding: 2px 5px; border-radius: 99px; color: #2f7759; background: #e1f1e8; font-size: 7px; font-weight: 900; letter-spacing: .2px; }

@media (max-width: 390px) {
  .claim-task-button { padding-inline: 8px; }
}

/* v6 — gedeelde paklijst verdelen zonder extra drukte */
.group-packing-options { display: grid; gap: 14px; }
.group-packing-options.is-hidden, .personal-packing-options.is-hidden, .packing-amount-fields.is-hidden, .coverage-explainer.is-hidden { display: none; }
.packing-coverage-toggle { position: relative; min-height: 62px; display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 14px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 12px; background: #f7f5ef; cursor: pointer; }
.packing-coverage-toggle > span:first-child strong, .packing-coverage-toggle > span:first-child small { display: block; }
.packing-coverage-toggle > span:first-child strong { font-size: 10px; }
.packing-coverage-toggle > span:first-child small { margin-top: 2px; color: var(--ink-soft); font-size: 8px; }
.packing-coverage-toggle input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.switch-ui { position: relative; width: 38px; height: 22px; border-radius: 99px; background: #d5d3cd; transition: background .18s; }
.switch-ui::after { content: ""; position: absolute; width: 16px; height: 16px; left: 3px; top: 3px; border-radius: 50%; background: #fff; box-shadow: 0 2px 5px rgba(23,28,39,.18); transition: transform .18s; }
.packing-coverage-toggle input:checked + .switch-ui { background: var(--purple); }
.packing-coverage-toggle input:checked + .switch-ui::after { transform: translateX(16px); }
.packing-coverage-toggle:focus-within { outline: 2px solid rgba(104,80,255,.25); outline-offset: 2px; }
.coverage-explainer { min-height: 45px; display: flex; align-items: center; gap: 9px; padding: 10px 12px; border-radius: 11px; color: #4d3db2; background: var(--purple-soft); font-size: 9px; }
.coverage-explainer .icon { width: 16px; flex: 0 0 auto; }

.group-packing-row { min-height: 59px; }
.packing-progress { display: flex; align-items: center; gap: 6px; margin-top: 3px; color: var(--ink-soft); font-size: 9px; }
.packing-row.done .packing-progress { opacity: .55; }
.packing-row.done .packing-progress.is-fully-done { color: #4f70df; font-weight: 700; opacity: 1; }
.group-packing-row .claim-button { min-height: 30px; white-space: nowrap; font-size: 8px; }
.group-packing-row .claim-button.has-claim { color: var(--purple); border-color: #d9d4ff; background: #f6f3ff; }

.pack-claim-summary { display: grid; grid-template-columns: auto minmax(90px,1fr); align-items: center; gap: 15px; margin-bottom: 14px; padding: 12px 13px; border-radius: 13px; background: #efede6; }
.pack-claim-summary span, .pack-claim-summary strong { display: block; }
.pack-claim-summary > div:first-child span { color: var(--ink-soft); font-size: 7px; font-weight: 900; letter-spacing: .7px; }
.pack-claim-summary > div:first-child strong { margin-top: 2px; font: 800 15px "Manrope",sans-serif; }
.pack-claim-meter { height: 6px; overflow: hidden; border-radius: 99px; background: #dcd9cf; }
.pack-claim-meter span { height: 100%; border-radius: inherit; background: var(--purple); }
.pack-contributions { overflow: hidden; border: 1px solid var(--line); border-radius: 12px; }
.pack-contribution-row { min-height: 52px; display: grid; grid-template-columns: 31px minmax(0,1fr) auto; align-items: center; gap: 9px; padding: 0 11px; border-bottom: 1px solid var(--line); }
.pack-contribution-row:last-child { border-bottom: 0; }
.pack-contribution-row .assignee { width: 29px; height: 29px; }
.pack-contribution-row strong, .pack-contribution-row small { display: block; }
.pack-contribution-row strong { font-size: 9px; }
.pack-contribution-row small { color: var(--ink-soft); font-size: 8px; }
.pack-contribution-row b { color: var(--purple); font: 800 12px "Manrope",sans-serif; }
.pack-no-contributions { padding: 17px; color: var(--ink-soft); font-size: 9px; text-align: center; }
.pack-amount-field { margin-top: 15px; }
.amount-input { display: grid; grid-template-columns: 86px minmax(0,1fr); align-items: center; gap: 9px; }
.amount-input input { font-weight: 800; }
.amount-input span { color: var(--ink-soft); font-size: 9px; }
.full-button { width: 100%; }

.coverage-people { display: grid; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; }
.coverage-person { position: relative; min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 0 11px; border-bottom: 1px solid var(--line); background: #fff; cursor: pointer; }
.coverage-person:last-child { border-bottom: 0; }
.coverage-person input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.coverage-person-main { display: flex; align-items: center; gap: 9px; }
.coverage-person-main .assignee { width: 32px; height: 32px; }
.coverage-person-main strong, .coverage-person-main small { display: block; }
.coverage-person-main strong { font-size: 10px; }
.coverage-person-main small { margin-top: 2px; color: var(--ink-soft); font-size: 8px; }
.coverage-check { width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 8px; color: transparent; }
.coverage-check .icon { width: 12px; }
.coverage-person:has(input:checked) .coverage-check { color: #fff; border-color: var(--purple); background: var(--purple); }
.coverage-person:has(input:checked) { background: #f6f3ff; }
.coverage-person.locked { cursor: default; opacity: .72; }

@media (max-width: 390px) {
  .group-packing-row { grid-template-columns: 24px minmax(0,1fr) auto !important; gap: 8px; }
  .group-packing-row .item-qty { display: none; }
  .group-packing-row .claim-button { padding-inline: 7px; }
  .pack-claim-summary { grid-template-columns: 1fr; gap: 9px; }
}

/* v7 — één rustige statusregel; het vinkje is persoonlijk, de rij is gezamenlijk */
.check-button.unclaimed { color: #aaa; border-style: dashed; background: #f2f0e9; cursor: default; opacity: .7; }
.group-packing-row { grid-template-columns: 25px minmax(0,1fr) auto; }
.task-row > div, .packing-row > div { min-width: 0; }
.task-meta, .packing-progress { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.compact-packing .packing-row { min-height: 68px; }
.compact-packing .packing-row + .packing-row { border-top: 1px solid #e8e6de; border-radius: 0; }
.row-assignment { min-width: 82px; min-height: 42px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 5px 8px; border: 1px solid #d9d4ff; border-radius: 10px; color: var(--purple); background: #f6f3ff; text-align: left; cursor: pointer; }
.row-assignment span, .row-fact span { display: block; color: var(--ink-soft); font-size: 7px; font-weight: 900; letter-spacing: .4px; line-height: 1.2; text-transform: uppercase; white-space: nowrap; }
.row-assignment strong, .row-fact strong { display: block; margin-top: 3px; color: var(--ink); font-size: 9px; font-weight: 800; line-height: 1.2; white-space: nowrap; }
.row-assignment.is-mine { border-color: #d9d4ff; background: #f6f3ff; }
.row-assignment.is-open strong { color: var(--purple); }
.row-assignment.is-view { border-color: var(--line); color: var(--ink-soft); background: #f3f1ea; }
.row-assignment.is-static { border-color: transparent; color: var(--ink-soft); background: #f1efe8; cursor: default; }
.row-assignment.is-compact { min-width: 76px; min-height: 36px; }
.row-fact { min-width: 58px; text-align: right; }
.row-fact span, .row-fact strong { text-align: right; }
.group-packing-row.my-share-done:not(.fully-done) { background: transparent; box-shadow: none; }
.group-packing-row.my-share-done:not(.fully-done) .packing-name { color: var(--ink); text-decoration: none; }
.my-share-done:not(.done) .check-button.checked { border-color: #4f70df; background: #4f70df; }
.packing-progress.is-my-share-done { color: #4f70df; font-weight: 700; }
.group-packing-row.fully-done { background: transparent; box-shadow: none; }
.group-packing-row.fully-done .packing-name { color: #747a77; text-decoration: line-through; }
.group-packing-row.fully-done .packing-progress { color: #4f70df; font-weight: 700; opacity: 1; }
.task-row.my-share-done:not(.done), .deadline-task.my-share-done:not(.done) { background: transparent; }

.pack-claim-summary > div:first-child small { display: block; margin-top: 2px; color: #397c65; font-size: 7px; font-weight: 800; }
.pack-claim-meter { position: relative; }
.pack-claim-meter > span { opacity: .3; }
.pack-claim-meter > i { position: absolute; left: 0; top: 0; bottom: 0; display: block; border-radius: inherit; background: var(--green); }
.pack-contribution-row.share-complete { background: #f2f8f4; }
.pack-contribution-row.share-complete b { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--green); }
.pack-contribution-row.share-complete b .icon { width: 11px; }
.coverage-person.share-complete { background: #eef7f2; }
.coverage-person.share-complete .coverage-check { color: #fff; border-color: var(--green); background: var(--green); box-shadow: 0 0 0 3px rgba(47,119,89,.1); }
.task-responsibility:not(.locked) { cursor: pointer; }
.task-responsibility.locked { opacity: .7; }

@media (max-width: 390px) {
  .row-assignment { min-width: 74px; padding-inline: 7px; }
  .row-assignment strong { font-size: 8px; }
}
