:root{
  --ink:#14171F; --ink-2:#1B1F2C; --ink-3:#2B3044;
  --paper:#F6F3EC; --paper-2:#FFFFFF; --paper-soft:#EEEADC;
  --ink-soft:#5B5F72; --line:#E6E1D2;
  --amber:#E7A23A; --amber-deep:#C27F1F; --amber-pale:#F6DDB0;
  --go:#3E9C6F; --go-pale:#D9EFE2;
  --stop:#D45B45; --stop-pale:#F7DAD3;
}

* { box-sizing: border-box; }

body {
  font-family: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  margin: 0;
  background: var(--ink);
  color: var(--ink);
}

#app {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.hidden { display: none !important; }

.loading-splash {
  min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--ink);
}
.loading-splash .wordmark { font-size: 1.4rem; font-weight: 800; color: var(--paper); display: flex; align-items: center; gap: 8px; opacity: .85; }
.loading-splash .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--amber); display: inline-block; animation: loading-pulse 1.1s ease-in-out infinite; }
@keyframes loading-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }
@media (prefers-reduced-motion: reduce) { .loading-splash .dot { animation: none; } }

.view { position: relative; z-index: 1; padding: 18px; }

/* ---- login (branded hero + paper card, same language as rider) ---- */
#view-login { min-height: 100vh; padding: 0; background: var(--ink); display: flex; flex-direction: column; }
.hero-brand {
  padding: 30px 24px 18px; flex: 1; min-height: 190px;
  display: flex; flex-direction: column; justify-content: center; overflow: hidden; position: relative;
}
.wordmark { display: flex; align-items: center; gap: 8px; font-size: 1.55rem; font-weight: 800; color: var(--paper); letter-spacing: -0.02em; }
.wordmark .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--amber); display: inline-block; flex: 0 0 auto; }
.tagline { color: #9CA1B8; font-size: 0.85rem; margin: 5px 0 0; }
.hero-illustration { width: 100%; height: 84px; margin-top: 18px; display: block; }
.login-card {
  background: var(--paper); border-radius: 22px 22px 0 0; padding: 26px 22px 30px;
  box-shadow: 0 -16px 30px -20px rgba(20,23,31,.5); position: relative; z-index: 1;
}
.login-card h2 { color: var(--ink); font-size: 1.15rem; margin: 0 0 4px; }
.hint.light { color: var(--ink-soft); margin: 0 0 4px; }

.login-toggle { text-align: center; font-size: 0.82rem; color: var(--ink-soft); margin-top: 16px; }
.login-toggle button {
  display: inline; width: auto; margin: 0; padding: 0; background: none; border: none;
  color: var(--amber-deep); font-weight: 700; font-size: inherit; font-family: inherit;
  cursor: pointer; text-decoration: underline;
}
.login-toggle button:active { background: none; }

label { display: block; margin: 14px 0 4px; font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); }
#view-login label { color: #9CA1B8; }

input, textarea, select {
  width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 12px;
  font-size: 0.95rem; font-family: inherit; background: var(--paper-2); color: var(--ink);
}
textarea { min-height: 70px; resize: vertical; }

button {
  width: 100%; padding: 13px; margin-top: 16px; border: none; border-radius: 13px;
  background: var(--amber); color: #241703; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; font-family: inherit; display: flex; align-items: center; justify-content: center; gap: 9px;
}
button:active { background: var(--amber-deep); }
button:disabled { background: var(--line); color: var(--ink-soft); cursor: not-allowed; }
button.secondary { background: transparent; color: var(--ink-soft); border: 1px solid var(--line); }

.btn-spinner {
  width: 15px; height: 15px; border-radius: 50%;
  border: 2px solid rgba(36,23,3,.3); border-top-color: #241703;
  animation: btn-spin .7s linear infinite; flex: 0 0 auto;
}
.btn-spinner[hidden] { display: none; }
@keyframes btn-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .btn-spinner { animation-duration: 1.4s; } }

.otp-row { display: flex; gap: 5px; margin-top: 10px; }
.otp-row .otp-box { flex: 1; min-width: 0; height: 48px; text-align: center; padding: 0 2px; font-size: 1.05rem; font-weight: 700; }
.otp-row .otp-box:focus { outline: 2px solid var(--amber); outline-offset: 1px; }

.error {
  display: flex; align-items: flex-start; gap: 7px; background: var(--stop-pale); color: #6B241A;
  padding: 9px 11px; border-radius: 11px; font-size: 0.82rem; line-height: 1.4; margin-top: 10px;
}
.error[hidden] { display: none; }
.error .error-icon { flex: 0 0 auto; margin-top: 1px; color: #6B241A; }

.hint { font-size: 0.78rem; color: var(--ink-soft); margin: 4px 0; line-height: 1.4; }

/* ---- HOME ---- */
#view-home { background: var(--ink); min-height: 100vh; }
#view-home h2 { display: none; } /* replaced by the brandmark topbar */
.home-topbar {
  display: flex; align-items: center; gap: 7px; font-weight: 800; font-size: 0.85rem;
  color: var(--paper); margin-bottom: 4px;
}
.home-topbar .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--amber); }

.notice {
  border-radius: 13px; padding: 11px 13px; display: flex; gap: 9px; align-items: flex-start;
  font-size: 0.78rem; line-height: 1.5; margin: 14px 0;
}
.notice.warn { background: var(--amber-pale); color: #5C3E0C; }
.notice.stop { background: var(--stop-pale); color: #6B241A; }
.notice svg { flex: 0 0 auto; margin-top: 1px; }

.toggle-zone { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 30px 10px; }
.power-ring {
  width: 132px; height: 132px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,.12); position: relative; cursor: pointer; background: none; padding: 0; margin: 0;
}
.power-ring.online { border-color: var(--go); }
.power-ring.online::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--go);
  animation: breathe 2.4s ease-in-out infinite;
}
.power-ring:disabled { cursor: not-allowed; border-color: rgba(255,255,255,.06); }
@keyframes breathe { 0%,100%{ opacity:.55; transform:scale(1);} 50%{ opacity:0; transform:scale(1.18);} }
@media (prefers-reduced-motion: reduce) { .power-ring.online::after { animation: none; opacity: .3; } }
.power-core {
  width: 96px; height: 96px; border-radius: 50%; background: var(--ink-3);
  display: flex; align-items: center; justify-content: center; color: #8A8FA6;
}
.power-ring.online .power-core { background: var(--go); color: #0D2417; }
.status-label { font-weight: 800; font-size: 1rem; color: var(--paper); }
.status-label.online { color: var(--go); }
.status-sub { font-size: 0.75rem; color: #9CA1B8; text-align: center; max-width: 220px; }

#driver-map { height: 150px; width: 100%; border-radius: 14px; margin-top: 14px; background: var(--ink-2); }

/* ---- OFFER (full-screen urgent takeover) ---- */
#view-offer {
  position: fixed; inset: 0; z-index: 50; overflow-y: auto;
  background: radial-gradient(circle at 50% 0%, #2A2410 0%, var(--ink) 55%);
  display: flex; flex-direction: column;
}
#view-offer.hidden { display: none; }
.offer-top { text-align: center; padding: 14px 0 0; color: var(--paper); }
.offer-top .kicker { font-size: 0.68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--amber); font-weight: 800; }
.offer-top h2 { margin: 4px 0 0; font-size: 1.05rem; color: var(--paper); }

.ring-zone { flex: 1; display: flex; align-items: center; justify-content: center; position: relative; min-height: 220px; }
.ring-zone svg.track { transform: rotate(-90deg); }
.ring-zone .bg-ring { stroke: rgba(255,255,255,.1); }
.ring-zone .fg-ring { stroke: var(--amber); stroke-linecap: round; animation: deplete 16s linear forwards; }
@keyframes deplete { from { stroke-dashoffset: 0; } to { stroke-dashoffset: 411; } }
@media (prefers-reduced-motion: reduce) { .ring-zone .fg-ring { animation: none; stroke-dashoffset: 140; } }
.accept-core {
  position: absolute; width: 104px; height: 104px; border-radius: 50%; background: var(--amber); border: none;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  color: #241703; font-weight: 800; cursor: pointer; margin: 0; padding: 0;
}
.offer-facts { margin: 0 18px 14px; background: var(--paper); border-radius: 16px; padding: 14px 16px; }
.offer-facts .stop-row { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--ink); padding: 4px 0; }
.offer-facts .stat-row { display: flex; justify-content: space-between; margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--line); }
.offer-facts .stat { text-align: center; flex: 1; }
.offer-facts .stat .v { font-size: 0.95rem; color: var(--ink); font-weight: 700; font-variant-numeric: tabular-nums; }
.offer-facts .stat .l { font-size: 0.62rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .06em; }
.decline-link {
  display: block; text-align: center; color: #9CA1B8; font-size: 0.82rem; background: none; border: none;
  padding: 0 0 18px; width: 100%; font-family: inherit; cursor: pointer; margin: 0;
}

/* ---- TRIP (map-first sheet, same pattern as rider) ---- */
#trip-map-container { position: absolute; inset: 0; z-index: 0; }
#trip-map-container.hidden { display: none; }
#trip-map { height: 100%; width: 100%; background:
  radial-gradient(circle at 25% 20%, rgba(231,162,58,.10), transparent 42%),
  repeating-linear-gradient(115deg, var(--ink-3) 0 1px, transparent 1px 42px),
  repeating-linear-gradient(25deg, var(--ink-3) 0 1px, transparent 1px 58px), var(--ink-2); }

#view-trip {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  background: var(--paper); border-radius: 20px 20px 0 0;
  box-shadow: 0 -14px 30px -18px rgba(20,23,31,.35);
  max-height: 66vh; overflow-y: auto; padding: 16px 18px 20px;
}
#view-trip h2 { display: none; }

.stepper { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.stepper .seg { flex: 1; height: 3px; border-radius: 2px; background: var(--line); }
.stepper .seg.done { background: var(--go); }
.stepper .seg.now { background: var(--amber); }

.rider-row { display: flex; align-items: center; gap: 11px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--amber-pale); color: var(--amber-deep);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.9rem; flex: 0 0 auto;
}
#rider-info { flex: 1; }
.rider-meta p { margin: 0; font-size: 0.85rem; }
.rider-meta p:last-child { color: var(--ink-soft); font-size: 0.75rem; }

.icon-btn {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: var(--paper-2);
  color: var(--ink); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; padding: 0; margin: 0;
}

.stops { margin-top: 12px; position: relative; padding-left: 2px; }
.stop-line { position: absolute; left: 13px; top: 24px; bottom: 24px; width: 1px;
  background: repeating-linear-gradient(to bottom, var(--line) 0 3px, transparent 3px 6px); }
.stop-item { display: flex; align-items: center; gap: 10px; padding: 5px 0; font-size: 0.82rem; color: var(--ink); }

.estimate-box { background: var(--paper-soft); border-radius: 14px; padding: 12px 14px; margin: 12px 0; }
.estimate-box .fare { font-size: 1.2rem; color: var(--ink); font-weight: 800; font-variant-numeric: tabular-nums; }
.estimate-box .dist { font-size: 0.75rem; color: var(--ink-soft); }

#trip-action-btn { min-height: 54px; }

/* ---- RECOVERY: offer-lost / trip-cancelled ---- */
.recovery { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 26px; gap: 6px; min-height: 60vh; }
.recovery-icon { width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 6px; }
.recovery h2 { margin: 0; font-size: 1.05rem; }
.recovery p { margin: 0; font-size: 0.82rem; line-height: 1.5; max-width: 260px; }
.recovery button { max-width: 240px; }

/* ---- RATE ---- */
#view-rate { min-height: 100vh; background: var(--paper); }
#view-rate h2 { text-align: center; color: var(--ink); font-size: 1.05rem; }
.check-badge {
  width: 52px; height: 52px; border-radius: 50%; background: var(--go-pale); color: #1E6B44;
  display: flex; align-items: center; justify-content: center; margin: 12px auto 6px;
}
.fare-table { margin-top: 14px; border-top: 1px solid var(--line); padding-top: 10px; }
.fare-table .row { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--ink-soft); padding: 4px 0; }
.fare-table .row.total { color: var(--ink); font-weight: 800; font-size: 0.95rem; border-top: 1px solid var(--line); margin-top: 4px; padding-top: 8px; }
.fare-table .row .num { font-variant-numeric: tabular-nums; }

#star-rating { display: flex; justify-content: center; gap: 6px; color: var(--line); margin: 10px 0; }
#star-rating span { cursor: pointer; display: inline-flex; }
#star-rating span.selected { color: var(--amber); }

/* ================= navigation drawer (same pattern as rider) ================= */
.menu-btn {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.1); color: var(--paper);
  display: flex; align-items: center; justify-content: center; padding: 0; margin: 0; cursor: pointer; flex: 0 0 auto;
}
.home-topbar { display: flex; align-items: center; gap: 7px; }
.home-topbar .menu-btn { margin-right: 2px; }

.drawer-overlay { position: absolute; inset: 0; background: rgba(20,23,31,.5); z-index: 50; }
.drawer-overlay.hidden { display: none; }
.drawer-panel {
  position: absolute; top: 0; bottom: 0; left: 0; width: 78%; max-width: 300px;
  background: var(--paper); box-shadow: 10px 0 26px rgba(0,0,0,.25); display: flex; flex-direction: column;
}
.drawer-profile { padding: 22px 18px 16px; border-bottom: 1px solid var(--line); }
.drawer-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--amber-pale); color: var(--amber-deep);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; margin-bottom: 10px;
}
.drawer-profile .name { font-weight: 800; font-size: 0.9rem; color: var(--ink); }
.drawer-profile .email { font-size: 0.75rem; color: var(--ink-soft); }
.drawer-menu { flex: 1; padding: 10px 8px; display: flex; flex-direction: column; gap: 2px; }
.drawer-item {
  display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 12px; border: none; background: none;
  text-align: left; font-family: inherit; font-size: 0.88rem; font-weight: 600; color: var(--ink); cursor: pointer;
  width: 100%; margin: 0;
}
.drawer-item svg { flex: 0 0 auto; color: var(--ink-soft); }
.drawer-footer { padding: 14px 8px 18px; border-top: 1px solid var(--line); }
.drawer-item.signout { color: var(--stop); }
.drawer-item.signout svg { color: var(--stop); }

/* ================= subscreens ================= */
.subscreen-header { display: flex; align-items: center; gap: 11px; margin-bottom: 8px; }
.back-btn {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line); background: var(--paper-2);
  display: flex; align-items: center; justify-content: center; color: var(--ink); flex: 0 0 auto; padding: 0; margin: 0; cursor: pointer;
}
.subscreen-header h2 { margin: 0; font-size: 1.05rem; color: var(--ink); }
#view-earnings, #view-account, #view-support { min-height: 100vh; background: var(--paper); }

/* ================= help & support chat ================= */
#view-support { display: flex; flex-direction: column; padding-bottom: 14px; }
.support-staff-header {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; background: var(--paper-soft); border-radius: 12px; margin: 4px 0;
}
.support-staff-header img {
  width: 28px; height: 28px; border-radius: 8px; object-fit: cover; background: var(--paper-2);
  flex: 0 0 auto;
}
.support-staff-header span { font-size: 0.8rem; font-weight: 700; color: var(--ink); }
.support-messages {
  flex: 1; display: flex; flex-direction: column; gap: 8px;
  overflow-y: auto; padding: 10px 2px; min-height: 40vh;
}
.support-msg {
  max-width: 78%; padding: 9px 13px; border-radius: 16px; font-size: 0.86rem; line-height: 1.4;
  word-break: break-word;
}
.support-msg.theirs { align-self: flex-start; background: var(--paper-soft); color: var(--ink); border-bottom-left-radius: 4px; }
.support-msg.mine { align-self: flex-end; background: var(--amber); color: #241703; border-bottom-right-radius: 4px; font-weight: 600; }
.support-input-row { display: flex; gap: 8px; align-items: center; margin-top: 8px; }
.support-input-row input {
  flex: 1 1 auto; min-width: 0; margin: 0; padding: 11px 13px; border: 1px solid var(--line); border-radius: 999px;
  font-size: 0.9rem; font-family: inherit; background: var(--paper-2); color: var(--ink);
}
.support-input-row button {
  flex: 0 0 auto; width: auto; margin: 0; padding: 11px 20px; border-radius: 999px; white-space: nowrap;
}

.earnings-summary { background: var(--ink); border-radius: 16px; padding: 16px; color: var(--paper); margin: 6px 0 14px; }
.earnings-summary .es-row { display: flex; justify-content: space-between; align-items: baseline; padding: 5px 0; font-size: 0.82rem; }
.earnings-summary .es-row .l { color: #9CA1B8; }
.earnings-summary .es-row .v { font-weight: 800; font-variant-numeric: tabular-nums; }

.history-row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px; border-radius: 14px; background: var(--paper-soft); margin-top: 8px;
}
.history-row .route { font-size: 0.85rem; font-weight: 700; color: var(--ink); }
.history-row .date { font-size: 0.72rem; color: var(--ink-soft); margin-top: 1px; }
.history-row .price { font-size: 0.88rem; font-weight: 700; color: var(--go); font-variant-numeric: tabular-nums; }

.account-card { background: var(--paper-soft); border-radius: 16px; padding: 18px; text-align: center; margin-top: 6px; }
.account-avatar {
  width: 54px; height: 54px; border-radius: 50%; background: var(--amber-pale); color: var(--amber-deep);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem; margin: 0 auto 10px;
}
.account-card .name { font-weight: 800; font-size: 0.95rem; color: var(--ink); }
.account-card .email { font-size: 0.8rem; color: var(--ink-soft); margin-top: 2px; }
.account-rows { margin-top: 16px; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); }
.account-row { display: flex; justify-content: space-between; padding: 12px 14px; background: var(--paper-2); font-size: 0.85rem; }
.account-row + .account-row { border-top: 1px solid var(--line); }
.account-row .l { color: var(--ink-soft); }
.account-row .v { color: var(--ink); font-weight: 600; }
.account-section-label { margin: 18px 2px 6px; font-size: 0.68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }

/* ================= registration wizard ================= */
.progress-header { margin-bottom: 6px; }
.progress-top { display: flex; align-items: center; gap: 10px; }
.progress-step { font-size: 0.68rem; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .06em; }
.progress-track { height: 4px; border-radius: 2px; background: var(--line); margin-top: 10px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--amber); border-radius: 2px; }

.doc-row {
  display: flex; align-items: center; gap: 12px; padding: 13px 12px; border-radius: 14px; background: var(--paper-2);
  border: 1px solid var(--line); margin-top: 10px; cursor: pointer; text-align: left; width: 100%; font-family: inherit;
}
.doc-row.done { border-color: var(--go); background: var(--go-pale); }
.doc-row.rejected { border-color: var(--stop); background: var(--stop-pale); }
.doc-icon {
  width: 38px; height: 38px; border-radius: 11px; background: var(--paper-soft); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--ink-soft); flex: 0 0 auto;
}
.doc-row.done .doc-icon { background: var(--go); color: #fff; border-color: var(--go); }
.doc-row.rejected .doc-icon { background: var(--stop); color: #fff; border-color: var(--stop); }
.doc-meta { flex: 1; min-width: 0; }
.doc-meta .t { font-size: 0.85rem; font-weight: 700; color: var(--ink); }
.doc-meta .s { font-size: 0.72rem; color: var(--ink-soft); margin-top: 1px; }
.doc-row.done .doc-meta .s { color: #1E6B44; font-weight: 600; }
.doc-row.rejected .doc-meta .s { color: #8A2E20; font-weight: 600; }
.doc-chevron { color: var(--ink-soft); flex: 0 0 auto; }

.camera-view {
  flex: 1; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden; background: #000;
}
#camera-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.camera-note { position: absolute; top: 18px; left: 18px; right: 18px; text-align: center; color: var(--paper); z-index: 2; }
.camera-note .t { font-weight: 800; font-size: 0.95rem; }
.camera-note .s { font-size: 0.75rem; color: #9CA1B8; margin-top: 4px; line-height: 1.5; }
.face-guide { position: relative; z-index: 1; width: 150px; height: 190px; border: 2px dashed rgba(231,162,58,.7); border-radius: 50% / 42%; }
.shutter-zone { position: relative; padding: 22px 0 26px; display: flex; align-items: center; justify-content: center; background: var(--ink); }
.shutter-btn { width: 64px; height: 64px; border-radius: 50%; background: var(--paper); border: 4px solid rgba(255,255,255,.25); cursor: pointer; padding: 0; margin: 0; }
.shutter-btn:active { background: var(--amber-pale); }

.review-photo { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; }
#review-photo-img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; border: 3px solid var(--go); }
.review-photo p { color: var(--paper); font-weight: 700; font-size: 0.85rem; margin: 0; }
.review-actions { display: flex; gap: 10px; padding: 0 22px 26px; }
.review-actions button { flex: 1; margin-top: 0; }

.terms-box {
  background: var(--paper-soft); border-radius: 14px; padding: 14px; margin-top: 12px; font-size: 0.78rem;
  color: var(--ink-soft); line-height: 1.6; max-height: 170px; overflow-y: auto;
}
.terms-box ul { margin: 0; padding-left: 18px; }
.agree-row { display: flex; align-items: flex-start; gap: 10px; margin-top: 14px; cursor: pointer; }
.agree-row input { margin-top: 2px; width: 16px; height: 16px; accent-color: var(--amber); flex: 0 0 auto; }
.agree-row span { font-size: 0.82rem; color: var(--ink); line-height: 1.45; }

.reject-reasons { text-align: left; background: var(--stop-pale); border-radius: 12px; padding: 12px 14px; margin-top: 14px; width: 100%; max-width: 260px; }
.reject-reasons .item { font-size: 0.75rem; color: #6B241A; padding: 3px 0; }
