:root {
  --ink: #142233;
  --muted: #5f7088;
  --line: #ded7cc;
  --surface: #f8f6f0;
  --panel: #ffffff;
  --navy: #1e3a5f;
  --orange: #f59324;
  --slate: #5f7088;
  --light-gray: #c9d8e8;
  --teal: var(--orange);
  --teal-dark: var(--navy);
  --coral: #ffb05f;
  --gold: #f5a623;
  --green: #137a3b;
  --sky: #c9d8e8;
  --mint: #fff4e6;
  --cream: #f8f6f0;
  --shadow: 0 18px 46px rgba(30, 58, 95, 0.12);
  --font-heading: Poppins, "Plus Jakarta Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: Inter, "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
}

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

button {
  cursor: pointer;
}

.mockup-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--cream);
}

.mockup-topbar {
  position: relative;
  z-index: 30;
  display: grid;
  gap: 0;
  border-bottom: 1px solid rgba(222, 215, 204, 0.92);
  background: rgba(248, 246, 240, 0.96);
  backdrop-filter: blur(14px);
}

.mockup-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 18px 10px;
}

.mockup-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 0 auto;
}

.mockup-brand .logo-wordmark {
  display: block;
  width: 132px;
  height: auto;
}

.mockup-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 auto;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 31;
  padding: 0 18px 12px;
}

.mockup-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(222, 215, 204, 0.86);
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.mockup-nav a:visited,
.mockup-nav a:hover,
.mockup-nav a:focus {
  text-decoration: none;
}

.mockup-nav a.active {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
}

.mockup-language {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(222, 215, 204, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.mockup-language button {
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  padding: 0 12px;
  background: transparent;
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
}

.mockup-language button.active {
  color: #fff;
  background: var(--navy);
}

.mockup-main {
  flex: 1 1 auto;
}

.mockup-main.prototype-shell {
  min-height: 0;
}

.mockup-footer {
  display: grid;
  gap: 20px;
  padding: 28px 18px 22px;
  border-top: 1px solid rgba(222, 215, 204, 0.92);
  background: rgba(255, 255, 255, 0.55);
}

.mockup-footer-brand {
  display: grid;
  gap: 10px;
}

.mockup-footer-brand strong {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1;
}

.mockup-footer-brand p {
  max-width: 760px;
  margin: 0;
  color: #506176;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 760;
}

.mockup-footer-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.mockup-footer-links section {
  display: grid;
  gap: 10px;
}

.mockup-footer-links h3 {
  margin: 0;
  color: var(--navy);
  font-size: 12px;
  text-transform: uppercase;
}

.mockup-footer-links a {
  color: #506176;
  font-size: 13px;
  font-weight: 750;
}

.mockup-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 2px;
  color: #5f7088;
  font-size: 13px;
  font-weight: 800;
}

.prototype-shell {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 14px;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 216, 232, 0.26), transparent 28rem),
    var(--cream);
}

.phone {
  width: min(100%, 420px);
  height: min(900px, calc(100vh - 36px));
  min-height: 720px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(30, 58, 95, 0.14);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: auto auto 1fr auto;
}

.status-bar {
  display: flex;
  justify-content: space-between;
  padding: 12px 22px 4px;
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
}

.app-bar {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 8px;
  padding: 4px 16px 9px;
  background: rgba(248, 246, 240, 0.98);
  border-bottom: 1px solid rgba(222, 215, 204, 0.9);
}

.app-bar h1 {
  margin: 0;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand-title {
  min-width: 0;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.brand-logo-mark {
  display: none;
}

.brand-lockup {
  display: block;
  min-width: 0;
}

.brand-name {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.brand-name span {
  color: var(--orange);
}

.brand-subline {
  display: none;
  gap: 3px;
  font-family: var(--font-heading);
  font-size: 7px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}

.brand-subline span:nth-child(1) {
  color: var(--navy);
}

.brand-subline span:nth-child(2),
.brand-subline span:nth-child(3) {
  color: var(--orange);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.eyebrow {
  margin: 0 0 3px;
  color: var(--orange);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.muted {
  color: var(--muted);
}

.icon-btn {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 900;
}

.icon-btn.ghost {
  color: var(--navy);
  background: #f2efe8;
}

.back-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-btn.send {
  background: var(--teal);
}

.profile-btn {
  background: var(--navy);
  font-size: 12px;
}

.profile-menu {
  position: absolute;
  display: none;
  z-index: 6;
  top: 86px;
  right: 16px;
  width: 190px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: 0 16px 34px rgba(23, 33, 38, 0.18);
}

.profile-menu.open,
.app-bar:has(#profileBtn:focus) + .profile-menu {
  display: block;
}

.profile-menu button {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  padding: 0 11px;
  font-weight: 900;
}

.profile-menu button:hover,
.profile-menu button:focus {
  background: var(--mint);
}

.notice {
  position: absolute;
  z-index: 5;
  left: 18px;
  right: 18px;
  top: 92px;
  padding: 13px 15px;
  border-radius: 14px;
  background: var(--navy);
  color: white;
  font-weight: 800;
  transform: translateY(-130%);
  opacity: 0;
  transition: 0.22s ease;
  pointer-events: none;
}

.notice.show {
  opacity: 1;
  transform: translateY(0);
}

.screen {
  display: none;
  overflow-y: auto;
  padding: 14px 16px 68px;
}

.screen.active {
  display: block;
}

[hidden] {
  display: none !important;
}

.hero-strip {
  min-height: 160px;
  border: 0;
  border-radius: 0;
  padding: 12px 0 16px 18px;
  color: var(--navy);
  background: linear-gradient(90deg, var(--orange) 0 3px, transparent 3px);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.hero-strip::before {
  display: none;
}

.hero-strip::after {
  display: none;
}

.hero-copy {
  display: grid;
  gap: 7px;
  position: relative;
  z-index: 1;
}

.hero-strip h2 {
  max-width: 310px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-tagline {
  margin: 0;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
}

.brand-tagline span:nth-child(1) {
  color: white;
}

.brand-tagline span:nth-child(2) {
  color: #ffb06a;
}

.hero-strip .muted {
  color: var(--muted);
  margin: 0;
}

.hero-strip .primary-action {
  align-self: flex-start;
}

.hero-request {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 8px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-request input {
  min-width: 0;
  min-height: 44px;
  border: 1px solid rgba(222, 215, 204, 0.95);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 0 14px;
  font-weight: 800;
}

.hero-request input::placeholder {
  color: #718087;
}

.hero-request .primary-action {
  min-height: 44px;
}

.submit-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  line-height: 1;
}

.submit-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.primary-action,
.secondary-action,
.text-btn {
  border: 0;
  border-radius: 14px;
  font-weight: 900;
  min-height: 46px;
  padding: 0 18px;
}

.primary-action {
  color: white;
  background: var(--orange);
  box-shadow: 0 12px 22px rgba(245, 147, 36, 0.2);
}

.primary-action.is-processing {
  background: var(--navy);
  box-shadow: 0 12px 24px rgba(30, 58, 95, 0.24);
}

.secondary-action {
  color: var(--ink);
  background: var(--light-gray);
}

.wide {
  width: 100%;
}

.text-btn {
  color: var(--teal-dark);
  background: transparent;
  padding: 0;
}

.zip-link {
  border: 0;
  border-bottom: 2px solid currentColor;
  background: transparent;
  color: var(--teal-dark);
  font: inherit;
  font-weight: 950;
  padding: 0 1px 1px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 10px 0 18px;
}

.service-category-heading {
  margin-top: 18px;
  margin-bottom: 0;
}

.service-category-tile {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  padding: 12px;
  text-align: left;
  color: var(--ink);
}

.service-category-tile strong {
  font-size: 14px;
  line-height: 1.05;
}

.service-category-tile sup {
  margin-left: 3px;
  color: var(--teal-dark);
  font-size: 10px;
}

.category-icon,
.tab-icon {
  display: block;
  width: 24px;
  height: 24px;
  position: relative;
}

.category-icon {
  color: var(--teal-dark);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.live-card,
.analysis-card,
.payment-card,
.completion-note,
.review-card,
.bio-card,
.rating-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}

.provider-directory-list {
  display: grid;
  gap: 12px;
}

.directory-provider-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}

.directory-provider-card .action-row {
  margin-top: 12px;
}

.live-card {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.live-card:focus,
.live-card:hover {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(245, 147, 36, 0.12);
}

.popular-heading {
  margin-top: 18px;
}

.popular-service-list {
  display: grid;
  gap: 9px;
}

.popular-service-card {
  width: 100%;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  border: 1px solid rgba(222, 215, 204, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  padding: 9px 11px;
  text-align: left;
}

.popular-service-card:hover,
.popular-service-card:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(245, 147, 36, 0.12);
}

.popular-service-card strong {
  display: block;
  font-size: 14px;
  line-height: 1.1;
}

.popular-service-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
  font-weight: 780;
}

.popular-service-card .service-description {
  color: var(--ink);
  font-weight: 820;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.popular-service-card div > span {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 10.5px;
  line-height: 1.25;
  font-weight: 850;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.popular-job-art {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(13, 27, 42, 0.08);
}

.popular-job-art svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.popular-job-art.tv {
  color: var(--navy);
  background: linear-gradient(140deg, #d9ecff, #f8fbff);
}

.popular-job-art.clean {
  color: #137a63;
  background: linear-gradient(140deg, #dff8ef, #f8fffb);
}

.popular-job-art.drywall {
  color: #9b4a10;
  background: linear-gradient(140deg, #fff1df, #fffaf5);
}

.popular-service-card b {
  min-width: 48px;
  min-height: 38px;
  border-radius: 12px;
  background: #fff3e8;
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 950;
}

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

.live-card h3,
.section-heading h3,
.analysis-card h3 {
  margin: 0;
}

.live-card p,
.timeline-card p,
.payment-card p,
.completion-note p,
.review-card p,
.bio-card p,
.analysis-card p,
.card-row p {
  margin: 5px 0 0;
  font-size: 13px;
  line-height: 1.35;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 18px 0 10px;
}

.timeline-card {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.recent-link .job-status-pill {
  margin-left: auto;
  white-space: nowrap;
  flex: 0 0 auto;
}

.recent-link {
  cursor: pointer;
}

.recent-link:focus,
.recent-link:hover {
  border-radius: 12px;
  background: var(--mint);
  padding-left: 8px;
}

.timeline-card.big {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  padding: 15px;
  margin-bottom: 10px;
}

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

.inbox-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.inbox-toggle button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  font-weight: 950;
}

.inbox-toggle button.selected {
  border-color: var(--teal);
  background: var(--mint);
  color: var(--teal-dark);
}

.inbox-toggle span {
  margin-left: 4px;
  font-size: 11px;
}

.inbox-section + .inbox-section {
  margin-top: 18px;
}

.inbox-count {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 950;
}

.inbox-row {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  color: var(--ink);
  padding: 14px;
  text-align: left;
}

.inbox-row.unread {
  border-color: rgba(242, 106, 0, 0.35);
  background: #fff3e8;
}

.inbox-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 12px;
  font-weight: 950;
}

.inbox-avatar.bids {
  background: var(--teal);
}

.inbox-avatar.notice {
  background: var(--orange);
}

.inbox-avatar.receipt {
  background: var(--green);
}

.inbox-avatar.approval {
  background: var(--teal-dark);
}

.inbox-avatar.feature {
  background: var(--gold);
  color: var(--navy);
}

.inbox-row p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.inbox-row time {
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
}

.language-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.job-row {
  width: 100%;
  color: var(--ink);
  text-align: left;
}

.job-row:focus,
.job-row:hover {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(242, 106, 0, 0.1);
}

.active-job-row {
  cursor: default;
}

.track-action {
  margin-left: auto;
  min-height: 36px;
  padding: 0 10px;
  border-radius: 10px;
  color: var(--teal-dark);
  background: var(--mint);
  flex: 0 0 auto;
}

.track-action:hover,
.track-action:focus {
  background: rgba(67, 184, 62, 0.18);
  color: #247022;
}

.dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(245, 184, 75, 0.18);
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.dot.done {
  background: #9aa5a9;
  box-shadow: 0 0 0 5px rgba(154, 165, 169, 0.16);
}

.dot.draft {
  background: #64748b;
  box-shadow: 0 0 0 5px rgba(100, 116, 139, 0.14);
}

.dot.active {
  width: 18px;
  height: 18px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(67, 184, 62, 0.18);
  color: white;
  font-size: 12px;
  font-weight: 950;
}

.dot.active::after {
  content: "\2713";
  line-height: 1;
}

.timeline-card .dot.active {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(67, 184, 62, 0.18);
}

.dot.canceled {
  background: #9aa5a9;
  box-shadow: 0 0 0 5px rgba(154, 165, 169, 0.16);
}

.form-stack {
  display: grid;
  gap: 14px;
}

.wizard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.wizard-header h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.08;
}

.wizard-header .secondary-action {
  min-height: 38px;
  padding: 0 12px;
  flex: 0 0 auto;
}

.wizard-card,
.final-post-panel {
  display: grid;
  gap: 12px;
}

.cost-insight,
.final-post-summary,
.next-steps {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  padding: 13px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 820;
}

.final-post-summary p,
.next-steps p {
  margin: 0;
}

.final-post-summary p + p {
  margin-top: 10px;
}

.next-steps strong {
  color: var(--ink);
}

.next-steps ol {
  margin: 9px 0 0;
  padding-left: 19px;
}

.next-steps li + li {
  margin-top: 6px;
}

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

.wizard-actions .primary-action,
.wizard-actions .secondary-action {
  width: 100%;
}

.wizard-actions .secondary-action[hidden] {
  display: none;
}

.wizard-actions:has(.secondary-action[hidden]) {
  grid-template-columns: 1fr;
}

.ai-verification-gate {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(245, 147, 36, 0.38);
  border-radius: 18px;
  background: #fff8ef;
  padding: 13px;
}

.ai-verification-gate strong {
  color: var(--ink);
  font-size: 14px;
}

.ai-verification-gate p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.turnstile-widget {
  min-height: 65px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

textarea {
  resize: none;
  line-height: 1.4;
}

.textarea-action {
  position: relative;
}

.textarea-action textarea {
  padding-right: 56px;
}

.submit-icon.mini {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 38px;
  height: 38px;
  min-height: 38px;
  border: 0;
  color: white;
  background: var(--teal);
  box-shadow: 0 8px 16px rgba(242, 106, 0, 0.22);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(242, 106, 0, 0.12);
}

.photo-drop {
  min-height: 148px;
  border: 1px dashed #cbd5df;
  border-radius: 22px;
  background: #fff;
  place-items: center;
  text-align: center;
  padding: 16px;
}

.photo-drop input {
  display: none;
}

.photo-icon,
.card-chip {
  width: 44px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--gold), var(--coral));
  display: block;
}

.photo-drop small {
  font-weight: 700;
}

.photo-preview-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.fake-photo,
.add-photo {
  width: 54px;
  height: 48px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(23, 33, 38, 0.12);
}

.fake-photo {
  border: 2px solid white;
  background:
    linear-gradient(160deg, rgba(23, 33, 38, 0.16), transparent 45%),
    repeating-linear-gradient(90deg, #dfe5ea 0 9px, #f8fafc 9px 18px);
}

.fake-photo.sink {
  background:
    radial-gradient(circle at 58% 42%, #64748b 0 8px, transparent 9px),
    linear-gradient(135deg, #f2f7f5, #dfe5ea);
}

.add-photo {
  border: 0;
  background: var(--teal);
  color: white;
  font-size: 28px;
  font-weight: 900;
}

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

.ai-panel {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 18px;
  background: var(--mint);
}

.ai-panel.is-hidden,
.hidden {
  display: none;
}

.ai-classification {
  display: grid;
  gap: 7px;
  margin-top: 9px;
}

.ai-classification span {
  display: block;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  padding: 9px 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.ai-panel p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.details-panel,
.summary-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  padding: 14px;
}

.section-heading.compact {
  margin: 0 0 10px;
}

.section-heading.compact h3 {
  font-size: 16px;
}

.section-heading.compact span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
}

.detail-question-list {
  display: grid;
  gap: 9px;
}

.detail-question {
  display: grid;
  gap: 6px;
}

.detail-question span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.detail-question input {
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 12px;
}

.detail-question-list + .secondary-action {
  margin-top: 12px;
}

.summary-panel textarea {
  min-height: 132px;
}

.address-input-row {
  position: relative;
}

.address-input-row input {
  padding-right: 48px;
}

.address-verified-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 0 0 4px rgba(67, 184, 62, 0.14);
}

.address-verify-note {
  display: flex;
  min-height: 20px;
  gap: 10px;
  align-items: center;
  color: var(--ink);
}

.address-verify-note p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
}

.address-verify-note.needs-address p {
  color: #a35400;
}

.address-verify-note.needs-address .verify-dot {
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 94, 31, 0.14);
}

.verify-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(67, 184, 62, 0.14);
  flex: 0 0 auto;
}

.pulse {
  width: 13px;
  height: 13px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(242, 106, 0, 0.35);
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 13px rgba(242, 106, 0, 0);
  }
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.chip-row span {
  border-radius: 999px;
  background: #edf3f0;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
}

.bid-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.bid-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  padding: 14px;
  display: grid;
  gap: 12px;
}

.provider-row,
.provider-hero,
.card-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: white;
  font-weight: 900;
}

.avatar.large {
  width: 70px;
  height: 70px;
  font-size: 22px;
}

.provider-row h3,
.provider-hero h2 {
  margin: 0;
}

.provider-row p,
.provider-hero p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.provider-hero .privacy-note {
  max-width: 250px;
  margin-top: 7px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 850;
}

.bid-price {
  margin-left: auto;
  text-align: right;
}

.bid-price strong {
  display: block;
  font-size: 24px;
}

.bid-actions,
.action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.bid-actions.extended {
  grid-template-columns: repeat(3, 1fr);
}

.bid-actions.extended button {
  min-height: 40px;
  padding: 0 8px;
  font-size: 13px;
}

.ai-compare-card,
.payment-schedule-card,
.responsibility-note,
.moderation-callout {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 12px;
}

.ai-compare-card {
  background:
    linear-gradient(135deg, rgba(239, 248, 255, 0.98), rgba(255, 249, 243, 0.98)),
    #f6fbff;
  border-color: #b9dcf4;
  display: grid;
  gap: 10px;
}

.ai-compare-card strong,
.payment-schedule-card h3 {
  display: block;
  margin: 0 0 6px;
}

.ai-compare-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ai-compare-header strong {
  margin: 0;
}

.ai-compare-header span {
  border-radius: 999px;
  background: white;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 950;
  padding: 5px 8px;
}

.bid-insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.bid-insight-card {
  min-width: 0;
  border: 1px solid rgba(20, 45, 68, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  padding: 8px;
}

.bid-insight-card span,
.bid-review-focus span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.bid-insight-card strong {
  margin: 2px 0;
  overflow-wrap: anywhere;
  font-size: 13px;
  line-height: 1.1;
}

.bid-insight-card b {
  display: block;
  color: var(--teal-dark);
  font-size: 16px;
  line-height: 1.1;
}

.bid-insight-card p,
.bid-review-focus p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.bid-review-focus {
  border-top: 1px solid rgba(20, 45, 68, 0.1);
  padding-top: 8px;
}

.payment-schedule-card.compact {
  background: #fbfcfd;
}

.schedule-item {
  display: grid;
  gap: 3px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
}

.schedule-item:first-of-type {
  border-top: 0;
}

.schedule-item p,
.schedule-item span,
.responsibility-note,
.moderation-callout {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.schedule-item strong {
  font-size: 13px;
}

.moderation-callout {
  background: #fff7ed;
  border-color: #fed7aa;
  color: #8a3f00;
  font-weight: 850;
}

.responsibility-note {
  background: #f8fafc;
  color: #43536b;
}

.danger-action {
  color: #7c3430;
  background: #f8e1de;
}

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

.rating-line {
  margin-top: 7px;
  color: #9b6b12;
  font-weight: 900;
  font-size: 13px;
}

.star-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  font-size: 12px;
  vertical-align: -2px;
}

.mini-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 7px;
}

.mini-badges span {
  border-radius: 999px;
  background: var(--mint);
  color: var(--teal-dark);
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 900;
}

.stat-row,
.quote-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0;
}

.quote-box {
  grid-template-columns: 1fr 1fr;
}

.stat-row div,
.quote-box div {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px;
}

.stat-row strong,
.quote-box strong {
  display: block;
  font-size: 20px;
}

.stat-row span,
.quote-box span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.credential-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0;
}

.credential-card {
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  padding: 12px;
  display: grid;
  align-content: start;
  gap: 7px;
}

.credential-card.verified {
  border-color: rgba(242, 106, 0, 0.35);
  background: #f0faf6;
}

.credential-card.optional {
  background: #f8fafc;
}

.credential-badge {
  justify-self: start;
  border-radius: 999px;
  background: #edf3f0;
  color: var(--muted);
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 900;
}

.credential-card.verified .credential-badge {
  background: var(--teal);
  color: white;
}

.credential-card strong {
  font-size: 13px;
  line-height: 1.2;
}

.credential-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.chat-thread {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bubble {
  max-width: 82%;
  padding: 12px 14px;
  border-radius: 18px;
  line-height: 1.35;
  font-size: 14px;
}

.bubble.mine {
  align-self: flex-end;
  color: white;
  background: var(--teal);
  border-bottom-right-radius: 6px;
}

.bubble.theirs {
  align-self: flex-start;
  background: white;
  border: 1px solid var(--line);
  border-bottom-left-radius: 6px;
}

.chat-input {
  position: sticky;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 8px;
  padding-top: 10px;
  background: var(--surface);
}

.payment-card h2,
.rating-card h2 {
  margin: 4px 0;
}

.toggle-row {
  grid-template-columns: 22px 1fr;
  align-items: center;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  margin: 12px 0;
}

.toggle-row input {
  width: auto;
  accent-color: var(--teal);
}

.map-panel {
  height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(90deg, transparent 47%, rgba(255, 255, 255, 0.55) 48%, rgba(255, 255, 255, 0.55) 52%, transparent 53%),
    linear-gradient(#e9ecef, #fff3e8);
  border: 1px solid var(--line);
}

.road {
  position: absolute;
  background: rgba(23, 33, 38, 0.22);
  border-radius: 99px;
}

.road.one {
  width: 380px;
  height: 34px;
  transform: rotate(-28deg);
  top: 138px;
  left: -45px;
}

.road.two {
  width: 340px;
  height: 28px;
  transform: rotate(34deg);
  top: 92px;
  right: -95px;
}

.pin {
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 5px;
  transform: rotate(-45deg);
  position: absolute;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.pin::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
  position: absolute;
  inset: 9px;
}

.home-pin {
  background: var(--coral);
  right: 62px;
  bottom: 66px;
}

.pro-pin {
  background: var(--teal);
  left: 86px;
  top: 68px;
  animation: drive 4s infinite alternate ease-in-out;
}

@keyframes drive {
  to {
    transform: translate(118px, 76px) rotate(-45deg);
  }
}

.eta-card {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  padding: 13px;
  display: grid;
  gap: 3px;
}

.eta-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.progress-list {
  display: grid;
  gap: 14px;
  margin: 18px 0;
}

.step {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 850;
}

.step span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 3px solid var(--line);
  background: white;
}

.step.done span {
  border-color: var(--teal);
  background: var(--teal);
}

.step.active span {
  border-color: var(--gold);
  background: var(--gold);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.proof-photo {
  aspect-ratio: 1;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(23, 33, 38, 0.1), rgba(23, 33, 38, 0.26)),
    repeating-linear-gradient(45deg, #c8d8d2 0 14px, #f8fafc 14px 28px);
}

.proof-photo.after {
  background:
    linear-gradient(135deg, rgba(242, 106, 0, 0.1), rgba(242, 106, 0, 0.24)),
    repeating-linear-gradient(-45deg, #e9ecef 0 14px, #ffffff 14px 28px);
}

.proof-photo span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(23, 33, 38, 0.82);
  color: white;
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 900;
}

.rating-card {
  display: grid;
  justify-items: center;
  gap: 14px;
}

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

.settings-row {
  min-height: 62px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  text-align: left;
}

.settings-row span {
  font-weight: 900;
}

.settings-row strong {
  color: var(--teal-dark);
  font-size: 13px;
}

.job-filter-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  margin-bottom: 14px;
}

.job-filter-row button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.job-filter-row button.selected {
  border-color: var(--teal);
  background: var(--teal);
  color: white;
}

.job-filter-row .status-active.selected {
  border-color: rgba(67, 184, 62, 0.65);
  background: rgba(67, 184, 62, 0.18);
  color: #247022;
}

.job-filter-row .status-bidding.selected {
  border-color: var(--gold);
  background: rgba(245, 184, 75, 0.2);
  color: #805f14;
}

.job-filter-row .status-draft.selected,
.job-filter-row .status-completed.selected,
.job-filter-row .status-canceled.selected {
  border-color: rgba(100, 116, 139, 0.55);
  background: rgba(100, 116, 139, 0.16);
  color: #42526a;
}

.job-filter-row .status-bidding {
  border-color: rgba(245, 184, 75, 0.5);
  background: rgba(245, 184, 75, 0.18);
  color: #805f14;
}

.job-filter-row .status-draft {
  border-color: rgba(100, 116, 139, 0.5);
  background: rgba(100, 116, 139, 0.14);
  color: #42526a;
}

.job-filter-row .status-active {
  border-color: rgba(67, 184, 62, 0.55);
  background: rgba(67, 184, 62, 0.16);
  color: #247022;
}

.job-filter-row .status-completed {
  border-color: rgba(154, 165, 169, 0.55);
  background: rgba(154, 165, 169, 0.18);
  color: #58656a;
}

.job-filter-row .status-canceled {
  border-color: rgba(154, 165, 169, 0.55);
  background: rgba(154, 165, 169, 0.18);
  color: #58656a;
}

.job-detail-hero {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  padding: 16px;
  margin-bottom: 14px;
}

.job-detail-hero h2 {
  margin: 10px 0 4px;
  font-size: 24px;
  line-height: 1.08;
}

.job-detail-hero p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.job-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(245, 184, 75, 0.2);
  color: #805f14;
  font-size: 12px;
  font-weight: 900;
}

.job-status-pill.bidding {
  background: rgba(245, 184, 75, 0.2);
  color: #805f14;
}

.job-status-pill.active {
  background: rgba(67, 184, 62, 0.18);
  color: #247022;
}

.recent-link .job-status-pill.active::before,
.job-row .job-status-pill.active::before,
#jobDetailStatus.job-status-pill.active::before {
  content: "\2713";
  margin-right: 5px;
  font-weight: 950;
}

.job-status-pill.draft {
  background: rgba(100, 116, 139, 0.14);
  color: #42526a;
}

.job-status-pill.completed,
.job-status-pill.canceled {
  background: rgba(154, 165, 169, 0.2);
  color: #58656a;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.detail-grid div {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  padding: 13px;
}

.detail-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.detail-grid strong {
  display: block;
  margin-top: 5px;
  font-size: 15px;
  line-height: 1.2;
}

.detail-link {
  display: inline;
  margin-top: 5px;
  border: 0;
  background: transparent;
  color: var(--teal-dark);
  padding: 0;
  text-align: left;
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.detail-link:disabled {
  color: var(--muted);
  cursor: default;
  text-decoration: none;
}

.job-detail-section {
  margin: 14px 0;
}

.job-detail-payment-list,
.qa-list {
  display: grid;
  gap: 10px;
}

.job-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.job-photo-tile {
  min-height: 118px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.1), rgba(13, 27, 42, 0.32)),
    repeating-linear-gradient(45deg, #dfe5ea 0 12px, #f8fafc 12px 24px);
  padding: 10px;
  display: grid;
  align-content: end;
  color: white;
}

.job-photo-tile.pro-1,
.job-photo-tile.pro-3 {
  background:
    linear-gradient(135deg, rgba(47, 158, 68, 0.12), rgba(13, 27, 42, 0.36)),
    repeating-linear-gradient(-45deg, #e9ecef 0 12px, #ffffff 12px 24px);
}

.job-photo-tile.customer-2,
.job-photo-tile.pro-2 {
  background:
    linear-gradient(135deg, rgba(242, 106, 0, 0.14), rgba(13, 27, 42, 0.32)),
    radial-gradient(circle at 62% 34%, #64748b 0 10px, transparent 11px),
    linear-gradient(135deg, #f8fafc, #dfe5ea);
}

.job-photo-tile span {
  width: fit-content;
  border-radius: 999px;
  background: rgba(13, 27, 42, 0.76);
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 950;
}

.job-photo-tile p {
  margin: 6px 0 0;
  color: white;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
  text-shadow: 0 1px 2px rgba(13, 27, 42, 0.45);
}

.service-note-list {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
}

.service-note {
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 14px;
  background: white;
  padding: 11px 12px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 850;
}

.payment-row.compact {
  min-height: auto;
}

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

.qa-card p,
.empty-state {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.qa-card p + p {
  margin-top: 9px;
}

.qa-card strong {
  color: var(--ink);
}

.payment-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.payment-summary div,
.payment-row {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.payment-summary div {
  padding: 15px;
}

.payment-summary span,
.payment-row p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.payment-summary strong {
  display: block;
  margin-top: 5px;
  font-size: 26px;
}

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

.payment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  width: 100%;
  color: var(--ink);
  text-align: left;
}

.payment-row p {
  margin: 4px 0 0;
}

.payment-amount {
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
  text-align: right;
  white-space: nowrap;
}

.payment-amount small {
  display: block;
  margin-top: 2px;
  color: #4f5c63;
  font-size: 11px;
  font-weight: 850;
}

.payment-row:hover,
.payment-row:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(242, 106, 0, 0.1);
}

.payment-row.pending {
  border-color: rgba(67, 184, 62, 0.55);
  background: rgba(67, 184, 62, 0.12);
  box-shadow: inset 4px 0 0 var(--green);
}

.payment-row.paid {
  border-color: rgba(154, 165, 169, 0.55);
  background: rgba(154, 165, 169, 0.14);
  box-shadow: inset 4px 0 0 #9aa5a9;
}

.payment-row.canceled {
  opacity: 0.76;
}

.payment-detail-card h2 {
  margin-bottom: 5px;
}

.stars,
.tip-row {
  display: flex;
  gap: 8px;
}

.stars button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #edf3f0;
  color: #94a29c;
  font-size: 24px;
}

.stars button.selected,
.stars button.active {
  color: white;
  background: var(--gold);
}

.tip-row button {
  min-width: 64px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font-weight: 900;
}

.tip-row button.selected {
  border-color: var(--teal);
  color: white;
  background: var(--teal);
}

.bottom-tabs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 54px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(248, 246, 240, 0.98);
  border-top: 1px solid var(--line);
  padding: 5px 10px 6px;
  z-index: 20;
}

.tab {
  display: grid;
  place-items: center;
  gap: 2px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  min-width: 0;
}

.tab.active {
  color: #fff;
  background: var(--navy);
  box-shadow: inset 0 0 0 1px rgba(245, 147, 36, 0.58);
}

.tab-icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.92;
}

@media (max-width: 520px) {
  .mockup-topline {
    padding: 10px 12px 8px;
  }

  .mockup-brand .logo-wordmark {
    width: 122px;
  }

  .mockup-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: stretch;
    padding: 0 12px 10px;
    gap: 6px;
  }

  .mockup-nav a {
    min-height: 32px;
    padding: 0 4px;
    font-size: 10px;
    text-align: center;
    white-space: normal;
  }

  .mockup-language {
    align-self: flex-start;
  }

  .mockup-footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prototype-shell {
    padding: 0;
  }

  .phone {
    width: 100vw;
    height: 100dvh;
    min-height: 100dvh;
    border: 0;
    border-radius: 0;
  }

  .screen {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .provider-phone .screen {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .bottom-tabs {
    position: fixed;
    height: calc(58px + env(safe-area-inset-bottom));
    padding-bottom: calc(6px + env(safe-area-inset-bottom));
  }
}
