:root {
  color-scheme: light;
  --paper: #f5f2ee;
  --paper-2: #ede8e1;
  --surface: #ffffff;
  --ink: #1a1614;
  --ink-2: #2e2a26;
  --muted: #7a736c;
  --muted-2: #a8a199;
  --hairline: #e3dcd2;
  --hairline-2: #d4ccc0;
  --red: #d81e2c;
  --red-deep: #7a0a14;
  --green: #2f6b3d;
  --whatsapp: #1fb957;
  --whatsapp-bright: #29da6b;
  --amber: #e8a33d;
  --shadow-card: 0 1px 0 rgba(0,0,0,.02), 0 6px 24px -12px rgba(20,16,12,.10);
  --shadow-soft: 0 24px 60px -30px rgba(20,16,12,.25);
  --font-sans: "Geist", "Sohne", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Geist Mono", "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --max: 1200px;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  min-height: 100%;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "ss02", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  min-height: 100dvh;
  background:
    radial-gradient(1400px 700px at 50% -210px, #efeae2 0%, transparent 70%),
    var(--paper);
}
button, textarea, input { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }

.app-shell {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
.shell,
.screen {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(227,220,210,.72);
  background: rgba(245,242,238,.88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
}
.nav-row,
.topbar {
  display: flex;
  height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand,
.wordmark {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}
.brand-logo {
  display: block;
  width: auto;
  height: 32px;
  max-width: min(190px, 48vw);
}
.nav-right { display: flex; align-items: center; gap: 16px; }
.loc-chip,
.location-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 6px 12px 6px 10px;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .02em;
}
.loc-chip svg,
.location-chip svg { width: 14px; height: 14px; color: var(--muted); }
.location-chip-copy {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 8px;
}
.location-chip-name { white-space: nowrap; }
.location-provider-count {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 10.5px;
  letter-spacing: 0;
  white-space: nowrap;
}

.home-screen {
  padding: 30px 0 40px;
  animation: fade-in .35s ease both;
}
.hero {
  display: block;
  text-align: center;
  padding: 0;
}
.eyebrow,
.composer-status,
.outcome,
.req-meta-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--hairline-2);
}
.greeting,
.headline {
  margin: 0 auto;
  max-width: 920px;
  color: var(--ink);
  font-size: clamp(40px, 5.6vw, 68px);
  font-weight: 500;
  letter-spacing: -.028em;
  line-height: 1.04;
  text-wrap: balance;
}
.greeting .accent { color: var(--muted-2); }
.hero-lede,
.subhead {
  margin: 16px auto 0;
  max-width: 590px;
  color: var(--muted);
  font-size: 17px;
  letter-spacing: -.005em;
  line-height: 1.55;
  text-wrap: pretty;
}
.trust-row { display: none; }

.hero-panel,
.console {
  display: flex;
  max-width: 680px;
  margin: 44px auto 48px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.v5w-accent { color: var(--red); }
.v5w-console {
  max-width: 720px;
  margin: 28px auto 40px;
  gap: 18px;
}
.v5w-search {
  position: relative;
  display: flex;
  width: 100%;
  align-items: stretch;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition: border-color .2s, box-shadow .2s;
}
.v5w-search:focus-within {
  border-color: var(--ink-2);
  box-shadow: 0 0 0 4px rgba(26,22,20,.05), var(--shadow-card);
}
.v5w-field {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
  padding: 16px 20px;
}
.v5w-field.svc { flex: 1; }
.v5w-field.city { width: 230px; flex-shrink: 0; }
.v5w-field.svc.request-box {
  width: auto;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.v5w-field.svc.request-box:focus-within { box-shadow: none; }
.v5w-field.city.location-field {
  display: flex;
  width: 230px;
  gap: 7px;
}
.v5w-divider {
  width: 1px;
  margin: 12px 0;
  background: var(--hairline);
  flex-shrink: 0;
}
.v5w-label {
  color: var(--muted-2);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.v5w-input-row {
  display: flex;
  align-items: center;
  gap: 11px;
}
.v5w-search-icon {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  flex-shrink: 0;
  color: var(--muted);
}
.v5w-search-icon.selected {
  border-radius: 50%;
  background: var(--green);
  color: #fff;
}
.v5w-search-icon svg { width: 16px; height: 16px; }
.v5w-input.request-input {
  min-height: 0;
  max-height: none;
  resize: none;
  overflow: visible;
  padding: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}
.v5w-input.request-input::placeholder { color: var(--muted-2); }
.v5w-clear {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  flex-shrink: 0;
}
.v5w-clear:hover { background: var(--paper-2); color: var(--ink); }
.v5w-clear[hidden] { display: none; }
.v5w-city-input-wrap.location-input-wrap {
  min-height: 0;
  gap: 10px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.v5w-location-input.location-input {
  font-size: 18px;
  letter-spacing: -.01em;
}
.v5w-cov {
  display: flex;
  min-height: 18px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .005em;
}
.v5w-cov .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hairline-2);
  flex-shrink: 0;
}
.v5w-cov.ready { color: var(--green); }
.v5w-cov.ready .dot { background: var(--green); box-shadow: 0 0 0 3px rgba(47,107,61,.16); }
.v5w-cov.cold { color: #9b6a1c; }
.v5w-cov.cold .dot { background: #b97a1d; box-shadow: 0 0 0 3px rgba(185,122,29,.16); }
.v5w-cov.checking .dot { animation: cov-pulse 1.1s ease-in-out infinite; }
.v5w-cov strong { color: inherit; font-weight: 600; }
.v5w-brb-wrap {
  position: relative;
  display: grid;
  min-height: 258px;
  place-items: center;
  padding-top: 4px;
}
.button-zone.v5w-brb-wrap::before,
.button-zone.v5w-brb-wrap::after { display: none; }
.brb-rings,
.brb-rings::before,
.brb-rings::after {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.brb-rings {
  width: 330px;
  height: 330px;
  border: 1px solid rgba(212,204,192,.62);
}
.brb-rings::before,
.brb-rings::after { content: ""; inset: -44px; border: 1px dashed rgba(212,204,192,.45); }
.brb-rings::after { inset: 58px; border-style: solid; opacity: .55; }
.big-red.brb { --r: 220px; }
.v5w-pop {
  display: flex;
  max-width: 680px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.v5w-pop-label {
  color: var(--muted-2);
  font-family: var(--font-sans);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.v5w-chip {
  border: 1px solid var(--hairline-2);
  border-radius: 999px;
  padding: 8px 15px;
  background: var(--surface);
  color: var(--ink-2);
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -.005em;
  white-space: nowrap;
  transition: background .15s, border-color .15s, transform .12s;
}
.v5w-chip:hover { background: var(--paper-2); border-color: var(--ink-2); color: var(--ink); }
.v5w-chip:active { transform: scale(.97); }
.v5w-chip.on { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.v5w-rhead-k {
  color: var(--green);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.v5w-rhead-h { max-width: none; font-size: 32px; letter-spacing: -.024em; }
.v5w-rhead-h .loc { color: var(--muted); font-weight: 500; }
.v5w-unserved { padding: 56px 28px; }
.request-box {
  position: relative;
  width: 100%;
  overflow: visible;
  border: 1px solid var(--hairline);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition: border-color .2s, box-shadow .2s;
}
.request-box:focus-within {
  border-color: var(--ink-2);
  box-shadow: 0 0 0 4px rgba(26,22,20,.05), var(--shadow-card);
}
.request-input {
  display: block;
  width: 100%;
  min-height: 82px;
  max-height: 220px;
  resize: vertical;
  overflow-y: auto;
  border: 0;
  outline: 0;
  padding: 22px 22px 6px;
  background: transparent;
  color: var(--ink);
  font-size: 22px;
  letter-spacing: -.01em;
  line-height: 1.35;
}
.request-input::placeholder { color: var(--muted-2); opacity: 1; }
.icon-action {
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--hairline);
  background: var(--paper);
  color: var(--ink);
}
.icon-action:hover { background: var(--paper-2); }
.icon-action svg,
.action svg,
.preset svg { width: 16px; height: 16px; }

.location-field {
  position: relative;
  display: grid;
  width: 100%;
  gap: 8px;
}
.location-field > .eyebrow {
  align-self: center;
  color: var(--muted-2);
  font-size: 10px;
}
.location-field > .eyebrow::before,
.location-field > .eyebrow::after { display: none; }
.location-input-wrap {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 0 14px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}
.location-input-wrap svg { width: 16px; height: 16px; color: var(--muted); }
.location-input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
}
.autocomplete-wrap,
.request-autocomplete-wrap {
  position: relative;
  min-width: 0;
  flex: 1 1 auto;
  z-index: 20;
}
.autocomplete-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 80;
  max-height: 290px;
  overflow-y: auto;
  border: 1px solid var(--hairline-2);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(34,24,17,.16);
}
.request-autocomplete-wrap > .autocomplete-dropdown { top: calc(100% - 1px); }
.autocomplete-item {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--hairline);
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
}
.autocomplete-item:last-child { border-bottom: 0; }
.autocomplete-item:hover,
.autocomplete-item.active { background: var(--paper-2); }
.autocomplete-item .loc-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.autocomplete-item .loc-country {
  flex: 0 0 auto;
  color: var(--muted-2);
  font-family: var(--font-mono);
  font-size: 10px;
}

.button-zone {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 278px;
  padding: 8px 0 0;
}
.button-zone::before,
.button-zone::after {
  content: "";
  position: absolute;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  pointer-events: none;
}
.button-zone::before {
  width: 320px;
  height: 320px;
  opacity: .55;
}
.button-zone::after {
  width: 420px;
  height: 420px;
  border-style: dashed;
  opacity: .3;
}
.button-stack {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 16px;
}
.big-red {
  --r: 220px;
  position: relative;
  display: grid;
  width: var(--r);
  height: var(--r);
  place-items: center;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(ellipse 65% 38% at 50% 18%, rgba(255,255,255,.45) 0%, rgba(255,255,255,.1) 35%, rgba(255,255,255,0) 60%),
    radial-gradient(circle at 50% 110%, #4d050a 0%, rgba(0,0,0,0) 55%),
    radial-gradient(circle at 50% 38%, #f09399 0%, var(--red) 45%, #ad1120 80%, #7d0710 100%);
  box-shadow:
    0 2px 0 0 rgba(255,255,255,.5) inset,
    0 -10px 22px -10px #2d0306 inset,
    0 0 0 7px #1a0608,
    0 0 0 8px rgba(255,255,255,.08),
    0 22px 38px -12px rgba(216,30,44,.55),
    0 36px 60px -22px rgba(0,0,0,.35),
    0 8px 16px -8px rgba(122,10,20,.8);
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: .18em;
  transition: transform .14s ease, box-shadow .14s ease, filter .2s;
}
.big-red::before {
  content: "";
  position: absolute;
  top: 8%;
  right: 14%;
  left: 14%;
  height: 32%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.5), rgba(255,255,255,.15) 40%, transparent 75%);
  filter: blur(2px);
  pointer-events: none;
}
.big-red::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  pointer-events: none;
}
.big-red:hover { filter: brightness(1.05) saturate(1.05); }
.big-red:active { transform: translateY(4px) scale(.985); }
.big-red.ready:not(:disabled) {
  filter: saturate(1.16) brightness(1.04);
  box-shadow:
    0 2px 0 0 rgba(255,255,255,.58) inset,
    0 -10px 22px -10px #2d0306 inset,
    0 0 0 7px #1a0608,
    0 0 0 8px rgba(255,255,255,.1),
    0 20px 42px -10px rgba(216,30,44,.7),
    0 38px 68px -22px rgba(0,0,0,.4),
    0 0 44px -18px rgba(216,30,44,.9);
}
.big-red:disabled {
  cursor: not-allowed;
  opacity: .85;
  filter: saturate(.35) brightness(.78);
}
.button-label,
.button-sub {
  position: relative;
  z-index: 1;
  display: block;
  text-shadow: 0 1px 0 rgba(0,0,0,.35), 0 0 18px rgba(0,0,0,.15);
}
.button-label { font-size: 15px; }
.button-sub {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .22em;
  opacity: .78;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid var(--hairline);
  padding: 48px 0 0;
}
.info-grid article {
  border: 0;
  background: transparent;
}
.info-grid strong {
  display: block;
  width: 100%;
  border-top: 1px solid var(--ink);
  padding-top: 14px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 1.18;
}

.results-page {
  padding: 8px 0 64px;
  animation: fade-in .35s ease both;
}
.brseo-page {
  padding-top: 40px;
}
.brseo-hero {
  border-bottom: 1px solid var(--hairline);
  padding: 20px 0 30px;
}
.brseo-lede {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.brseo-search {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin-top: 28px;
}
.brseo-search .v5w-search {
  max-width: none;
}
.brseo-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.brseo-submit-row .v5w-cov {
  justify-content: flex-start;
}
.brseo-submit-row .state-button:disabled {
  cursor: not-allowed;
  opacity: .55;
}
.brprofile-page {
  padding: 40px 0 80px;
  animation: fade-in .35s ease both;
}
.brprofile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: start;
}
.brprofile-main {
  min-width: 0;
}
.brprofile-crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.brprofile-crumbs a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.brprofile-hero {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 34px;
}
.brprofile-avatar {
  display: grid;
  width: 112px;
  height: 112px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--hairline);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}
.brprofile-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brprofile-avatar-fallback {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background: var(--paper-2);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 600;
}
.brprofile-title h1 {
  margin: 14px 0 8px;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
  text-wrap: balance;
}
.brprofile-title p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}
.brprofile-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.brprofile-section {
  border-bottom: 1px solid var(--hairline);
  padding: 30px 0;
}
.brprofile-section h2 {
  margin: 0 0 16px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.brprofile-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.brprofile-detail {
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 14px;
  background: var(--surface);
}
.brprofile-detail span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted-2);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.brprofile-detail strong {
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.35;
}
.brprofile-rail {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.brprofile-composer {
  margin-bottom: 0;
}
.brprofile-actions {
  display: grid;
  gap: 8px;
  padding: 0 18px 18px;
}
.results-head {
  border-bottom: 1px solid var(--hairline);
  padding: 4px 0 16px;
}
.results-title-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 36px;
  align-items: start;
  gap: 14px;
}
.icon-action {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
}
.icon-action svg {
  width: 18px;
  height: 18px;
}
.results-heading {
  min-width: 0;
  padding-top: 1px;
}
.share-action {
  color: var(--muted);
}
.share-action:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.request-echo {
  margin: 0;
  max-width: 820px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.24;
  text-wrap: pretty;
}
.results-count {
  margin-top: 6px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0;
}
.results-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  margin-top: 20px;
}
.results-grid-single {
  grid-template-columns: minmax(0, 1fr);
}
.results-list,
.provider-list {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 14px;
}
.rail {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: start;
}
.rail-card {
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 18px;
  background: var(--surface);
}
.rail-card h3 {
  margin: 0 0 12px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.verify-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.verify-list strong { color: var(--ink); font-weight: 500; }
.composer,
.provider,
.result-state,
.outcome-card {
  border: 1px solid var(--hairline);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}
.composer {
  margin-bottom: 12px;
  border-radius: 16px;
}
.composer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px 8px;
}
.composer-title {
  display: block;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
}
.composer-note {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}
.composer-protip {
  display: block;
  margin-top: 5px;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 500;
}
.composer-status {
  flex: 0 0 auto;
  border: 1px solid rgba(47,107,61,.25);
  border-radius: 999px;
  padding: 4px 8px;
  background: rgba(47,107,61,.10);
  color: var(--green);
  font-size: 10.5px;
  letter-spacing: .03em;
}
.composer-status.edited {
  border-color: #e7c998;
  background: #fff8e9;
  color: #936416;
}
.composer-input {
  display: block;
  width: calc(100% - 28px);
  min-height: 72px;
  max-height: 132px;
  margin: 0 14px;
  resize: vertical;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  outline: 0;
  padding: 10px 11px;
  background: #fdfbf8;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.4;
}
.preset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 14px 12px;
}
.preset {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--paper);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
}

.provider {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) minmax(170px, auto);
  gap: 18px;
  align-items: start;
  border-radius: 18px;
  padding: 22px 22px 18px;
  transition: border-color .2s, box-shadow .2s;
}
.provider:hover {
  border-color: var(--hairline-2);
  box-shadow: var(--shadow-card);
}
.provider-body {
  display: contents;
}
.avatar {
  position: relative;
  display: grid;
  width: 56px;
  height: 56px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 600;
}
.avatar-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}
.provider-main {
  display: grid;
  min-width: 0;
  gap: 7px;
}
.provider-name {
  color: var(--ink);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.verified {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(47,107,61,.25);
  border-radius: 999px;
  padding: 2px 8px 2px 6px;
  background: rgba(47,107,61,.10);
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .03em;
  font-weight: 500;
}
.provider-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.35;
}
.rating { color: var(--amber); }
.profile-link {
  width: fit-content;
  color: var(--ink-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.profile-pending { color: var(--muted-2); }
.provider-actions {
  display: flex;
  min-width: 170px;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}
.action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--hairline-2);
  border-radius: 12px;
  padding: 10px 14px;
  background: var(--surface);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  transition: background .15s, filter .2s, transform .12s;
}
.action:hover { background: var(--paper-2); }
.action.whatsapp {
  border: 0;
  background-image: linear-gradient(180deg, var(--whatsapp-bright) 0%, var(--whatsapp) 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.005em;
  box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 1px 2px rgba(31,185,87,.3), 0 4px 14px -6px rgba(31,185,87,.5);
}
.action.whatsapp:hover { filter: brightness(1.05); }
.action:active { transform: scale(.985); }

.result-state,
.outcome-screen {
  display: grid;
  min-height: 520px;
  place-items: center;
  text-align: center;
}
.result-state {
  border-radius: 20px;
  padding: 46px 28px;
  color: var(--muted);
}
.result-state h2,
.result-state p,
.outcome-card h1,
.outcome-card p { margin: 0; }
.result-state h2 {
  color: var(--ink);
  font-size: 26px;
  font-weight: 500;
}
.result-state p {
  max-width: 440px;
  margin-top: 10px;
  line-height: 1.5;
}
.search-activity.result-state {
  grid-template-columns: 34px minmax(0, 1fr);
  min-height: 220px;
  align-content: center;
  column-gap: 18px;
  place-items: initial;
  text-align: left;
}
.search-activity .loader {
  align-self: center;
  margin: 0;
}
.search-activity-copy {
  display: grid;
  min-width: 0;
  gap: 5px;
}
.search-activity-k {
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.search-activity h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0;
}
.search-activity.result-state p {
  grid-column: 2;
  margin: 8px 0 0;
  font-size: 14px;
}
.search-activity.compact {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 11px 14px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}
.search-activity.compact .loader {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-width: 2px;
}
.search-activity.compact .search-activity-copy {
  gap: 2px;
}
.search-activity.compact h2 {
  font-size: 14px;
  font-weight: 600;
}
.outcome-card {
  width: min(680px, 100%);
  border-radius: 26px;
  padding: 46px;
  box-shadow: var(--shadow-soft);
}
.outcome {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--red);
}
.outcome-card h1 {
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: .98;
}
.outcome-card p {
  max-width: 520px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}
.clarify-input {
  margin-top: 24px;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  background: #fff;
}
.outcome-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.state-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 18px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
}
.state-button.secondary {
  border-color: var(--hairline-2);
  background: #fff;
  color: var(--ink);
}
.loader {
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  border: 3px solid var(--hairline);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  border-radius: 999px;
  padding: 11px 15px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 28px rgba(20,15,10,.18);
  font-size: 13px;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes cov-pulse { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }
@keyframes fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 900px) {
  .brand-logo { height: 28px; }
  .shell,
  .screen { width: min(100% - 28px, 640px); }
  .home-screen { padding: 22px 0 32px; }
  .location-chip-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .greeting { font-size: clamp(40px, 12vw, 58px); }
  .hero-panel,
  .console { margin: 30px auto 40px; }
  .v5w-search {
    flex-direction: column;
  }
  .v5w-divider {
    width: auto;
    height: 1px;
    margin: 0 18px;
  }
  .v5w-field.city,
  .v5w-field.city.location-field { width: 100%; }
  .v5w-pop { justify-content: flex-start; }
  .button-zone { min-height: 248px; }
  .button-zone::before { width: 280px; height: 280px; }
  .button-zone::after { width: 350px; height: 350px; }
  .big-red { --r: 190px; }
  .big-red.brb { --r: 190px; }
  .brb-rings { width: 284px; height: 284px; }
  .info-grid,
  .results-grid { grid-template-columns: 1fr; }
  .info-grid { gap: 24px; padding-top: 36px; }
  .brseo-submit-row {
    align-items: stretch;
    flex-direction: column;
  }
  .brseo-submit-row .state-button {
    width: 100%;
  }
  .brprofile-layout {
    grid-template-columns: 1fr;
  }
  .brprofile-rail {
    position: static;
    order: -1;
  }
  .brprofile-hero {
    grid-template-columns: 1fr;
  }
  .brprofile-detail-grid {
    grid-template-columns: 1fr;
  }
  .rail {
    position: static;
    margin-top: 8px;
  }
  .provider {
    grid-template-columns: 52px minmax(0, 1fr);
  }
  .provider-actions {
    grid-column: 1 / -1;
    min-width: 0;
  }
  .search-activity.result-state {
    min-height: 190px;
    padding: 28px 22px;
  }
}
