/* Roostly design tokens
   Navy + warm cream stay from the original logo-sampled palette; orange
   (urgent) and a new green (healthy/done, replacing the old teal — they
   meant near-identical things, so this collapses them into one accent
   instead of keeping two) round out the semantic colors. One self-hosted
   variable font (Manrope) for both display and body — see fonts/README.md
   for where the file comes from — replaces the old serif/system-sans
   split; the wordmark stays distinctive via weight/tracking instead of a
   second typeface. */

@font-face {
  font-family: 'Manrope Variable';
  src: url('../fonts/manrope-variable.woff2') format('woff2-variations');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #faf7f2;
  --surface: #ffffff;
  --ink: #20252b;
  --ink-soft: #667085;
  --brand-navy: #073b66;        /* primary actions, headings accent */
  --brand-orange: #e7a62b;      /* urgent / high priority */
  --brand-orange-soft: #f3c988; /* medium priority */
  --brand-green: #3f7d64;       /* healthy / completed / success */
  --link-blue: #2f6feb;         /* auth-screen link accent — distinct from navy headings */
  --line: #e4e1db;

  /* Task-category colors — deliberately a different hue family from the
     urgency/success colors above so a category badge and an urgency badge
     never read as the same kind of signal sitting side by side. */
  --cat-plumbing-bg: #e3eef6;  --cat-plumbing-ink: #2b5f82;
  --cat-hvac-bg: #f5e6de;      --cat-hvac-ink: #96522e;
  --cat-exterior-bg: #e6eee1;  --cat-exterior-ink: #4b6b3b;
  --cat-interior-bg: #ede5f0;  --cat-interior-ink: #6b4a82;
  --cat-safety-bg: #f7e3e1;    --cat-safety-ink: #a13b2e;
  --cat-other-bg: #eeeae3;     --cat-other-ink: #6b655a;
  --radius: 14px;
  --shadow-card: 0 1px 2px rgba(32, 37, 43, 0.04), 0 2px 8px rgba(32, 37, 43, 0.06);
  --nav-height: 64px;

  --font-display: 'Manrope Variable', Inter, Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Manrope Variable', Inter, Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

/* No replaced element (photo, inline SVG chart, etc.) may exceed its column.
   An intrinsic width, or a width="100%" SVG inside a flex row, is a known
   iOS WebKit trap that forces the page wider than the viewport and lets the
   whole document scroll sideways — pairs with the html/body guard below. */
img, svg, video, canvas {
  max-width: 100%;
}

/* App-wide guard against sideways panning. A single content element wider
   than the viewport (e.g. a long unbreakable string in user data) would
   otherwise let the whole page scroll horizontally in the iOS webview.
   overflow-x: clip contains it without creating a scroll container, so the
   sticky .top-bar keeps working (unlike overflow-x: hidden). */
html {
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

/* --- Header ------------------------------------------------------------ */

.top-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg);
  /* viewport-fit=cover makes the webview full-screen, so without the top
     safe-area inset the bar (and its tap targets, e.g. the account-menu
     gear) render under the status bar / Dynamic Island and are hard or
     impossible to tap. Pad the top by the inset so the header clears it. */
  padding: calc(18px + env(safe-area-inset-top)) 20px 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-brand { display: flex; align-items: center; gap: 8px; }
.top-bar-logo { display: block; width: 28px; height: 28px; border-radius: 8px; }

.top-bar h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--brand-navy);
}

.icon-btn {
  background: none;
  border: none;
  padding: 8px;
  margin: -8px;
  border-radius: 999px;
  color: var(--ink-soft);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-btn:hover { background: var(--bg); color: var(--ink); }

/* Account menu — a small anchored sheet opened from the header icon button.
   Holds the actions that used to crowd the old text-tab nav (Manage
   Subscription, Export, Log out). */
#account-menu {
  position: fixed;
  top: 62px;
  right: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 6px;
  min-width: 220px;
  z-index: 40;
}
#account-menu.hidden { display: none !important; }
#account-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--ink);
  cursor: pointer;
}
#account-menu button:hover { background: var(--bg); }
#account-menu button svg { color: var(--ink-soft); flex-shrink: 0; }
#account-menu button.danger-action,
#account-menu button.danger-action svg { color: #a13b2e; }
#account-menu button.danger-action:hover { background: #f8e3e1; }

.account-menu-label { padding: 8px 12px 2px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-soft); }
.account-menu-divider { height: 1px; background: var(--line); margin: 6px 4px; }
.home-switcher-row span { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-switcher-row.active { font-weight: 700; }
.home-switcher-row .home-switcher-check { color: var(--brand-green); flex-shrink: 0; }
.home-switcher-row-wrap { display: flex; align-items: center; gap: 2px; }
.home-switcher-row-wrap .home-switcher-row { flex: 1; min-width: 0; }
#account-menu .home-switcher-delete-btn { width: auto; flex-shrink: 0; padding: 10px; color: #a13b2e; }
#account-menu .home-switcher-delete-btn:hover { background: #f8e3e1; }

#notifications-toggle-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--ink);
  cursor: pointer;
}
#notifications-toggle-row:hover { background: var(--bg); }
#notifications-toggle-row svg { color: var(--ink-soft); flex-shrink: 0; }
#notifications-toggle-row span { flex: 1; }
#notifications-status { padding: 0 12px 8px; font-size: 12px; }

.toggle-switch {
  appearance: none;
  -webkit-appearance: none;
  width: 38px;
  height: 22px;
  margin: 0;
  background: var(--line);
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s ease;
}
.toggle-switch::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.15s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.toggle-switch:checked { background: var(--brand-navy); }
.toggle-switch:checked::before { transform: translateX(16px); }

/* --- Bottom navigation --------------------------------------------------- */

#main-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(var(--nav-height) + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  display: flex;
  background: var(--surface);
  border-top: 1px solid var(--line);
  box-shadow: 0 -2px 10px rgba(32, 37, 43, 0.05);
  z-index: 30;
}

.nav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--ink-soft);
  cursor: pointer;
}
.nav-btn svg { width: 22px; height: 22px; }
.nav-btn.active { color: var(--brand-navy); font-weight: 700; }

/* --- Ask Roostly: FAB + chat overlay -------------------------------------- */
/* #main-nav is z-index 30, #account-menu is 40 — the chat overlay is a
   full-screen 45, above both (they never spatially overlap anyway, since
   account-menu is a top-right dropdown and the overlay only covers the
   screen while open). */

.fab {
  position: fixed;
  right: 16px;
  bottom: calc(var(--nav-height) + env(safe-area-inset-bottom) + 16px);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--brand-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  z-index: 35;
  cursor: pointer;
}
.fab.hidden { display: none !important; }

#chat-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}
#chat-overlay.hidden { display: none !important; }

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.chat-header h2 { margin: 0; }
.chat-subtitle { margin: 2px 0 0; font-size: 12.5px; }

#chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}

.chat-bubble {
  max-width: 80%;
  padding: 12px 14px;
  border-radius: var(--radius);
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.4;
  white-space: pre-wrap;
}
.chat-bubble.user { background: var(--brand-navy); color: #fff; margin-left: auto; }
.chat-bubble.assistant { background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-card); }

.chat-thinking { color: var(--ink-soft); font-size: 13px; margin-bottom: 10px; animation: chat-pulse 1.4s ease-in-out infinite; }
@keyframes chat-pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

.chat-bubble-photo {
  max-width: 100%;
  border-radius: var(--radius);
  margin-bottom: 6px;
  display: block;
}

.scan-photo-slot { margin-bottom: 16px; }
.scan-photo-slot-label { margin-bottom: 6px; font-weight: 600; }
.scan-photo-slot-optional { font-weight: 400; }
.scan-photo-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}
.scan-photo-preview img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.chat-photo-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}
.chat-photo-preview img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: var(--radius);
}

.chat-input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px calc(env(safe-area-inset-bottom) + 12px);
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}
.chat-input-bar input { flex: 1; min-width: 0; }
/* Icon-only used to be ambiguous ("what does the camera icon even do
   here?") — a short visible label next to it removes the guesswork
   without needing the full "Take photo" / "Choose photo from gallery"
   button text this exact icon+label pair uses everywhere else in the
   app, which wouldn't fit in this one-row input bar. */
.chat-attach-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 6px 8px;
  border-radius: 999px;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
}
.chat-attach-btn svg { flex-shrink: 0; }
.chat-attach-btn:hover { background: var(--bg); color: var(--ink); }

/* Every screen gets bottom padding so its last piece of content never sits
   under the fixed nav bar or (via the safe-area inset) the device's own
   home indicator. */
.screen {
  display: none;
  padding: 20px 20px calc(var(--nav-height) + env(safe-area-inset-bottom) + 20px);
  max-width: 640px;
  margin: 0 auto;
}
.screen.active { display: block; }

/* Auth/paywall/forgot-password screens have no bottom nav showing, so they
   don't need the extra reserved space — keeps those forms from looking
   like they have a huge empty gap underneath. */
#screen-auth.active, #screen-paywall.active, #screen-forgot-password.active {
  padding-bottom: 20px;
}

h2 { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--brand-navy); margin-top: 0; }
h3 { font-family: var(--font-display); font-weight: 700; color: var(--brand-navy); }

.hint { color: var(--ink-soft); font-size: 14px; }

form { display: flex; flex-direction: column; gap: 14px; margin: 16px 0; }

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--brand-navy);
  font-weight: 700;
}

input, select, textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--brand-navy); outline-offset: 1px; }

button[type="submit"], .btn-primary {
  background: var(--brand-navy);
  color: white;
  border: none;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

button[type="submit"]:hover, .btn-primary:hover { opacity: 0.92; }
button[type="submit"]:disabled, .btn-primary:disabled { opacity: 0.45; cursor: not-allowed; }

.btn-secondary {
  background: var(--surface);
  color: var(--brand-navy);
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-secondary:hover { background: var(--bg); }

.btn-danger {
  background: #a13b2e;
  color: white;
  border: none;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-danger:hover { opacity: 0.9; }
.btn-danger:disabled { opacity: 0.45; cursor: not-allowed; }

#delete-account-overlay,
#upgrade-landlord-overlay,
#confirm-address-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#delete-account-overlay.hidden,
#upgrade-landlord-overlay.hidden,
#confirm-address-overlay.hidden { display: none !important; }
.delete-account-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 420px;
  width: 100%;
  box-shadow: var(--shadow-card);
}
.delete-account-card h2 { margin-top: 0; }
.delete-account-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.delete-account-actions button { flex: 1; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 18px;
  margin-bottom: 16px;
}

/* --- Dashboard ----------------------------------------------------------- */

.dashboard-header-row { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
/* Let the greeting block shrink (flex children default to min-width:auto,
   which refuses to shrink below their content and would push the
   flex-shrink:0 weather card off-screen on narrow widths / long names). */
.dashboard-header-row > div { min-width: 0; flex: 1 1 60%; }
.greeting { font-family: var(--font-display); font-weight: 800; font-size: 22px; margin: 0; overflow-wrap: anywhere; }
.dashboard-header-row .hint { margin: 2px 0 0; }

.weather-mini-card { flex-shrink: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-card); padding: 8px 12px; display: flex; align-items: center; gap: 8px; text-align: right; font-family: inherit; cursor: pointer; }
.weather-mini-card svg { color: var(--brand-navy); flex-shrink: 0; }
.weather-mini-card-label { display: block; font-size: 10px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; }
.weather-mini-card strong { display: block; font-size: 15px; }
.weather-mini-card-condition { display: block; font-size: 11px; color: var(--ink-soft); }

.health-card-v2 { display: flex; flex-direction: column; gap: 16px; }
.health-card-top { display: flex; align-items: center; gap: 18px; }
.health-ring { flex-shrink: 0; }
.health-ring text { font-family: var(--font-display); font-weight: 800; fill: var(--ink); }
.health-summary { min-width: 0; }
.health-score-label { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--ink-soft); }
.health-status-word { display: block; font-family: var(--font-display); font-weight: 800; font-size: 20px; margin: 2px 0 4px; }
.health-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding-top: 14px; border-top: 1px solid var(--line); }
.health-stat { display: flex; flex-direction: column; align-items: center; gap: 6px; cursor: pointer; border-radius: var(--radius); padding: 4px; }
.health-stat:hover, .health-stat:focus-visible { background: var(--bg); }
.health-stat-circle { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 15px; color: white; }
.health-stat-circle.stat-red { background: #c0392b; }
.health-stat-circle.stat-amber { background: var(--brand-orange); }
.health-stat-circle.stat-green { background: var(--brand-green); }
.health-stat span:last-child { font-size: 11px; color: var(--ink-soft); font-weight: 600; }

.health-trend-row { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
.health-trend-svg { flex: 1; min-width: 0; display: block; }
.health-trend-text { flex-shrink: 0; font-size: 12px; font-weight: 700; color: var(--ink-soft); white-space: nowrap; }

.section-label { font-size: 13px; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; margin: 20px 0 10px; }

.today-focus-card { display: flex; align-items: center; gap: 12px; }
.today-focus-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--radius); background: var(--bg); border: 1px solid var(--line); color: var(--brand-navy); display: flex; align-items: center; justify-content: center; }
.today-focus-body { flex: 1; min-width: 0; }
.today-focus-top { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.today-focus-top strong { font-size: 14.5px; }
.today-focus-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; font-size: 12px; color: var(--ink-soft); }
.today-focus-btn { flex-shrink: 0; padding: 9px 14px; font-size: 13px; }

.ai-insight-card { background: #f1edfa; border: 1px solid #e2d9f7; display: flex; gap: 10px; align-items: flex-start; }
.ai-insight-card svg { color: #7c5cd6; flex-shrink: 0; margin-top: 2px; }
.ai-insight-card p { margin: 2px 0 0; font-size: 13px; color: var(--ink); }

.due-soon-list { display: flex; flex-direction: column; gap: 8px; }
.due-soon-view-all { text-transform: none; letter-spacing: normal; font-weight: 600; margin-left: 2px; }
.due-soon-item { background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--brand-navy); border-radius: var(--radius); padding: 10px 12px; cursor: pointer; }
.due-soon-item:hover { border-color: var(--brand-navy); }
.due-soon-item.overdue { border-left-color: #c0392b; }
.due-soon-top { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.due-soon-top strong { font-size: 14px; }
.due-soon-when { font-size: 12px; color: var(--ink-soft); flex-shrink: 0; }
.due-soon-item.overdue .due-soon-when { color: #c0392b; font-weight: 700; }
.due-soon-item .task-badges { margin-top: 6px; }

.seasonal-card { background: var(--brand-navy); color: white; display: flex; gap: 10px; align-items: flex-start; }
.seasonal-card svg { flex-shrink: 0; margin-top: 2px; }
.seasonal-card p { margin: 2px 0 0; font-size: 13px; color: #cfe0ee; }

.weather-alert-card { background: var(--brand-orange); color: white; display: flex; flex-direction: column; gap: 12px; }
.weather-alert-row { display: flex; gap: 10px; align-items: flex-start; }
.weather-alert-row + .weather-alert-row { padding-top: 12px; border-top: 1px solid rgba(255, 255, 255, 0.25); }
.weather-alert-row svg { flex-shrink: 0; margin-top: 2px; }
.weather-alert-row strong { display: block; font-size: 14px; }
.weather-alert-row p { margin: 2px 0 0; font-size: 13px; color: rgba(255, 255, 255, 0.85); }

/* Real government-issued advisories (OpenWeatherMap One Call 4.0) — a
   deliberately different color from .weather-alert-card (our own
   rule-based alerts) so the two are never mistaken for the same kind of
   signal. */
.official-alert-card { background: #a13b2e; color: white; display: flex; flex-direction: column; gap: 12px; }
.official-alert-row { display: flex; gap: 10px; align-items: flex-start; }
.official-alert-row + .official-alert-row { padding-top: 12px; border-top: 1px solid rgba(255, 255, 255, 0.25); }
.official-alert-row svg { flex-shrink: 0; margin-top: 2px; }
.official-alert-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 2px 8px;
  margin-bottom: 4px;
}
.official-alert-row strong { display: block; font-size: 14px; }
.official-alert-row p { margin: 2px 0 0; font-size: 13px; color: rgba(255, 255, 255, 0.9); }
.official-alert-source { display: block; margin-top: 6px; font-size: 11.5px; color: rgba(255, 255, 255, 0.75); }

.appliance-strip { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; }
.appliance-chip { flex-shrink: 0; width: 72px; text-align: center; }
.appliance-chip-icon { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); height: 52px; display: flex; align-items: center; justify-content: center; color: var(--brand-navy); }
.appliance-chip span { display: block; font-size: 11px; color: var(--ink-soft); margin-top: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.suggestion-chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.suggestion-chip {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--brand-navy);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
}
.suggestion-chip:hover { background: var(--bg); border-color: var(--brand-navy); }

.quick-actions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.qa-tile { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 12px 8px; display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 12.5px; color: var(--ink); }
.qa-tile svg { color: var(--brand-navy); }
.qa-tile:hover { background: var(--bg); border-color: var(--brand-navy); }

.ask-roostly-card { width: 100%; margin-top: 16px; background: var(--surface); border: 1.5px solid var(--brand-navy); border-radius: 999px; padding: 12px 16px; display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-soft); }
.ask-roostly-card svg { color: var(--brand-navy); flex-shrink: 0; }

/* --- Climate strip -------------------------------------------------------- */

.climate-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.climate-strip strong { font-size: 14px; }
.climate-strip p { margin: 2px 0 0; font-size: 13px; color: var(--ink-soft); }
#climate-details { margin-top: 12px; }
#climate-details summary { cursor: pointer; font-size: 13px; color: var(--brand-navy); font-weight: 600; list-style: none; }
#climate-details summary::-webkit-details-marker { display: none; }
#climate-details ul { margin: 10px 0 0; padding-left: 18px; font-size: 14px; color: var(--ink-soft); }

/* --- Month / task cards ---------------------------------------------------- */

/* margin-top separates this from whatever sits above it — in Schedule
   that's the "Your tasks" heading (already spaced), but in the Binder
   Documents view it directly follows the upload form with nothing else
   in between, so without this the "Scan a receipt..." button read as
   part of the upload form instead of its own action. */
.schedule-action-group { margin: 20px 0 14px; }
.schedule-actions-hint { margin: 6px 0 0; }

.schedule-quick-actions { margin: 20px 0 0; }

/* Now a <details> — was always-expanded, meaning every month's full task
   list stacked one after another and pushed the actually-relevant month
   (usually the first/soonest one) well below the fold. Only the first
   month defaults open; the rest collapse to a single summary row until
   tapped. */
.month-block { margin-bottom: 14px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.month-block summary {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 12px 14px;
  background: var(--surface);
  list-style: none;
}
.month-block summary::-webkit-details-marker { display: none; }
.month-block summary h3 { margin: 0; border-bottom: none; padding-bottom: 0; font-size: 16px; }
.month-block-count {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--bg);
  border-radius: 999px;
  padding: 2px 9px;
  flex-shrink: 0;
}
.month-block-body { padding: 4px 14px 14px; background: var(--bg); }

.task {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand-navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 14px 16px;
  margin-bottom: 10px;
}

/* Overdue tasks previously had no action beyond the plain checkbox and a
   trip into Task Details — these three make dealing with an overdue task
   a single tap (Mark done, Skip) or two (Reschedule, pick a date). */
.task-overdue-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.task-overdue-actions .btn-secondary { padding: 6px 12px; font-size: 13px; display: inline-flex; align-items: center; gap: 4px; }
.task-reschedule-edit { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.task-reschedule-edit input[type="date"] { flex: 1; min-width: 140px; }

/* Collapsed by default — was a full "Assigned to" label + <select> shown
   unconditionally on every card. The toggle button's own label carries
   the current state, so nothing is hidden, just tucked away until wanted. */
.task-assign-row { margin-top: 8px; }
.task-assign-edit { margin-top: 6px; }
.task-assign-edit.hidden { display: none; }

.completed-tasks-section { margin-top: 4px; }
.completed-tasks-section summary {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 13px;
  color: var(--brand-green);
  font-weight: 600;
  list-style: none;
  padding: 8px 0;
}
.completed-tasks-section summary::-webkit-details-marker { display: none; }
.completed-tasks-section .task { opacity: 0.7; }

.appliance-task-group {
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.appliance-task-group summary {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 12px 14px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  background: var(--surface);
  list-style: none;
}
.appliance-task-group summary::-webkit-details-marker { display: none; }
.appliance-task-group-count {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--bg);
  border-radius: 999px;
  padding: 2px 9px;
}
.appliance-task-group-body { padding: 0 14px 14px; background: var(--bg); }

.task.high { border-left-color: var(--brand-orange); }
.task.medium { border-left-color: var(--brand-orange-soft); }
.task:has(input[type="checkbox"]:checked) { border-left-color: var(--brand-green); }

.task-row { display: flex; align-items: center; gap: 12px; }
.task-row input[type="checkbox"] { width: 22px; height: 22px; flex-shrink: 0; accent-color: var(--brand-green); }
.task-row strong { font-size: 15px; }
.task-title-link { cursor: pointer; }
.task-title-link:hover { text-decoration: underline; }

.task-badges { display: flex; flex-wrap: wrap; gap: 6px; margin: 8px 0 0 34px; }

.category-badge, .urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px 3px 7px;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1.5;
}
.category-badge svg { width: 12px; height: 12px; flex-shrink: 0; }

.cat-plumbing { background: var(--cat-plumbing-bg); color: var(--cat-plumbing-ink); }
.cat-hvac { background: var(--cat-hvac-bg); color: var(--cat-hvac-ink); }
.cat-exterior { background: var(--cat-exterior-bg); color: var(--cat-exterior-ink); }
.cat-interior { background: var(--cat-interior-bg); color: var(--cat-interior-ink); }
.cat-safety { background: var(--cat-safety-bg); color: var(--cat-safety-ink); }
.cat-other { background: var(--cat-other-bg); color: var(--cat-other-ink); }

.urgency-high { background: var(--brand-orange); color: #402400; }
.urgency-medium { background: var(--brand-orange-soft); color: #402400; }
.urgency-overdue { background: #f8e3e1; color: #a13b2e; }
.urgency-done { background: #e7eee3; color: var(--brand-green); }

.task-why { margin: 8px 0 0; font-size: 13px; color: var(--ink-soft); }
.task-why.truncated { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }

.task-meta { display: flex; align-items: center; gap: 6px; margin-top: 8px; font-size: 12px; color: var(--ink-soft); }

.task details { margin-top: 6px; }
.task summary { cursor: pointer; font-size: 12px; color: var(--brand-navy); font-weight: 600; list-style: none; }
.task summary::-webkit-details-marker { display: none; }

.cost-range-inputs { display: flex; align-items: center; gap: 8px; }
.cost-range-inputs input { flex: 1; min-width: 0; }

/* --- Task Detail screen ----------------------------------------------------- */
.task-detail-back-btn { display: inline-flex; align-items: center; gap: 4px; background: none; border: none; padding: 0 0 18px; font-size: 14px; font-weight: 600; color: var(--ink-soft); cursor: pointer; }
.task-detail-back-btn:hover { color: var(--ink); }

.task-detail-icon-row { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px; }
.task-detail-icon { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; color: var(--brand-navy); }

.task-detail-title { font-family: var(--font-display); font-weight: 800; font-size: 22px; margin: 4px 0 0; text-wrap: balance; }

.task-detail-meta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 18px 0; }
.task-detail-meta-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 12px 8px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.task-detail-meta-card svg { color: var(--ink-soft); }
.task-detail-meta-card strong { font-size: 14px; }
.task-detail-meta-card span { font-size: 11px; color: var(--ink-soft); }

.task-detail-section { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 12px; }
.task-detail-section p { margin: 6px 0 0; font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }

.task-detail-checklist { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.task-detail-checklist li { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; color: var(--ink); }
.task-detail-checklist svg { color: var(--brand-green); flex-shrink: 0; margin-top: 2px; }

.task-detail-info-card { display: flex; flex-direction: column; gap: 14px; }
.task-detail-info-row { display: flex; align-items: center; gap: 10px; }
.task-detail-info-row svg { color: var(--ink-soft); flex-shrink: 0; }
.task-detail-info-row div { display: flex; flex-direction: column; }
.task-detail-info-label { font-size: 12px; color: var(--ink-soft); }
.task-detail-info-row strong { font-size: 14px; }

.task-detail-complete-btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 4px; }

/* --- Binder ---------------------------------------------------------------- */

.upload-actions { display: flex; gap: 10px; margin: 16px 0; }
.upload-actions label {
  flex: 1;
  align-items: center;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  padding: 18px 10px;
  text-align: center;
  cursor: pointer;
  color: var(--brand-navy);
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
}
.upload-actions label:hover { background: var(--surface); border-color: var(--brand-navy); }
.upload-actions input[type="file"] { display: none; }
.upload-actions select { margin-top: 4px; font-weight: 400; color: var(--ink-soft); }

.binder-category { margin-bottom: 20px; }
.binder-category h3 { font-size: 14px; margin-bottom: 8px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; }

.binder-file {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 8px;
  font-size: 14px;
}
.binder-file svg { color: var(--ink-soft); flex-shrink: 0; }
.binder-file a { color: var(--brand-navy); font-weight: 600; text-decoration: none; }
.binder-file a:hover { text-decoration: underline; }
.binder-file-main { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; }
.binder-file-warranty-row { display: flex; align-items: center; gap: 10px; }
.binder-file-warranty { font-size: 12px; color: var(--ink-soft); }
.binder-file-warranty.soon { color: var(--brand-orange); font-weight: 600; }
.binder-file-warranty-edit { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.binder-file-warranty-edit input[type="date"] { font-size: 13px; padding: 4px 6px; }

/* --- Segmented control (Binder: Documents / Inventory) ------------------- */
.segmented-control {
  display: flex;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 3px;
  margin: 12px 0 18px;
}
.segmented-btn {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  padding: 9px 2px;
  border-radius: calc(var(--radius) - 4px);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink-soft);
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.segmented-btn.active { background: var(--surface); color: var(--brand-navy); box-shadow: var(--shadow-card); }

/* --- Profile (Home) screen ------------------------------------------------ */
.profile-photo-header {
  position: relative;
  height: 160px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
  margin: 4px 0 14px;
}
.profile-photo-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.profile-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
}
.profile-photo-change-btn {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(32, 37, 43, 0.72);
  color: white;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
}

.profile-address-card { margin-bottom: 4px; }
.profile-address-row { display: flex; align-items: center; gap: 12px; }
.profile-address-row svg { color: var(--brand-navy); flex-shrink: 0; }
.profile-address-row strong { display: block; font-size: 15px; }

.profile-section-header { display: flex; align-items: center; justify-content: space-between; margin: 20px 0 10px; }
.profile-section-header .section-label { margin: 0; }

.at-a-glance-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.at-a-glance-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.at-a-glance-card strong { font-family: var(--font-display); font-size: 16px; }

.key-info-list { display: flex; flex-direction: column; }
.key-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.key-info-row:last-child { border-bottom: none; padding-bottom: 0; }
.key-info-row:first-child { padding-top: 0; }
.key-info-label { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: 13.5px; }
.key-info-label svg { color: var(--brand-navy); flex-shrink: 0; }
.key-info-value { font-weight: 600; font-size: 13.5px; text-align: right; }

.profile-member-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; }
.profile-member-row svg { color: var(--brand-green); flex-shrink: 0; }
.profile-member-row + .profile-member-row { border-top: 1px solid var(--line); }

.systems-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.systems-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.systems-tile svg { color: var(--brand-navy); }
.systems-tile strong { font-size: 14px; }

.form-field-row { display: flex; gap: 10px; }
.form-field-row label { flex: 1; min-width: 0; }

/* --- Inventory items ------------------------------------------------------ */
.inventory-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 8px;
  padding: 12px 14px;
}
.inventory-item-main { display: flex; align-items: center; gap: 12px; }
.inventory-item-photo { width: 44px; height: 44px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.inventory-item-photo-placeholder {
  width: 44px; height: 44px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg); color: var(--ink-soft);
}
.inventory-item-info { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.inventory-item-value { font-size: 13px; font-weight: 700; color: var(--brand-navy); }
.inventory-item-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }
.inventory-item-edit, .task-edit { display: flex; flex-direction: column; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); }

/* --- Expense items ---------------------------------------------------------- */
.expense-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 8px; padding: 12px 14px; }
.expense-item-main { display: flex; align-items: center; gap: 12px; }
.expense-item-photo { width: 44px; height: 44px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.expense-item-photo-placeholder {
  width: 44px; height: 44px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg); color: var(--ink-soft);
}
.expense-item-info { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.expense-item-category { font-size: 12px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.03em; }
.expense-item-amount { font-size: 15px; font-weight: 700; color: var(--brand-navy); flex-shrink: 0; }
.expense-item-edit { display: flex; flex-direction: column; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); }

#inventory-add-form label, #custom-task-add-form label, #expense-add-form label,
.inventory-item-edit label, .task-edit label, .expense-item-edit label {
  display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px;
  font-size: 13px; color: var(--ink-soft);
}
#inventory-add-form details, #expense-add-form details { margin: 4px 0; }
#inventory-add-form summary, #expense-add-form summary { cursor: pointer; font-size: 13px; color: var(--brand-navy); font-weight: 600; list-style: none; margin-bottom: 10px; }
#inventory-add-form summary::-webkit-details-marker, #expense-add-form summary::-webkit-details-marker { display: none; }

/* --- Misc / shared ----------------------------------------------------------- */

.hidden { display: none !important; }

.link-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--brand-navy);
  font-size: 13px;
  font-family: var(--font-body);
  text-decoration: underline;
  cursor: pointer;
}
.link-btn.with-icon { display: inline-flex; align-items: center; gap: 4px; text-decoration: none; }

.error { color: #b3261e; font-size: 14px; margin-top: 8px; }
.error:empty { display: none; }

.consent-label {
  flex-direction: row !important;
  align-items: center;
  gap: 8px !important;
  font-size: 13px;
}
.consent-label input[type="checkbox"] { width: auto; }

#verify-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  background: var(--brand-orange-soft);
  color: var(--ink);
  padding: 10px 20px;
  font-size: 13px;
}
#verify-banner .link-btn { color: var(--brand-navy); }

/* --- Profile save/generate status (My Home) -------------------------------- */
.profile-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
}
.profile-status.working { background: var(--brand-orange-soft); color: #6b4808; }

.working-banner {
  position: fixed;
  top: env(safe-area-inset-top);
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--brand-orange-soft);
  color: #6b4808;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.working-banner.hidden { display: none !important; }
.working-banner .spinner {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  border: 2px solid rgba(107, 72, 8, 0.25);
  border-top-color: #6b4808;
  border-radius: 50%;
  animation: profile-spin 0.7s linear infinite;
}
.profile-status .spinner {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  border: 2px solid rgba(107, 72, 8, 0.25);
  border-top-color: #6b4808;
  border-radius: 50%;
  animation: profile-spin 0.7s linear infinite;
}
@keyframes profile-spin { to { transform: rotate(360deg); } }

/* --- Auth screen ------------------------------------------------------------- */

/* Just the tagline now — the logo + "Roostly" wordmark used to repeat
   here too, directly under the identical logo + "Roostly" in .top-bar
   above. One brand mark per screen instead of two. */
.auth-hero { display: flex; flex-direction: column; align-items: center; text-align: center; margin: 20px 0 4px; }
.auth-tagline { font-size: 12px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.08em; margin: 0; }

/* Faint architectural-elevation sketch, purely decorative — bleeds past the
   screen's own side padding so it reaches the device edges like the
   reference mockup, sitting above the tagline and "Welcome" copy. */
.auth-illustration { margin: 4px -20px -6px; overflow: hidden; }
.auth-illustration img { display: block; width: 100%; height: auto; opacity: 0.16; }

/* No card boundary — the form sits directly on the page background,
   matching the reference (no border/shadow wrapping the whole form). */
.auth-card { padding: 4px 0 0; }
.auth-card h2 { margin-bottom: 2px; }
#auth-subheading { margin: 0 0 4px; }

.input-icon-wrap { position: relative; }
.input-icon-wrap input { width: 100%; padding-left: 40px; }
.input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-soft);
  display: flex;
  pointer-events: none;
}

.password-field .input-icon-wrap input { padding-right: 44px; }
.password-toggle {
  position: absolute;
  right: 4px;
  top: 4px;
  background: none;
  border: none;
  padding: 8px;
  color: var(--ink-soft);
  cursor: pointer;
}

.password-hint { font-size: 12px; color: var(--ink-soft); margin-top: -8px; }

.password-strength-meter { display: flex; align-items: center; gap: 8px; margin-top: -4px; }
.password-strength-bar { flex: 1; height: 4px; border-radius: 2px; background: var(--line); overflow: hidden; }
.password-strength-fill { height: 100%; width: 0%; border-radius: 2px; background: #c0392b; transition: width 0.2s ease, background 0.2s ease; }
.password-strength-fill.strength-weak { background: #c0392b; }
.password-strength-fill.strength-fair { background: var(--brand-orange); }
.password-strength-fill.strength-strong { background: var(--brand-green); }
.password-strength-label { font-size: 12px; font-weight: 700; color: var(--ink-soft); white-space: nowrap; }
.password-strength-label.strength-weak { color: #c0392b; }
.password-strength-label.strength-fair { color: var(--brand-orange); }
.password-strength-label.strength-strong { color: var(--brand-green); }

.auth-options-row { display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 8px; margin: -2px 0; }
.checkbox-label { flex-direction: row !important; align-items: center; gap: 6px !important; font-size: 13px; }
.checkbox-label input[type="checkbox"] { width: auto; }

.auth-submit-btn { display: flex; align-items: center; justify-content: center; gap: 8px; }

/* Forgot password / Create one — a distinct link blue, set apart from the
   navy used for headings and field labels. */
.auth-link-accent { color: var(--link-blue); font-weight: 600; }

.auth-switch { text-align: center; margin: 16px 0 0; }

.auth-trust {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-top: 1px solid var(--line);
  margin-top: 20px;
  padding-top: 18px;
}
.auth-trust-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e3efe8;
  color: var(--brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-trust-copy strong { display: block; font-size: 14px; color: var(--ink); }
.auth-trust-copy span { display: block; font-size: 12.5px; color: var(--ink-soft); margin-top: 2px; }
