:root {
  --ink: #111827;
  --muted: #667085;
  --soft: #f7f8fb;
  --line: rgba(17, 24, 39, 0.1);
  --panel: rgba(255, 255, 255, 0.86);
  --blue: #2658d9;
  --blue-dark: #153f91;
  --green: #0d8f74;
  --green-dark: #0b6f61;
  --coral: #e25a3d;
  --amber: #f5b84b;
  --violet: #6b5cf6;
  --shadow: 0 20px 54px rgba(20, 31, 54, 0.14);
  --soft-shadow: 0 10px 26px rgba(20, 31, 54, 0.08);
  --radius-card: 16px;
  --radius-control: 14px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100dvh;
  color: var(--ink);
  background: linear-gradient(180deg, #f8f8f5 0%, #eef4f2 52%, #eef1f7 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
}

body.sheet-open {
  overflow: hidden;
}

.prototype-device-switch {
  width: min(430px, calc(100% - 24px));
  min-height: 44px;
  margin: 10px auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 6px;
  padding: 5px;
  position: sticky;
  top: 8px;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.prototype-device-switch span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  padding-left: 9px;
}

.prototype-device-switch button {
  min-height: 32px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--muted);
  padding: 0 11px;
  font-size: 0.82rem;
  font-weight: 900;
}

.prototype-device-switch button.is-active {
  background: var(--blue);
  color: white;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.app-shell {
  min-height: calc(100dvh - 54px);
  width: min(430px, 100%);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
}

.compose-panel,
.preview-panel,
.review-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(22px);
}

.compose-panel {
  height: calc(100dvh - 54px);
  min-height: 0;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  padding: max(12px, env(safe-area-inset-top)) 16px max(10px, env(safe-area-inset-bottom));
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  position: relative;
  box-shadow: none;
}

.preview-panel {
  border-radius: 22px;
  padding: 14px;
  box-shadow: none;
}

.review-panel {
  border-radius: 22px;
  padding: 14px;
  margin-top: 0;
  box-shadow: none;
}

.screen-scroll {
  min-height: 0;
  overflow: auto;
  padding: 2px 0 96px;
  scrollbar-width: none;
  position: relative;
  z-index: 1;
}

.screen-scroll::-webkit-scrollbar {
  display: none;
}

.panel-head,
.app-nav,
.app-title-row,
.reply-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.app-nav {
  align-items: center;
  min-height: 48px;
  margin: -2px 0 10px;
  position: sticky;
  top: 0;
  z-index: 80;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  padding: 5px;
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 24px rgba(20, 31, 54, 0.07);
}

.icon-button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 760;
  box-shadow: var(--soft-shadow);
}

.icon-button[hidden] {
  visibility: hidden;
  display: grid;
}

.avatar-button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: #1f2937;
  font-weight: 850;
  box-shadow: var(--soft-shadow);
}

.member-menu-shell {
  position: relative;
  z-index: 90;
}

.avatar-button[aria-expanded="true"] {
  box-shadow: 0 0 0 4px rgba(33, 100, 232, 0.14), var(--soft-shadow);
}

.member-menu {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  z-index: 100;
  width: min(252px, calc(100vw - 36px));
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: white;
  padding: 7px;
  box-shadow: var(--shadow);
}

body.is-prototype-mobile.member-menu-open .screen-scroll::before {
  content: "";
  position: fixed;
  inset: 54px 0 0;
  z-index: 70;
  background: rgba(247, 248, 251, 0.72);
  backdrop-filter: blur(6px);
}

body.member-menu-open .app-nav {
  z-index: 120;
}

body.member-menu-open .member-menu-shell {
  z-index: 130;
}

body.member-menu-open .root-tabs,
body.member-menu-open .view-tabs,
body.member-menu-open .find-controls-panel,
body.member-menu-open .profile-preview {
  z-index: 1;
}

body.is-prototype-desktop.member-menu-open .screen-scroll::before {
  content: "";
  position: fixed;
  inset: 54px 0 0;
  z-index: 70;
  background: rgba(247, 248, 251, 0.58);
  backdrop-filter: blur(4px);
}

body.is-prototype-mobile .member-menu {
  width: min(252px, calc(100vw - 32px));
}

.member-menu[hidden] {
  display: none;
}

.member-menu button {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  display: grid;
  gap: 2px;
  padding: 9px 10px;
  text-align: left;
}

.member-menu button:hover,
.member-menu button:focus-visible {
  background: var(--soft);
}

.member-menu strong {
  font-size: 0.92rem;
  font-weight: 880;
}

.member-menu span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
  line-height: 1.25;
}

.eyebrow {
  margin: 0 0 5px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.screen-eyebrow {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 820;
  text-transform: none;
}

h1,
h2,
h3,
p {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(1.65rem, 6vw, 2rem);
  line-height: 1.02;
  font-weight: 880;
  max-width: none;
}

h2 {
  font-size: 1.32rem;
  line-height: 1.14;
}

h3 {
  font-size: 1rem;
}

.status-pill,
.quiet-pill,
.status-dot {
  flex: 0 0 auto;
  border-radius: 999px;
  border: 1px solid rgba(33, 100, 232, 0.18);
  background: #edf4ff;
  color: var(--blue-dark);
  padding: 8px 11px;
  font-size: 0.82rem;
  font-weight: 820;
  white-space: nowrap;
}

.quiet-pill {
  background: #f4f6f9;
  color: var(--muted);
}

.app-nav .status-pill {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  padding: 6px 10px;
  font-size: 0.76rem;
  box-shadow: none;
}

.status-dot {
  background: #fff7ed;
  border-color: rgba(226, 90, 61, 0.22);
  color: #9a3b25;
}

.intro-copy {
  margin: 7px 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.34;
  max-width: 34rem;
}

.root-tabs,
.view-tabs {
  position: sticky;
  top: 58px;
  z-index: 4;
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.98);
  padding: 5px;
  margin: 10px 0 14px;
  backdrop-filter: blur(18px);
}

.root-tabs {
  grid-template-columns: repeat(2, 1fr);
}

.view-tabs {
  grid-template-columns: repeat(3, 1fr);
}

.root-tabs[hidden],
.view-tabs[hidden] {
  display: none;
}

.notification-center {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  margin: 0 0 8px;
}

.notification-center:empty {
  display: none;
}

.notification-item {
  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
  padding: 7px 8px;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 7px;
  align-items: center;
  box-shadow: none;
}

.notification-item.is-secondary {
  background: transparent;
}

.notification-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  position: relative;
  background: #edf4ff;
  color: var(--blue-dark);
}

.notification-icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.notification-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 2px;
  height: 7px;
  border-radius: 2px;
  background: currentColor;
}

.notification-item strong,
.notification-item small {
  display: block;
}

.notification-item strong {
  font-size: 0.8rem;
  line-height: 1.2;
}

.notification-item small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 720;
  line-height: 1.28;
}

.notification-item.is-action {
  border-color: rgba(226, 90, 61, 0.24);
  background: #fff8f4;
}

.notification-item.is-action .notification-icon {
  background: #fff0e8;
  color: #9a3b25;
}

.notification-item.is-complete {
  border-color: rgba(13, 143, 116, 0.22);
  background: #f4fbf8;
}

.notification-item.is-complete .notification-icon {
  background: #dff7ee;
  color: var(--green);
}

.notification-item.is-private .notification-icon {
  background: #eef2f7;
  color: #475467;
}

.root-tab,
.view-tab {
  min-height: 42px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
  padding: 0 4px;
}

.root-tab.is-active,
.view-tab.is-active {
  color: white;
  background: var(--ink);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.12);
}

.back-to-top {
  position: absolute;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 70;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.92);
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 32px rgba(20, 31, 54, 0.22);
}

.back-to-top[hidden] {
  display: none;
}

.back-to-top span {
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(3px) rotate(45deg);
}

.compose-panel:has(.bottom-action:not([hidden])) .back-to-top {
  bottom: calc(86px + env(safe-area-inset-bottom));
}

.app-view {
  display: none;
}

.app-view.is-active {
  display: block;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.section-head .eyebrow,
.account-card-head .eyebrow,
.panel-head .eyebrow,
.privacy-strip .eyebrow {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  margin-bottom: 3px;
  text-transform: none;
}

.section-head h2 {
  font-size: 1.08rem;
  font-weight: 860;
  line-height: 1.15;
}

.section-head .quiet-pill {
  padding: 6px 9px;
  font-size: 0.74rem;
}

.section-actions {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.disclosure-button {
  min-height: 36px;
  border: 1px solid rgba(33, 100, 232, 0.2);
  border-radius: 999px;
  background: white;
  color: var(--blue-dark);
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(20, 31, 54, 0.06);
}

.disclosure-icon {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.disclosure-button[aria-expanded="true"] .disclosure-icon {
  transform: rotate(225deg) translate(-2px, -1px);
}

.home-actions,
.home-dashboard {
  margin: 8px 0 12px;
}

.home-command-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}

.home-dashboard {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: stretch;
}

.home-command {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--ink);
  padding: 8px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-align: left;
  box-shadow: 0 8px 22px rgba(20, 31, 54, 0.06);
}

.home-command.is-primary {
  border-color: rgba(33, 100, 232, 0.24);
  color: white;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(33, 100, 232, 0.2);
}

.home-command.is-signal {
  border-color: rgba(13, 143, 116, 0.28);
  background: #f4fbf8;
  box-shadow: 0 12px 28px rgba(13, 143, 116, 0.11);
}

.home-command.is-signal.is-active {
  border-color: rgba(13, 143, 116, 0.42);
  background: #e8f8f3;
  box-shadow: 0 14px 30px rgba(13, 143, 116, 0.16);
}

.action-icon {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--blue);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1;
  justify-self: start;
  grid-row: span 2;
}

.home-command.is-primary .action-icon {
  color: var(--blue);
  background: white;
}

.home-command:not(.is-primary) .action-icon {
  color: var(--blue-dark);
  background: #edf4ff;
}

.availability-icon::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.prefs-icon {
  gap: 3px;
}

.prefs-icon::before,
.prefs-icon::after {
  content: "";
  width: 14px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor;
}

.prefs-icon::after {
  display: none;
}

.billing-icon::before {
  content: "";
  width: 16px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.billing-icon::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 12px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.home-command strong {
  grid-column: 2;
  font-size: 0.92rem;
  white-space: nowrap;
}

.home-command small {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
  font-weight: 760;
  line-height: 1.16;
}

.home-command:not(.is-primary) small {
  color: var(--muted);
}

.home-stat-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.private-signal-panel {
  scroll-margin-top: 132px;
  border: 1px solid rgba(13, 143, 116, 0.2);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, #f7fcfa 0%, #ffffff 100%);
  padding: 13px;
}

.signal-intro {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 720;
  line-height: 1.35;
  margin: -2px 0 11px;
}

.signal-field-grid {
  gap: 10px;
}

body.is-prototype-mobile .signal-field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.is-prototype-mobile .signal-field-grid label:nth-child(3),
body.is-prototype-mobile .signal-field-grid label:nth-child(4) {
  grid-column: 1 / -1;
}

.signal-no-go-panel {
  margin-top: 12px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  padding: 11px;
  display: grid;
  gap: 10px;
}

.signal-no-go-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.signal-no-go-head strong,
.signal-no-go-head span {
  display: block;
}

.signal-no-go-head span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.3;
}

.signal-chip-groups {
  display: grid;
  gap: 9px;
}

.signal-chip-group {
  min-width: 0;
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.signal-chip-group legend {
  width: 100%;
  padding: 0;
  margin-bottom: 1px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.signal-chip-group label {
  min-height: 34px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  background: #f8fafc;
  padding: 7px 10px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 850;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.1;
}

.signal-chip-group input {
  width: 15px;
  min-height: 15px;
  accent-color: var(--green);
}

.signal-preview-card {
  margin-top: 12px;
  border: 1px solid rgba(13, 143, 116, 0.18);
  border-radius: 16px;
  background: white;
  padding: 12px;
  display: grid;
  gap: 4px;
}

.signal-preview-card strong,
.signal-preview-card span,
.signal-preview-card small {
  display: block;
}

.signal-preview-card span {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.28;
}

.signal-preview-card small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.32;
}

.signal-actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.home-stat-grid div {
  min-width: 0;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
  padding: 7px 5px;
  display: grid;
  align-content: center;
  gap: 2px;
}

.home-stat-grid strong,
.home-stat-grid span {
  display: block;
  text-align: center;
}

.home-stat-grid strong {
  font-size: 0.96rem;
  line-height: 1;
}

.home-stat-grid span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1.1;
  text-transform: uppercase;
}

.account-stack {
  display: grid;
  gap: 12px;
}

.account-context {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.76);
  padding: 12px;
  margin: 2px 0 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.account-context h2 {
  font-size: 1.06rem;
  line-height: 1.12;
}

.account-context span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.28;
}

.account-context-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.account-context-pills span {
  width: max-content;
  margin: 0;
  border: 1px solid rgba(13, 143, 116, 0.18);
  border-radius: 999px;
  background: #f4fbf8;
  color: var(--green-dark);
  padding: 6px 8px;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
}

.account-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.88);
  padding: 14px;
  display: grid;
  gap: 12px;
}

.account-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.account-card h2 {
  font-size: 1.16rem;
}

.account-identity {
  min-height: 64px;
  border-radius: var(--radius-card);
  background: #f6f9ff;
  padding: 10px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
}

.account-avatar {
  width: 44px;
  height: 44px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.account-avatar.has-photo {
  color: transparent;
}

.account-identity strong,
.account-identity span {
  display: block;
}

.account-identity span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 720;
}

.photo-edit-panel {
  border: 1px solid rgba(33, 100, 232, 0.14);
  border-radius: var(--radius-card);
  background: #f6f9ff;
  padding: 10px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.photo-preview-frame {
  width: 72px;
  aspect-ratio: 1;
  border: 1px solid rgba(33, 100, 232, 0.16);
  border-radius: 22px;
  background: white;
  background-size: cover;
  background-position: center;
  color: var(--blue-dark);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 900;
  overflow: hidden;
}

.photo-preview-frame.has-photo span {
  display: none;
}

.photo-edit-fields {
  display: grid;
  gap: 9px;
}

.member-preview-photo {
  width: 44px;
  aspect-ratio: 1;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(13, 143, 116, 0.2);
  background: white;
}

.member-visible-preview {
  border: 1px solid rgba(13, 143, 116, 0.22);
  border-radius: var(--radius-card);
  background: #f4fbf8;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.member-preview-head {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: start;
}

.member-preview-head > .profile-initial {
  width: 44px;
  height: 44px;
  font-size: 0.95rem;
}

.member-preview-head h3 {
  font-size: 1.05rem;
}

.member-preview-list {
  display: grid;
  gap: 8px;
  margin: 0;
}

.member-preview-list div {
  border-top: 1px solid rgba(13, 143, 116, 0.16);
  padding-top: 8px;
}

.member-preview-list dt {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.member-preview-list dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.32;
}

.member-preview-note {
  margin: 0;
  border-radius: 14px;
  background: white;
  color: var(--muted);
  padding: 10px;
  font-size: 0.8rem;
  font-weight: 760;
  line-height: 1.3;
}

.management-list,
.familiar-management-list {
  display: grid;
  gap: 8px;
}

.management-list div {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  padding: 10px;
  display: grid;
  gap: 3px;
}

.management-list strong,
.management-list span,
.management-list em {
  display: block;
}

.management-list span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 720;
}

.management-list em {
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 850;
}

.familiar-management-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  padding: 10px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
}

.familiar-management-card img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.familiar-management-card strong,
.familiar-management-card span,
.familiar-management-card small {
  display: block;
}

.familiar-management-card span {
  margin-top: 2px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 780;
  line-height: 1.28;
}

.familiar-management-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
}

.familiar-management-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}

.signal-empty-state,
.signal-example-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  padding: 11px;
}

.signal-empty-state {
  display: grid;
  gap: 3px;
}

.signal-empty-state strong,
.signal-empty-state span,
.signal-example-card strong,
.signal-example-card span,
.signal-example-card small {
  display: block;
}

.signal-empty-state span,
.signal-example-card small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.3;
}

.signal-example-card {
  display: grid;
  gap: 7px;
  background: #f8fbff;
}

.signal-example-card span {
  margin-top: 3px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 760;
  line-height: 1.28;
}

.settings-list {
  display: grid;
  gap: 10px;
}

.membership-card,
.billing-card {
  border-color: rgba(33, 100, 232, 0.16);
}

.membership-status-panel,
.portal-preview {
  border-radius: var(--radius-card);
  background: #f6f9ff;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.membership-status-panel strong,
.membership-status-panel span,
.portal-preview strong,
.portal-preview span,
.billing-note strong,
.billing-note span {
  display: block;
}

.membership-status-panel span,
.portal-preview span,
.billing-note span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.32;
}

.membership-plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.membership-plan {
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  color: var(--ink);
  padding: 11px;
  text-align: left;
  display: grid;
  align-content: space-between;
  gap: 6px;
}

.membership-plan.is-selected {
  border-color: rgba(33, 100, 232, 0.42);
  background: #f4f8ff;
  box-shadow: inset 0 0 0 1px rgba(33, 100, 232, 0.12);
}

.membership-plan span,
.membership-plan strong,
.membership-plan small {
  display: block;
}

.membership-plan span,
.billing-summary-grid span,
.checkout-card-preview span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.membership-plan strong {
  font-size: 1.22rem;
  line-height: 1.1;
}

.membership-plan small,
.checkout-card-preview small,
.checkout-row small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.28;
}

.checkout-preview {
  display: grid;
  gap: 8px;
}

.checkout-card-preview {
  border: 1px solid rgba(33, 100, 232, 0.16);
  border-radius: 18px;
  background: white;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.checkout-card-preview strong {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
}

.card-form-preview {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfcfe;
  padding: 10px;
}

.card-form-preview strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0;
}

.checkout-row {
  border-radius: 16px;
  background: #f4fbf8;
  padding: 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: start;
}

.checkout-row > span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-top: 3px;
  background: var(--green);
}

.checkout-row.is-warning {
  background: #fff7ed;
}

.checkout-row.is-warning > span {
  background: var(--coral);
}

.billing-note {
  border-left: 3px solid rgba(13, 143, 116, 0.28);
  border-radius: 14px;
  background: #f4fbf8;
  padding: 11px 12px;
}

.compact-actions {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.billing-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.billing-summary-grid div {
  min-height: 76px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  padding: 10px;
  display: grid;
  align-content: space-between;
  gap: 6px;
}

.billing-summary-grid strong {
  font-size: 0.93rem;
  line-height: 1.18;
}

.billing-policy {
  margin-top: 0;
}

.phase-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 8px;
  margin: 18px 0 16px;
}

.phase-card {
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  padding: 11px;
  display: grid;
  align-content: space-between;
  box-shadow: 0 8px 22px rgba(20, 31, 54, 0.06);
}

.phase-card span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.phase-card strong {
  font-size: 0.9rem;
  line-height: 1.12;
}

.phase-card.is-now {
  color: white;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), #3988ff);
}

.phase-card.is-now span {
  color: rgba(255, 255, 255, 0.78);
}

.plan-form {
  display: grid;
  gap: 15px;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend,
label {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 780;
}

legend {
  margin-bottom: 9px;
}

.section-note {
  margin: -2px 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.35;
}

label,
.field-block {
  display: grid;
  gap: 7px;
}

.field-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.date-field {
  grid-column: 1 / -1;
  scroll-margin-top: 112px;
}

.date-picker-panel {
  border: 1px solid rgba(33, 100, 232, 0.16);
  border-radius: 18px;
  background: #f8fbff;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.date-picker-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.date-picker-head strong,
.date-picker-head span {
  display: block;
}

.date-picker-head strong {
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.1;
}

.date-picker-head span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.25;
  margin-top: 2px;
}

.date-picker-head .quiet-pill {
  margin-top: 0;
  white-space: nowrap;
}

.date-quick-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(104px, 1fr));
  gap: 7px;
}

.date-quick,
.date-choice {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  font-weight: 850;
}

.date-quick {
  min-height: 52px;
  border-radius: 14px;
  padding: 7px 8px;
  display: grid;
  gap: 2px;
  text-align: left;
}

.date-quick span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 780;
}

.date-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.date-choice {
  min-width: 0;
  min-height: 58px;
  border-radius: 14px;
  padding: 6px 4px;
  display: grid;
  place-items: center;
  gap: 1px;
}

.date-choice span {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 850;
  text-transform: uppercase;
}

.date-choice strong {
  font-size: 1.02rem;
  line-height: 1;
}

.date-quick.is-selected,
.date-choice.is-selected {
  border-color: rgba(33, 100, 232, 0.42);
  color: white;
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(33, 100, 232, 0.18);
}

.date-quick.is-selected span,
.date-choice.is-selected span {
  color: rgba(255, 255, 255, 0.82);
}

.required-mark {
  width: max-content;
  border-radius: 999px;
  background: #f2f4f7;
  color: #7a4a3d;
  padding: 3px 7px;
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.combo-shell {
  position: relative;
}

.activity-picker {
  width: 100%;
  min-height: 76px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 18px;
  background: white;
  color: var(--ink);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(20, 31, 54, 0.05);
}

.selected-tag {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  padding: 0 18px;
  font-size: 1.02rem;
  font-weight: 850;
  white-space: nowrap;
}

.picker-copy {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 680;
  line-height: 1.25;
}

.activity-menu {
  position: absolute;
  z-index: 10;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  padding: 10px;
  box-shadow: var(--shadow);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  color: var(--ink);
  padding: 0 13px;
  font-size: 1rem;
  font-weight: 650;
}

input,
select {
  height: 48px;
  min-height: 48px;
  line-height: 1.2;
}

select,
input[type="date"] {
  border-radius: 12px;
  font-weight: 760;
}

input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  padding-inline: 14px 10px;
}

input[type="date"]::-webkit-date-and-time-value {
  min-height: 1.2em;
  text-align: left;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  margin: 0;
  padding: 4px;
}

.locked-policy {
  height: 48px;
  min-height: 48px;
  border: 1px solid rgba(13, 143, 116, 0.2);
  border-radius: 12px;
  background: #f4fbf8;
  color: var(--ink);
  padding: 0 13px;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.12;
}

textarea {
  min-height: 100px;
  padding-top: 12px;
  resize: vertical;
  line-height: 1.35;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible {
  outline: 3px solid rgba(33, 100, 232, 0.22);
  outline-offset: 2px;
}

body.is-prototype-mobile #timeWindow {
  font-size: 0.94rem;
  padding-right: 34px;
}

[aria-invalid="true"] {
  border-color: rgba(226, 90, 61, 0.65);
  background: #fffaf7;
  box-shadow: 0 0 0 3px rgba(226, 90, 61, 0.12);
}

label.is-invalid {
  color: #9a3b25;
}

.field-error {
  min-height: 0;
  color: #9a3b25;
  font-size: 0.8rem;
  font-weight: 820;
  line-height: 1.28;
}

.field-error:empty {
  display: none;
}

.fill-example-action {
  justify-self: start;
}

.option-stack {
  display: grid;
  gap: 10px;
  max-height: 240px;
  margin-top: 8px;
  overflow: auto;
}

.activity-option-group {
  display: grid;
  gap: 6px;
}

.activity-option-head {
  display: grid;
  gap: 2px;
  padding: 4px 3px 0;
}

.activity-option-head strong {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.activity-option-head span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
  line-height: 1.25;
}

.activity-option {
  min-height: 42px;
  border: 0;
  border-radius: 14px;
  background: var(--soft);
  color: var(--ink);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 4px;
  padding: 9px 12px;
  font-weight: 760;
  text-align: left;
}

.activity-option span {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px;
  min-width: 0;
}

.activity-option strong {
  font-size: 0.95rem;
}

.activity-option em {
  color: var(--ink);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 850;
}

.activity-option small {
  color: var(--muted);
  font-weight: 720;
  line-height: 1.25;
}

.plan-sentence {
  margin: 12px 0 0;
  border: 1px solid rgba(33, 100, 232, 0.16);
  border-left: 5px solid var(--blue);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  color: var(--ink);
  padding: 15px 16px;
  font-size: 1.25rem;
  font-weight: 880;
  line-height: 1.22;
  box-shadow: 0 10px 24px rgba(20, 31, 54, 0.07);
}

body.is-prototype-desktop .plan-sentence {
  padding: 18px 20px;
  font-size: 1.42rem;
  line-height: 1.18;
}

.requirements-panel {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  padding: 10px;
  display: grid;
  gap: 8px;
}

.requirements-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}

.requirements-head strong,
.requirements-head span {
  display: block;
}

.requirements-head strong {
  font-size: 0.94rem;
  line-height: 1.2;
}

.requirements-head span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.3;
}

.requirements-head em {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #f2f4f7;
  color: #475467;
  padding: 5px 8px;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.requirements-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 5px;
}

.requirements-list li {
  min-height: 30px;
  border-radius: 10px;
  background: rgba(248, 250, 252, 0.82);
  padding: 6px 7px;
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 7px;
  align-items: start;
}

.requirements-list li > span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-top: 1px;
  display: grid;
  place-items: center;
}

.requirements-list li > span::before {
  content: "";
  width: 7px;
  height: 4px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg) translateY(-1px);
}

.requirements-list .is-complete > span {
  background: #dff7ee;
  color: var(--green);
}

.requirements-list .is-missing > span {
  background: #f2f4f7;
  color: #9a3b25;
}

.requirements-list .is-missing > span::before {
  width: 7px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: none;
}

.requirements-list .is-pending > span {
  background: #eef2f7;
  color: #667085;
}

.requirements-list .is-pending > span::before {
  width: 7px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: none;
}

.requirements-list strong,
.requirements-list small {
  display: block;
}

.requirements-list strong {
  font-size: 0.82rem;
  line-height: 1.22;
}

.requirements-list small {
  margin-top: 2px;
  color: #9a3b25;
  font-size: 0.76rem;
  font-weight: 760;
  line-height: 1.25;
}

.no-chat-strip {
  border: 1px solid rgba(13, 143, 116, 0.18);
  border-radius: 16px;
  background: #f4fbf8;
  padding: 12px;
  display: grid;
  gap: 3px;
}

.no-chat-strip strong,
.no-chat-strip span {
  display: block;
}

.no-chat-strip strong {
  color: var(--ink);
  font-size: 0.94rem;
}

.no-chat-strip span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 720;
  line-height: 1.32;
}

.field-grid,
.compact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.compact-grid {
  grid-template-columns: 1fr;
}

.split-input {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.range-receipt {
  border-radius: 12px;
  background: #f8fafc;
  color: var(--muted);
  padding: 8px 10px;
  font-size: 0.8rem;
  font-weight: 780;
  line-height: 1.25;
}

.field-hint {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.32;
}

.settings-fieldset,
.people-fieldset,
.preference-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  padding: 14px;
}

.preference-panel {
  display: grid;
  gap: 12px;
}

.preference-panel[hidden] {
  display: none;
}

.preference-disclosure {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}

.preference-callout {
  border-radius: 14px;
  background: #f8fafc;
  color: var(--ink);
  padding: 11px;
  display: grid;
  gap: 3px;
}

.preference-callout strong,
.preference-callout span {
  display: block;
}

.preference-callout strong {
  font-size: 0.92rem;
}

.preference-callout span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.3;
}

.switch-row {
  min-height: 62px;
  grid-template-columns: auto 1fr;
  align-items: center;
  border-radius: 16px;
  background: #f4f8ff;
  padding: 11px;
  margin-bottom: 11px;
}

.switch-row input {
  width: 26px;
  min-height: 26px;
  accent-color: var(--green);
}

.switch-row.is-locked {
  background: #eef2f7;
}

.switch-row.is-locked input {
  cursor: not-allowed;
}

.notification-channel-list .switch-row {
  margin-bottom: 0;
}

.switch-row small,
.settings-note {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.3;
}

.settings-note {
  margin-top: 10px;
  border-radius: 16px;
  background: var(--soft);
  padding: 11px;
  font-weight: 700;
}

.find-controls-panel {
  margin-top: 7px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.area-mode-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  margin: 0;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  padding: 4px;
}

.area-mode-tab {
  min-width: 0;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  min-height: 36px;
  padding: 5px 6px;
  text-align: center;
  box-shadow: none;
}

.area-mode-tab strong,
.area-mode-tab span {
  display: block;
  overflow-wrap: anywhere;
}

.area-mode-tab strong {
  font-size: 0.74rem;
  line-height: 1.12;
}

.area-mode-tab span {
  display: none;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 850;
}

.area-mode-tab.is-active {
  border-color: rgba(13, 143, 116, 0.18);
  background: #f4fbf8;
  box-shadow: inset 0 0 0 1px rgba(13, 143, 116, 0.08);
}

.area-mode-tab.is-active strong {
  color: var(--green-dark);
}

.find-filter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 7px 0 0;
}

.find-filter-grid label {
  gap: 4px;
  color: #475467;
  font-size: 0.72rem;
  font-weight: 860;
}

.find-filter-grid select {
  min-height: 40px;
  height: 40px;
  border-radius: 12px;
  padding: 0 9px;
  font-size: 0.82rem;
  font-weight: 790;
}

.filter-helper {
  grid-column: 1 / -1;
  display: none;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.3;
}

.find-note {
  display: none;
  margin: 10px 0 0;
  border-radius: 13px;
  background: rgba(244, 251, 248, 0.72);
  color: #4f625f;
  font-size: 0.8rem;
  font-weight: 760;
}

.find-event-card {
  padding: 13px;
  border-color: rgba(17, 24, 39, 0.12);
  box-shadow: none;
}

.find-event-head {
  display: grid;
  grid-template-columns: 1fr 38px;
  align-items: start;
  gap: 9px;
}

.event-category-icon {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  background: #edf4ff;
  box-shadow: inset 0 0 0 1px rgba(33, 100, 232, 0.12);
}

.event-category-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.event-category-icon.is-watch-listen {
  color: #0f766e;
  background: #e7f8f3;
}

.event-category-icon.is-attend-specific,
.event-category-icon.is-learn-make {
  color: var(--blue-dark);
  background: #edf4ff;
}

.event-category-icon.is-eat-drink {
  color: #a33a22;
  background: #fff1ea;
}

.event-category-icon.is-walk-explore,
.event-category-icon.is-relax-reset {
  color: #5b4be0;
  background: #f0edff;
}

.event-category-icon.is-play-do {
  color: #7c2d12;
  background: #fff7ed;
}

.event-title-copy {
  min-width: 0;
  padding-right: 4px;
}

.find-event-card .event-card-head h3 {
  font-size: 1.1rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.find-event-card .event-card-head p {
  margin-top: 4px;
  color: #475467;
  font-size: 0.88rem;
  font-weight: 780;
}

.find-event-card .profile-tags {
  margin-top: 7px;
  gap: 5px;
}

.find-event-card .profile-tags span {
  padding: 4px 7px;
  font-size: 0.7rem;
}

.area-label-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 9px;
  color: #475467;
  font-size: 0.72rem;
  font-weight: 880;
}

.area-label-row span {
  border-radius: 999px;
  background: #f3f4f6;
  padding: 5px 8px;
  line-height: 1.1;
}

.area-label-row .area-fit-label {
  background: #e7f8f3;
  color: var(--green-dark);
}

.event-plan-note {
  margin-top: 10px;
  padding: 0;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 720;
  line-height: 1.36;
}

.shared-plan-detail {
  margin-top: 10px;
  border: 1px solid rgba(13, 143, 116, 0.18);
  border-radius: 14px;
  background: #f4fbf8;
  padding: 9px;
}

.updated-event-label {
  width: fit-content;
  border-radius: 999px;
  background: var(--green);
  color: white;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.shared-plan-detail strong,
.shared-plan-detail small {
  display: block;
}

.shared-plan-detail strong {
  margin-top: 6px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.shared-plan-detail p {
  margin-top: 4px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.34;
}

.shared-plan-detail small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 760;
}

.question-box {
  margin-top: 10px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  padding-top: 9px;
}

.question-compact-row {
  min-height: 42px;
  border-radius: 14px;
  background: #f8fbff;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 8px;
}

.question-compact-row strong,
.question-compact-row small {
  display: block;
}

.question-compact-row strong {
  font-size: 0.84rem;
  line-height: 1.16;
}

.question-compact-row small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 720;
  line-height: 1.22;
}

.question-box.is-open .question-compact-row {
  background: #edf4ff;
}

.question-scroll {
  max-height: 136px;
  overflow: auto;
  display: grid;
  gap: 6px;
  margin-top: 8px;
  padding-right: 3px;
  scrollbar-width: thin;
}

.question-choice {
  min-height: 52px;
  border: 1px solid rgba(33, 100, 232, 0.16);
  border-radius: 13px;
  background: #f8fbff;
  color: var(--ink);
  padding: 8px;
  text-align: left;
}

.question-choice span,
.question-choice small {
  display: block;
}

.question-choice span {
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.18;
}

.question-choice small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 720;
  line-height: 1.18;
}

.question-choice.is-selected {
  border-color: rgba(33, 100, 232, 0.4);
  background: #edf4ff;
  box-shadow: inset 0 0 0 1px rgba(33, 100, 232, 0.12);
}

.question-choice.is-sent {
  border-color: rgba(13, 143, 116, 0.28);
  background: #eefaf5;
}

.question-send-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.question-send-row span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.find-event-action-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  margin-top: 7px;
}

.find-event-action-row > span {
  display: grid;
  justify-items: start;
}

.find-event-action-row .request-status {
  display: none;
}

.compact-request-action {
  min-height: 34px;
  border-radius: 14px;
  padding: 0 12px;
  font-size: 0.82rem;
}

.prototype-version {
  margin: 20px auto 0;
  padding: 14px 0 4px;
  width: 100%;
  color: rgba(102, 112, 133, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
}

body.is-prototype-desktop .prototype-device-switch {
  width: min(1080px, calc(100% - 48px));
}

body.is-prototype-desktop .app-shell {
  width: min(1080px, calc(100% - 48px));
}

body.is-prototype-desktop .compose-panel {
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-radius: 24px 24px 0 0;
  padding-inline: 24px;
}

body.is-prototype-desktop .screen-scroll {
  padding-bottom: 110px;
}

body.is-prototype-desktop .app-nav {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

body.is-prototype-desktop .app-title-row,
body.is-prototype-desktop .intro-copy,
body.is-prototype-desktop .root-tabs {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

body.is-prototype-desktop #findView .event-section {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
}

body.is-prototype-desktop #findView .section-head {
  grid-column: 1 / -1;
}

body.is-prototype-desktop .find-controls-panel {
  position: sticky;
  top: 74px;
  margin-top: 0;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.58);
  padding: 10px;
}

body.is-prototype-desktop .area-mode-tabs,
body.is-prototype-desktop .find-filter-grid {
  grid-template-columns: 1fr;
}

body.is-prototype-desktop .area-mode-tab span {
  display: block;
}

body.is-prototype-desktop .find-filter-grid label {
  font-size: 0.82rem;
}

body.is-prototype-desktop .find-filter-grid select {
  min-height: 48px;
  height: 48px;
  padding: 0 13px;
  font-size: 1rem;
}

body.is-prototype-desktop .filter-helper,
body.is-prototype-desktop .find-note {
  display: block;
}

body.is-prototype-desktop #findEvents {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

body.is-prototype-desktop #homeView.is-active {
  max-width: 1030px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: minmax(230px, 280px) minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
}

body.is-prototype-desktop #homeView .home-dashboard {
  grid-column: 1;
  position: sticky;
  top: 74px;
  grid-template-columns: 1fr;
  margin-top: 0;
}

body.is-prototype-desktop #homeView .event-section {
  grid-column: 2;
  margin-top: 12px;
}

body.is-prototype-desktop #homeView .action-queue-section {
  margin-top: 0;
}

body.is-prototype-desktop #homeView .private-signal-panel {
  grid-column: 2;
}

body.is-prototype-desktop .work-row {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
}

body.is-prototype-desktop .work-row-side {
  grid-column: auto;
  min-width: 170px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

body.is-prototype-desktop .work-row-side .row-actions {
  justify-content: flex-end;
}

body.is-prototype-desktop .receipt-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.is-prototype-desktop .find-event-card {
  min-height: 344px;
  display: flex;
  flex-direction: column;
}

body.is-prototype-desktop .find-event-action-row {
  margin-top: auto;
  padding-top: 10px;
}

body.is-prototype-desktop #whoView,
body.is-prototype-desktop #planView,
body.is-prototype-desktop #reviewView {
  max-width: 1030px;
  margin-left: auto;
  margin-right: auto;
}

body.is-prototype-desktop #whoView .profile-section {
  display: grid;
  grid-template-columns: minmax(310px, 0.85fr) minmax(0, 1.15fr);
  gap: 14px;
  align-items: start;
}

body.is-prototype-desktop #whoView .profile-section .section-head {
  grid-column: 1 / -1;
}

body.is-prototype-desktop #whoView .profile-preview {
  margin: 0;
  position: sticky;
  top: 84px;
}

.originator-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  border-radius: 14px;
  background: #f8fafc;
  padding: 8px;
  margin-top: 8px;
}

.originator-name-row {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.originator-summary strong {
  font-size: 0.9rem;
  line-height: 1.1;
}

.originator-words {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.originator-words span {
  border-radius: 999px;
  background: white;
  color: #344054;
  padding: 4px 7px;
  font-size: 0.69rem;
  font-weight: 850;
  line-height: 1.1;
}

.people-grid {
  display: grid;
  gap: 9px;
}

.people-card {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: white;
  padding: 11px;
  color: var(--ink);
}

.people-card:has(input:checked) {
  border-color: rgba(33, 100, 232, 0.32);
  background: #f4f8ff;
  box-shadow: 0 8px 22px rgba(33, 100, 232, 0.08);
}

.people-card input {
  width: 24px;
  min-height: 24px;
  accent-color: var(--blue);
}

.people-card strong,
.people-card small {
  display: block;
}

.people-card strong {
  font-size: 0.95rem;
}

.people-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.25;
}

.people-card em {
  align-self: start;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  padding: 6px 8px;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 820;
  white-space: nowrap;
}

.people-card:has(input:checked) em {
  background: var(--blue);
  color: white;
}

.profile-section {
  margin-top: 12px;
}

.profile-list {
  display: grid;
  gap: 10px;
}

.profile-source-group {
  display: grid;
  gap: 9px;
}

.profile-source-group + .profile-source-group {
  margin-top: 3px;
}

.profile-source-head {
  border-radius: var(--radius-control);
  background: #f7faff;
  padding: 9px 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}

.profile-source-group.source-familiar .profile-source-head {
  background: #fff7ec;
}

.profile-source-head strong,
.profile-source-head span {
  display: block;
}

.profile-source-head strong {
  font-size: 0.86rem;
}

.profile-source-head span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 720;
  line-height: 1.24;
}

.profile-source-head em {
  min-width: 28px;
  min-height: 28px;
  border-radius: 999px;
  background: white;
  color: var(--blue-dark);
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 900;
}

.profile-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: white;
  padding: 11px;
  box-shadow: 0 10px 24px rgba(20, 31, 54, 0.06);
}

.profile-card.is-selected {
  border-color: rgba(33, 100, 232, 0.42);
  background: #f8fbff;
  box-shadow: 0 10px 24px rgba(33, 100, 232, 0.1);
}

.profile-card.is-active {
  border-color: rgba(13, 143, 116, 0.38);
  box-shadow: inset 0 0 0 1px rgba(13, 143, 116, 0.18), 0 8px 22px rgba(20, 31, 54, 0.06);
}

.profile-card.is-active .profile-identity-receipt {
  border-color: rgba(13, 143, 116, 0.3);
  background: #edf9f5;
}

.profile-gate {
  border: 1px dashed rgba(33, 100, 232, 0.34);
  border-radius: var(--radius-card);
  background: #f7faff;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.profile-gate strong {
  font-size: 0.92rem;
}

.profile-gate p,
.profile-gate small,
.token-note {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.32;
}

.profile-gate small {
  display: block;
  margin-top: 6px;
  font-weight: 760;
}

.token-action {
  min-height: 42px;
  border-radius: 14px;
}

.token-note {
  border-radius: 14px;
  background: #edf9f5;
  padding: 10px;
  font-weight: 720;
}

.profile-photo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--soft);
  border: 1px solid var(--line);
}

.profile-photo.is-limited,
.detail-photo.is-limited,
.sheet-photo.is-limited {
  filter: saturate(0.75);
  opacity: 0.86;
}

.profile-copy {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.profile-title-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 8px;
}

.profile-card-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.profile-name-row {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.profile-identity-receipt {
  width: fit-content;
  max-width: 100%;
  margin-top: 5px;
  border: 1px solid rgba(33, 100, 232, 0.16);
  border-radius: 999px;
  background: #f6f9ff;
  color: var(--blue-dark);
  display: inline-grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  padding: 4px 9px 4px 4px;
}

.profile-identity-receipt.is-compact {
  margin: 5px 0 3px;
  grid-template-columns: 22px minmax(0, 1fr);
  padding: 3px 8px 3px 3px;
}

.profile-identity-receipt.is-selected {
  border-color: rgba(13, 143, 116, 0.32);
  background: #edf9f5;
  color: var(--green-dark);
}

.profile-initial {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: currentColor;
  color: white;
  display: grid;
  place-items: center;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
}

.profile-identity-receipt.is-compact .profile-initial {
  width: 22px;
  height: 22px;
  font-size: 0.68rem;
}

.profile-identity-receipt strong,
.profile-identity-receipt small {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.profile-identity-receipt strong {
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.05;
}

.profile-identity-receipt small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 780;
  line-height: 1.08;
}

.profile-title-row h3 {
  font-size: 1rem;
}

.source-badge {
  border-radius: 999px;
  padding: 4px 7px;
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.source-badge.familiar {
  color: #81400d;
  background: #fff3df;
}

.source-badge.open {
  color: var(--blue-dark);
  background: #e5efff;
}

.trust-badge {
  min-height: 22px;
  border-radius: 999px;
  padding: 3px 7px 3px 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--blue-dark);
  background: #e5efff;
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.trust-badge.is-mini {
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 900;
}

.trust-badge.is-inline {
  vertical-align: middle;
}

.trust-icon {
  position: relative;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: currentColor;
  flex: 0 0 auto;
}

.trust-icon::before,
.trust-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.trust-badge.is-verified {
  color: var(--blue-dark);
  background: #edf4ff;
}

.trust-badge.is-verified .trust-icon::after {
  left: 4px;
  top: 3px;
  width: 6px;
  height: 4px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}

.trust-badge.is-familiar {
  color: #81400d;
  background: #fff3df;
}

.trust-badge.is-familiar .trust-icon::before,
.trust-badge.is-familiar .trust-icon::after {
  top: 4px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: white;
}

.trust-badge.is-familiar .trust-icon::before {
  left: 3px;
}

.trust-badge.is-familiar .trust-icon::after {
  right: 3px;
}

.trust-badge.is-open {
  color: var(--green);
  background: #e7f8f3;
}

.trust-badge.is-open .trust-icon::after {
  inset: 4px;
  border: 2px solid white;
  border-radius: 999px;
}

.trust-badge.is-host {
  color: #5b4be0;
  background: #f0edff;
}

.trust-badge.is-host .trust-icon::before {
  left: 3px;
  top: 7px;
  width: 9px;
  height: 5px;
  background: white;
  border-radius: 1px;
}

.trust-badge.is-host .trust-icon::after {
  left: 4px;
  top: 3px;
  width: 7px;
  height: 7px;
  border-left: 2px solid white;
  border-top: 2px solid white;
  transform: rotate(45deg);
}

.trust-badge.is-trusted {
  color: #9a3b25;
  background: #fff0e8;
}

.trust-badge.is-trusted .trust-icon::after {
  left: 4px;
  top: 3px;
  width: 7px;
  height: 8px;
  border: 2px solid white;
  border-top-width: 3px;
  border-radius: 2px 2px 5px 5px;
}

.trust-badge.is-private {
  color: #475467;
  background: #f2f4f7;
}

.trust-badge.is-private .trust-icon::before {
  left: 4px;
  top: 6px;
  width: 7px;
  height: 6px;
  background: white;
  border-radius: 1px;
}

.trust-badge.is-private .trust-icon::after {
  left: 5px;
  top: 3px;
  width: 5px;
  height: 5px;
  border: 2px solid white;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}

.trust-badge.is-picked {
  color: white;
  background: var(--green);
}

.trust-badge.is-picked .trust-icon {
  background: white;
}

.trust-badge.is-picked .trust-icon::after {
  left: 4px;
  top: 3px;
  width: 6px;
  height: 4px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.profile-title-row p,
.profile-detail {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.28;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.profile-tags span {
  border-radius: 999px;
  background: #edf4ff;
  color: var(--blue-dark);
  padding: 5px 8px;
  font-size: 0.74rem;
  font-weight: 780;
}

.mini-action {
  min-width: 86px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: var(--blue);
  font-size: 0.82rem;
  font-weight: 850;
  padding: 0 11px;
}

.mini-action.is-selected {
  color: var(--blue-dark);
  background: #dfeaff;
}

.profile-card-ask-action {
  min-width: 64px;
  background: var(--green);
}

.profile-card-ask-action.is-selected {
  color: var(--green);
  background: #edf9f5;
}

.secondary-action {
  color: var(--ink);
  background: #eef2f7;
}

.danger-action {
  color: #9f2d1f;
  background: #fff2ed;
}

.profile-preview {
  margin: 0 0 10px;
}

body.is-prototype-mobile #whoView .profile-preview {
  display: none;
}

.detail-card {
  border: 1px solid rgba(13, 143, 116, 0.22);
  border-radius: var(--radius-card);
  background: #f4fbf8;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.detail-hero {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  align-items: center;
}

.detail-photo {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-control);
  object-fit: cover;
  border: 1px solid rgba(13, 143, 116, 0.2);
  background: white;
}

.detail-hero p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.3;
}

.detail-list {
  display: grid;
  gap: 8px;
  margin: 0;
}

.detail-list div {
  border-top: 1px solid rgba(13, 143, 116, 0.16);
  padding-top: 8px;
}

.detail-list dt {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.detail-list dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.3;
}

.field-source-panel {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
}

.detail-card .field-source-panel {
  margin-bottom: 0;
}

.field-source-panel article {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius-control);
  background: #fbfcff;
  padding: 10px;
}

.field-source-panel strong,
.field-source-panel p,
.field-source-panel small {
  display: block;
}

.field-source-panel strong {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.field-source-panel p {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.3;
}

.field-source-panel small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 760;
  line-height: 1.28;
}

.profile-add-action {
  min-height: 48px;
  border: 0;
  border-radius: var(--radius-control);
  color: white;
  background: var(--green);
  font-weight: 850;
}

.profile-add-action.is-selected {
  color: var(--green);
  background: white;
  border: 1px solid rgba(13, 143, 116, 0.24);
}

.profile-sheet[hidden] {
  display: none;
}

.profile-sheet {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  align-items: end;
}

.sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.42);
}

.sheet-panel {
  position: relative;
  z-index: 1;
  width: min(430px, 100%);
  max-height: 88dvh;
  margin: 0 auto;
  border-radius: 22px 22px 0 0;
  background: white;
  padding: 18px 16px max(18px, env(safe-area-inset-bottom));
  box-shadow: 0 -18px 60px rgba(17, 24, 39, 0.24);
  overflow: auto;
}

.sheet-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 850;
}

.sheet-hero {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 13px;
  align-items: center;
  padding-right: 42px;
  margin-bottom: 14px;
}

.sheet-photo {
  width: 84px;
  height: 84px;
  border-radius: 26px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--soft);
}

.sheet-hero p:last-child {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.3;
}

.sheet-detail-list {
  margin-bottom: 14px;
}

.privacy-strip {
  border: 1px solid rgba(33, 100, 232, 0.14);
  border-radius: 18px;
  background: #f6f9ff;
  padding: 13px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.privacy-strip h2 {
  font-size: 1.05rem;
}

.privacy-strip p:last-child {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.34;
}

.event-section {
  margin-top: 16px;
}

.event-section:first-child {
  margin-top: 0;
}

.event-list,
.response-list,
.notice-list,
.work-queue-list {
  display: grid;
  gap: 8px;
}

.confirmed-outings-section {
  border: 1px solid rgba(13, 143, 116, 0.14);
  border-radius: 16px;
  background: rgba(244, 251, 248, 0.74);
  padding: 10px;
}

.action-queue-section {
  border: 1px solid rgba(33, 100, 232, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  padding: 10px;
}

.work-row {
  min-width: 0;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 14px;
  background: white;
  padding: 9px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  box-shadow: 0 8px 18px rgba(20, 31, 54, 0.05);
}

.work-row.is-question {
  border-color: rgba(33, 100, 232, 0.22);
  background: #f8fbff;
}

.work-row.is-selection,
.work-row.is-open-response {
  border-color: rgba(13, 143, 116, 0.2);
  background: #f8fcfa;
}

.work-row.is-answer {
  border-color: rgba(226, 90, 61, 0.16);
  background: #fffdfb;
}

.work-row-photo,
.work-row-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: #edf4ff;
  object-fit: cover;
}

.work-row-icon {
  position: relative;
  display: grid;
  place-items: center;
}

.work-row-icon::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 3px solid var(--blue);
  border-radius: 50%;
}

.work-row-main {
  min-width: 0;
}

.work-row-kicker {
  color: var(--blue-dark);
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.work-row-main h3 {
  margin-top: 3px;
  font-size: 0.98rem;
  line-height: 1.15;
}

.work-row-main p,
.work-row-main small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
  line-height: 1.24;
}

.work-row-main small {
  color: #465366;
}

.work-row-tags {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.work-row-tags span {
  border-radius: 999px;
  background: #eef2f7;
  color: #344054;
  padding: 4px 7px;
  font-size: 0.66rem;
  font-weight: 820;
}

.work-row-side {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.event-card,
.response-card,
.notice-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  padding: 11px;
  box-shadow: 0 8px 18px rgba(20, 31, 54, 0.05);
}

.plan-management-card,
.invite-answer-card {
  box-shadow: none;
}

.invite-answer-card .recipient-detail-list {
  border-radius: 12px;
  background: #fbfcfe;
  padding: 8px;
}

.invite-answer-card .initiator-preview {
  margin: 8px 0;
}

.event-card.is-raised {
  border-color: rgba(13, 143, 116, 0.32);
  background: #f4fbf8;
}

.response-card {
  border-color: rgba(13, 143, 116, 0.22);
  background: #f8fcfa;
}

.response-card-main,
.response-meta-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.response-card-main h3 {
  font-size: 1rem;
  line-height: 1.18;
}

.response-card-main p,
.response-detail,
.response-meta-row {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.3;
}

.response-detail {
  margin-top: 8px;
  font-weight: 680;
}

.response-receipt {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.receipt-block {
  min-width: 0;
  border: 1px solid rgba(13, 143, 116, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  padding: 9px;
}

.receipt-block > span,
.receipt-block > strong,
.receipt-next-step strong,
.receipt-next-step span {
  display: block;
}

.receipt-block > span {
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.receipt-block > strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: 0.84rem;
  line-height: 1.28;
}

.receipt-columns,
.receipt-question-list,
.receipt-update-list {
  display: grid;
  gap: 8px;
}

.receipt-question-list,
.receipt-update-list {
  margin-top: 7px;
  gap: 6px;
}

.receipt-question-row {
  border-radius: 11px;
  background: #f3fbf8;
  padding: 7px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 7px;
}

.receipt-question-row strong,
.receipt-question-row small,
.receipt-question-row em,
.receipt-update-row strong,
.receipt-update-row p {
  display: block;
}

.receipt-question-row strong {
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.22;
}

.receipt-question-row small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 720;
  line-height: 1.2;
}

.receipt-question-row em {
  border-radius: 999px;
  background: #e7f8f3;
  color: var(--green-dark);
  padding: 4px 6px;
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.receipt-update-row {
  border-left: 3px solid rgba(13, 143, 116, 0.35);
  border-radius: 11px;
  background: #f4fbf8;
  padding: 7px 8px;
}

.receipt-update-row strong {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.receipt-update-row p {
  margin-top: 3px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.28;
}

.receipt-empty {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 720;
  line-height: 1.28;
}

.receipt-next-step {
  border-radius: 13px;
  background: #eefaf5;
  padding: 8px 9px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 8px;
}

.receipt-next-step strong {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.receipt-next-step span {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 740;
  line-height: 1.25;
}

.response-status {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #e7f8f3;
  color: #0f766e;
  padding: 6px 9px;
  font-size: 0.75rem;
  font-weight: 900;
}

.response-meta-row {
  align-items: center;
  margin-top: 9px;
  font-weight: 820;
}

.event-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.event-card-head h3,
.notice-card h3 {
  font-size: 1rem;
  line-height: 1.18;
}

.event-card-head p,
.notice-card p,
.event-person-row small,
.event-status {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.3;
}

.countdown-pill {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #fff7ed;
  color: #9a3b25;
  padding: 7px 9px;
  font-size: 0.78rem;
  font-weight: 850;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.timer-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 50%;
  opacity: 0.8;
}

.timer-icon::before,
.timer-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 2px;
  border-radius: 2px;
  background: currentColor;
  transform-origin: bottom center;
}

.timer-icon::before {
  height: 5px;
}

.timer-icon::after {
  height: 4px;
  transform: rotate(48deg);
}

.event-status {
  margin-top: 9px;
  font-weight: 740;
}

.confirmed-outing-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(13, 143, 116, 0.26);
  background: linear-gradient(180deg, #ffffff 0%, #f6fcf9 100%);
}

.confirmed-outing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.88) 44%, transparent 62%);
  transform: translateX(-120%);
  animation: unlock-sheen 900ms ease-out 180ms both;
}

.confirmed-outing-pill {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #e7f8f3;
  color: var(--green-dark);
  padding: 7px 9px;
  font-size: 0.74rem;
  font-weight: 900;
}

.confirmed-logistics {
  margin-top: 10px;
  border: 1px solid rgba(13, 143, 116, 0.16);
  border-radius: 14px;
  background: #f4fbf8;
  padding: 9px;
}

.confirmed-logistics span {
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.confirmed-logistics p {
  margin-top: 4px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 720;
  line-height: 1.34;
}

.event-person-list {
  display: grid;
  gap: 7px;
  margin-top: 10px;
}

.event-person-row {
  min-height: 54px;
  border-radius: 15px;
  background: var(--soft);
  padding: 8px 9px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
}

.event-person-row.is-removed {
  opacity: 0.72;
  background: #f9fafb;
}

.event-person-row.is-request {
  border: 1px solid rgba(33, 100, 232, 0.22);
  background: #edf4ff;
}

.event-person-row.is-find-request {
  border: 1px solid rgba(13, 143, 116, 0.24);
  background: #f3fbf8;
}

.event-person-row.is-picked {
  border: 1px solid rgba(13, 143, 116, 0.38);
  background: #eefaf5;
  box-shadow: inset 0 0 0 1px rgba(13, 143, 116, 0.12);
}

.event-person-row.is-confirmed-unlocked {
  position: relative;
  border: 1px solid rgba(13, 143, 116, 0.32);
  background: #f8fdfa;
  box-shadow: 0 0 0 0 rgba(13, 143, 116, 0.26);
  animation: unlock-ring 760ms ease-out 120ms both;
}

.originator-clarification-panel {
  border: 1px solid rgba(33, 100, 232, 0.2);
  border-radius: 14px;
  background: #f8fbff;
  padding: 9px;
  display: grid;
  gap: 7px;
}

.originator-clarification-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.originator-clarification-head strong,
.originator-clarification-head small,
.shared-detail-editor span {
  display: block;
}

.originator-clarification-head strong {
  font-size: 0.86rem;
}

.originator-clarification-head small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 730;
  line-height: 1.22;
}

.clarification-request-list {
  display: grid;
  gap: 6px;
}

.clarification-request-list p {
  border-radius: 11px;
  background: #edf4ff;
  color: var(--blue-dark);
  padding: 7px 8px;
  font-size: 0.78rem;
  font-weight: 820;
  line-height: 1.25;
}

.shared-detail-editor {
  display: grid;
  gap: 5px;
}

.shared-detail-editor span {
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.shared-detail-editor textarea {
  width: 100%;
  min-height: 62px;
  resize: vertical;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 13px;
  background: white;
  color: var(--ink);
  padding: 8px;
  font-size: 0.84rem;
  line-height: 1.32;
}

.shared-detail-editor textarea:focus {
  outline: 2px solid rgba(33, 100, 232, 0.22);
  border-color: rgba(33, 100, 232, 0.44);
}

.clarification-actions {
  justify-content: flex-start;
}

.event-person-main {
  min-width: 0;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 9px;
}

.event-person-title {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.source-badge-mini {
  border-radius: 999px;
  background: #dff7ee;
  color: var(--green);
  padding: 3px 6px;
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.source-badge-mini.picked {
  background: var(--green);
  color: white;
}

.event-person-photo {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: white;
}

.event-person-photo.is-hidden {
  position: relative;
  display: grid;
  place-items: center;
  background: #e8edf5;
}

.event-person-photo.is-hidden::before {
  content: "";
  width: 12px;
  height: 9px;
  border: 2px solid var(--muted);
  border-radius: 3px;
  transform: translateY(3px);
}

.event-person-photo.is-hidden::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 10px;
  height: 8px;
  border: 2px solid var(--muted);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.event-person-row strong,
.event-person-row small {
  display: block;
}

.event-person-row em {
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 780;
}

.event-person-row .source-badge-mini {
  color: var(--green);
  font-size: 0.64rem;
}

.event-person-row .source-badge-mini.picked {
  color: white;
}

.event-person-detail {
  grid-column: 1 / -1;
  margin: -2px 0 0 45px;
  color: var(--ink);
  font-size: 0.8rem;
  line-height: 1.26;
}

.event-person-tags {
  grid-column: 1 / -1;
  margin-left: 45px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.event-person-tags span {
  border-radius: 999px;
  background: #edf4ff;
  color: var(--blue-dark);
  padding: 4px 7px;
  font-size: 0.68rem;
  font-weight: 820;
}

.unlocked-contact-card {
  grid-column: 1 / -1;
  margin-left: 45px;
  border: 1px solid rgba(13, 143, 116, 0.2);
  border-radius: 14px;
  background: white;
  padding: 9px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 9px;
  align-items: start;
}

.unlock-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e7f8f3;
  color: var(--green-dark);
  display: grid;
  place-items: center;
}

.unlock-badge span {
  position: relative;
  width: 14px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 3px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.unlock-badge span::before {
  content: "";
  position: absolute;
  left: 1px;
  top: -11px;
  width: 11px;
  height: 11px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
  transform: translateX(5px) rotate(25deg);
  transform-origin: bottom left;
}

.contact-kicker,
.unlocked-contact-card dt {
  color: var(--green-dark);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.unlocked-contact-card strong {
  margin-top: 2px;
  font-size: 0.9rem;
}

.unlocked-contact-card dl {
  margin: 7px 0 0;
  display: grid;
  gap: 5px;
}

.unlocked-contact-card div {
  min-width: 0;
}

.unlocked-contact-card dd {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 780;
  overflow-wrap: anywhere;
}

.unlocked-contact-card small {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.28;
}

.person-timer {
  min-height: 30px;
  border-radius: 999px;
  background: white;
  color: #9a3b25;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 8px;
  font-size: 0.78rem;
  font-weight: 850;
  white-space: nowrap;
}

.event-person-row > .person-timer {
  justify-self: start;
}

.request-status {
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.row-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 7px;
}

.initiator-preview {
  margin: 10px 0;
  border: 1px solid rgba(13, 143, 116, 0.18);
  border-radius: 18px;
  background: #f4fbf8;
  padding: 10px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 10px;
  align-items: center;
}

.initiator-preview img {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  object-fit: cover;
  border: 1px solid rgba(13, 143, 116, 0.2);
}

.initiator-preview p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.28;
}

.recipient-detail-list {
  display: grid;
  gap: 7px;
  margin: 8px 0 10px;
}

.recipient-detail-list div {
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  padding-top: 7px;
}

.recipient-detail-list dt {
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.recipient-detail-list dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-size: 0.84rem;
  line-height: 1.3;
}

.recipient-response-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 10px 0;
}

.inline-action {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: #edf4ff;
  color: var(--blue-dark);
  padding: 0 10px;
  font-size: 0.8rem;
  font-weight: 850;
}

.inline-action.danger {
  color: #9a3b25;
  background: #fff0e8;
}

.inline-action.is-selected {
  color: white;
  background: var(--green);
}

.inline-action:disabled {
  cursor: not-allowed;
  color: #8b96a5;
  background: #e7ebf0;
}

.compact-action {
  min-height: 42px;
  margin-top: 10px;
  border-radius: 14px;
}

.notice-card {
  display: grid;
  gap: 9px;
  background: #fbfcfe;
}

.notice-card small {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.34;
}

.bottom-action {
  margin-top: 0;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  padding: 10px 0 4px;
  background: rgba(255, 255, 255, 0.96);
  position: relative;
  z-index: 3;
}

.bottom-action.has-error-locator {
  display: grid;
  gap: 8px;
}

.bottom-action[hidden] {
  display: none;
}

.bottom-error-locator {
  border: 1px solid rgba(226, 90, 61, 0.24);
  border-radius: 14px;
  background: #fff8f4;
  color: #7a3322;
  padding: 8px 8px 8px 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}

.bottom-error-locator[hidden] {
  display: none;
}

.bottom-error-locator span {
  min-width: 0;
  font-size: 0.8rem;
  font-weight: 820;
  line-height: 1.24;
}

.bottom-error-jump {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: #9a3b25;
  color: white;
  padding: 0 12px;
  font-size: 0.76rem;
  font-weight: 900;
  white-space: nowrap;
}

.primary-action,
.secondary-action,
.confirm-button {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: var(--radius-control);
  color: white;
  background: var(--blue);
  padding: 0 16px;
  font-size: 1rem;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(33, 100, 232, 0.24);
}

.secondary-action {
  color: var(--blue-dark);
  background: #edf4ff;
  box-shadow: none;
}

.confirm-button {
  background: var(--green);
  box-shadow: 0 12px 28px rgba(13, 143, 116, 0.2);
}

.primary-action.is-blocked {
  background: #9a3b25;
  box-shadow: 0 12px 28px rgba(154, 59, 37, 0.18);
}

.primary-action:disabled,
.secondary-action:disabled,
.confirm-button:disabled {
  cursor: not-allowed;
  color: #8b96a5;
  background: #e7ebf0;
  box-shadow: none;
}

.review-summary-card {
  margin-top: 14px;
  border-radius: 18px;
  background: #111827;
  color: white;
  padding: 16px;
  box-shadow: var(--soft-shadow);
}

.summary-kicker {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.review-summary-card h3 {
  margin-top: 7px;
  font-size: 1.5rem;
  line-height: 1.08;
}

.summary-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.summary-tags span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  padding: 7px 9px;
  font-size: 0.82rem;
  font-weight: 780;
}

.summary-note {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.34;
}

.review-people {
  margin-top: 14px;
}

.review-people-list {
  display: grid;
  gap: 8px;
}

.review-person {
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  padding: 9px;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 22px rgba(20, 31, 54, 0.06);
}

.review-private-source {
  border-style: dashed;
  background: #f8fafc;
}

.review-person img {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  object-fit: cover;
}

.review-person strong,
.review-person span {
  display: block;
}

.review-person span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.timeline-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.timeline-item,
.reply-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: white;
  padding: 14px;
  box-shadow: 0 8px 22px rgba(20, 31, 54, 0.06);
}

.timeline-item p,
.reply-card p {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.38;
  font-size: 0.94rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
}

.timeline-item > span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  margin-top: 3px;
  background: #d8dee8;
}

.timeline-item.is-active > span {
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(33, 100, 232, 0.12);
}

.timeline-item.is-complete > span {
  background: var(--green);
}

.reply-box {
  margin-top: 16px;
}

.empty-state {
  border: 1px dashed rgba(17, 24, 39, 0.16);
  border-radius: var(--radius-card);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.58);
  padding: 15px;
  line-height: 1.38;
}

.reply-card {
  display: grid;
  gap: 12px;
}

.reply-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.reply-meta span {
  border-radius: 999px;
  background: #edf4ff;
  color: var(--blue-dark);
  padding: 7px 9px;
  font-size: 0.8rem;
  font-weight: 780;
}

.action-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}

@media (max-width: 900px) {
  .app-shell {
    width: min(430px, 100%);
  }
}

@media (max-width: 480px) {
  .home-dashboard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .unlocked-contact-card {
    margin-left: 0;
  }
}

@keyframes unlock-sheen {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@keyframes unlock-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(13, 143, 116, 0.28);
  }

  70% {
    box-shadow: 0 0 0 7px rgba(13, 143, 116, 0.08);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(13, 143, 116, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .confirmed-outing-card::before,
  .event-person-row.is-confirmed-unlocked {
    animation: none;
  }
}
