:root {
  --signal: #2f8a57;
  --signal-dk: #236945;
  --signal-lt: #d8efe0;
  --ink: #12385a;
  --ink-2: #234866;
  --graphite: #5a6f7f;
  --cream: #f6f1e7;
  --paper: #fdfbf6;
  --bone: #e3ddd1;
  --moss: #2f8a57;
  --moss-lt: #dff2e6;
  --sky: #295c92;
  --flag: #d8b468;
  --rose: #a85d63;
  --shadow: 0 12px 34px rgba(18, 56, 90, 0.12);
  --display: "Arial Rounded MT Bold", "Trebuchet MS", system-ui, sans-serif;
  --ui: Manrope, Inter, system-ui, sans-serif;
  --mono: "JetBrains Mono", "SFMono-Regular", ui-monospace, monospace;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--ui);
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.install-coach-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
.button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

button:hover,
.button:hover {
  background: color-mix(in srgb, var(--ink) 88%, black);
}

button.secondary,
.button.secondary {
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
}

button.subtle,
.button.subtle {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--bone);
}

button.moss,
.button.moss {
  background: var(--moss);
  color: #fff;
}

button.moss:hover,
.button.moss:hover {
  background: color-mix(in srgb, var(--moss) 84%, black);
}

button.mint,
.button.mint {
  background: linear-gradient(180deg, #edf8ef 0%, #d7efdd 100%);
  color: var(--moss);
  border: 2px solid color-mix(in srgb, var(--moss) 18%, white);
}

button.mint:hover,
.button.mint:hover {
  background: linear-gradient(180deg, #e1f2e4 0%, #cbe6d2 100%);
}

button.sky,
.button.sky {
  background: #163f7a;
  color: #fff;
}

button.sky:hover,
.button.sky:hover {
  background: color-mix(in srgb, #163f7a 84%, black);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: calc(14px + var(--safe-top)) max(clamp(16px, 4vw, 56px), calc(16px + var(--safe-right))) 14px max(clamp(16px, 4vw, 56px), calc(16px + var(--safe-left)));
  background: rgba(245, 239, 230, 0.94);
  border-bottom: 1px solid var(--bone);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  width: 58px;
  height: 30px;
  display: grid;
  place-items: center;
  background: transparent;
  border-radius: 0;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-word {
  position: relative;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  color: var(--ink);
}

.brand-word::before {
  display: none;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.top-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 800;
  border-radius: 8px;
}

.top-nav a:hover {
  background: var(--bone);
}

.top-nav .nav-link-secondary {
  color: var(--graphite);
}

.top-nav .nav-cta {
  background: var(--signal);
  color: #fff;
}

.top-nav .nav-cta-secondary {
  background: transparent;
  color: var(--signal);
  border: 2px solid var(--signal);
}

.top-nav .nav-cta-secondary:hover {
  background: color-mix(in srgb, var(--signal) 12%, white);
}

.top-nav .nav-signin {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 2px solid var(--ink-2);
  border-radius: 8px;
  color: var(--ink-2);
  font-weight: 800;
  text-decoration: none;
}
.top-nav .nav-signin:hover {
  background: var(--bone);
}

.top-nav .install-button {
  min-height: 42px;
  padding: 8px 12px;
  background: var(--moss);
  color: white;
}

.nav-user-chip,
.mobile-user-chip {
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: 1px solid var(--bone);
  background: var(--paper);
  color: var(--ink-2);
  font-weight: 800;
}

.nav-user-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.mobile-user-chip {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  text-align: center;
}

.nav-user-chip[hidden],
.mobile-user-chip[hidden] {
  display: none;
}

.beta-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--paper);
  font-size: 15px;
  line-height: 1.35;
  text-align: center;
}

.beta-banner strong {
  color: var(--signal);
}

.beta-banner a {
  color: var(--paper);
  font-weight: 900;
  text-decoration-color: var(--signal);
}

.page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 54px;
}

.home-page {
  display: grid;
  gap: 28px;
}

.home-hero {
  min-height: calc(100vh - 110px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.home-surface {
  display: grid;
  gap: 18px;
}

.home-grid {
  display: grid;
  gap: 16px;
}

.home-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-panel,
.home-card {
  background: var(--paper);
  border: 1px solid var(--bone);
  border-radius: 12px;
  padding: 22px;
}

.home-panel--map {
  display: grid;
  gap: 14px;
}

.home-panel--dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.home-panel--dark p,
.home-panel--dark h2,
.home-panel--dark .eyebrow,
.home-panel--dark .fineprint {
  color: inherit;
}

.home-panel--dark .eyebrow::before {
  background: var(--signal);
}

.home-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 220px;
}

.home-kicker {
  color: var(--signal-dk);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero {
  min-height: calc(100vh - 110px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding-bottom: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--signal-dk);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 20px;
  background: var(--signal);
  border-radius: 50%;
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.03;
  margin: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(48px, 8vw, 92px);
}

h2 {
  font-size: clamp(34px, 4.5vw, 58px);
}

h3 {
  font-size: 24px;
}

.lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--ink-2);
  font-size: clamp(21px, 2.3vw, 28px);
  line-height: 1.32;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-note {
  margin-top: 20px;
  color: var(--graphite);
  font-size: 16px;
}

.property-line {
  margin: 14px 0 0;
  color: var(--graphite);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(21, 17, 13, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(21, 17, 13, 0.08) 1px, transparent 1px),
    var(--paper);
  background-size: 46px 46px;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
}

.route-line {
  position: absolute;
  inset: 46px 42px;
}

.route-line svg {
  width: 100%;
  height: 100%;
}

.hero-pin {
  position: absolute;
  width: 178px;
  padding: 12px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 6px 6px 0 var(--ink);
}

.hero-pin strong {
  display: block;
  font-size: 18px;
  line-height: 1.15;
}

.hero-pin span {
  color: var(--graphite);
  font-size: 14px;
}

.hero-pin.one {
  top: 48px;
  left: 28px;
}

.hero-pin.two {
  top: 210px;
  right: 24px;
}

.hero-pin.three {
  left: 52px;
  bottom: 52px;
}

.route-total {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 220px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 8px;
  padding: 18px;
}

.route-total span {
  display: block;
  color: var(--signal);
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
}

.route-total strong {
  display: block;
  margin-top: 4px;
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
}

.home-hero {
  min-height: auto;
  display: block;
  grid-template-columns: 1fr;
}

.home-page {
  gap: 18px;
}

.home-hero-card {
  display: grid;
  gap: 22px;
  padding: clamp(20px, 3vw, 34px);
  background:
    radial-gradient(circle at 0% 0%, rgba(46, 132, 79, 0.12), transparent 32%),
    radial-gradient(circle at 100% 100%, rgba(22, 63, 122, 0.08), transparent 34%),
    #fffdfa;
  border: 1px solid rgba(21, 17, 13, 0.08);
  border-radius: 30px;
  box-shadow: 0 24px 64px rgba(21, 17, 13, 0.08);
}

.home-hero-copy--simple {
  max-width: 760px;
}

.home-utility-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 800;
}

.home-utility-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home-utility-points span::before {
  content: "✔";
  color: var(--moss);
  font-size: 14px;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.home-hero-copy {
  display: grid;
  gap: 12px;
}

.home-brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.home-brand-mark {
  width: 84px;
  height: 42px;
  display: inline-flex;
  align-items: center;
}

.home-brand-mark svg {
  width: 100%;
  height: 100%;
}

.home-brand-name {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 0.96;
  color: var(--ink);
}

.home-brand-tagline {
  margin: 8px 0 0;
  color: var(--moss);
  font-size: 18px;
  font-weight: 800;
}

.home-title-accent {
  color: var(--moss);
}

.home-hero-lead {
  max-width: 34rem;
  font-size: clamp(20px, 2vw, 24px);
}

.home-hero-actions {
  margin-top: 12px;
}

.home-hero-actions .button {
  min-width: min(100%, 280px);
}

.home-proof-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.home-proof-card {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(21, 17, 13, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(21, 17, 13, 0.06);
}

.home-proof-card strong {
  font-size: 18px;
}

.home-proof-card span {
  color: var(--graphite);
}

.home-money-compare {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 16px;
  align-items: stretch;
  padding: clamp(20px, 3vw, 30px);
  background:
    linear-gradient(90deg, rgba(47, 138, 87, 0.1), transparent 44%),
    #fffdfa;
  border: 1px solid rgba(21, 17, 13, 0.08);
  border-radius: 24px;
}

.home-money-copy {
  display: grid;
  align-content: center;
  gap: 8px;
}

.home-money-copy h2,
.home-money-copy p {
  margin: 0;
}

.home-receipt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.home-receipt {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(21, 17, 13, 0.1);
  border-radius: 18px;
}

.home-receipt--old {
  background: linear-gradient(180deg, #fff7f3 0%, #fffdfa 100%);
}

.home-receipt--udooz {
  background: linear-gradient(180deg, #f2fbf4 0%, #fffdfa 100%);
  border-color: rgba(47, 138, 87, 0.22);
}

.home-receipt-label {
  margin: 0;
  color: var(--signal-dk);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-receipt strong {
  font-size: 22px;
  line-height: 1.05;
}

.home-receipt ul {
  margin: 0;
  padding-left: 20px;
  color: var(--graphite);
}

.home-receipt li + li {
  margin-top: 8px;
}

.home-standard {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at 8% 10%, rgba(47, 138, 87, 0.14), transparent 28%),
    linear-gradient(135deg, #fffdfa 0%, #f4faf5 48%, #eef6ff 100%);
  border: 1px solid rgba(18, 56, 90, 0.12);
  border-radius: 28px;
  box-shadow: 0 22px 54px rgba(21, 17, 13, 0.08);
}

.home-standard-copy {
  max-width: 860px;
}

.home-standard-copy h2,
.home-standard-copy p {
  margin: 0;
}

.home-standard-copy h2 {
  margin-top: 8px;
}

.home-standard-copy p {
  margin-top: 12px;
  color: var(--graphite);
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.55;
}

.home-standard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.home-standard-grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(21, 17, 13, 0.08);
  border-radius: 18px;
}

.home-standard-grid strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.1;
}

.home-standard-grid span {
  color: var(--graphite);
  line-height: 1.55;
}

.home-compare-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.home-compare-band > div {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: #fffdfa;
  border: 1px solid rgba(21, 17, 13, 0.1);
  border-radius: 18px;
}

.home-compare-band > div:first-child {
  background: linear-gradient(180deg, #fff7f3 0%, #fffdfa 100%);
}

.home-compare-band > div:last-child {
  background: linear-gradient(180deg, #f0faf2 0%, #fffdfa 100%);
  border-color: rgba(47, 138, 87, 0.22);
}

.home-compare-band strong {
  font-size: 22px;
  line-height: 1.08;
}

.home-compare-band span {
  color: var(--graphite);
  line-height: 1.55;
}

.home-founder-proof {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 0.9fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at 12% 20%, rgba(47, 138, 87, 0.14), transparent 30%),
    linear-gradient(135deg, #f7fbf6 0%, #fffdfa 55%, #eef6ff 100%);
  border: 1px solid rgba(21, 17, 13, 0.08);
  border-radius: 28px;
  box-shadow: 0 22px 54px rgba(21, 17, 13, 0.08);
}

.home-founder-proof h2,
.home-founder-proof p {
  margin: 0;
}

.home-founder-proof h2 {
  margin-top: 8px;
}

.home-founder-proof p {
  margin-top: 12px;
  color: var(--graphite);
  font-size: clamp(18px, 1.9vw, 22px);
}

.home-founder-steps {
  display: grid;
  gap: 12px;
}

.home-founder-steps article {
  display: grid;
  gap: 4px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 56, 90, 0.12);
  border-radius: 18px;
}

.home-founder-steps strong {
  color: var(--navy);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-founder-steps span {
  color: var(--graphite);
  font-weight: 750;
}

.home-hero-media {
  position: relative;
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 58px rgba(21, 17, 13, 0.16);
}

.home-hero-media--simple {
  min-height: 0;
  max-height: none;
  display: grid;
  grid-template-rows: minmax(260px, 340px) auto;
  background: var(--paper);
}

.home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-deal-photo {
  min-height: 0;
  overflow: hidden;
}

.home-deal-photo img {
  object-position: center 48%;
}

.deal-slider {
  --service-x: 50%;
  --money-x: 50%;
  position: relative;
  display: grid;
  gap: 10px;
  padding: clamp(12px, 2vw, 20px);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(222, 242, 226, 0.72), rgba(253, 251, 246, 0.98) 46%, rgba(232, 242, 249, 0.88));
  border-top: 1px solid rgba(18, 56, 90, 0.12);
}

.deal-slider-stage {
  position: relative;
  min-height: 184px;
  border: 1px solid rgba(18, 56, 90, 0.14);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(253, 251, 246, 0.92);
  box-shadow: 0 18px 42px rgba(18, 56, 90, 0.18);
}

.deal-person {
  position: absolute;
  top: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(18, 56, 90, 0.12);
}

.deal-person--doozer {
  left: 14px;
}

.deal-person--seeker {
  right: 14px;
}

.deal-lane {
  position: absolute;
  inset: 48px 36px 16px;
}

.deal-lane::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 36%;
  bottom: 20%;
  background:
    linear-gradient(90deg, var(--moss), rgba(47, 138, 87, 0.2) 48%, rgba(18, 56, 90, 0.2) 52%, var(--ink)) top / 100% 3px no-repeat,
    linear-gradient(90deg, var(--moss), rgba(47, 138, 87, 0.2) 48%, rgba(18, 56, 90, 0.2) 52%, var(--ink)) bottom / 100% 3px no-repeat;
}

.deal-center-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 62px;
  height: 72px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 14px;
  background: rgba(253, 251, 246, 0.95);
  border: 2px solid rgba(18, 56, 90, 0.18);
  box-shadow: 0 10px 22px rgba(18, 56, 90, 0.14);
}

.deal-center-mark svg,
.deal-token-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.deal-token {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 124px;
  min-height: 48px;
  padding: 8px 14px;
  border: 2px solid currentColor;
  background: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(18, 56, 90, 0.16);
  transition: left 0.16s ease, transform 0.16s ease;
}

.deal-token--service {
  left: var(--service-x);
  top: 36%;
  color: var(--moss);
  transform: translate(-50%, -50%);
  border-radius: 10px 2px 2px 10px;
}

.deal-token--service::after {
  content: "";
  position: absolute;
  right: -22px;
  top: 50%;
  width: 0;
  height: 0;
  transform: translateY(-50%);
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 22px solid currentColor;
}

.deal-token--money {
  left: var(--money-x);
  top: 80%;
  color: var(--ink);
  flex-direction: row-reverse;
  transform: translate(-50%, -50%);
  border-radius: 2px 10px 10px 2px;
}

.deal-token--money::after {
  content: "";
  position: absolute;
  left: -22px;
  top: 50%;
  width: 0;
  height: 0;
  transform: translateY(-50%);
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-right: 22px solid currentColor;
}

.deal-token-mark {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 18px;
  display: inline-flex;
  padding: 0;
  background: transparent;
}

.deal-token span {
  position: relative;
  z-index: 2;
  color: currentColor;
}

.deal-slider-control {
  display: grid;
  gap: 6px;
  padding: 10px 14px 12px;
  border: 1px solid rgba(18, 56, 90, 0.12);
  border-radius: 14px;
  background: rgba(253, 251, 246, 0.95);
  box-shadow: 0 10px 22px rgba(18, 56, 90, 0.12);
}

.deal-slider-control span {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.deal-slider-control input {
  width: 100%;
  accent-color: var(--moss);
}

.deal-slider-status {
  margin: 0;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(18, 56, 90, 0.86);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.home-media-badge {
  position: absolute;
  display: grid;
  gap: 4px;
  max-width: 250px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(21, 17, 13, 0.08);
  border-radius: 20px;
  box-shadow: 0 18px 34px rgba(21, 17, 13, 0.14);
}

.home-media-badge strong {
  font-size: 18px;
  line-height: 1.1;
}

.home-media-badge span {
  color: var(--graphite);
  font-size: 15px;
}

.home-media-badge--trust {
  right: 20px;
  bottom: 22px;
}

.home-media-badge--route {
  left: 22px;
  bottom: 22px;
}

.home-split-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 28px;
  border-radius: 24px;
}

.home-split-card .actions {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.home-split-card--seekers {
  background: linear-gradient(180deg, #fbfffb 0%, #eef8f0 100%);
}

.home-split-card--doozers {
  background: linear-gradient(180deg, #fcfdff 0%, #edf4fe 100%);
}

.home-split-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(21, 17, 13, 0.08);
  color: var(--moss);
  font-size: 32px;
  font-weight: 900;
}

.home-split-card--doozers .home-split-icon {
  color: #163f7a;
}

.home-check-list,
.home-step-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--ink-2);
}

.home-check-list li + li,
.home-step-list li + li {
  margin-top: 8px;
}

.home-check-list--compact {
  margin-top: 14px;
}

.home-summary-card {
  min-height: 100%;
  border-radius: 22px;
}

.home-summary-card .button {
  margin-top: 16px;
}

.home-map-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: stretch;
}

.home-map-copy {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 30px;
  background: linear-gradient(180deg, #fffdfa 0%, #f5f8fd 100%);
  border: 1px solid rgba(21, 17, 13, 0.08);
  border-radius: 24px;
}

.home-map-panel .home-panel--map {
  height: 100%;
  border-radius: 24px;
}

.home-launch-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 30px;
  background:
    radial-gradient(circle at 0% 50%, rgba(47, 138, 87, 0.14), transparent 24%),
    linear-gradient(180deg, #fffdf8 0%, #eef7f2 100%);
  border: 1px solid rgba(18, 56, 90, 0.08);
  border-radius: 24px;
}

.home-link-grid {
  margin-top: 4px;
}

.home-link-card {
  display: grid;
  gap: 10px;
  align-content: start;
  border-radius: 22px;
}

.home-link-card h3,
.home-link-card p {
  margin: 0;
}

.home-launch-copy {
  display: grid;
  gap: 6px;
  max-width: 560px;
}

.home-launch-copy p:last-child {
  margin: 0;
}

.section {
  padding: 52px 0;
  border-top: 1px solid var(--bone);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 22px;
}

.section-head p {
  max-width: 620px;
  color: var(--graphite);
  margin: 0;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.listing-card,
.panel {
  background: var(--paper);
  border: 1px solid var(--bone);
  border-radius: 8px;
  padding: 18px;
}

.card {
  min-height: 170px;
}

.card p,
.listing-card p,
.panel p {
  color: var(--graphite);
}

.card p:last-child,
.listing-card p:last-child,
.panel p:last-child {
  margin-bottom: 0;
}

.number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--signal);
  color: var(--ink);
  font-weight: 900;
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 999px;
  padding: 7px 12px;
  background: var(--bone);
  color: var(--ink-2);
  font-weight: 800;
  font-size: 15px;
}

.pill.signal {
  background: var(--signal-lt);
  color: var(--signal-dk);
}

.pill.moss {
  background: var(--moss-lt);
  color: var(--moss);
}

.pill.flag {
  background: #f8e7ad;
  color: #6f4c00;
}

.pill.rose {
  background: #f4d3d6;
  color: var(--rose);
}

.browse-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
}

.filter-panel {
  position: sticky;
  top: 92px;
  align-self: start;
}

.listing-list {
  display: grid;
  gap: 12px;
}

.listing-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 196px;
  gap: 12px;
  align-items: start;
}

.listing-card:hover {
  border-color: var(--signal);
}

.listing-title {
  color: var(--ink);
  text-decoration: none;
}

.listing-meta,
.fineprint {
  color: var(--graphite);
  font-size: 15px;
}

.price {
  min-width: 88px;
  text-align: center;
  background: var(--ink);
  color: var(--paper);
  border-radius: 8px;
  padding: 10px;
  font-weight: 900;
}

.price span {
  display: block;
  color: var(--signal);
  font-size: 12px;
  font-family: var(--mono);
  text-transform: uppercase;
}

.listing-card-side {
  display: grid;
  gap: 10px;
  justify-items: stretch;
}

.listing-card-map-wrap {
  display: grid;
  gap: 8px;
}

.listing-map-link {
  color: var(--signal-dk);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.listing-map-link:hover {
  text-decoration: underline;
}

.listing-save-button,
.save-dooze-button {
  width: 100%;
}

.save-dooze-button.is-saved {
  background: color-mix(in srgb, var(--signal) 12%, white);
  border-color: color-mix(in srgb, var(--signal) 50%, var(--bone));
  color: var(--signal-dk);
}

.listing-mini-map,
.home-map-window {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--ink) 14%, var(--paper));
  background: linear-gradient(180deg, #dfeef6 0%, #f5efe6 100%);
}

.listing-mini-map {
  aspect-ratio: 16 / 10;
  min-height: 118px;
}

.detail-mini-map {
  margin-bottom: 18px;
  min-height: 168px;
}

.home-map-window {
  min-height: 220px;
}

.listing-mini-map img,
.home-map-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.03);
}

.listing-mini-map__shade,
.home-map-window__shade {
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent 0%, rgba(21, 17, 13, 0.18) 100%);
}

.listing-mini-map__ring,
.home-map-window__focus {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 2px solid rgba(255, 91, 31, 0.9);
  background: rgba(255, 91, 31, 0.14);
}

.listing-mini-map__ring {
  width: 48%;
  aspect-ratio: 1;
}

.home-map-window__focus {
  width: 42%;
  aspect-ratio: 1;
}

.listing-mini-map__pin,
.home-map-window__pin {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--signal);
  border: 3px solid rgba(255, 248, 240, 0.92);
  box-shadow: 0 6px 16px rgba(21, 17, 13, 0.24);
}

.listing-mini-map__pin {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.listing-mini-map__label,
.home-map-window__count {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(21, 17, 13, 0.78);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.listing-mini-map__fallback,
.home-map-window--fallback {
  min-height: 100%;
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 18px;
  text-align: center;
  color: var(--ink-2);
}

.listing-mini-map__fallback strong,
.home-map-window--fallback strong {
  color: var(--ink);
}

.home-map-window__pin--one {
  left: 31%;
  top: 56%;
}

.home-map-window__pin--two {
  left: 52%;
  top: 44%;
}

.home-map-window__pin--three {
  left: 67%;
  top: 61%;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: start;
}

.upload-stack,
.attachment-section {
  display: grid;
  gap: 16px;
}

.upload-panel {
  padding: 18px;
  border: 1px dashed color-mix(in srgb, var(--ink) 22%, var(--paper));
  border-radius: 10px;
  background: color-mix(in srgb, var(--paper) 88%, white);
}

.upload-actions {
  flex-wrap: wrap;
}

.upload-picker {
  cursor: pointer;
}

.upload-picker input {
  display: none;
}

.upload-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.upload-preview-card,
.attachment-card,
.attachment-doc,
.upload-doc-row {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--ink) 15%, var(--paper));
  border-radius: 10px;
  background: white;
}

.upload-preview-card img,
.attachment-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  background: var(--bone);
}

.upload-preview-card__meta,
.attachment-card span {
  display: grid;
  gap: 4px;
  color: var(--ink-2);
  font-size: 14px;
}

.upload-doc-list,
.attachment-docs {
  display: grid;
  gap: 10px;
}

.attachment-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.attachment-card {
  text-decoration: none;
  color: var(--ink);
}

.attachment-doc {
  text-decoration: none;
  color: var(--ink);
}

.attachment-doc strong {
  font-size: 15px;
}

.detail-title {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.status-rail {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.status-step {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.status-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bone);
  background: var(--paper);
  display: grid;
  place-items: center;
  color: var(--graphite);
  font-weight: 900;
}

.status-step.done .status-dot {
  background: var(--moss);
  color: white;
  border-color: var(--moss);
}

.status-step.current .status-dot {
  background: var(--signal);
  color: var(--ink);
  border-color: var(--signal);
}

.callout {
  padding: 18px;
  border-radius: 8px;
  background: var(--signal-lt);
  border: 1px solid #ffc4a8;
}

.callout strong {
  display: block;
  margin-bottom: 4px;
}

.callout.policy {
  background: var(--paper);
  border-color: var(--ink);
}

.install-panel {
  margin: 26px 0 18px;
  padding: clamp(20px, 4vw, 34px);
  border: 2px solid var(--ink);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(21, 17, 13, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(21, 17, 13, 0.08) 1px, transparent 1px),
    var(--paper);
  background-size: 46px 46px;
  box-shadow: var(--shadow);
}

.install-panel p {
  max-width: 780px;
  color: var(--graphite);
}

.install-grid {
  margin-top: 18px;
}

.install-coach-card {
  margin: 24px 0 18px;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--signal) 22%, var(--bone));
  background: linear-gradient(145deg, rgba(255, 91, 31, 0.08), rgba(255, 255, 255, 0.72));
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 1fr);
  align-items: center;
}

.install-coach-card h2 {
  margin: 0 0 8px;
}

.install-coach-card p {
  margin: 0;
  color: var(--ink-2);
}

.install-coach-card__actions {
  display: grid;
  gap: 12px;
}

.install-toast {
  position: fixed;
  right: max(18px, calc(18px + var(--safe-right)));
  bottom: max(18px, calc(18px + var(--safe-bottom)));
  z-index: 500;
  width: min(420px, calc(100vw - 28px));
  display: grid;
  gap: 12px;
  padding: 16px 16px 14px;
  border-radius: 12px;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.install-toast.is-success {
  border-color: var(--moss);
  background: color-mix(in srgb, var(--moss-lt) 45%, white);
}

.install-toast.is-error {
  border-color: var(--rose);
  background: color-mix(in srgb, #f4d3d6 60%, white);
}

.install-toast.is-info {
  border-color: var(--signal);
  background: color-mix(in srgb, var(--signal-lt) 60%, white);
}

.install-toast__body {
  display: grid;
  gap: 6px;
}

.install-toast__title {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.install-toast__message {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.45;
}

.install-toast__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.install-toast__action {
  min-height: 40px;
  padding: 8px 12px;
}

.install-toast__dismiss {
  min-height: 40px;
  padding: 8px 12px;
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--bone);
}

.install-toast__dismiss:hover {
  background: var(--bone);
}

.install-coach {
  position: fixed;
  inset: 0;
  z-index: 520;
}

.install-coach__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 17, 13, 0.58);
  backdrop-filter: blur(6px);
}

.install-coach__sheet {
  position: absolute;
  left: max(14px, calc(14px + var(--safe-left)));
  right: max(14px, calc(14px + var(--safe-right)));
  bottom: max(14px, calc(14px + var(--safe-bottom)));
  max-width: 560px;
  margin: 0 auto;
  padding: 22px 20px 20px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(21, 17, 13, 0.28);
}

.install-coach__close {
  min-height: 40px;
  margin-left: auto;
  margin-bottom: 10px;
  padding: 8px 12px;
  background: transparent;
  border: 2px solid var(--bone);
  color: var(--ink);
}

.install-coach__eyebrow {
  margin: 0 0 10px;
}

.install-coach__title {
  margin: 0;
  font-size: clamp(28px, 5vw, 38px);
  line-height: 1.02;
}

.install-coach__intro,
.install-coach__note {
  margin: 14px 0 0;
  color: var(--graphite);
}

.install-coach__steps {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.install-coach__step {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--signal-lt) 46%, white);
  border: 1px solid #ffd0bb;
}

.install-coach__step-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: white;
  border: 2px solid rgba(255, 91, 31, 0.18);
  color: var(--signal-dk);
}

.install-coach__step-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.install-coach__step-count {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--signal-dk);
}

.install-coach__step h3 {
  margin: 0 0 6px;
}

.install-coach__step p {
  margin: 0;
  color: var(--ink-2);
}

.install-coach__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.account-scope {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.account-scope li {
  margin-left: 1em;
}

.form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  min-height: 50px;
  width: 100%;
  border: 2px solid var(--bone);
  border-radius: 8px;
  padding: 12px;
  background: white;
  color: var(--ink);
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid var(--signal-lt);
  border-color: var(--signal);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice {
  display: block;
  border: 2px solid var(--bone);
  background: white;
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
}

.choice input {
  margin-right: 8px;
}

.choice strong {
  display: inline;
}

.choice span {
  display: block;
  color: var(--graphite);
  font-size: 15px;
  margin-top: 4px;
}

.insurance-preview,
.insurance-callout {
  margin-top: 12px;
}

.listing-insurance-note {
  margin-top: 8px;
  color: var(--graphite);
  font-size: 14px;
}

.result-box {
  display: none;
  margin-top: 18px;
}

.result-box.show {
  display: block;
}

.google-auth-panel {
  max-width: 440px;
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.auth-panel {
  display: grid;
  gap: 10px;
}

.auth-panel-title {
  margin: 0;
  font-weight: 800;
}

.auth-panel-note {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.6;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--bone);
  border-radius: 12px;
  background: color-mix(in srgb, var(--paper) 65%, white);
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.55;
}

.consent-row input {
  margin-top: 3px;
}

.consent-row a {
  color: var(--sky);
}

.install-permissions {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.install-permissions h2 {
  margin: 0;
}

.install-permissions__actions {
  justify-content: flex-start;
}

.install-permissions .fineprint {
  margin: 0;
}

.google-auth-button {
  width: 100%;
  background: white;
  color: var(--ink);
  border: 2px solid var(--ink);
}

.google-auth-button:hover {
  background: var(--paper);
  color: var(--ink);
}

.google-auth-mark {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--signal);
  font-family: var(--display);
  font-weight: 900;
}

.auth-divider {
  max-width: 440px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 -6px;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 800;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--bone);
}

.auth-explainer {
  display: grid;
  gap: 10px;
}

.auth-trust-list {
  margin: 0;
  padding-left: 20px;
  line-height: 1.7;
}

.auth-support {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.auth-support .fineprint {
  margin: 0;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(23, 17, 14, 0.42);
  backdrop-filter: blur(4px);
}

.rating-modal {
  width: min(100%, 680px);
  display: grid;
  gap: 14px;
  padding: clamp(18px, 4vw, 26px);
  background: white;
  border: 1px solid #e8d9cd;
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(23, 17, 14, 0.24);
}

.rating-modal h2 {
  margin: 0;
}

.rating-modal label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.rating-modal input,
.rating-modal select,
.rating-modal textarea {
  min-height: 50px;
  width: 100%;
  border: 2px solid var(--bone);
  border-radius: 10px;
  padding: 12px;
  background: white;
  color: var(--ink);
}

.rating-modal textarea {
  min-height: 132px;
  resize: vertical;
}

.rating-modal input:focus,
.rating-modal select:focus,
.rating-modal textarea:focus {
  outline: 3px solid var(--signal-lt);
  border-color: var(--signal);
}

.modal-note {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.65;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.report-modal {
  width: min(100%, 760px);
}

.manage-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.reply {
  border-top: 1px solid var(--bone);
  padding-top: 14px;
  margin-top: 14px;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px clamp(16px, 4vw, 56px) 24px;
  background: var(--ink);
  color: var(--paper);
}

.site-footer span {
  color: var(--bone);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 150px;
}

.footer-brand strong {
  font-size: 18px;
  font-family: var(--display);
  color: var(--paper);
}

.footer-brand span {
  font-size: 13px;
  color: var(--bone);
  line-height: 1.5;
}

.footer-cols {
  display: flex;
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 110px;
}

.footer-col-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0 0 2px;
}

.footer-col a {
  color: var(--paper);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.15s;
}

.footer-col a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-legal a {
  color: var(--bone);
  text-decoration: none;
  font-size: 12px;
  opacity: 0.65;
}

.footer-legal a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ─── About dropdown ─────────────────────────────────────────────────────── */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  color: var(--ink-2);
  border-radius: 6px;
  min-height: 42px;
  line-height: 1;
  transition: background 0.15s;
}

.nav-dropdown-btn:hover {
  background: var(--bone);
}

.nav-dropdown-arrow {
  font-size: 10px;
  display: inline-block;
  transition: transform 0.2s;
}

.nav-dropdown.is-open .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 176px;
  background: var(--paper);
  border: 1px solid var(--bone);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.15s, transform 0.15s;
  z-index: 100;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.12s;
}

.nav-dropdown-menu a:hover {
  background: var(--cream);
  color: var(--ink);
}

@media (max-width: 880px) {
  body {
    font-size: 17px;
  }

  .site-header {
    align-items: center;
    flex-direction: row;
  }

  .hero,
  .home-hero,
  .browse-layout,
  .detail-layout,
  .grid.two,
  .grid.three,
  .home-grid--two,
  .home-grid--three {
    grid-template-columns: 1fr;
  }

  .home-hero-grid,
  .home-map-feature,
  .home-proof-row,
  .home-money-compare,
  .home-standard-grid,
  .home-compare-band,
  .home-founder-proof,
  .home-receipt-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .home-hero {
    min-height: auto;
  }

  .hero-visual,
  .home-hero-media {
    min-height: 460px;
  }

  .home-hero-media--simple {
    min-height: 0;
    max-height: none;
    grid-template-rows: minmax(220px, 300px) auto;
  }

  .deal-slider-stage {
    min-height: 174px;
  }

  .deal-lane {
    inset: 46px 24px 14px;
  }

  .deal-token {
    min-width: 104px;
    min-height: 44px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .deal-token-mark {
    width: 28px;
    height: 15px;
  }

  .home-utility-points {
    justify-content: flex-start;
  }

  .filter-panel {
    position: static;
  }

  .field-row,
  .choice-grid,
  .manage-actions {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer-cols {
    flex-wrap: wrap;
    gap: 24px;
  }

  .nav-dropdown-menu {
    right: auto;
    left: 0;
  }

  .listing-card {
    grid-template-columns: 1fr;
  }

  .listing-card-side {
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: start;
  }

  .listing-card-map-wrap {
    min-width: 0;
  }

  .listing-mini-map {
    min-height: 132px;
  }

  .price {
    width: fit-content;
  }
}

@media (max-width: 520px) {
  .page {
    width: min(100% - 22px, 1180px);
    padding-top: 24px;
  }

  .home-page {
    gap: 20px;
  }

  .hero-visual,
  .home-hero-media {
    min-height: 520px;
  }

  .home-hero-media--simple {
    min-height: 0;
    max-height: none;
    grid-template-rows: 260px auto;
  }

  .deal-slider {
    padding: 10px;
  }

  .deal-slider-stage {
    min-height: 188px;
  }

  .deal-person {
    top: 10px;
    min-height: 28px;
    padding: 5px 9px;
    font-size: 13px;
  }

  .deal-person--doozer {
    left: 10px;
  }

  .deal-person--seeker {
    right: 10px;
  }

  .deal-lane {
    inset: 48px 18px 16px;
  }

  .deal-center-mark {
    width: 48px;
    height: 70px;
  }

  .deal-token {
    min-width: 86px;
    min-height: 40px;
    gap: 4px;
    padding: 6px 8px;
    font-size: 11px;
  }

  .deal-token--service::after {
    right: -16px;
    border-top-width: 20px;
    border-bottom-width: 20px;
    border-left-width: 16px;
  }

  .deal-token--money::after {
    left: -16px;
    border-top-width: 20px;
    border-bottom-width: 20px;
    border-right-width: 16px;
  }

  .deal-token-mark {
    width: 22px;
    height: 12px;
  }

  .deal-slider-control {
    padding: 9px 10px 11px;
  }

  .deal-slider-status {
    font-size: 13px;
  }

  .home-hero-card {
    padding: 20px;
    border-radius: 22px;
  }

  .home-brand-name {
    font-size: 42px;
  }

  .hero-pin {
    width: 160px;
  }

  .hero-pin.two {
    top: 205px;
    right: 12px;
  }

  .route-total {
    left: 16px;
    right: 16px;
    width: auto;
  }

  .home-media-badge {
    max-width: 210px;
    padding: 12px 14px;
  }

  .home-launch-strip {
    padding: 24px;
  }

  .install-toast {
    left: 14px;
    right: 14px;
    bottom: max(14px, calc(14px + var(--safe-bottom)));
    width: auto;
  }

  .install-coach-card {
    grid-template-columns: 1fr;
  }

  .listing-card-side {
    grid-template-columns: 1fr;
  }
}

@media print {
  .site-header,
  .site-footer,
  .top-nav,
  .actions,
  button {
    display: none !important;
  }

  body {
    background: white;
    color: black;
    font-size: 14px;
  }

  .page {
    width: 100%;
    padding: 0;
  }

  .card,
  .panel,
  .listing-card {
    border: 1px solid #999;
    box-shadow: none;
  }
}

/* ── Account / dashboard ──────────────────────────────────────────────────── */

.page--narrow {
  max-width: 580px;
}

.account-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.account-header h1 {
  margin-bottom: 4px;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--bone);
  color: var(--graphite);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-family: var(--ui);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s, color 0.15s;
}

.btn-ghost:hover {
  border-color: var(--graphite);
  color: var(--ink);
}

.btn-sm {
  background: var(--paper);
  border: 1px solid var(--bone);
  color: var(--ink-2);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 13px;
  font-family: var(--ui);
  cursor: pointer;
  transition: background 0.15s;
}

.btn-sm:hover {
  background: var(--bone);
}

.btn-sm.danger,
.btn-ghost.danger,
.button.danger {
  border-color: #d98b7e;
  color: #9f2f1f;
}

.btn-sm.danger:hover,
.btn-ghost.danger:hover,
.button.danger:hover {
  background: #fde8e2;
}

.reputation-strip {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 20px;
  padding: 14px;
  border: 1px solid var(--bone);
  border-radius: 8px;
  background: var(--paper);
  color: var(--graphite);
  font-size: 14px;
}

.reputation-strip--compact {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin: 12px 0 0;
  padding: 10px 12px;
}

.reputation-strip a {
  color: var(--ink);
  font-weight: 800;
}

.reputation-label {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--signal);
}

.account-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  border-bottom: 2px solid var(--bone);
  margin-bottom: 16px;
}

.trust-lane-panel {
  margin-top: 18px;
}

.trust-lane-grid {
  margin-top: 16px;
}

.trust-request-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}

.trust-request-list li {
  border: 1px solid var(--bone);
  border-radius: 10px;
  background: white;
  padding: 10px 12px;
}

.trust-request-list li strong,
.trust-request-list li span {
  display: block;
}

.trust-request-list li span {
  color: var(--signal);
  font-size: 13px;
  font-weight: 800;
  margin-top: 2px;
}

.trust-request-list li p {
  margin: 8px 0 0;
  color: var(--graphite);
  font-size: 14px;
}

.tab {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  padding: 8px 16px;
  min-width: 0;
  font-family: var(--ui);
  font-size: 15px;
  font-weight: 500;
  color: var(--graphite);
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}

.tab--active,
.tab:hover {
  color: var(--signal);
  border-bottom-color: var(--signal);
}

.tab-panel {
  min-height: 120px;
}

.saved-doozes-panel {
  display: grid;
  gap: 18px;
}

.saved-doozes-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.saved-doozes-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(96px, 1fr));
  gap: 10px;
}

.saved-doozes-stat {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid var(--bone);
  border-radius: 14px;
  background: white;
}

.saved-doozes-stat strong {
  font-size: 24px;
  line-height: 1;
}

.saved-doozes-stat span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--graphite);
}

.saved-alerts-panel {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.saved-alerts-head,
.saved-alerts-columns,
.saved-alerts-push,
.saved-alert-form__grid {
  display: grid;
  gap: 16px;
}

.saved-alerts-head,
.saved-alerts-push {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.saved-alerts-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(96px, 1fr));
  gap: 10px;
}

.saved-alerts-push__actions,
.saved-alert-form__actions,
.saved-alert-card__actions,
.saved-alert-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.saved-alert-form__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.saved-alert-form label,
.saved-alert-checkbox {
  display: grid;
  gap: 6px;
  font-weight: 700;
  color: var(--graphite);
}

.saved-alert-form input,
.saved-alert-form select {
  width: 100%;
}

.saved-alert-checkbox {
  grid-auto-flow: column;
  justify-content: start;
  align-items: center;
  font-weight: 600;
}

.saved-alerts-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.saved-alerts-list,
.saved-matches-list {
  display: grid;
  gap: 12px;
}

.saved-alert-card,
.saved-match-card {
  border: 1px solid var(--bone);
  border-radius: 16px;
  background: white;
  padding: 16px;
  display: grid;
  gap: 12px;
}

.saved-alert-card__head,
.saved-match-card {
  align-items: start;
}

.saved-alert-card__head,
.saved-match-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.saved-alert-card__head p,
.saved-match-card p {
  margin: 6px 0 0;
  color: var(--graphite);
}

.loading-row {
  padding: 24px 0;
  color: var(--graphite);
  font-size: 15px;
}

.dooze-row,
.reply-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bone);
  flex-wrap: wrap;
}

.dooze-row:last-child,
.reply-row:last-child {
  border-bottom: none;
}

.dooze-row__main,
.reply-row__main {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
  min-width: 0;
}

.dooze-row__title,
.reply-row__title {
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
}

.dooze-row__title:hover,
.reply-row__title:hover {
  color: var(--signal);
  text-decoration: underline;
}

.dooze-row__actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.reply-row__note {
  width: 100%;
  font-size: 14px;
  color: var(--graphite);
  margin: 4px 0 0;
}

/* Status pill colors */
.status-posted    { background: var(--moss-lt);    color: var(--moss); }
.status-replied   { background: #d6eaf8;           color: #1a5276; }
.status-approved  { background: #d5f5e3;           color: #1e8449; }
.status-details_shared { background: #d5f5e3;      color: #1e8449; }
.status-paused    { background: #fef9e7;           color: #b7950b; }
.status-closed    { background: var(--bone);       color: var(--graphite); }
.status-draft     { background: var(--bone);       color: var(--graphite); }
.status-payment_pending { background: #fdebd0;     color: #a04000; }
.status-prohibited_review { background: #fadbd8;   color: #922b21; }
.status-pending   { background: #fef9e7;           color: #b7950b; }
.status-rejected  { background: var(--bone);       color: var(--graphite); }

.reply-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--signal);
}

/* ── #why / #how / #faq / #press pages ───────────────────────────────────── */

.why-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--bone);
  margin: 40px 0 32px;
}

.why-section {
  margin-bottom: 32px;
}

.why-section h2 {
  font-size: 20px;
  margin-bottom: 8px;
}

.trust-grid .panel,
.company-roadmap .panel {
  height: 100%;
}

.trust-grid .eyebrow,
.company-roadmap .eyebrow {
  margin-bottom: 8px;
}

.how-steps {
  padding-left: 20px;
  margin: 12px 0 0;
}

.how-steps li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.vocab-list {
  margin: 0;
  padding: 0;
}

.vocab-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--bone);
}

.vocab-item:last-child {
  border-bottom: none;
}

.vocab-item dt {
  font-weight: 700;
  color: var(--ink);
  padding-top: 1px;
}

.vocab-item dd {
  margin: 0;
  color: var(--graphite);
  font-size: 15px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--bone);
}

.faq-item:first-child {
  border-top: 1px solid var(--bone);
}

.faq-q {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--ink);
}

.faq-a {
  margin: 0;
  color: var(--graphite);
  font-size: 15px;
  line-height: 1.55;
}

.press-quote {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  border-left: 3px solid var(--signal);
  margin: 8px 0 12px;
  padding: 4px 0 4px 16px;
  font-style: italic;
}

@media (max-width: 600px) {
  .vocab-item {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .vocab-item dd {
    padding-left: 8px;
  }
}

/* ─── Dooze Map ─────────────────────────────────────────────────────────────── */

.map-page .section-head {
  margin-bottom: 16px;
}

.map-rule {
  border-left: 3px solid var(--signal);
}

.dooze-map-container {
  width: 100%;
  height: 480px;
  border-radius: 10px;
  border: 1px solid var(--bone);
  overflow: hidden;
  background: var(--cream);
}

@media (max-width: 700px) {
  .dooze-map-container {
    height: 320px;
  }
}

.map-privacy-note {
  font-size: 13px;
  color: var(--graphite);
  margin: 10px 0 24px;
  line-height: 1.5;
}

.map-fallback {
  background: var(--cream);
  border: 1px solid var(--bone);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 16px;
  color: var(--graphite);
  font-size: 14px;
}

.map-status-msg {
  text-align: center;
  color: var(--graphite);
  font-size: 14px;
  padding: 12px 0;
}

.map-status-error {
  color: var(--rose);
}

.map-section-heading {
  font-size: 18px;
  margin: 24px 0 12px;
  color: var(--ink-2);
}

.map-unmapped-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.map-unmapped-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 14px;
  background: var(--paper);
  border: 1px solid var(--bone);
  border-radius: 7px;
  font-size: 14px;
}

.map-planner {
  margin-bottom: 20px;
}

.map-planner-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) minmax(160px, 0.8fr) minmax(220px, 1.2fr) auto;
  gap: 14px;
  align-items: end;
}

.map-planner-field {
  display: grid;
  gap: 8px;
}

.map-planner-field span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--graphite);
}

.map-planner-field input,
.map-planner-field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--bone);
  border-radius: 10px;
  background: #fff;
  padding: 0 14px;
  font: inherit;
  color: var(--ink);
}

.map-planner-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

.map-save-search-result {
  margin-top: 10px;
}

.map-summary {
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--graphite);
}

.map-summary-strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

.map-summary-sub {
  display: block;
  margin-top: 4px;
  color: var(--graphite);
  line-height: 1.45;
}

.map-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
}

.map-result-card {
  display: grid;
  gap: 10px;
}

.map-result-card h2 {
  margin: 0;
  font-size: clamp(22px, 4vw, 28px);
}

.map-result-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.map-result-distance {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--signal);
  white-space: nowrap;
}

.map-result-area {
  margin: 0;
  color: var(--ink-2);
  font-weight: 700;
}

.map-empty-state {
  padding: 18px 20px;
  border: 1px dashed var(--bone);
  border-radius: 10px;
  background: var(--paper);
  color: var(--graphite);
  font-size: 14px;
}

.map-unmapped-item a {
  color: var(--sky);
  text-decoration: none;
  font-weight: 500;
}

.map-unmapped-item a:hover {
  text-decoration: underline;
}

/* Leaflet popup overrides */
.map-popup {
  font-family: var(--ui);
  font-size: 13px;
  line-height: 1.5;
  min-width: 180px;
}

.map-popup-title {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 4px;
}

.map-popup-title:hover {
  color: var(--signal);
}

.map-popup-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 6px;
}

.map-popup-meta span {
  background: var(--cream);
  border: 1px solid var(--bone);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 11px;
  color: var(--graphite);
}

.map-popup-badge {
  background: var(--moss-lt) !important;
  border-color: var(--moss) !important;
  color: var(--moss) !important;
}

.map-popup-preview {
  background: #ffe8df !important;
  border-color: #ffb190 !important;
  color: #b73d0a !important;
}

.map-popup-amount {
  margin: 0 0 6px;
  font-size: 13px;
  color: var(--ink-2);
}

.map-popup-cta {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--signal);
  text-decoration: none;
  margin-bottom: 6px;
}

.map-popup-cta:hover {
  text-decoration: underline;
}

.map-popup-privacy {
  font-size: 11px;
  color: var(--graphite);
  margin: 0;
  font-style: italic;
}

.sample-preview-callout {
  margin-top: 16px;
  border-color: #ffb190;
  background: #fff3ed;
}

.sample-preview-panel {
  margin-top: 30px;
}

.profile-editor {
  display: grid;
  gap: 18px;
}

.profile-editor__header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.profile-completion {
  min-width: 180px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--paper);
  border: 1px solid var(--bone);
  display: grid;
  gap: 4px;
}

.profile-completion strong {
  font-size: 24px;
  line-height: 1;
  color: var(--ink);
}

.profile-completion span {
  font-size: 13px;
  color: var(--graphite);
  line-height: 1.45;
}

.profile-editor__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.profile-editor__footnote {
  border-top: 1px solid var(--bone);
  padding-top: 16px;
  color: var(--graphite);
  font-size: 14px;
  line-height: 1.6;
}

.profile-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(260px, 1fr);
  gap: 18px;
  align-items: start;
}

.profile-facts {
  display: grid;
  gap: 12px;
}

.profile-fact {
  background: var(--paper);
  border: 1px solid var(--bone);
  border-radius: 10px;
  padding: 14px 16px;
  display: grid;
  gap: 4px;
}

.profile-fact span {
  font-size: 12px;
  color: var(--graphite);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.profile-fact strong {
  font-size: 16px;
  color: var(--ink);
}

.profile-disclosure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.profile-disclosure-card {
  background: var(--paper);
  border: 1px solid var(--bone);
  border-radius: 10px;
  padding: 16px;
}

.profile-disclosure-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.profile-disclosure-card p {
  margin: 0;
  color: var(--graphite);
  line-height: 1.6;
}

.profile-disclosure-card a {
  color: var(--signal);
  word-break: break-word;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.profile-stat {
  background: var(--paper);
  border: 1px solid var(--bone);
  border-radius: 10px;
  padding: 16px;
  display: grid;
  gap: 6px;
}

.profile-stat span,
.profile-stat small {
  color: var(--graphite);
}

.profile-stat strong {
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
}

.profile-mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bone);
}

.profile-mini-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.rating-note {
  padding: 14px 0;
  border-bottom: 1px solid var(--bone);
}

.rating-note:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.rating-note strong {
  display: block;
  margin-bottom: 4px;
}

.rating-note small {
  color: var(--graphite);
}

.rating-note p {
  margin: 10px 0 8px;
}

@media (max-width: 700px) {
  .account-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    border-bottom: none;
  }

  .tab {
    margin-bottom: 0;
    padding: 12px 14px;
    border: 1px solid var(--bone);
    border-radius: 12px;
    text-align: center;
    background: white;
  }

  .tab--active,
  .tab:hover {
    border-color: var(--signal);
    background: color-mix(in srgb, var(--signal-lt) 28%, white);
  }

  .profile-editor__header,
  .profile-summary-grid,
  .saved-doozes-head,
  .saved-alerts-head,
  .saved-alerts-push,
  .saved-alerts-columns {
    grid-template-columns: 1fr;
  }

  .saved-alerts-summary,
  .saved-alert-form__grid {
    grid-template-columns: 1fr;
  }

  .profile-editor__actions .button {
    width: 100%;
    justify-content: center;
  }

  .map-planner-grid {
    grid-template-columns: 1fr;
  }

  .map-planner-actions {
    width: 100%;
  }

  .map-planner-actions .button {
    width: 100%;
  }

  .saved-doozes-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-result-head {
    flex-direction: column;
    align-items: flex-start;
  }
}



/* build: 1779498926 */

/* ─── Hamburger + mobile nav (clean rewrite) ────────────────────────────── */

/* Hamburger: available on desktop and mobile */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 2px solid var(--ink-2);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  z-index: 300;
  position: relative;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile full-screen menu: always in DOM, toggled via is-open */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(21, 17, 13, 0.2);
  backdrop-filter: blur(2px);
  z-index: 180;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.mobile-menu-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: calc(76px + var(--safe-top));
  right: max(20px, calc(20px + var(--safe-right)));
  bottom: 20px;
  width: min(420px, calc(100vw - 40px));
  background: var(--paper);
  z-index: 200;
  padding: 24px max(24px, calc(24px + var(--safe-right))) calc(32px + var(--safe-bottom)) max(24px, calc(24px + var(--safe-left)));
  overflow-y: auto;
  border: 1px solid rgba(21, 17, 13, 0.1);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(21, 17, 13, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-link {
  display: block;
  padding: 18px 0;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--bone);
}
.mobile-menu-group {
  border-bottom: 1px solid var(--bone);
}
.mobile-menu-group-toggle {
  width: 100%;
  background: none;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}
.mobile-menu-group-icon {
  font-size: 18px;
  color: var(--ink-2);
  transition: transform 0.18s ease;
}
.mobile-menu-group-toggle.is-open .mobile-menu-group-icon {
  transform: rotate(180deg);
}
.mobile-menu-submenu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 0 18px 18px;
}
.mobile-menu-sublink {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}
.mobile-menu-sublink:active,
.mobile-menu-sublink:hover {
  color: var(--signal);
}
.mobile-menu-install {
  width: 100%;
  background: none;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}
.mobile-menu-install[hidden] {
  display: none;
}
.mobile-menu-link:active { color: var(--signal); }
.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}
.mobile-menu-signin {
  display: block;
  text-align: center;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
}
.mobile-menu-cta {
  display: block;
  text-align: center;
  padding: 16px;
  background: var(--signal);
  border-radius: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
}

.mobile-menu-cta-secondary {
  background: transparent;
  color: var(--signal);
  border: 2px solid var(--signal);
}

/* Sign in button on desktop nav */
.top-nav .nav-signin {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 2px solid var(--ink-2);
  border-radius: 8px;
  color: var(--ink-2);
  font-weight: 800;
  text-decoration: none;
}
.top-nav .nav-signin:hover { background: var(--bone); }

/* At 880px and below: hide desktop nav, keep hamburger */
@media (max-width: 880px) {
  .mobile-menu-backdrop {
    display: none;
  }

  .site-header {
    gap: 12px;
    padding: calc(12px + var(--safe-top)) max(14px, calc(14px + var(--safe-right))) 12px max(14px, calc(14px + var(--safe-left)));
    width: 100%;
  }

  .brand {
    min-width: 0;
    gap: 10px;
    flex: 1 1 auto;
  }

  .brand-word {
    font-size: 26px;
  }

  .top-nav {
    display: none;
  }

  .nav-user-chip {
    display: none;
  }

  .mobile-menu {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    padding: calc(80px + var(--safe-top)) max(28px, calc(28px + var(--safe-right))) calc(40px + var(--safe-bottom)) max(28px, calc(28px + var(--safe-left)));
    transform: translateY(-8px);
  }

  .mobile-menu.is-open {
    transform: translateY(0);
  }
}

/* ─── Section page feel ──────────────────────────────────────────────────── */
.view-section {
  min-height: calc(100dvh - 64px);
  scroll-margin-top: 64px;
  padding-top: 8px;
  padding-bottom: calc(48px + var(--safe-bottom));
  animation: pageIn 0.18s ease;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Sign Up button (desktop nav) ──────────────────────────────────────── */
.top-nav .nav-signup {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 2px solid var(--signal);
  border-radius: 8px;
  color: var(--signal);
  font-weight: 800;
  text-decoration: none;
  background: transparent;
}
.top-nav .nav-signup:hover { background: var(--signal); color: #fff; }

/* ─── Mobile menu header (X + home) ─────────────────────────────────────── */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--bone);
}
.mobile-menu-home {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink-2);
  text-decoration: none;
}
.mobile-menu-close {
  width: 44px;
  height: 44px;
  background: none;
  border: 2px solid var(--ink-2);
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

/* ─── Mobile Sign Up button ──────────────────────────────────────────────── */
.mobile-menu-signup {
  display: block;
  text-align: center;
  padding: 16px;
  background: var(--signal);
  border-radius: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
}
.mobile-menu-signin {
  border: 2px solid var(--ink);
}

/* ─── Page header (replaces nav on sub-pages) ───────────────────────────── */
.page-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(16px, 4vw, 56px);
  background: rgba(245, 239, 230, 0.96);
  border-bottom: 1px solid var(--bone);
  backdrop-filter: blur(6px);
  margin: 0 calc(-1 * clamp(16px, 4vw, 56px));
  margin-bottom: 24px;
}
.page-header-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.page-header-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink-2);
  border-radius: 8px;
  font-size: 20px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
  transition: background 0.15s;
  background: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  pointer-events: auto;
}
.page-header-close:hover,
.page-header-close:active {
  background: var(--bone);
}

/* ─── Subpage mode: hide main header/banner, show page-header only ───────── */
body.is-subpage #siteHeader,
body.is-subpage .beta-banner {
  display: none !important;
}
body:not(.is-subpage) .page-header {
  display: none !important;
}
body.menu-open {
  overflow: hidden;
}

/* Payment methods row */
.payment-methods {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.pm-label {
  font-size: 12px;
  color: var(--ink-2);
  margin-right: 2px;
  white-space: nowrap;
}
.pm-logo {
  height: 26px;
  width: auto;
  border-radius: 4px;
  flex-shrink: 0;
}

/* -- Auth / install reliability (pwa-95) ----------------------------------- */
.nav-signout,
.mobile-menu-signout {
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}
.nav-signout {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 2px solid var(--ink-2);
  border-radius: 8px;
  background: transparent;
  color: var(--ink-2);
}
.nav-signout[hidden],
.mobile-menu-signout[hidden],
.mobile-menu-account[hidden] {
  display: none !important;
}
.mobile-menu-account {
  display: block;
  text-align: center;
  padding: 16px;
  border: 2px solid var(--moss);
  border-radius: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--moss);
  text-decoration: none;
  background: color-mix(in srgb, var(--moss) 10%, transparent);
}
.mobile-menu-signout {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  font-size: 18px;
  background: transparent;
  color: var(--ink);
}
.install-legal-check {
  line-height: 1.45;
}
.install-ios-steps {
  margin: 12px 0 0;
  padding-left: 1.2rem;
  line-height: 1.5;
}
.pwa-update-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 9999;
}
.pwa-update-banner[hidden] { display: none !important; }
.pwa-update-banner__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 14px;
  border: 2px solid var(--ink);
  background: var(--paper, #fffaf5);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.pwa-update-banner__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.google-auth-button {
  justify-content: center;
}

/* Install notes (pwa-99) */
.install-notes-list {
  margin: 12px 0 16px 1.2rem;
  padding: 0;
  line-height: 1.55;
}
.install-notes-list li { margin-bottom: 10px; }
.install-coach-card--primary {
  margin: 20px 0 24px;
  border: 2px solid var(--moss, #2F8A57);
}
.page--install .install-why h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.install-coach-card--focus { box-shadow: 0 0 0 3px color-mix(in srgb, var(--moss, #2F8A57) 55%, transparent); transition: box-shadow 0.2s ease; }

/* iOS install sheet pwa-104 — points at Safari Share (industry pattern) */
body.ios-install-open {
  overflow: hidden;
}
.ios-install-overlay {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
  background: rgba(18, 56, 90, 0.28);
  pointer-events: auto;
}
.ios-install-overlay--hidden {
  display: none !important;
}
.ios-install-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 18px 18px 14px;
  border-radius: 18px;
  background: rgba(255, 250, 245, 0.97);
  border: 2px solid var(--ink, #12385A);
  box-shadow: 0 16px 48px rgba(18, 56, 90, 0.22);
  animation: iosInstallIn 0.4s ease-out;
  font-family: inherit;
}
.ios-install-card__header {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.ios-install-card__logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
  object-fit: cover;
  border: 1px solid var(--bone, #e4d7cb);
}
.ios-install-card__title {
  margin: 0 0 4px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink, #12385A);
}
.ios-install-card__sub {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--ink-2, #3a4a5c);
}
.ios-install-card__steps {
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ios-install-card__steps li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--ink, #12385A);
}
.ios-install-card__num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--moss, #2F8A57);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.ios-install-share-icon {
  display: inline-block;
  vertical-align: -3px;
  margin: 0 2px;
  color: var(--moss, #2F8A57);
}
.ios-install-card__dismiss {
  width: 100%;
  min-height: 44px;
  margin-top: 4px;
  padding: 10px;
  border: none;
  border-top: 1px solid var(--bone, #e4d7cb);
  background: transparent;
  color: var(--moss, #2F8A57);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.ios-install-card__arrow {
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 11px solid rgba(255, 250, 245, 0.97);
  filter: drop-shadow(0 2px 0 var(--ink, #12385A));
}
@keyframes iosInstallIn {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}