/* RentalApplication.ai — site CSS (ported from Claude Design bundle).
   Brand orange overridden to #E97724 to match the canonical logo. */

:root {
  --orange: #F5A028;
  --orange-dark: #E08A10;
  --orange-soft: #FFF4E0;
  --orange-tint: #FEF9EF;
  --ink: #2A2A2A;
  --ink-soft: #4A4A4A;
  --muted: #6B6B6B;
  --line: #E8E5E0;
  --line-soft: #F1EFEB;
  --bg: #FAF8F4;
  --paper: #FFFFFF;
  --green: #2F8F5C;
  --red: #C04545;

  --accent: var(--orange);
  --accent-dark: var(--orange-dark);
  --accent-soft: var(--orange-soft);
  --accent-tint: var(--orange-tint);

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(40, 30, 10, 0.04), 0 1px 1px rgba(40, 30, 10, 0.03);
  --shadow: 0 4px 14px rgba(40, 30, 10, 0.06), 0 1px 3px rgba(40, 30, 10, 0.04);
  --shadow-lg: 0 18px 40px rgba(40, 30, 10, 0.08), 0 4px 12px rgba(40, 30, 10, 0.05);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

.app { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; width: 100%; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; width: 100%; }

/* ─── Nav ────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 18px;
  letter-spacing: -0.02em; color: var(--ink);
  background: none; border: 0; padding: 0; cursor: pointer;
}
.nav-logo-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--accent); display: grid; place-items: center;
  color: white; flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 28px; flex: 1; justify-content: center; }
.nav-link {
  font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  cursor: pointer; padding: 6px 0; border: 0; background: none;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--ink); border-bottom-color: var(--accent); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* ─── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 10px; border: 1px solid transparent;
  font-size: 14.5px; font-weight: 600; cursor: pointer;
  transition: transform 0.08s, background 0.15s, border-color 0.15s, box-shadow 0.15s;
  white-space: nowrap; font-family: inherit;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: white; box-shadow: 0 1px 0 rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.18); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: white; border-color: #d8d4ce; }
.btn-quiet { background: transparent; color: var(--ink-soft); border-color: transparent; }
.btn-quiet:hover { color: var(--ink); }
.btn-lg { padding: 14px 24px; font-size: 15.5px; border-radius: 12px; }
.btn-sm { padding: 7px 12px; font-size: 13px; border-radius: 8px; }
.btn-block { width: 100%; }

/* ─── Cards / Pills ──────────────────────────────── */
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.01em;
}
.pill-orange { background: var(--accent-soft); color: var(--accent-dark); }
.pill-green { background: #E5F3EC; color: #1F6B43; }
.pill-gray { background: #EEEAE3; color: var(--ink-soft); }

/* ─── Sections ───────────────────────────────────── */
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.eyebrow {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent-dark);
}

/* ─── Hero ───────────────────────────────────────── */
.hero { padding: 80px 0 100px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }
.hero h1 { font-size: clamp(40px, 5.2vw, 60px); line-height: 1.02; letter-spacing: -0.035em; }
.hero h1 .accent { color: var(--accent); }
.hero-sub { margin-top: 24px; font-size: 19px; color: var(--ink-soft); line-height: 1.5; max-width: 540px; }
.hero-actions { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 28px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--muted);
}
.hero-trust-item { display: inline-flex; align-items: center; gap: 7px; }
.hero-bg-shape {
  position: absolute; top: -120px; right: -120px; width: 480px; height: 480px;
  background: radial-gradient(circle at center, var(--accent-soft) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero-grid > * { position: relative; z-index: 1; }

/* ─── Tier card grid ─────────────────────────────── */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .tier-grid { grid-template-columns: 1fr; } }

.tier-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: 28px;
}
.tier-card.popular { border-color: var(--accent); border-width: 2px; box-shadow: var(--shadow-lg); }
.tier-card-popular-pill { position: absolute; top: -12px; left: 24px; }
.tier-name {
  font-size: 13px; color: var(--muted); font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.tier-tagline { font-size: 18px; margin-top: 4px; font-weight: 600; line-height: 1.3; }
.tier-price-row { display: flex; align-items: baseline; gap: 6px; margin: 16px 0 6px; }
.tier-price-int { font-size: 44px; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: -0.03em; }
.tier-price-frac { font-size: 24px; font-weight: 700; color: var(--ink-soft); }
.tier-price-suffix { font-size: 14px; color: var(--muted); margin-left: 4px; }
.tier-features { display: flex; flex-direction: column; gap: 10px; }
.tier-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.tier-feature-check { color: var(--accent); margin-top: 2px; }
.tier-feature-spark { color: var(--accent); margin-top: 2px; }
.tier-feature-x { color: var(--muted); margin-top: 2px; }
.tier-feature-name { font-weight: 600; }
.tier-feature-desc { color: var(--muted); font-size: 13px; }

/* ─── Step card (How it works) ───────────────────── */
.how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 40px; margin-top: 24px; }
.how-step { position: relative; padding: 24px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.how-step-num {
  position: absolute; top: -16px; left: 24px;
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--ink); color: white;
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px; font-family: 'Plus Jakarta Sans', sans-serif;
}
.how-step h3 { font-size: 17px; margin-top: 8px; margin-bottom: 8px; }
.how-step p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

/* ─── Value props ────────────────────────────────── */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; }
.value-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent-dark);
  display: grid; place-items: center; margin-bottom: 16px;
}
.value-prop h3 { font-size: 18px; margin-bottom: 8px; }
.value-prop p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }

/* ─── AI feature row ─────────────────────────────── */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .feature-row { grid-template-columns: 1fr; } }

.feature-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; font-size: 15px; }
.feature-list li { display: flex; gap: 10px; }
.feature-list .check-mark { color: var(--accent); }

.feature-callout {
  margin-top: 28px; padding: 18px;
  background: var(--accent-tint); border-radius: 12px; border: 1px solid var(--line);
  font-size: 14px;
}

/* AI call transcript card */
.transcript-card { padding: 0; overflow: hidden; box-shadow: var(--shadow-lg); }
.transcript-head {
  padding: 14px 18px; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg);
}
.transcript-head .live-dot { width: 8px; height: 8px; border-radius: 999px; background: #22A06B; }
.transcript-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; background: white; }
.transcript-bubble {
  max-width: 78%; padding: 10px 14px; border-radius: 14px;
  font-size: 13.5px; line-height: 1.45;
}
.transcript-row { display: flex; }
.transcript-row.left { justify-content: flex-start; }
.transcript-row.right { justify-content: flex-end; }
.transcript-row.left .transcript-bubble { background: var(--accent-tint); color: var(--ink); border-top-left-radius: 4px; }
.transcript-row.right .transcript-bubble { background: var(--ink); color: white; border-top-right-radius: 4px; }
.transcript-who { font-size: 11px; font-weight: 600; margin-bottom: 3px; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.04em; }
.transcript-foot {
  padding: 14px; border-top: 1px solid var(--line);
  background: var(--bg); display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px;
}
.transcript-foot a { color: var(--accent); font-weight: 600; }

/* Hero AI call preview card */
.hero-card { position: relative; max-width: 520px; margin-left: auto; }
.hero-call-frame { position: relative; aspect-ratio: 16 / 10; background: linear-gradient(135deg, #2A2A2A 0%, #4A3A20 100%); display: grid; place-items: center; overflow: hidden; }
.hero-call-bars { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 4px; padding: 0 20%; opacity: 0.35; }
.hero-call-bar { flex: 1; background: var(--accent); border-radius: 2px; }
.hero-call-play {
  position: relative; z-index: 2;
  width: 72px; height: 72px; border-radius: 999px;
  background: rgba(255,255,255,0.95); border: 0;
  display: grid; place-items: center; cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.hero-call-meta {
  position: absolute; bottom: 14px; left: 16px; right: 16px;
  display: flex; justify-content: space-between; align-items: center;
  color: white; font-size: 12.5px; font-weight: 500; z-index: 2;
}
.hero-call-rec-dot { width: 8px; height: 8px; border-radius: 999px; background: #FF5050; display: inline-block; margin-right: 8px; vertical-align: middle; }
.hero-card-caption { padding: 18px; background: white; border-top: 1px solid var(--line); }
.hero-card-caption .q { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.hero-card-caption .by { font-size: 12.5px; color: var(--muted); font-style: italic; }

/* ─── Compare CTA card ───────────────────────────── */
.compare-cta {
  padding: 40px; background: var(--ink); color: white; border-color: var(--ink);
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; align-items: center;
}
@media (max-width: 800px) { .compare-cta { grid-template-columns: 1fr; text-align: left; } }
.compare-cta h2 { color: white; font-size: 28px; margin-bottom: 12px; line-height: 1.15; }
.compare-cta p { color: #BFBAB1; font-size: 16px; line-height: 1.55; }
.compare-cta-actions { text-align: right; }
@media (max-width: 800px) { .compare-cta-actions { text-align: left; } }

/* ─── FAQ ────────────────────────────────────────── */
.faq-row { border-bottom: 1px solid var(--line); }
.faq-toggle {
  width: 100%; padding: 20px 0; background: none; border: 0;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left; font-family: inherit;
}
.faq-q { font-weight: 600; font-size: 16px; color: var(--ink); }
.faq-icon { color: var(--accent); transition: transform 0.2s; }
.faq-row.open .faq-icon { transform: rotate(45deg); }
.faq-a { padding-bottom: 22px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; max-width: 720px; display: none; }
.faq-row.open .faq-a { display: block; animation: fadeIn 0.35s ease-out; }

/* ─── CTA bottom card ────────────────────────────── */
.cta-card {
  background: var(--accent-tint); border: 1px solid var(--line);
  border-radius: 24px; padding: 56px; text-align: center;
}
.cta-card h2 { font-size: 34px; margin-bottom: 28px; line-height: 1.1; }

/* ─── Footer ─────────────────────────────────────── */
.footer { margin-top: auto; background: #1F1E1C; color: #BFBAB1; padding: 56px 0 32px; }
.footer h4 { color: white; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; margin-bottom: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer a { display: block; font-size: 14px; color: #BFBAB1; padding: 5px 0; cursor: pointer; }
.footer a:hover { color: white; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid #353330;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; flex-wrap: wrap; gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand-mark { width: 32px; height: 32px; background: var(--accent); border-radius: 8px; display: grid; place-items: center; }
.footer-brand-name { color: white; font-weight: 700; font-size: 17px; font-family: 'Plus Jakarta Sans', sans-serif; }
.footer-tag { font-size: 13.5px; color: #8B867D; line-height: 1.55; max-width: 280px; margin-bottom: 18px; }
.powered-by-lotly { display: inline-flex; align-items: center; gap: 8px; color: #8B867D; font-size: 12.5px; }
.powered-by-lotly .powered-by-label { color: #8B867D; }
.powered-by-lotly img {
  height: 20px;
  width: auto;
  /* SVG already ships with wordmark in white + icon in Lotly orange.
     No filter needed. */
  opacity: 0.95;
}
.powered-by-lotly:hover img { opacity: 1; }

/* ─── Tables ─────────────────────────────────────── */
.table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 14px; }
.table th, .table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line-soft); }
.table th { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); font-weight: 600; background: var(--bg); }
.table tr:last-child td { border-bottom: 0; }
.compare-table { font-size: 13.5px; }
.compare-table th, .compare-table td { padding: 14px 10px; vertical-align: middle; }
.compare-table th:first-child, .compare-table td:first-child { padding-left: 20px; }
.compare-table th:last-child, .compare-table td:last-child { padding-right: 20px; }
.compare-table th { font-size: 11px; letter-spacing: 0.04em; line-height: 1.3; }

/* ─── Toggles + check rows (Pricing builder, FCRA gate) ─ */
.toggle { position: relative; display: inline-flex; background: var(--line-soft); border-radius: 999px; padding: 4px; gap: 0; }
.toggle-opt {
  position: relative; padding: 8px 16px; font-size: 13.5px; font-weight: 600;
  color: var(--ink-soft); border-radius: 999px; cursor: pointer; border: 0;
  background: transparent; z-index: 1; transition: color 0.18s; font-family: inherit;
}
.toggle-opt.active { color: var(--ink); background: white; box-shadow: var(--shadow-sm); }

.input, .select, textarea.input {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--paper);
  font-size: 14.5px; font-family: inherit; color: var(--ink);
  transition: border-color 0.12s, box-shadow 0.12s;
}
.input:focus, .select:focus, textarea.input:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }

.check-row {
  display: flex; align-items: flex-start; gap: 12px; padding: 16px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); cursor: pointer; transition: border-color 0.12s, background 0.12s;
}
.check-row:hover { border-color: #d8d4ce; }
.check-row.checked { border-color: var(--accent); background: var(--accent-tint); }
.check-box {
  width: 22px; height: 22px; border-radius: 6px; border: 1.5px solid #c8c4bc;
  background: white; display: grid; place-items: center; flex-shrink: 0;
  transition: background 0.12s, border-color 0.12s; margin-top: 1px; color: white;
}
.check-row.checked .check-box { background: var(--accent); border-color: var(--accent); }
.check-box svg { opacity: 0; transition: opacity 0.12s; }
.check-row.checked .check-box svg { opacity: 1; }

/* ─── Pricing builder layout ─────────────────────── */
.builder-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: 32px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 36px;
}
@media (max-width: 900px) { .builder-card { grid-template-columns: 1fr; gap: 24px; } }
.builder-rows { display: flex; flex-direction: column; gap: 10px; }
.builder-summary {
  background: var(--accent-tint); border-radius: 14px; padding: 24px;
  align-self: start; border: 1px solid var(--line);
}

/* ─── Contact grid ───────────────────────────────── */
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr !important; }
}

/* ─── Legal body ─────────────────────────────────── */
.legal-body h2 { font-size: 22px; margin-top: 40px; margin-bottom: 12px; letter-spacing: -0.01em; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 16px; margin-top: 24px; margin-bottom: 8px; }
.legal-body p, .legal-body li { font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; }
.legal-body p { margin-bottom: 14px; }
.legal-body ul { padding-left: 22px; margin-bottom: 14px; }
.legal-body li { margin-bottom: 6px; }
.legal-body strong { color: var(--ink); font-weight: 600; }
.legal-body .meta { font-size: 13px; color: var(--muted); margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.legal-body a { color: var(--accent-dark); text-decoration: underline; }

/* ─── Avatar + nav account menu ──────────────────── */
.avatar {
  width: 36px; height: 36px; border-radius: 999px;
  background: linear-gradient(135deg, #F5A028, #E08A10); color: white;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.nav-account { position: relative; }
.nav-account summary {
  list-style: none; cursor: pointer; padding: 0; background: none; border: 0;
  display: inline-flex; align-items: center;
}
.nav-account summary::-webkit-details-marker { display: none; }
.nav-account summary .avatar { width: 32px; height: 32px; font-size: 12px; }
.nav-account-menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  min-width: 220px; background: white;
  border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow); padding: 8px; z-index: 60;
}
.nav-account-email {
  padding: 8px 12px; font-size: 12.5px; color: var(--muted);
  border-bottom: 1px solid var(--line-soft); margin-bottom: 4px; word-break: break-all;
}
.nav-account-menu a {
  display: block; padding: 8px 12px; font-size: 14px; color: var(--ink);
  border-radius: 8px; cursor: pointer;
}
.nav-account-menu a:hover { background: var(--accent-tint); }

/* ─── Onboarding flow ────────────────────────────── */
.ob-steps {
  display: flex; gap: 8px; margin: 0 0 24px; flex-wrap: wrap;
  background: white; border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 8px;
}
.ob-step {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--muted);
}
.ob-step span {
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--line-soft); color: var(--ink-soft);
  display: grid; place-items: center; font-weight: 700; font-size: 12px;
}
.ob-step.active { color: var(--ink); background: var(--accent-tint); }
.ob-step.active span { background: var(--accent); color: white; }
.ob-step.done span { background: var(--green); color: white; }
.ob-step.done { color: var(--ink); }

.ob-choice-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
@media (max-width: 700px) { .ob-choice-grid { grid-template-columns: 1fr; } }
.ob-choice {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 18px 18px; text-align: left; cursor: pointer;
  background: white; border: 1px solid var(--line); border-radius: 12px;
  transition: border-color 0.12s, background 0.12s;
  font-family: inherit; color: var(--ink);
}
.ob-choice:hover { border-color: #d8d4ce; }
.ob-choice.active {
  border-color: var(--accent); background: var(--accent-tint);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.ob-choice-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--accent-soft); color: var(--accent-dark);
  display: grid; place-items: center; flex-shrink: 0;
}
.ob-choice.active .ob-choice-icon { background: var(--accent); color: white; }
.ob-choice-title { font-weight: 600; font-size: 14.5px; margin-bottom: 4px; }
.ob-choice-desc  { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }

.ob-grid { grid-template-columns: 1fr 1fr; }
@media (max-width: 700px) { .ob-grid { grid-template-columns: 1fr !important; } }

.ob-agreement-box {
  height: 360px; overflow-y: auto;
  background: var(--bg); border: 1px solid var(--line); border-radius: 12px;
  padding: 24px 28px; scroll-behavior: smooth;
}
.ob-agreement-box .legal-body h2 { font-size: 18px; margin-top: 24px; }
.ob-agreement-box .legal-body h2:first-child { margin-top: 0; }
.ob-agreement-box .legal-body h3 { font-size: 14.5px; }
.ob-agreement-box .legal-body p,
.ob-agreement-box .legal-body li { font-size: 13.5px; line-height: 1.6; }

/* FCRA status strip on dashboard */
.fcra-strip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 500; line-height: 1;
  border: 1px solid var(--line);
  background: white;
  cursor: pointer;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
}
.fcra-strip:hover { border-color: #d8d4ce; }
.fcra-strip-icon { display: inline-flex; }
.fcra-strip-todo { color: var(--accent-dark); border-color: var(--accent); background: var(--accent-tint); }
.fcra-strip-todo:hover { background: var(--accent-soft); }
.fcra-strip-done { color: #1F6B43; border-color: #bfe3ce; background: #E5F3EC; }
.fcra-strip-done:hover { background: #D5EAD9; }

/* Status dot */
.dot { width: 8px; height: 8px; border-radius: 999px; display: inline-block; }
.dot.green { background: var(--green); }
.dot.amber { background: #D89028; }
.dot.gray { background: #B5B0A6; }
.dot.red { background: var(--red); }

.row-hover:hover { background: var(--accent-tint); cursor: pointer; }

/* ─── Misc ───────────────────────────────────────── */
.divider { height: 1px; background: var(--line); margin: 0; border: 0; }
.fade-in { animation: fadeIn 0.35s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.dot { width: 8px; height: 8px; border-radius: 999px; display: inline-block; }
.dot.green { background: var(--green); }
