@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --ink: #17342e;
  --ink-2: #244940;
  --ink-3: #597069;
  --paper: #f5f3ed;
  --white: #fffefa;
  --line: #deddd5;
  --line-dark: rgba(23, 52, 46, 0.14);
  --sage: #9eb3a4;
  --sage-light: #e9eee8;
  --sand: #d9b777;
  --sand-light: #f4ead8;
  --blue: #9fb8be;
  --terracotta: #bf7456;
  --shadow: 0 24px 70px rgba(32, 47, 42, 0.14);
  --sidebar: 244px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

button,
label {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(191, 116, 86, 0.3);
  outline-offset: 2px;
}

.app-shell {
  min-height: 100vh;
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 30;
  width: var(--sidebar);
  padding: 28px 20px 18px;
  display: flex;
  flex-direction: column;
  background: #14352e;
  color: rgba(255, 255, 255, 0.72);
}

.brand,
.mobile-brand,
.modal-brand {
  border: 0;
  background: none;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 0;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.6px;
}

.brand {
  margin: 0 10px 47px;
  color: white;
}

.brand em {
  color: #d6b775;
  font-style: normal;
}

.brand-mark {
  position: relative;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  display: inline-block;
}

.brand-mark i {
  position: absolute;
  display: block;
  background: currentColor;
}

.brand-mark i:first-child {
  left: 4px;
  bottom: 3px;
  width: 9px;
  height: 16px;
  transform: skewY(-27deg);
}

.brand-mark i:nth-child(2) {
  right: 4px;
  bottom: 3px;
  width: 9px;
  height: 22px;
  transform: skewY(27deg);
}

.brand-mark i:nth-child(3) {
  left: 11px;
  bottom: 3px;
  width: 7px;
  height: 9px;
  background: #d6b775;
}

.side-nav p {
  margin: 0 12px 10px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.side-nav {
  display: grid;
  gap: 4px;
}

.side-nav button {
  position: relative;
  height: 46px;
  padding: 0 13px;
  border: 0;
  border-radius: 9px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  text-align: left;
  transition: 160ms ease;
}

.side-nav button:hover {
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.side-nav button.active {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  box-shadow: inset 3px 0 #d6b775;
}

.side-nav button > span {
  width: 21px;
  color: #b7c8bc;
  font-size: 18px;
  text-align: center;
}

.side-nav button b {
  margin-left: auto;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  background: #d6b775;
  color: var(--ink);
  font-size: 10px;
}

.sidebar-project {
  margin-top: 34px;
  padding: 16px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 11px;
}

.project-mini-icon {
  width: 39px;
  height: 39px;
  border-radius: 9px;
  position: relative;
  overflow: hidden;
  background: #31564a;
  flex: 0 0 auto;
}

.project-mini-icon::before,
.project-mini-icon::after,
.project-mini-icon span {
  content: "";
  position: absolute;
  bottom: 8px;
  background: #dfc78e;
}

.project-mini-icon::before {
  left: 7px;
  width: 13px;
  height: 15px;
  transform: skewY(-24deg);
}

.project-mini-icon::after {
  right: 6px;
  width: 14px;
  height: 22px;
  transform: skewY(24deg);
}

.project-mini-icon span {
  z-index: 2;
  left: 17px;
  width: 6px;
  height: 9px;
  background: #31564a;
}

.sidebar-project div:last-child {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.sidebar-project small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sidebar-project strong {
  color: white;
  font-size: 12px;
}

.sidebar-project div > span {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar-project i {
  font-style: normal;
}

.sidebar-help {
  margin-top: auto;
  padding: 13px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.sidebar-help > span {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #d6b775;
  font-weight: 700;
}

.sidebar-help div {
  display: grid;
  gap: 2px;
}

.sidebar-help strong {
  color: white;
  font-size: 10px;
}

.sidebar-help p {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
}

.user-card {
  margin-top: 12px;
  padding: 12px 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 9px;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #d6b775;
  color: #17342e;
  font-size: 11px;
  font-weight: 700;
}

.user-card div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.user-card strong {
  color: white;
  font-size: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-card small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
}

.user-card button {
  margin-left: auto;
  padding: 4px 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  font-size: 7px;
  white-space: nowrap;
}

.main {
  min-height: 100vh;
  margin-left: var(--sidebar);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 72px;
  padding: 0 34px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245, 243, 237, 0.92);
  backdrop-filter: blur(15px);
}

.crumb {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #8a9690;
  font-size: 11px;
}

.crumb b {
  color: #bdc2bd;
  font-weight: 400;
}

.crumb strong {
  color: var(--ink);
  font-weight: 600;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.new-project {
  height: 37px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.icon-button {
  position: relative;
  width: 37px;
  color: #6f7d77;
}

.icon-button > span {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terracotta);
}

.new-project {
  padding: 0 15px;
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  font-size: 11px;
  font-weight: 600;
}

.new-project i {
  margin-right: 6px;
  color: #e2c98d;
  font-style: normal;
}

.mobile-brand,
.mobile-nav {
  display: none;
}

.app-view {
  display: none;
}

.app-view.active {
  display: block;
  animation: fade-view 260ms ease both;
}

@keyframes fade-view {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: none; }
}

.view {
  width: min(1260px, 100%);
  margin: 0 auto;
  padding: 34px 34px 58px;
}

.eyebrow {
  margin: 0 0 8px;
  color: #84918c;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.welcome-row {
  margin-bottom: 25px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.welcome-row h1,
.page-intro h1,
.bathroom-title-row h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(27px, 3vw, 38px);
  letter-spacing: -1.5px;
  line-height: 1.12;
}

.welcome-row > div:first-child > p:last-child,
.page-intro > div:first-child > p:last-child,
.bathroom-title-row > div:first-child > p:last-child {
  margin: 7px 0 0;
  color: #6e7e78;
  font-size: 12px;
}

.plan-health {
  min-width: 122px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.52);
}

.plan-health > span {
  width: 8px;
  height: 8px;
  border: 2px solid #9eb3a4;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(158, 179, 164, 0.18);
}

.plan-health div {
  display: grid;
  gap: 2px;
}

.plan-health small {
  color: #98a29d;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1px;
}

.plan-health strong {
  font-size: 11px;
}

.project-hero {
  min-height: 330px;
  border-radius: 13px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 56% 44%;
  background: var(--ink);
  color: white;
  box-shadow: 0 16px 45px rgba(24, 53, 46, 0.12);
}

.hero-copy {
  padding: 32px 36px 27px;
}

.hero-labels {
  display: flex;
  gap: 8px;
}

.hero-labels span {
  height: 23px;
  padding: 0 9px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.status-pill {
  background: #dfe7df;
  color: #31564a;
}

.status-pill i {
  margin-left: 3px;
  font-style: normal;
}

.quality-pill {
  border: 1px solid rgba(255, 255, 255, 0.23);
  color: rgba(255, 255, 255, 0.75);
}

.hero-copy h2 {
  margin: 23px 0 5px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(27px, 3.2vw, 39px);
  letter-spacing: -1.5px;
}

.location-line {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.profile-grid {
  margin-top: 27px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.profile-grid div {
  min-height: 42px;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  align-content: center;
  gap: 5px;
}

.profile-grid div:first-child {
  padding-left: 0;
  border: 0;
}

.profile-grid small,
.hero-budget small,
.intro-budget small,
.bathroom-budget small,
.package-total small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1.1px;
}

.profile-grid strong {
  font-size: 11px;
  font-weight: 600;
}

.hero-progress {
  margin-top: 28px;
}

.hero-progress > div:first-child {
  margin-bottom: 7px;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
}

.hero-progress > div:first-child span,
.hero-progress > small {
  color: rgba(255, 255, 255, 0.42);
}

.hero-progress > div:first-child strong {
  font-size: 9px;
}

.progress-track {
  height: 4px;
  border-radius: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.progress-track i {
  display: block;
  width: 6%;
  height: 100%;
  border-radius: inherit;
  background: #d6b775;
  transition: width 500ms ease;
}

.hero-progress > small {
  margin-top: 6px;
  display: block;
  font-size: 8px;
}

.hero-visual {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: #efe7d8;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.33;
  background-image:
    linear-gradient(rgba(23, 52, 46, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 52, 46, 0.08) 1px, transparent 1px);
  background-size: 25px 25px;
}

.sun-disc {
  position: absolute;
  top: 36px;
  right: 45px;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: #dfc489;
  opacity: 0.62;
}

.house-drawing {
  position: absolute;
  inset: 42px 28px 62px;
}

.house-body,
.house-wing,
.house-roof,
.house-window,
.house-door,
.tree,
.ground-line {
  position: absolute;
  display: block;
}

.house-body {
  right: 30px;
  bottom: 21px;
  width: 205px;
  height: 126px;
  border: 2px solid #325247;
  border-top: 0;
  background: rgba(255, 255, 255, 0.26);
}

.house-roof {
  right: 19px;
  bottom: 147px;
  width: 225px;
  height: 72px;
  border-left: 2px solid #325247;
  border-top: 2px solid #325247;
  transform: skewY(-18deg);
  transform-origin: bottom right;
}

.house-wing {
  left: 6px;
  bottom: 21px;
  width: 122px;
  height: 90px;
  border: 2px solid #325247;
  background: rgba(255, 255, 255, 0.19);
}

.house-window {
  bottom: 65px;
  width: 45px;
  height: 45px;
  border: 2px solid #325247;
  background:
    linear-gradient(90deg, transparent 48%, #325247 48% 52%, transparent 52%),
    linear-gradient(transparent 48%, #325247 48% 52%, transparent 52%);
}

.house-window.one { right: 148px; }
.house-window.two { right: 75px; }

.house-door {
  right: 19px;
  bottom: 21px;
  width: 42px;
  height: 74px;
  border: 2px solid #325247;
}

.tree {
  bottom: 21px;
  width: 2px;
  height: 71px;
  background: #325247;
}

.tree::before,
.tree::after {
  content: "";
  position: absolute;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%);
  background: #a9b7a5;
  opacity: 0.8;
}

.tree::before { top: -22px; width: 34px; height: 48px; }
.tree::after { top: 2px; width: 45px; height: 36px; }
.tree-one { left: 0; }
.tree-two { right: 2px; height: 58px; }

.ground-line {
  right: 0;
  bottom: 20px;
  width: 100%;
  height: 2px;
  background: #325247;
}

.hero-budget {
  position: absolute;
  right: 22px;
  bottom: 20px;
  z-index: 3;
  min-width: 142px;
  padding: 11px 13px;
  border-radius: 8px;
  display: grid;
  gap: 3px;
  background: rgba(255, 254, 250, 0.92);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(23, 52, 46, 0.15);
}

.hero-budget small {
  color: #8b958f;
}

.hero-budget strong {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.hero-budget span {
  color: #8b958f;
  font-size: 8px;
}

.stats-row {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stats-row article {
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  background: rgba(255, 254, 250, 0.75);
}

.stat-icon {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 600;
}

.stat-icon.sand { background: var(--sand-light); color: #9d7641; }
.stat-icon.sage { background: var(--sage-light); color: #45655a; }
.stat-icon.blue { background: #e8eff0; color: #527178; }

.stats-row article div {
  display: grid;
  gap: 3px;
}

.stats-row small {
  color: #89958f;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1px;
}

.stats-row strong {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.stats-row em {
  grid-column: 2;
  margin-top: -11px;
  color: #909b96;
  font-size: 8px;
  font-style: normal;
}

.dashboard-grid {
  margin-top: 29px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 16px;
}

.roadmap-card,
.next-decisions,
.requirements-card,
.saved-products {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 254, 250, 0.75);
}

.roadmap-card,
.next-decisions {
  padding: 23px;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.section-heading h2,
.section-heading h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.6px;
}

.section-heading h2 { font-size: 25px; }
.section-heading h3 { font-size: 17px; }

.section-heading > button {
  border: 0;
  background: none;
  color: #6b7c75;
  cursor: pointer;
  font-size: 9px;
  font-weight: 600;
}

.roadmap-list {
  margin-top: 16px;
}

.roadmap-row {
  width: 100%;
  min-height: 57px;
  padding: 9px 7px;
  border: 0;
  border-top: 1px solid #e8e6df;
  display: grid;
  grid-template-columns: 27px 34px minmax(0, 1fr) auto 18px;
  align-items: center;
  gap: 10px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: 150ms ease;
}

.roadmap-row:hover {
  padding-left: 11px;
  background: rgba(233, 238, 232, 0.5);
}

.roadmap-row:first-child {
  border-top: 0;
}

.stage-number {
  color: #a0aaa5;
  font-size: 9px;
  font-weight: 700;
}

.roadmap-row.current .stage-number,
.roadmap-row.done .stage-number {
  color: #477065;
}

.stage-symbol {
  width: 33px;
  height: 33px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #eceae4;
  color: #5c6f68;
  font-size: 9px;
  font-weight: 700;
}

.roadmap-row.current .stage-symbol {
  background: var(--sand-light);
  color: #9d7641;
}

.stage-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.stage-copy strong {
  font-size: 10px;
}

.stage-copy small {
  overflow: hidden;
  color: #949e99;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stage-budget {
  color: #63726c;
  font-size: 9px;
  font-weight: 600;
}

.stage-arrow {
  color: #a8b0ac;
  font-size: 18px;
}

.decision-count {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sand-light);
  color: #9d7641;
  font-size: 9px;
  font-weight: 700;
}

.decision-feature {
  width: 100%;
  margin-top: 17px;
  padding: 0;
  border: 1px solid #d8d6ce;
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 41% 59%;
  background: #f7f3ea;
  cursor: pointer;
  text-align: left;
  transition: 180ms ease;
}

.decision-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(36, 55, 49, 0.09);
}

.decision-visual {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  background: #d8d6c8;
}

.tile-grid {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image:
    linear-gradient(#6b7d75 1px, transparent 1px),
    linear-gradient(90deg, #6b7d75 1px, transparent 1px);
  background-size: 23px 23px;
}

.mirror-shape {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 48px;
  height: 65px;
  border: 3px solid #6b7d75;
  border-radius: 23px 23px 8px 8px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.25);
}

.sink-shape {
  position: absolute;
  left: 50%;
  bottom: 25px;
  width: 72px;
  height: 44px;
  border: 3px solid #6b7d75;
  border-radius: 4px 4px 35px 35px;
  transform: translateX(-50%);
  background: #ede8dc;
}

.sink-shape::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -30px;
  width: 16px;
  height: 29px;
  background: #6b7d75;
  transform: translateX(-50%);
}

.decision-copy {
  padding: 24px 18px;
}

.decision-copy > span {
  color: #9a7d48;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1px;
}

.decision-copy h4 {
  margin: 8px 0 7px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.decision-copy p {
  margin: 0 0 23px;
  color: #7b8882;
  font-size: 9px;
  line-height: 1.55;
}

.decision-copy strong {
  color: #365f53;
  font-size: 9px;
}

.mini-decisions {
  margin-top: 12px;
  display: grid;
  gap: 7px;
}

.mini-decisions button {
  width: 100%;
  min-height: 55px;
  padding: 9px 10px;
  border: 1px solid #e2e0d9;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 10px;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.mini-decisions button > span {
  width: 31px;
  height: 31px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: #e8eeeb;
  color: #4e6d64;
  font-size: 8px;
  font-weight: 700;
}

.mini-decisions div {
  display: grid;
  gap: 3px;
}

.mini-decisions strong { font-size: 9px; }
.mini-decisions small { color: #97a09c; font-size: 8px; }
.mini-decisions b { color: #a7afab; font-size: 16px; }

.page-intro {
  margin-bottom: 25px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.intro-budget,
.bathroom-budget {
  min-width: 160px;
  padding-left: 20px;
  border-left: 1px solid var(--line);
  display: grid;
  gap: 2px;
}

.intro-budget small,
.bathroom-budget small {
  color: #8f9994;
}

.intro-budget strong,
.bathroom-budget strong {
  font-family: "Manrope", sans-serif;
  font-size: 21px;
}

.intro-budget span,
.bathroom-budget span {
  color: #929c97;
  font-size: 8px;
}

.roadmap-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 328px;
  align-items: start;
  gap: 17px;
}

.full-roadmap {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 254, 250, 0.76);
}

.full-stage {
  width: 100%;
  min-height: 82px;
  padding: 12px 17px;
  border: 0;
  border-top: 1px solid #e6e4dd;
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr) auto 19px;
  align-items: center;
  gap: 14px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: 160ms ease;
}

.full-stage:first-child { border-top: 0; }
.full-stage:hover { background: rgba(233, 238, 232, 0.52); }

.full-stage.selected {
  position: relative;
  background: #f0eee7;
}

.full-stage.selected::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--terracotta);
}

.full-stage-number {
  width: 31px;
  height: 31px;
  border: 1px solid #d4d6d0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #96a09b;
  font-size: 9px;
  font-weight: 700;
}

.full-stage-number.current {
  border-color: #d7b973;
  background: var(--sand-light);
  color: #9d7641;
}

.full-stage-number.done {
  border-color: #9eb3a4;
  background: var(--sage-light);
  color: #45655a;
}

.full-stage-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.full-stage-copy small {
  color: #9aa39f;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.full-stage-copy strong {
  font-size: 11px;
}

.full-stage-copy em {
  overflow: hidden;
  color: #87938e;
  font-size: 8px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.full-stage-budget {
  min-width: 88px;
  display: grid;
  gap: 4px;
  text-align: right;
}

.full-stage-budget small {
  color: #a1aaa6;
  font-size: 7px;
  letter-spacing: 0.7px;
}

.full-stage-budget strong {
  font-size: 10px;
}

.full-stage-arrow {
  color: #a6aeaa;
  font-size: 18px;
}

.stage-detail {
  position: sticky;
  top: 92px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--ink);
  color: white;
  box-shadow: 0 20px 50px rgba(24, 53, 46, 0.15);
}

.detail-top {
  position: relative;
  min-height: 197px;
  padding: 28px 27px;
  overflow: hidden;
  background: #21473d;
}

.detail-top::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -56px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(255, 255, 255, 0.03), 0 0 0 50px rgba(255, 255, 255, 0.02);
}

.detail-symbol {
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: #d6b775;
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
}

.detail-top p {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1px;
}

.detail-top h2 {
  margin: 0 0 7px;
  font-family: "Manrope", sans-serif;
  font-size: 23px;
  letter-spacing: -0.8px;
}

.detail-top > span:last-child {
  position: relative;
  z-index: 2;
  display: block;
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
  line-height: 1.55;
}

.detail-budget,
.detail-list {
  margin: 0 26px;
  padding: 21px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-budget {
  display: grid;
  gap: 4px;
}

.detail-budget small,
.detail-list > small {
  color: rgba(255, 255, 255, 0.37);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1px;
}

.detail-budget strong {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
}

.detail-budget span {
  color: rgba(255, 255, 255, 0.43);
  font-size: 8px;
}

.detail-list p {
  margin: 12px 0 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
}

.detail-list i {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(214, 183, 117, 0.14);
  color: #d6b775;
  font-size: 7px;
  font-style: normal;
}

.detail-vendors {
  margin: 0 26px;
  padding: 19px 0 2px;
}

.detail-vendors > small {
  color: rgba(255, 255, 255, 0.37);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1px;
}

.detail-vendors article {
  min-height: 49px;
  margin-top: 8px;
  padding: 9px 9px 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.detail-vendors article > div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.detail-vendors article strong {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.84);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-vendors article span {
  color: rgba(255, 255, 255, 0.37);
  font-size: 7px;
}

.detail-vendors article button {
  width: 25px;
  height: 25px;
  margin-left: auto;
  border: 1px solid rgba(214, 183, 117, 0.35);
  border-radius: 6px;
  flex: 0 0 auto;
  background: transparent;
  color: #d6b775;
  cursor: pointer;
  font-size: 10px;
}

.detail-vendors article button.saved {
  border-color: #9eb3a4;
  background: rgba(158, 179, 164, 0.16);
  color: #c6d5ca;
}

.primary-button,
.print-button {
  border: 0;
  border-radius: 8px;
  background: #d6b775;
  color: #17342e;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
}

.stage-detail .primary-button {
  width: calc(100% - 52px);
  height: 40px;
  margin: 22px 26px 9px;
}

.stage-detail .primary-button.saved {
  background: #9eb3a4;
}

.text-button {
  width: 100%;
  margin-bottom: 18px;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.47);
  cursor: pointer;
  font-size: 8px;
}

.vendor-location-card {
  min-width: 225px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 9px;
  display: grid;
  gap: 3px;
  background: rgba(255, 254, 250, 0.72);
}

.vendor-location-card small {
  color: #939d98;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.vendor-location-card strong {
  font-size: 11px;
}

.vendor-location-card > span {
  color: #8c9792;
  font-size: 8px;
}

.vendor-toolbar {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 254, 250, 0.72);
}

.vendor-search {
  height: 42px;
  border: 1px solid #d9dcd6;
  border-radius: 8px;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #7d8a84;
}

.vendor-search > span {
  margin-left: 13px;
  font-size: 18px;
}

.vendor-search input {
  width: 100%;
  height: 100%;
  padding: 0 12px 0 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 10px;
}

.vendor-search input::placeholder {
  color: #9da5a1;
}

.vendor-toolbar > button {
  height: 42px;
  padding: 0 15px;
  border: 1px solid #d8dbd5;
  border-radius: 8px;
  background: transparent;
  color: #65766f;
  cursor: pointer;
  font-size: 9px;
  font-weight: 600;
}

.vendor-stage-filter {
  min-height: 57px;
  margin-top: 12px;
  padding: 9px 13px;
  border: 1px solid #cfddd5;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--sage-light);
}

.vendor-stage-filter[hidden] {
  display: none;
}

.vendor-stage-filter > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vendor-stage-filter > div > span {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: #547469;
  color: white;
  font-size: 8px;
  font-weight: 700;
}

.vendor-stage-filter p {
  margin: 0;
  display: grid;
  gap: 2px;
}

.vendor-stage-filter small {
  color: #789087;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.7px;
}

.vendor-stage-filter strong {
  font-size: 10px;
}

.vendor-stage-filter button {
  border: 0;
  background: transparent;
  color: #58746b;
  cursor: pointer;
  font-size: 8px;
  font-weight: 600;
}

.vendor-category-chips {
  margin: 14px 0 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.vendor-category-chips button {
  height: 31px;
  padding: 0 13px;
  border: 1px solid #dadcd6;
  border-radius: 16px;
  background: rgba(255, 254, 250, 0.58);
  color: #75837d;
  cursor: pointer;
  font-size: 8px;
}

.vendor-category-chips button.active {
  border-color: #557b6e;
  background: #557b6e;
  color: white;
  font-weight: 700;
}

.vendor-results-heading,
.saved-vendors-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.vendor-results-heading h2,
.saved-vendors-heading h2 {
  margin: 3px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  letter-spacing: -0.35px;
}

.vendor-results-heading > span,
.saved-vendors-heading > span {
  color: #8c9792;
  font-size: 9px;
}

.vendor-grid {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.vendor-card {
  min-width: 0;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 11px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 254, 250, 0.82);
  transition: 180ms ease;
}

.vendor-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(28, 49, 43, 0.08);
}

.vendor-card-top {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
}

.vendor-avatar {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: #e7ece7;
  color: #527066;
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  font-weight: 700;
}

.vendor-card-top > div {
  min-width: 0;
}

.vendor-card-top small {
  color: #9a7b45;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.7px;
}

.vendor-card-top h3 {
  overflow: hidden;
  margin: 2px 0 3px;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vendor-card-top p {
  margin: 0;
  color: #84918b;
  font-size: 7px;
}

.vendor-save {
  height: 28px;
  padding: 0 8px;
  border: 1px solid #d8dcd6;
  border-radius: 6px;
  background: transparent;
  color: #62776f;
  cursor: pointer;
  font-size: 7px;
  font-weight: 600;
}

.vendor-save.saved {
  border-color: #9eb3a4;
  background: var(--sage-light);
  color: #3f6659;
}

.vendor-description {
  min-height: 38px;
  margin: 14px 0 11px;
  color: #71817a;
  font-size: 8px;
  line-height: 1.55;
}

.vendor-tags,
.vendor-stages {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.vendor-tags span {
  padding: 4px 6px;
  border-radius: 4px;
  background: #f0eee7;
  color: #718079;
  font-size: 6px;
}

.vendor-meta {
  margin: 14px 0 11px;
  padding: 11px 0;
  border-top: 1px solid #e5e3dc;
  border-bottom: 1px solid #e5e3dc;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 12px;
}

.vendor-meta div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.vendor-meta small {
  color: #a0a8a4;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.vendor-meta strong {
  overflow: hidden;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vendor-stages {
  min-height: 18px;
  margin-bottom: 12px;
}

.vendor-stages span {
  color: #76867f;
  font-size: 6px;
}

.vendor-stages span + span::before {
  content: "·";
  margin-right: 5px;
  color: #bac0bd;
}

.vendor-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.vendor-actions a {
  height: 33px;
  border: 1px solid #d8dcd6;
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: #526d64;
  font-size: 7px;
  font-weight: 600;
  text-decoration: none;
}

.vendor-actions a:first-child {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.vendor-empty {
  min-height: 310px;
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.vendor-empty > span {
  font-size: 28px;
}

.vendor-empty h3 {
  margin: 10px 0 3px;
  font-family: "Manrope", sans-serif;
}

.vendor-empty p {
  margin: 0 0 14px;
  color: #83908a;
  font-size: 9px;
}

.vendor-empty button {
  height: 32px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-size: 8px;
}

.vendor-disclaimer {
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid #e1d5bd;
  border-radius: 9px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: var(--sand-light);
}

.vendor-disclaimer > span {
  width: 20px;
  height: 20px;
  border: 1px solid #b9975b;
  border-radius: 50%;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #8b6a35;
  font-family: serif;
  font-size: 10px;
  font-weight: 700;
}

.vendor-disclaimer p {
  margin: 1px 0 0;
  color: #806d4b;
  font-size: 8px;
  line-height: 1.55;
}

.back-link {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  background: none;
  color: #6e7f78;
  cursor: pointer;
  font-size: 10px;
}

.bathroom-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.requirements-card {
  margin-top: 27px;
  padding: 25px 27px;
}

.requirement-progress {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}

.requirement-progress span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #587168;
  font-size: 8px;
  font-weight: 700;
}

.requirement-progress span i {
  width: 9px;
  height: 9px;
  border: 2px solid #8faa9e;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 3px #e5ece8;
}

.requirement-progress b {
  width: 54px;
  height: 1px;
  margin: 0 8px;
  background: #d6dcd7;
}

.requirements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.85fr;
  gap: 28px;
}

.requirements-grid > div {
  padding-right: 24px;
  border-right: 1px solid #e5e3dc;
}

.requirements-grid > div:last-child {
  padding-right: 0;
  border: 0;
}

.requirements-grid small {
  color: #96a09b;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1px;
}

.requirements-grid h3 {
  margin: 7px 0 14px;
  font-size: 12px;
}

.choice-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.choice-chips button {
  height: 31px;
  padding: 0 12px;
  border: 1px solid #dcded8;
  border-radius: 16px;
  background: #fff;
  color: #708079;
  cursor: pointer;
  font-size: 8px;
}

.choice-chips button.selected {
  border-color: #557b6e;
  background: #e7eee9;
  color: #365f53;
  font-weight: 700;
}

.quality-selection {
  height: 34px;
  padding: 0 10px 0 13px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #eee9dd;
}

.quality-selection span {
  font-size: 9px;
  font-weight: 700;
}

.quality-selection button {
  border: 0;
  background: none;
  color: #8b764c;
  cursor: pointer;
  font-size: 8px;
}

.recommendations-section,
.stores-section {
  margin-top: 40px;
}

.section-heading.large {
  align-items: flex-end;
}

.section-heading.large > div:first-child > p:last-child {
  margin: 7px 0 0;
  color: #7d8b85;
  font-size: 10px;
}

.package-total {
  min-width: 130px;
  display: grid;
  gap: 3px;
  text-align: right;
}

.package-total small { color: #949e99; }
.package-total strong { font-family: "Manrope", sans-serif; font-size: 19px; }

.product-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  transition: 180ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(28, 49, 43, 0.1);
}

.product-image {
  position: relative;
  height: 148px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.product-image.clay { background: #e7dcd3; }
.product-image.sage { background: #dde5df; }
.product-image.sand { background: #eee3d1; }
.product-image.ink { background: #d8dfdc; }

.product-image::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(23, 52, 46, 0.08);
}

.product-image > small {
  position: absolute;
  right: 12px;
  bottom: 9px;
  color: rgba(23, 52, 46, 0.35);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
}

.toilet-figure,
.faucet-figure,
.shower-figure,
.vanity-figure {
  position: relative;
  display: block;
  filter: drop-shadow(0 10px 10px rgba(30, 46, 41, 0.14));
}

.toilet-figure {
  width: 61px;
  height: 75px;
  border-radius: 29px 29px 20px 20px;
  background: #fbfaf6;
  transform: perspective(100px) rotateX(8deg);
}

.toilet-figure::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 6px;
  width: 49px;
  height: 30px;
  border-radius: 5px 5px 15px 15px;
  background: #fbfaf6;
}

.toilet-figure::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 11px;
  width: 39px;
  height: 43px;
  border: 3px solid #d9dad5;
  border-radius: 50%;
}

.faucet-figure {
  width: 19px;
  height: 76px;
  border-radius: 8px;
  background: linear-gradient(90deg, #8e9897, #f4f5f1 43%, #969f9d);
}

.faucet-figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8px;
  width: 55px;
  height: 17px;
  border-radius: 11px;
  background: linear-gradient(#d8dcda, #899492);
}

.faucet-figure::after {
  content: "";
  position: absolute;
  left: -20px;
  bottom: -6px;
  width: 60px;
  height: 12px;
  border-radius: 50%;
  background: #bcc2bf;
}

.shower-figure {
  width: 5px;
  height: 89px;
  background: linear-gradient(90deg, #7f8a88, #e3e6e4, #7f8a88);
}

.shower-figure::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -31px;
  width: 67px;
  height: 17px;
  border-radius: 50%;
  background: linear-gradient(#d7dcd9, #7f8987);
}

.shower-figure::after {
  content: "· · · ·\A · · · ·";
  position: absolute;
  top: 10px;
  left: -24px;
  width: 50px;
  color: #76847f;
  font-size: 13px;
  line-height: 17px;
  text-align: center;
  white-space: pre;
}

.vanity-figure {
  width: 94px;
  height: 65px;
  border-radius: 3px;
  background: #5c635f;
  box-shadow: inset 0 6px #e6e3dc;
}

.vanity-figure::before {
  content: "";
  position: absolute;
  top: -38px;
  left: 18px;
  width: 58px;
  height: 35px;
  border: 3px solid #6a7771;
  border-radius: 24px 24px 5px 5px;
  background: rgba(255, 255, 255, 0.34);
}

.vanity-figure::after {
  content: "•     •";
  position: absolute;
  top: 28px;
  left: 0;
  width: 100%;
  color: #d9c69a;
  font-size: 12px;
  text-align: center;
}

.product-info {
  padding: 14px;
}

.product-info > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-info > div:first-child span {
  color: #89958f;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.product-info em {
  padding: 3px 5px;
  border-radius: 3px;
  background: var(--sand-light);
  color: #997341;
  font-size: 6px;
  font-style: normal;
  font-weight: 700;
}

.product-info h3 {
  margin: 6px 0 3px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
}

.product-info p {
  margin: 0 0 12px;
  color: #9aa39f;
  font-size: 7px;
}

.product-info > strong {
  display: block;
  font-size: 11px;
}

.product-info > button {
  width: 100%;
  height: 31px;
  margin-top: 13px;
  border: 1px solid #d9ddd8;
  border-radius: 6px;
  background: transparent;
  color: #586f67;
  cursor: pointer;
  font-size: 8px;
  font-weight: 600;
}

.product-info > button.saved {
  border-color: #9eb3a4;
  background: var(--sage-light);
  color: #365f53;
}

.store-layout {
  margin-top: 17px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
  gap: 14px;
}

.store-list {
  display: grid;
  gap: 8px;
}

.store-card {
  min-height: 86px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 9px;
  display: grid;
  grid-template-columns: 33px minmax(0, 1fr) 65px 78px;
  align-items: center;
  gap: 13px;
  background: var(--white);
}

.store-card.selected-store {
  border-color: #93ad9f;
  box-shadow: inset 3px 0 #6c8b7f;
}

.store-number {
  color: #b2bab6;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
}

.store-copy {
  min-width: 0;
}

.store-copy > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.store-copy h3 {
  margin: 0;
  font-size: 11px;
}

.store-copy > div span {
  padding: 3px 5px;
  border-radius: 3px;
  background: var(--sage-light);
  color: #48685e;
  font-size: 6px;
  font-weight: 700;
}

.store-copy p {
  margin: 5px 0 3px;
  color: #7e8b85;
  font-size: 8px;
}

.store-copy small {
  display: block;
  overflow: hidden;
  color: #a0aaa5;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.store-copy > a {
  margin-top: 5px;
  display: inline-block;
  color: #506f64;
  font-size: 7px;
  font-weight: 600;
  text-decoration: none;
}

.store-price {
  display: grid;
  gap: 3px;
}

.store-price small {
  color: #9aa49f;
  font-size: 6px;
  letter-spacing: 0.5px;
}

.store-price strong {
  color: #8d7141;
  font-size: 10px;
}

.compare-check {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #718079;
  cursor: pointer;
  font-size: 8px;
}

.compare-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.compare-check span {
  width: 14px;
  height: 14px;
  border: 1px solid #c9cfca;
  border-radius: 3px;
  display: grid;
  place-items: center;
}

.compare-check input:checked + span {
  border-color: #557b6e;
  background: #557b6e;
}

.compare-check input:checked + span::after {
  content: "✓";
  color: white;
  font-size: 8px;
}

.store-comparison {
  border-radius: 10px;
  overflow: hidden;
  background: #edeae1;
}

.comparison-head {
  min-height: 68px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ink);
  color: white;
}

.comparison-head small {
  color: rgba(255, 255, 255, 0.37);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1px;
}

.comparison-head h3 {
  margin: 4px 0 0;
  font-size: 12px;
}

.comparison-head > span {
  color: #d6b775;
  font-size: 19px;
}

.comparison-row {
  min-height: 64px;
  padding: 12px 15px;
  border-bottom: 1px solid #dad8cf;
  display: grid;
  grid-template-columns: 1fr 38px 25px 49px;
  align-items: center;
  gap: 7px;
}

.comparison-row div {
  display: grid;
  gap: 2px;
}

.comparison-row strong { font-size: 9px; }
.comparison-row small { color: #8c9792; font-size: 7px; }
.comparison-row > span { color: #65756e; font-size: 8px; }
.comparison-row > b { color: #8e7141; font-size: 9px; }

.comparison-row button {
  height: 25px;
  padding: 0;
  border: 1px solid #bfc8c2;
  border-radius: 4px;
  background: transparent;
  color: #4e675e;
  cursor: pointer;
  font-size: 7px;
}

.comparison-row button.selected {
  border-color: #557b6e;
  background: #557b6e;
  color: white;
}

.comparison-note,
.comparison-empty {
  margin: 0;
  padding: 14px 16px;
  color: #8a948f;
  font-size: 7px;
  line-height: 1.5;
}

.comparison-empty {
  min-height: 130px;
  display: grid;
  place-items: center;
  font-size: 9px;
}

.selections-intro {
  align-items: center;
}

.print-button {
  height: 39px;
  padding: 0 15px;
  background: var(--ink);
  color: white;
}

.plan-summary {
  min-height: 106px;
  padding: 17px 22px;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1.7fr repeat(4, 1fr);
  align-items: center;
  background: var(--ink);
  color: white;
}

.plan-summary > div {
  min-height: 47px;
  padding: 0 17px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  align-content: center;
  gap: 4px;
}

.plan-summary > div:first-child {
  padding-left: 0;
  border: 0;
}

.plan-summary small {
  color: rgba(255, 255, 255, 0.37);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1px;
}

.plan-summary strong {
  font-size: 11px;
}

.summary-brand {
  display: flex !important;
  align-items: center;
  gap: 12px;
}

.summary-brand .brand-mark {
  color: white;
}

.summary-brand > div {
  display: grid;
  gap: 2px;
}

.summary-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 8px;
}

.selections-layout {
  margin-top: 17px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(270px, 0.7fr);
  align-items: start;
  gap: 15px;
}

.saved-products {
  min-height: 420px;
  padding: 22px;
}

.saved-products .section-heading > span {
  color: #8f9994;
  font-size: 9px;
}

.empty-state {
  min-height: 320px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.empty-state > span {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sage-light);
  color: #5c786e;
  font-size: 22px;
}

.empty-state h3 {
  margin: 14px 0 4px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
}

.empty-state p {
  width: min(280px, 90%);
  margin: 0 0 17px;
  color: #89958f;
  font-size: 9px;
  line-height: 1.5;
}

.empty-state .primary-button {
  height: 35px;
  padding: 0 14px;
}

.saved-list {
  margin-top: 16px;
}

.saved-list article {
  min-height: 72px;
  padding: 10px 0;
  border-top: 1px solid #e5e3dc;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
}

.saved-thumb {
  width: 46px;
  height: 46px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: rgba(23, 52, 46, 0.55);
  font-size: 8px;
  font-weight: 700;
}

.saved-thumb.clay { background: #e7dcd3; }
.saved-thumb.sage { background: #dde5df; }
.saved-thumb.sand { background: #eee3d1; }
.saved-thumb.ink { background: #d8dfdc; }

.saved-list article > div {
  display: grid;
  gap: 2px;
}

.saved-list article small {
  color: #959f9a;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.saved-list article strong { font-size: 10px; }
.saved-list article p { margin: 0; color: #9aa39f; font-size: 7px; }
.saved-list article > b { font-size: 9px; }

.saved-list article > button {
  border: 0;
  background: none;
  color: #a16d5a;
  cursor: pointer;
  font-size: 7px;
}

.saved-total {
  padding-top: 16px;
  border-top: 1px solid #d7d5ce;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
}

.saved-total strong {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.saved-vendors-heading {
  margin-top: 27px;
  padding-top: 22px;
  border-top: 1px solid #d7d5ce;
}

.saved-vendors-empty {
  min-height: 70px;
  margin-top: 10px;
  padding: 14px;
  border: 1px dashed #d6d9d3;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.saved-vendors-empty p {
  margin: 0;
  color: #84908b;
  font-size: 9px;
}

.saved-vendors-empty button {
  border: 0;
  background: transparent;
  color: #496c61;
  cursor: pointer;
  font-size: 8px;
  font-weight: 600;
}

.saved-vendor-list {
  margin-top: 10px;
}

.saved-vendor-list article {
  min-height: 67px;
  padding: 9px 0;
  border-top: 1px solid #e5e3dc;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 11px;
}

.saved-vendor-list article:first-child {
  border-top: 0;
}

.saved-vendor-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--sage-light);
  color: #4e6e63;
  font-size: 8px;
  font-weight: 700;
}

.saved-vendor-list article > div {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.saved-vendor-list small {
  color: #9b834f;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.saved-vendor-list strong {
  font-size: 10px;
}

.saved-vendor-list p {
  overflow: hidden;
  margin: 0;
  color: #909a95;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.saved-vendor-list a {
  color: #4e6e63;
  font-size: 7px;
  font-weight: 600;
  text-decoration: none;
}

.saved-vendor-list button {
  border: 0;
  background: none;
  color: #a16d5a;
  cursor: pointer;
  font-size: 7px;
}

.plan-sidebar {
  display: grid;
  gap: 12px;
}

.preferred-store,
.plan-breakdown {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 254, 250, 0.78);
}

.preferred-store h3 {
  margin: 3px 0 5px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.preferred-store > p:not(.eyebrow) {
  margin: 0;
  color: #7d8b85;
  font-size: 9px;
  line-height: 1.5;
}

.preferred-store > span {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e2e0d9;
  display: block;
  color: #929c97;
  font-size: 8px;
}

.preferred-store button {
  margin-top: 15px;
  padding: 0;
  border: 0;
  background: none;
  color: #466a60;
  cursor: pointer;
  font-size: 8px;
  font-weight: 600;
}

.plan-breakdown > div {
  min-height: 33px;
  border-top: 1px solid #e6e4dd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #73817b;
  font-size: 8px;
}

.plan-breakdown > div strong {
  color: var(--ink);
}

.plan-breakdown .breakdown-total {
  margin-top: 5px;
  padding-top: 5px;
  color: var(--ink);
  font-weight: 700;
}

.plan-breakdown .breakdown-total strong {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 24px;
  display: grid;
  place-items: center;
  background: rgba(15, 34, 29, 0.66);
  backdrop-filter: blur(9px);
  transition: 220ms ease;
}

.modal-backdrop.closed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.onboarding-modal {
  width: min(1000px, 96vw);
  min-height: 650px;
  max-height: 94vh;
  border-radius: 15px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 39% 61%;
  background: var(--white);
  box-shadow: var(--shadow);
}

.onboarding-art {
  position: relative;
  min-height: 650px;
  padding: 30px;
  overflow: hidden;
  background: #183c33;
  color: white;
}

.onboarding-art::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(white 1px, transparent 1px),
    linear-gradient(90deg, white 1px, transparent 1px);
  background-size: 32px 32px;
}

.modal-brand {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 17px;
}

.art-copy {
  position: relative;
  z-index: 2;
  margin-top: 92px;
}

.art-copy p {
  margin: 0 0 16px;
  color: #d6b775;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.8px;
}

.art-copy h2 {
  max-width: 280px;
  margin: 0 0 15px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(27px, 3vw, 37px);
  letter-spacing: -1.5px;
  line-height: 1.11;
}

.art-copy > span {
  max-width: 270px;
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 1.65;
}

.art-house {
  position: absolute;
  inset: auto 0 25px;
  height: 230px;
}

.art-sun {
  position: absolute;
  top: 0;
  right: 44px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: #d6b775;
  opacity: 0.78;
}

.art-ground {
  position: absolute;
  inset: auto 0 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
}

.art-building-one,
.art-building-two {
  position: absolute;
  bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.04);
}

.art-building-one {
  left: 46px;
  width: 185px;
  height: 95px;
}

.art-building-one::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 184px;
  height: 60px;
  border-left: 1px solid rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.62);
  transform: skewY(-17deg);
  transform-origin: bottom right;
}

.art-building-two {
  right: 0;
  width: 135px;
  height: 76px;
}

.art-window {
  position: absolute;
  bottom: 64px;
  width: 33px;
  height: 37px;
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.art-window::before,
.art-window::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.34);
}

.art-window::before { left: 50%; top: 0; width: 1px; height: 100%; }
.art-window::after { top: 50%; left: 0; width: 100%; height: 1px; }
.art-window.a { left: 74px; }
.art-window.b { left: 126px; }
.art-window.c { right: 50px; }

.art-tree {
  position: absolute;
  left: 22px;
  bottom: 25px;
  width: 2px;
  height: 68px;
  background: rgba(255, 255, 255, 0.55);
}

.art-tree::before {
  content: "";
  position: absolute;
  top: -26px;
  left: 50%;
  width: 38px;
  height: 61px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: #668277;
}

.onboarding-art > small {
  position: absolute;
  bottom: 14px;
  left: 30px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.34);
  font-size: 7px;
}

.onboarding-form {
  position: relative;
  min-height: 650px;
  padding: 30px 46px 28px;
  overflow-y: auto;
}

.modal-top {
  min-height: 31px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-progress {
  display: flex;
  gap: 6px;
}

.modal-progress span {
  width: 35px;
  height: 3px;
  border-radius: 2px;
  background: #dfe1dc;
}

.modal-progress span.active {
  background: #52796d;
}

.modal-close {
  width: 30px;
  height: 30px;
  border: 1px solid #dedfd9;
  border-radius: 50%;
  background: transparent;
  color: #84908b;
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fade-view 200ms ease both;
}

/* Cost Estimate Result Summary Card */
.estimate-result-card {
  margin: 18px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.estimate-main-callout {
  padding: 18px 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, #11221b 0%, #1a3328 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(17, 34, 27, 0.16);
  border: 1px solid rgba(163, 230, 53, 0.25);
}

.estimate-main-callout .callout-label {
  display: block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #a3e635;
  margin-bottom: 6px;
}

.estimate-main-callout .callout-value {
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -1.1px;
}

.estimate-main-callout .callout-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 6px;
}

.estimate-quick-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric-pill {
  padding: 10px 12px;
  border-radius: 8px;
  background: #f4f6f4;
  border: 1px solid #e2e6e3;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.metric-pill small {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #6d7d76;
  text-transform: uppercase;
}

.metric-pill strong {
  font-size: 11px;
  font-weight: 700;
  color: #1a2b25;
}

.estimate-breakdown-box {
  padding: 14px 16px;
  border-radius: 10px;
  background: #fafbf9;
  border: 1px solid #e5e8e4;
}

.estimate-breakdown-box h4 {
  margin: 0 0 10px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #556660;
  text-transform: uppercase;
}

.breakdown-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.breakdown-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: #2c3a34;
  margin-bottom: 4px;
}

.breakdown-item-header strong {
  font-size: 11px;
  font-weight: 700;
  color: #11221b;
}

.breakdown-bar {
  height: 6px;
  border-radius: 3px;
  background: #e6eae4;
  overflow: hidden;
}

.breakdown-bar div {
  height: 100%;
  border-radius: 3px;
  transition: width 400ms ease;
}

.breakdown-item.grey .breakdown-bar div { background: #3b5e53; }
.breakdown-item.systems .breakdown-bar div { background: #8f6e3c; }
.breakdown-item.finishes .breakdown-bar div { background: #4f8576; }
.breakdown-item.reserve .breakdown-bar div { background: #92a39d; }

.form-heading {
  margin: 35px 0 28px;
}

.form-heading p {
  margin: 0 0 8px;
  color: #9b7b42;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.4px;
}

.form-heading h1 {
  margin: 0 0 7px;
  font-family: "Manrope", sans-serif;
  font-size: 29px;
  letter-spacing: -1.1px;
}

.form-heading > span {
  color: #85918c;
  font-size: 10px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field > span {
  color: #697a73;
  font-size: 8px;
  font-weight: 600;
}

.field input,
.field select,
.unit-input {
  width: 100%;
  height: 40px;
  border: 1px solid #d9dcd7;
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font-size: 10px;
  transition: 150ms ease;
}

.field input,
.field select {
  padding: 0 12px;
}

.field input:focus,
.field select:focus,
.unit-input:focus-within {
  border-color: #64877c;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(100, 135, 124, 0.11);
}

.unit-input {
  display: flex;
  align-items: center;
}

.unit-input input {
  height: 38px;
  border: 0;
  box-shadow: none !important;
}

.unit-input em {
  padding-right: 12px;
  color: #9aa39f;
  font-size: 8px;
  font-style: normal;
  white-space: nowrap;
}

.form-actions {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid #e5e4de;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.onboarding-legal {
  margin: 18px 0 0;
  color: #8a9692;
  font-size: 7px;
  line-height: 1.5;
  text-align: center;
}

.onboarding-legal a { color: #477521; font-weight: 700; text-underline-offset: 2px; }

.demo-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: #7d8a85;
  cursor: pointer;
  font-size: 9px;
}

.continue-button {
  height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 7px;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-size: 9px;
  font-weight: 600;
}

.continue-button span {
  margin-left: 13px;
  color: #e0c385;
}

.option-fieldset {
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}

.option-fieldset legend {
  margin-bottom: 12px;
  color: #84918b;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.1px;
}

.status-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.status-options label,
.budget-options label {
  position: relative;
  min-height: 55px;
  padding: 10px;
  border: 1px solid #dfe0db;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  transition: 150ms ease;
}

.status-options label.selected,
.budget-options label.selected {
  border-color: #5b7f73;
  background: #edf2ee;
  box-shadow: inset 0 0 0 1px #5b7f73;
}

.status-options input,
.budget-options input {
  position: absolute;
  opacity: 0;
}

.status-options label > span,
.budget-options label > span {
  width: 15px;
  height: 15px;
  border: 1px solid #bfc7c2;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.status-options label.selected > span,
.budget-options label.selected > span {
  border-color: #557b6e;
}

.status-options label.selected > span i,
.budget-options label.selected > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #557b6e;
}

.status-options strong {
  font-size: 8px;
  font-weight: 600;
}

.budget-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.budget-options label {
  min-height: 60px;
}

.budget-options label > div {
  display: grid;
  gap: 3px;
}

.budget-options strong {
  font-size: 9px;
}

.budget-options small {
  color: #929c97;
  font-size: 7px;
}

.custom-budget {
  margin-top: 11px;
}

.custom-budget .unit-input em {
  padding: 0 0 0 12px;
}

.toast {
  position: fixed;
  right: 27px;
  bottom: 27px;
  z-index: 150;
  min-width: 245px;
  min-height: 46px;
  padding: 10px 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: white;
  box-shadow: 0 15px 40px rgba(18, 39, 33, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 200ms ease;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.toast span {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #d6b775;
  color: var(--ink);
  font-size: 9px;
}

.toast i {
  font-size: 9px;
  font-style: normal;
}

@media (max-width: 1050px) {
  :root { --sidebar: 205px; }
  .sidebar { padding-left: 14px; padding-right: 14px; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .next-decisions { display: grid; grid-template-columns: 1fr 1.1fr; gap: 13px; }
  .next-decisions > .section-heading { grid-column: 1 / -1; }
  .mini-decisions { margin: 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .store-layout { grid-template-columns: 1fr; }
  .store-comparison { max-width: none; }
  .vendor-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .onboarding-modal { grid-template-columns: 35% 65%; }
}

@media (max-width: 800px) {
  :root { --sidebar: 0px; }
  body { padding-bottom: 65px; }
  .sidebar { display: none; }
  .main { margin-left: 0; }
  .topbar { height: 64px; padding: 0 18px; }
  .mobile-brand { display: inline-flex; color: var(--ink); font-size: 16px; }
  .mobile-brand .brand-mark { width: 24px; height: 24px; }
  .crumb { display: none; }
  .icon-button { display: none; }
  .new-project { height: 34px; }
  .view { padding: 25px 18px 40px; }
  .project-hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 250px; }
  .stats-row { grid-template-columns: 1fr; }
  .dashboard-grid { margin-top: 18px; }
  .roadmap-layout { grid-template-columns: 1fr; }
  .stage-detail { position: static; order: -1; }
  .requirements-grid { grid-template-columns: 1fr; gap: 20px; }
  .requirements-grid > div { padding: 0 0 18px; border: 0; border-bottom: 1px solid #e5e3dc; }
  .requirements-grid > div:last-child { padding-bottom: 0; border: 0; }
  .vendor-intro { align-items: flex-start; }
  .vendor-location-card { min-width: 210px; }
  .plan-summary { grid-template-columns: 1.5fr 1fr; gap: 15px 0; }
  .plan-summary > div:nth-child(odd) { border-left: 0; }
  .selections-layout { grid-template-columns: 1fr; }
  .mobile-nav {
    position: fixed;
    inset: auto 0 0;
    z-index: 60;
    height: 64px;
    padding: 6px 8px max(6px, env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid #d8d7d0;
    background: rgba(255, 254, 250, 0.95);
    backdrop-filter: blur(12px);
  }
  .mobile-nav button {
    border: 0;
    border-radius: 6px;
    display: grid;
    place-items: center;
    gap: 2px;
    background: transparent;
    color: #8b9691;
    font-size: 7px;
  }
  .mobile-nav button span { font-size: 17px; }
  .mobile-nav button.active { background: var(--sage-light); color: #365f53; }
  .onboarding-modal { width: min(620px, 96vw); grid-template-columns: 1fr; }
  .onboarding-art { display: none; }
  .onboarding-form { min-height: 0; max-height: 90vh; padding: 25px; }
}

@media (max-width: 560px) {
  .welcome-row { align-items: flex-start; }
  .plan-health { display: none; }
  .welcome-row h1,
  .page-intro h1,
  .bathroom-title-row h1 { font-size: 27px; }
  .hero-copy { padding: 27px 22px 23px; }
  .profile-grid { grid-template-columns: repeat(2, 1fr); gap: 15px 0; }
  .profile-grid div:nth-child(3) { padding-left: 0; border-left: 0; }
  .next-decisions { display: block; }
  .next-decisions .decision-feature { margin-bottom: 12px; }
  .decision-feature { grid-template-columns: 42% 58%; }
  .decision-copy { padding: 20px 13px; }
  .page-intro,
  .bathroom-title-row { align-items: flex-start; flex-direction: column; }
  .vendor-location-card { width: 100%; min-width: 0; }
  .vendor-toolbar { align-items: stretch; flex-direction: column; }
  .vendor-toolbar > button { width: 100%; }
  .vendor-stage-filter { align-items: flex-start; gap: 12px; }
  .vendor-grid { grid-template-columns: 1fr; }
  .intro-budget,
  .bathroom-budget { width: 100%; padding: 12px 0 0; border: 0; border-top: 1px solid var(--line); }
  .full-stage { grid-template-columns: 31px minmax(0, 1fr) 14px; gap: 10px; }
  .full-stage-budget { display: none; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { display: grid; grid-template-columns: 42% 58%; }
  .product-image { height: 100%; min-height: 170px; }
  .store-card { grid-template-columns: 28px 1fr auto; }
  .store-price { display: none; }
  .compare-check { grid-column: 3; grid-row: 1; }
  .plan-summary { grid-template-columns: 1fr 1fr; }
  .summary-brand { grid-column: 1 / -1; }
  .plan-summary > div { padding: 0 10px; }
  .plan-summary > div:nth-child(even) { border-left: 0; }
  .plan-summary > div:nth-child(odd) { border-left: 1px solid rgba(255, 255, 255, 0.12); }
  .plan-summary .summary-brand { border-left: 0; padding-left: 0; }
  .saved-vendor-list article { grid-template-columns: 40px minmax(0, 1fr) auto; }
  .saved-vendor-list article > button { grid-column: 3; }
  .saved-vendors-empty { align-items: flex-start; flex-direction: column; }
  .selections-intro { align-items: flex-start; }
  .print-button { margin-top: 6px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .status-options { grid-template-columns: repeat(2, 1fr); }
  .budget-options { grid-template-columns: 1fr; }
  .form-heading { margin-top: 20px; }
  .form-heading h1 { font-size: 25px; }
  .modal-backdrop { padding: 10px; }
  .onboarding-form { padding: 20px; }
  .form-actions { margin-top: 22px; }
  .toast { right: 14px; bottom: 78px; left: 14px; min-width: 0; }
}

@media print {
  body { background: white; padding: 0; }
  .sidebar,
  .topbar,
  .mobile-nav,
  .modal-backdrop,
  .toast,
  .print-button { display: none !important; }
  .main { margin: 0; }
  .app-view { display: none !important; }
  .app-view[data-view="selections"] { display: block !important; }
  .view { width: 100%; padding: 20px; }
  .plan-summary { break-inside: avoid; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .selections-layout { grid-template-columns: 1.35fr 0.65fr; }
}

:root {
  --ink: #0a252e;
  --ink-2: #123945;
  --ink-3: #557079;
  --paper: #f3f5f1;
  --white: #ffffff;
  --line: #dce4df;
  --line-dark: rgba(10, 37, 46, 0.13);
  --sage: #c8ff63;
  --sage-light: #effbdc;
  --sand: #ffbd72;
  --sand-light: #fff1dc;
  --blue: #8fd9ec;
  --terracotta: #ff776c;
  --shadow: 0 28px 80px rgba(8, 30, 38, 0.2);
  --sidebar: 258px;
}

body {
  background:
    radial-gradient(circle at 84% 4%, rgba(143, 217, 236, 0.16), transparent 24rem),
    radial-gradient(circle at 34% 100%, rgba(200, 255, 99, 0.1), transparent 28rem),
    var(--paper);
  color: var(--ink);
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(200, 255, 99, 0.55);
  outline-offset: 3px;
}

.sidebar {
  width: var(--sidebar);
  padding: 28px 20px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 25% 4%, rgba(143, 217, 236, 0.13), transparent 13rem),
    #071c24;
}

.sidebar::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.05;
  background-image:
    linear-gradient(white 1px, transparent 1px),
    linear-gradient(90deg, white 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 68%);
}

.brand,
.mobile-brand,
.modal-brand {
  gap: 12px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.brand {
  margin-bottom: 42px;
  font-size: 21px;
}

.brand em,
.modal-brand em {
  color: var(--sage);
  font-style: normal;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.brand-mark i:first-child {
  right: -2px;
  bottom: 2px;
  left: auto;
  width: 11px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(46deg);
}

.brand-mark i:nth-child(2) {
  top: 8px;
  right: auto;
  bottom: auto;
  left: 8px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--sage);
  border-radius: 50%;
  background: transparent;
  transform: none;
}

.brand-mark i:nth-child(3) {
  top: 13px;
  bottom: auto;
  left: 13px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sage);
}

.side-nav {
  gap: 6px;
}

.side-nav p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 8px;
  letter-spacing: 1.6px;
}

.side-nav button {
  height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.61);
  font-size: 12px;
}

.side-nav button:hover {
  background: rgba(255, 255, 255, 0.07);
}

.side-nav button.active {
  background: rgba(200, 255, 99, 0.1);
  color: white;
  box-shadow: inset 3px 0 var(--sage);
}

.side-nav button > span {
  color: rgba(200, 255, 99, 0.72);
}

.side-nav button b {
  background: var(--sage);
  color: #071c24;
}

.sidebar-project {
  margin-top: 30px;
  padding: 18px 12px;
}

.project-mini-icon {
  border: 1px solid rgba(200, 255, 99, 0.2);
  border-radius: 12px;
  background:
    linear-gradient(rgba(200, 255, 99, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 255, 99, 0.14) 1px, transparent 1px),
    #102f39;
  background-size: 9px 9px;
}

.project-mini-icon::before,
.project-mini-icon::after,
.project-mini-icon span {
  border-radius: 50%;
  background: var(--sage);
  transform: none;
}

.project-mini-icon::before {
  left: 8px;
  bottom: 8px;
  width: 6px;
  height: 6px;
  box-shadow: 16px -15px 0 var(--blue);
}

.project-mini-icon::after {
  right: 7px;
  bottom: 7px;
  width: 5px;
  height: 5px;
}

.project-mini-icon span {
  left: 13px;
  bottom: 11px;
  width: 18px;
  height: 1px;
  border-radius: 1px;
  background: rgba(200, 255, 99, 0.72);
  transform: rotate(-40deg);
  transform-origin: left;
}

.sidebar-help {
  border-color: rgba(143, 217, 236, 0.12);
  background: rgba(143, 217, 236, 0.07);
}

.sidebar-help > span {
  border-color: rgba(200, 255, 99, 0.24);
  background: rgba(200, 255, 99, 0.08);
  color: var(--sage);
}

.avatar {
  background: var(--sage);
  color: #071c24;
}

.topbar {
  height: 76px;
  padding: 0 36px;
  border-color: rgba(10, 37, 46, 0.09);
  background: rgba(247, 249, 246, 0.84);
  backdrop-filter: blur(22px);
}

.crumb {
  color: #839098;
}

.icon-button,
.new-project {
  height: 40px;
  border-radius: 10px;
}

.icon-button {
  background: rgba(255, 255, 255, 0.82);
}

.new-project {
  padding: 0 17px;
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: 0 10px 22px rgba(10, 37, 46, 0.16);
}

.new-project i {
  color: var(--sage);
}

.view {
  width: min(1320px, 100%);
  padding: 38px 36px 64px;
}

.eyebrow {
  color: #718087;
  font-size: 8px;
  letter-spacing: 1.8px;
}

.welcome-row {
  margin-bottom: 28px;
}

.welcome-row h1,
.page-intro h1,
.bathroom-title-row h1 {
  font-weight: 800;
  letter-spacing: -1.8px;
}

.welcome-row > div:first-child > p:last-child,
.page-intro > div:first-child > p:last-child,
.bathroom-title-row > div:first-child > p:last-child {
  color: #64757c;
  font-size: 12px;
}

.welcome-row > div:first-child > p:last-child strong {
  color: #477521;
  font-weight: 700;
}

.plan-health {
  min-width: 154px;
  padding: 11px 15px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 30px rgba(10, 37, 46, 0.05);
}

.plan-health > span {
  border-color: #65b85f;
  background: #65b85f;
  box-shadow: 0 0 0 5px rgba(101, 184, 95, 0.13);
}

.project-hero {
  min-height: 354px;
  grid-template-columns: 54% 46%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at 15% 10%, rgba(143, 217, 236, 0.12), transparent 20rem),
    #09242d;
  box-shadow: 0 22px 60px rgba(8, 30, 38, 0.18);
}

.hero-copy {
  padding: 36px 40px 30px;
}

.hero-labels span {
  height: 25px;
  padding: 0 10px;
}

.status-pill {
  background: rgba(200, 255, 99, 0.12);
  color: var(--sage);
}

.quality-pill {
  border-color: rgba(143, 217, 236, 0.24);
  background: rgba(143, 217, 236, 0.06);
  color: #bcebf5;
}

.hero-copy h2 {
  margin-top: 27px;
  font-size: clamp(29px, 3.4vw, 43px);
  font-weight: 800;
  letter-spacing: -1.9px;
}

.profile-grid {
  margin-top: 31px;
}

.profile-grid div {
  border-color: rgba(255, 255, 255, 0.12);
}

.profile-grid small {
  color: rgba(255, 255, 255, 0.37);
}

.progress-track {
  height: 5px;
  background: rgba(255, 255, 255, 0.09);
}

.progress-track i {
  background: linear-gradient(90deg, var(--sage), var(--blue));
  box-shadow: 0 0 18px rgba(200, 255, 99, 0.32);
}

.hero-visual.estimate-visual {
  min-height: 354px;
  padding: 34px 32px 26px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    linear-gradient(rgba(200, 255, 99, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 255, 99, 0.08) 1px, transparent 1px),
    #0d303a;
  background-size: 30px 30px;
}

.hero-visual.estimate-visual::before {
  inset: -120px -100px auto auto;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(143, 217, 236, 0.2);
  border-radius: 50%;
  opacity: 1;
  background: transparent;
  box-shadow:
    0 0 0 42px rgba(143, 217, 236, 0.035),
    0 0 0 84px rgba(143, 217, 236, 0.025);
}

.matrix-kicker {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.matrix-kicker > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(200, 255, 99, 0.12), 0 0 18px rgba(200, 255, 99, 0.4);
}

.estimate-total {
  position: relative;
  z-index: 2;
  margin-top: 29px;
  display: grid;
  gap: 3px;
}

.estimate-total small {
  color: rgba(255, 255, 255, 0.39);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1.4px;
}

.estimate-total strong {
  color: white;
  font-family: "Manrope", sans-serif;
  font-size: clamp(30px, 3.5vw, 43px);
  font-weight: 800;
  letter-spacing: -1.8px;
}

.estimate-total span {
  color: var(--blue);
  font-size: 8px;
}

.estimate-split {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.estimate-split > div {
  display: grid;
  grid-template-columns: 85px 1fr 30px;
  align-items: center;
  gap: 9px;
}

.estimate-split span,
.estimate-split b {
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  font-weight: 500;
}

.estimate-split b {
  color: rgba(255, 255, 255, 0.82);
  text-align: right;
}

.estimate-split i {
  position: relative;
  height: 5px;
  border-radius: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.09);
}

.estimate-split i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sage), var(--blue));
}

.matrix-pulse {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center;
  gap: 8px;
}

.matrix-pulse i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  animation: qeematrix-pulse 1.8s ease-in-out infinite;
}

.matrix-pulse span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
}

.matrix-pulse b {
  padding: 4px 6px;
  border: 1px solid rgba(200, 255, 99, 0.22);
  border-radius: 5px;
  color: var(--sage);
  font-size: 6px;
  letter-spacing: 0.8px;
}

@keyframes qeematrix-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 255, 99, 0.45); }
  50% { box-shadow: 0 0 0 6px rgba(200, 255, 99, 0); }
}

.stats-row {
  margin-top: 16px;
  gap: 14px;
}

.stats-row article,
.roadmap-card,
.next-decisions,
.requirements-card,
.saved-products,
.full-roadmap,
.vendor-card,
.vendor-toolbar,
.vendor-location-card,
.store-card,
.product-card {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 34px rgba(8, 30, 38, 0.045);
}

.stats-row article {
  min-height: 102px;
  padding: 20px;
  border-radius: 14px;
}

.stat-icon {
  width: 39px;
  height: 39px;
  border-radius: 11px;
}

.stat-icon.sand { background: var(--sand-light); color: #a66721; }
.stat-icon.sage { background: var(--sage-light); color: #447324; }
.stat-icon.blue { background: #e5f7fb; color: #28778b; }

.stats-row strong {
  font-size: 16px;
}

.dashboard-grid {
  margin-top: 32px;
  gap: 18px;
}

.roadmap-card,
.next-decisions {
  padding: 25px;
  border-radius: 15px;
}

.section-heading h2,
.section-heading h3 {
  font-weight: 800;
}

.section-heading > button,
.back-link,
.text-button {
  color: #446c76;
}

.roadmap-row:hover,
.full-stage:hover {
  background: rgba(143, 217, 236, 0.08);
}

.roadmap-row.current .stage-number,
.roadmap-row.done .stage-number {
  color: #4a7725;
}

.roadmap-row.current .stage-symbol,
.full-stage-number.current {
  border-color: #b3e458;
  background: var(--sage-light);
  color: #477521;
}

.decision-count,
.detail-symbol,
.primary-button,
.continue-button,
.toast span {
  background: var(--sage);
  color: #071c24;
}

.decision-feature {
  border-radius: 13px;
  background: #0a2832;
}

.decision-copy > span,
.decision-copy strong {
  color: var(--sage);
}

.mini-decisions button > span {
  background: #e7f7fa;
  color: #2a6d7d;
}

.page-intro {
  margin-bottom: 29px;
}

.intro-budget,
.bathroom-budget {
  min-width: 190px;
}

.intro-budget strong,
.bathroom-budget strong {
  font-size: 23px;
  font-weight: 800;
}

.roadmap-layout {
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 20px;
}

.full-roadmap {
  border-radius: 15px;
}

.full-stage {
  min-height: 86px;
}

.full-stage.selected {
  background: #edf7f6;
}

.full-stage.selected::before {
  background: var(--blue);
}

.full-stage-number.done {
  border-color: #b3e458;
  background: var(--sage-light);
  color: #4a7725;
}

.stage-detail {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background: #081f28;
  box-shadow: 0 24px 60px rgba(8, 30, 38, 0.19);
}

.detail-top {
  background:
    linear-gradient(rgba(143, 217, 236, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 217, 236, 0.07) 1px, transparent 1px),
    #0d313c;
  background-size: 24px 24px;
}

.detail-top::after {
  border-color: rgba(200, 255, 99, 0.13);
  box-shadow: 0 0 0 24px rgba(200, 255, 99, 0.03), 0 0 0 50px rgba(200, 255, 99, 0.018);
}

.detail-list i {
  background: rgba(200, 255, 99, 0.1);
  color: var(--sage);
}

.detail-vendors article button {
  border-color: rgba(200, 255, 99, 0.28);
  color: var(--sage);
}

.stage-detail .primary-button.saved,
.detail-vendors article button.saved {
  border-color: rgba(143, 217, 236, 0.35);
  background: rgba(143, 217, 236, 0.15);
  color: #c7f2fa;
}

.vendor-location-card,
.vendor-toolbar {
  border-radius: 13px;
}

.vendor-search {
  border-color: #d5e0dc;
  border-radius: 10px;
}

.vendor-search:focus-within {
  border-color: #74adbb;
  box-shadow: 0 0 0 3px rgba(143, 217, 236, 0.14);
}

.vendor-stage-filter {
  border-color: #cce7ea;
  background: #eaf8fa;
}

.vendor-stage-filter > div > span,
.vendor-category-chips button.active,
.compare-check input:checked + span,
.comparison-row button.selected {
  border-color: var(--ink-2);
  background: var(--ink-2);
  color: white;
}

.vendor-category-chips button {
  height: 34px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.vendor-grid {
  gap: 14px;
}

.vendor-card {
  padding: 19px;
  border-radius: 14px;
}

.vendor-card:hover,
.product-card:hover {
  border-color: #c3d9d5;
  box-shadow: 0 18px 42px rgba(8, 30, 38, 0.09);
}

.vendor-avatar,
.saved-vendor-mark {
  border-radius: 11px;
  background: #e7f7fa;
  color: #236b7c;
}

.vendor-card-top small {
  color: #477521;
}

.vendor-save.saved,
.product-info > button.saved {
  border-color: #b3e458;
  background: var(--sage-light);
  color: #477521;
}

.vendor-actions a:first-child {
  border-color: var(--ink);
  background: var(--ink);
}

.vendor-disclaimer {
  border-color: #e8d4af;
  border-radius: 12px;
  background: var(--sand-light);
}

.requirements-card {
  border-radius: 15px;
}

.choice-chips button.selected,
.quality-selection {
  border-color: #b3e458;
  background: var(--sage-light);
  color: #477521;
}

.requirement-progress span i {
  border-color: #9ecb4f;
  box-shadow: 0 0 0 3px var(--sage-light);
}

.product-card {
  border-radius: 14px;
}

.product-image.clay { background: #f3e8df; }
.product-image.sage { background: #e9f3df; }
.product-image.sand { background: #fff0da; }
.product-image.ink { background: #dcecf0; }

.comparison-head,
.plan-summary,
.print-button,
.toast {
  background: var(--ink);
}

.comparison-head > span {
  color: var(--sage);
}

.store-card.selected-store {
  border-color: #8bc1ce;
  box-shadow: inset 3px 0 var(--blue);
}

.plan-summary {
  min-height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 15px;
}

.summary-brand .brand-mark {
  color: white;
}

.modal-backdrop {
  padding: 16px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: rgba(4, 20, 27, 0.76);
  backdrop-filter: blur(14px);
}

.onboarding-modal {
  width: min(1060px, calc(100vw - 32px));
  height: min(680px, calc(100vh - 32px));
  height: min(680px, calc(100dvh - 32px));
  min-height: 0;
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  grid-template-columns: 41% 59%;
}

.onboarding-art {
  height: 100%;
  min-height: 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(143, 217, 236, 0.2), transparent 15rem),
    #071f28;
}

.onboarding-art::before {
  opacity: 0.06;
  background-size: 28px 28px;
}

.modal-brand {
  font-size: 18px;
}

.art-copy {
  margin-top: 90px;
}

.art-copy p {
  color: var(--sage);
}

.art-copy h2 {
  max-width: 320px;
  font-size: clamp(31px, 3.3vw, 44px);
  font-weight: 800;
  letter-spacing: -2px;
}

.art-copy > span {
  max-width: 305px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 11px;
}

.art-sun {
  background: var(--sage);
  opacity: 0.75;
  box-shadow: 0 0 0 25px rgba(200, 255, 99, 0.045), 0 0 0 52px rgba(200, 255, 99, 0.025);
}

.art-building-one,
.art-building-two,
.art-window {
  border-color: rgba(143, 217, 236, 0.62);
}

.art-building-one::before {
  border-color: rgba(143, 217, 236, 0.62);
}

.art-tree::before {
  background: #36727c;
}

.onboarding-form {
  height: 100%;
  min-height: 0;
  max-height: none;
  padding: 32px 50px 30px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.onboarding-form::-webkit-scrollbar { width: 8px; }
.onboarding-form::-webkit-scrollbar-track { background: transparent; }
.onboarding-form::-webkit-scrollbar-thumb { border: 2px solid transparent; border-radius: 10px; background: #c7d3cf; background-clip: padding-box; }

.modal-progress span.active {
  background: var(--blue);
}

.form-heading p {
  color: #447521;
}

.form-heading h1 {
  font-size: 31px;
  font-weight: 800;
  letter-spacing: -1.4px;
}

.field input,
.field select,
.unit-input {
  height: 43px;
  border-color: #d5dfdb;
  border-radius: 9px;
}

.field input:focus,
.field select:focus,
.unit-input:focus-within {
  border-color: #73adbb;
  box-shadow: 0 0 0 3px rgba(143, 217, 236, 0.14);
}

.status-options label,
.budget-options label {
  border-radius: 10px;
}

.status-options label.selected,
.budget-options label.selected {
  border-color: #94c63e;
  background: var(--sage-light);
  box-shadow: inset 0 0 0 1px #94c63e;
}

.status-options label.selected > span,
.budget-options label.selected > span {
  border-color: #6fa323;
}

.status-options label.selected > span i,
.budget-options label.selected > span i {
  background: #6fa323;
}

.continue-button {
  height: 44px;
  padding: 0 20px;
  border-radius: 9px;
  box-shadow: 0 11px 24px rgba(91, 139, 40, 0.18);
}

.continue-button span {
  color: #071c24;
}

@media (max-width: 1050px) {
  :root { --sidebar: 218px; }
  .project-hero { grid-template-columns: 52% 48%; }
  .hero-copy { padding-right: 28px; padding-left: 30px; }
  .hero-visual.estimate-visual { padding-right: 24px; padding-left: 24px; }
}

@media (max-width: 800px) {
  :root { --sidebar: 0px; }
  .topbar { background: rgba(247, 249, 246, 0.93); }
  .mobile-brand { color: var(--ink); }
  .mobile-brand .brand-mark { width: 26px; height: 26px; }
  .mobile-brand .brand-mark i:nth-child(2) { top: 6px; left: 6px; }
  .mobile-brand .brand-mark i:nth-child(3) { top: 11px; left: 11px; }
  .project-hero { grid-template-columns: 1fr; }
  .hero-visual.estimate-visual { min-height: 315px; }
  .mobile-nav {
    border-color: rgba(10, 37, 46, 0.11);
    background: rgba(250, 251, 248, 0.95);
  }
  .mobile-nav button.active {
    background: var(--sage-light);
    color: #477521;
  }
  .onboarding-modal { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .view { padding-right: 15px; padding-left: 15px; }
  .project-hero { border-radius: 15px; }
  .hero-copy { padding: 28px 22px 24px; }
  .hero-visual.estimate-visual { min-height: 300px; padding: 27px 22px 23px; }
  .estimate-total { margin-top: 23px; }
  .estimate-split { margin-top: 22px; }
  .estimate-split > div { grid-template-columns: 76px 1fr 29px; }
  .stats-row article { min-height: 94px; }
  .roadmap-card,
  .next-decisions,
  .requirements-card,
  .saved-products { padding: 20px; }
  .roadmap-layout { gap: 14px; }
  .vendor-card { padding: 17px; }
  .onboarding-form { padding: 20px; }
}

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

@media print {
  body { background: white; }
  .sidebar,
  .topbar,
  .mobile-nav,
  .modal-backdrop,
  .toast,
  .print-button { display: none !important; }
  .main { margin: 0; }
  .app-view { display: none !important; }
  .app-view[data-view="selections"] { display: block !important; }
}

.user-signup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  padding: 20px;
  display: grid;
  place-items: center;
  overflow-y: auto;
  background: rgba(4, 20, 27, 0.77);
  backdrop-filter: blur(12px);
}

.user-signup-backdrop[hidden] { display: none !important; }

.user-signup-entry {
  height: 40px;
  padding: 0 15px;
  border: 1px solid #a9bac0;
  border-radius: 10px;
  background: #f8fbfa;
  color: #204c55;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  transition: 160ms ease;
}

.user-signup-entry:hover {
  border-color: #6e9ba5;
  background: #e7f2f3;
  transform: translateY(-1px);
}

.user-signup-entry.signed-in {
  border-color: #b9d88a;
  background: #eff8df;
  color: #365d1c;
}

.user-signup-card {
  position: relative;
  width: min(520px, 100%);
  padding: 38px 42px 30px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(200, 255, 99, 0.18), transparent 14rem),
    #fffefa;
  color: var(--ink);
  box-shadow: 0 32px 100px rgba(4, 20, 27, 0.32);
}

.user-signup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid #d8dfda;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: #72817c;
  cursor: pointer;
  font-size: 21px;
  line-height: 1;
}

.user-signup-mark {
  position: relative;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.user-signup-mark::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: 2px;
  width: 13px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transform: rotate(45deg);
}

.user-signup-mark i {
  position: absolute;
  top: 7px;
  right: 5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #baff50;
}

.user-signup-eyebrow {
  margin: 0 0 9px;
  color: #628e29;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.user-signup-card h2 {
  max-width: 410px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(27px, 4vw, 34px);
  line-height: 1.08;
  letter-spacing: -1.5px;
}

.user-signup-copy {
  margin: 14px 0 24px;
  color: #6e7d78;
  font-size: 11px;
  line-height: 1.65;
}

.social-signup-actions { display: grid; gap: 9px; }
.social-signup-actions[hidden] { display: none !important; }

.social-signup-button {
  width: 100%;
  height: 44px;
  border: 1px solid #d5ddd8;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  background: white;
  color: #344c45;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
}

.social-signup-button[hidden] { display: none !important; }
.social-signup-button span { width: 20px; font-size: 14px; font-weight: 800; text-align: center; }
.social-signup-button.facebook span { color: #1877f2; font-family: Arial, sans-serif; font-size: 18px; }
.social-signup-button.google span { color: #4285f4; }

.signup-divider {
  margin: 7px 0 4px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #919c98;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .7px;
}

.signup-divider::before,
.signup-divider::after { content: ""; height: 1px; flex: 1; background: #e1e6e2; }

.user-signup-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.user-signup-fields label { display: grid; gap: 6px; }
.user-signup-fields label:nth-child(1), .user-signup-fields label:nth-child(2) { grid-column: span 1; }
.user-signup-fields label:nth-child(3) { grid-column: 1 / -1; }
.user-signup-fields label > span { color: #52655e; font-size: 9px; font-weight: 700; }
.user-signup-fields label small { color: #929d99; font-size: 8px; font-weight: 500; }
.user-signup-fields input {
  width: 100%;
  height: 43px;
  padding: 0 12px;
  border: 1px solid #d1dcd7;
  border-radius: 9px;
  background: white;
  color: var(--ink);
  font-size: 10px;
}

.user-signup-fields input:focus { border-color: #79adba; outline: 0; box-shadow: 0 0 0 3px rgba(143, 217, 236, .15); }
.signup-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0; }

.user-consent {
  margin-top: 15px;
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: start;
  gap: 9px;
  color: #71807b;
  cursor: pointer;
  font-size: 8px;
  line-height: 1.5;
}

.user-consent input { width: 15px; height: 15px; margin: 1px 0 0; accent-color: #74a832; }
.user-consent a,
.user-signup-privacy a { color: #477521; font-weight: 700; text-underline-offset: 2px; }
.user-signup-message { min-height: 15px; margin: 10px 0 0; color: #66813f; font-size: 8px; }
.user-signup-message.error { color: #a64635; }

.user-signup-submit {
  width: 100%;
  height: 45px;
  margin-top: 2px;
  border: 0;
  border-radius: 9px;
  background: #baff50;
  color: #102d26;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 11px 25px rgba(99, 151, 35, .18);
}

.user-signup-submit span { margin-left: 10px; }
.user-signup-submit:disabled { cursor: wait; opacity: .6; }
.user-signup-skip { width: 100%; margin-top: 13px; border: 0; background: transparent; color: #7d8a86; cursor: pointer; font-size: 9px; text-decoration: underline; text-underline-offset: 3px; }
.user-signup-privacy { margin-top: 18px; display: block; color: #7f8c87; font-size: 7px; line-height: 1.55; text-align: center; }

@media (max-width: 560px) {
  .user-signup-backdrop { padding: 10px; align-items: start; }
  .user-signup-card { margin: 10px 0; padding: 30px 22px 24px; border-radius: 17px; }
  .user-signup-mark { width: 42px; height: 42px; margin-bottom: 18px; }
  .user-signup-card h2 { padding-right: 18px; font-size: 27px; }
  .user-signup-fields { grid-template-columns: 1fr; }
  .user-signup-fields label:nth-child(1), .user-signup-fields label:nth-child(2), .user-signup-fields label:nth-child(3) { grid-column: auto; }
}

.vendor-signup-button {
  height: 40px;
  padding: 0 16px;
  border: 1px solid #b7d77b;
  border-radius: 10px;
  background: #eff8df;
  color: #365d1c;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.1px;
  white-space: nowrap;
  transition: 160ms ease;
}

.vendor-signup-button:hover {
  border-color: #86b936;
  background: var(--sage);
  color: #102b24;
  transform: translateY(-1px);
}

.vendor-signup-view > .back-link {
  margin-bottom: 18px;
}

.vendor-signup-hero {
  position: relative;
  min-height: 244px;
  padding: 38px 42px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: center;
  gap: 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 25%, rgba(143, 217, 236, 0.2), transparent 19rem),
    #08242d;
  color: white;
  box-shadow: 0 24px 65px rgba(8, 36, 45, 0.17);
}

.vendor-signup-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, black);
}

.vendor-signup-hero > * {
  position: relative;
  z-index: 1;
}

.vendor-signup-hero .eyebrow {
  color: var(--sage);
}

.vendor-signup-hero h1 {
  max-width: 720px;
  margin: 10px 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(31px, 3.4vw, 43px);
  line-height: 1.08;
  letter-spacing: -1.9px;
}

.vendor-signup-hero > div:first-child > p:last-of-type {
  max-width: 660px;
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.7;
}

.vendor-benefit-row {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vendor-benefit-row span {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.045);
  color: rgba(255,255,255,.72);
  font-size: 9px;
  font-weight: 600;
}

.vendor-benefit-row i {
  margin-right: 7px;
  color: var(--sage);
  font-style: normal;
}

.vendor-hero-mark {
  width: 210px;
  height: 210px;
  margin-left: auto;
  border: 1px solid rgba(200,255,99,.22);
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  box-shadow: 0 0 0 18px rgba(200,255,99,.035), 0 0 0 42px rgba(143,217,236,.025);
}

.vendor-hero-mark span,
.vendor-hero-mark small {
  color: rgba(255,255,255,.46);
  font-size: 8px;
  letter-spacing: 1.8px;
}

.vendor-hero-mark strong {
  color: var(--sage);
  font-family: "Manrope", sans-serif;
  font-size: 70px;
  font-weight: 500;
  line-height: .9;
}

.vendor-signup-layout {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
}

.vendor-signup-guide,
.vendor-application {
  border: 1px solid rgba(10, 37, 46, 0.1);
  border-radius: 16px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 12px 38px rgba(10, 37, 46, 0.045);
}

.vendor-signup-guide {
  position: sticky;
  top: 96px;
  padding: 30px;
}

.vendor-signup-guide h2,
.vendor-form-heading h2 {
  margin: 7px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -1px;
}

.vendor-signup-guide > p:nth-of-type(2) {
  margin: 0;
  color: #6d7a80;
  font-size: 10px;
  line-height: 1.65;
}

.vendor-signup-guide ol {
  margin: 26px 0;
  padding: 0;
  display: grid;
  gap: 19px;
  list-style: none;
}

.vendor-signup-guide li {
  display: grid;
  grid-template-columns: 31px 1fr;
  align-items: start;
  gap: 12px;
}

.vendor-signup-guide li > span {
  width: 31px;
  height: 31px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--sage-light);
  color: #507928;
  font-size: 9px;
  font-weight: 700;
}

.vendor-signup-guide li div {
  display: grid;
  gap: 4px;
}

.vendor-signup-guide li strong {
  font-size: 10px;
}

.vendor-signup-guide li small {
  color: #829097;
  font-size: 9px;
  line-height: 1.45;
}

.vendor-guide-note {
  padding: 15px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  background: #eff6e6;
  color: #436b25;
}

.vendor-guide-note > span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #78a937;
  color: white;
  font-size: 10px;
}

.vendor-guide-note p {
  margin: 0;
  font-size: 9px;
  line-height: 1.5;
}

.vendor-application {
  padding: 34px 38px;
  text-align: left;
}

.vendor-form-heading {
  margin-bottom: 28px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
}

.vendor-form-heading h2 {
  margin-bottom: 0;
}

.vendor-form-heading > span {
  color: #8a969b;
  font-size: 8px;
}

.vendor-form-success {
  margin-bottom: 25px;
  padding: 18px;
  border: 1px solid rgba(105, 151, 45, 0.25);
  border-radius: 11px;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 13px;
  background: #f1f8e8;
}

.vendor-form-success:not([hidden]) {
  display: grid;
}

.vendor-form-success > span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #6f9d33;
  color: white;
  font-size: 15px;
}

.vendor-form-success div {
  display: grid;
  gap: 4px;
}

.vendor-form-success strong {
  color: #36591d;
  font-size: 11px;
}

.vendor-form-success p {
  margin: 0;
  color: #637a51;
  font-size: 9px;
  line-height: 1.5;
}

.vendor-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 17px;
}

.vendor-field {
  display: grid;
  gap: 7px;
}

.vendor-field-full {
  grid-column: auto;
}

.vendor-field > span {
  color: #5f7077;
  font-size: 10px;
  font-weight: 600;
  text-align: left;
}

.vendor-field input,
.vendor-field select,
.vendor-field textarea {
  width: 100%;
  border: 1px solid #d5dfdb;
  border-radius: 9px;
  background: white;
  color: var(--ink);
  font-family: inherit;
  font-size: 12px;
  text-align: left;
  transition: 150ms ease;
}

.vendor-field input,
.vendor-field select {
  height: 45px;
  padding: 0 13px;
}

.vendor-field textarea {
  min-height: 92px;
  padding: 12px 13px;
  resize: vertical;
  font: inherit;
  line-height: 1.5;
}

.vendor-field input:focus,
.vendor-field select:focus,
.vendor-field textarea:focus {
  border-color: #73adbb;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(143, 217, 236, 0.14);
}

.vendor-field input::placeholder,
.vendor-field textarea::placeholder {
  color: #a8b0b3;
}

.vendor-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.vendor-consent {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 9px;
  cursor: pointer;
}

.vendor-consent input {
  position: absolute;
  opacity: 0;
}

.vendor-consent > span {
  width: 18px;
  height: 18px;
  border: 1px solid #cbd7d2;
  border-radius: 5px;
  background: white;
}

.vendor-consent input:checked + span {
  border-color: #638f2e;
  background: #79a93e;
  box-shadow: inset 0 0 0 4px white;
}

.vendor-consent p {
  margin: 1px 0 0;
  color: #78868b;
  font-size: 9px;
  line-height: 1.5;
}

.vendor-consent a { color: #477521; font-weight: 700; text-underline-offset: 2px; }

.vendor-form-footer {
  margin-top: 23px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

#vendor-signup-status {
  margin: 0;
  color: #7e8b90;
  font-size: 9px;
}

#vendor-signup-status.success { color: #507827; }
#vendor-signup-status.error { color: #a64635; }

.vendor-submit-button {
  min-width: 165px;
  height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 9px;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 12px 25px rgba(10, 37, 46, 0.17);
}

.vendor-submit-button span {
  margin-left: 10px;
  color: var(--sage);
}

.vendor-submit-button:disabled {
  cursor: wait;
  opacity: .64;
}

@media (max-width: 1050px) {
  .vendor-signup-hero { grid-template-columns: 1fr 190px; padding: 42px; }
  .vendor-hero-mark { width: 175px; height: 175px; }
  .vendor-signup-layout { grid-template-columns: 280px minmax(0, 1fr); }
}

@media (max-width: 900px) {
  .vendor-signup-layout { grid-template-columns: 1fr; }
  .vendor-signup-guide { position: static; }
}

@media (max-width: 800px) {
  .user-signup-entry { height: 34px; }
  .vendor-signup-button { height: 34px; }
  .vendor-signup-hero { grid-template-columns: 1fr; }
  .vendor-hero-mark { display: none; }
}

@media (max-width: 620px) {
  .user-signup-entry { padding: 0 10px; font-size: 9px; }
  .vendor-signup-button { padding: 0 11px; font-size: 9px; }
  .topbar-actions { gap: 6px; }
  .new-project { padding: 0 11px; font-size: 9px; }
  .vendor-signup-hero { min-height: 0; padding: 34px 24px; border-radius: 15px; }
  .vendor-signup-hero h1 { font-size: 32px; letter-spacing: -1.6px; }
  .vendor-benefit-row { align-items: stretch; flex-direction: column; }
  .vendor-signup-guide,
  .vendor-application { padding: 23px 20px; }
  .vendor-form-grid { grid-template-columns: 1fr; }
  .vendor-field-full { grid-column: auto; }
  .vendor-form-heading { align-items: flex-start; flex-direction: column; }
  .vendor-form-footer { align-items: stretch; flex-direction: column; }
  .vendor-submit-button { width: 100%; }
}

@media (max-width: 430px) {
  .new-project { display: none; }
  .user-signup-entry { font-size: 9px; }
  .vendor-signup-button { font-size: 9px; }
}

@media (max-height: 760px) and (min-width: 801px) {
  .onboarding-modal {
    width: min(760px, calc(100vw - 32px));
    grid-template-columns: 1fr;
  }

  .onboarding-art {
    display: none;
  }

  .onboarding-form {
    padding: 24px 34px 28px;
  }

  .form-heading {
    margin: 20px 0;
  }

  .form-actions {
    margin-top: 22px;
  }
}

.sidebar-help a {
  margin-top: 4px;
  display: inline-block;
  color: var(--sage);
  font-size: 8px;
  text-decoration: none;
}

.sidebar-help a:hover {
  text-decoration: underline;
}

.personal-greeting {
  margin: 6px 0 4px;
  color: #718087;
  font-size: 10px;
  font-weight: 650;
}

/* Marketplace-first product framing */
.side-nav .marketplace-nav {
  margin-bottom: 3px;
  border: 1px solid rgba(200, 255, 99, 0.18);
  background: rgba(200, 255, 99, 0.075);
  color: rgba(255, 255, 255, 0.84);
}

.side-nav .marketplace-nav b {
  width: auto;
  min-width: 34px;
  height: 18px;
  margin-left: auto;
  padding: 0 7px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sage);
  color: #09242d;
  font-size: 6px;
  letter-spacing: .7px;
}

.welcome-row {
  align-items: flex-start;
}

.welcome-row h1 {
  max-width: 720px;
  font-size: clamp(35px, 4.4vw, 58px);
  line-height: .98;
}

.welcome-row > div:first-child > p:last-of-type {
  max-width: 760px;
}

.welcome-actions {
  margin-top: 21px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.welcome-actions button {
  height: 44px;
  padding: 0 17px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
}

.welcome-actions button span {
  margin-left: 9px;
}

.welcome-primary {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  box-shadow: 0 12px 28px rgba(8, 30, 38, .16);
}

.welcome-primary span {
  color: var(--sage);
}

.welcome-secondary {
  border: 1px solid #c5d5cf;
  background: rgba(255,255,255,.76);
  color: #294f58;
}

.marketplace-lead {
  min-height: 390px;
  border: 1px solid rgba(8, 30, 38, .09);
  border-radius: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(350px, .88fr);
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 15%, rgba(200,255,99,.34), transparent 19rem),
    #f1f9e5;
  box-shadow: 0 22px 64px rgba(8, 30, 38, .1);
}

.marketplace-lead-copy {
  padding: 42px 44px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.marketplace-lead-copy .eyebrow {
  color: #4c7629;
  font-weight: 800;
}

.marketplace-lead-copy h2 {
  max-width: 680px;
  margin: 10px 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(31px, 4.1vw, 50px);
  line-height: 1.01;
  letter-spacing: -2.25px;
}

.marketplace-lead-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 0;
  color: #5f716c;
  font-size: 12px;
  line-height: 1.7;
}

.marketplace-search-launch {
  width: min(640px, 100%);
  min-height: 58px;
  margin-top: 26px;
  padding: 0 17px;
  border: 1px solid #cbd8d0;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 25px 1fr auto;
  align-items: center;
  gap: 8px;
  background: white;
  color: #6d7e78;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 12px 32px rgba(8, 30, 38, .08);
}

.marketplace-search-launch > span {
  color: #507061;
  font-size: 23px;
}

.marketplace-search-launch strong {
  font-size: 10px;
  font-weight: 600;
}

.marketplace-search-launch b {
  color: #2c555c;
  font-size: 9px;
}

.marketplace-category-row {
  margin-top: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.marketplace-category-row button {
  height: 29px;
  padding: 0 11px;
  border: 1px solid rgba(61,91,78,.16);
  border-radius: 15px;
  background: rgba(255,255,255,.45);
  color: #536b62;
  cursor: pointer;
  font-size: 7px;
  font-weight: 700;
}

.marketplace-preview {
  padding: 27px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  background:
    linear-gradient(rgba(143,217,236,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143,217,236,.055) 1px, transparent 1px),
    #09242d;
  background-size: 28px 28px;
  color: white;
}

.marketplace-preview-head {
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.marketplace-preview-head > div {
  display: grid;
  gap: 4px;
}

.marketplace-preview-head small {
  color: rgba(255,255,255,.38);
  font-size: 7px;
  letter-spacing: 1.3px;
}

.marketplace-preview-head strong {
  font-size: 14px;
}

.marketplace-preview-head > span {
  padding: 5px 7px;
  border: 1px solid rgba(200,255,99,.22);
  border-radius: 6px;
  color: var(--sage);
  font-size: 6px;
  letter-spacing: .9px;
}

.marketplace-preview > button {
  min-height: 69px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 11px;
  background: rgba(255,255,255,.055);
  color: white;
  cursor: pointer;
  text-align: left;
  transition: 160ms ease;
}

.marketplace-preview > button:hover {
  border-color: rgba(200,255,99,.25);
  background: rgba(200,255,99,.075);
  transform: translateX(2px);
}

.marketplace-preview > button i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(200,255,99,.12);
  color: var(--sage);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.marketplace-preview > button > span {
  display: grid;
  gap: 4px;
}

.marketplace-preview > button small {
  color: rgba(255,255,255,.36);
  font-size: 6px;
  letter-spacing: .8px;
}

.marketplace-preview > button strong {
  font-size: 10px;
}

.marketplace-preview > button b {
  color: var(--blue);
  font-size: 7px;
}

.marketplace-privacy-note {
  margin-top: 5px;
  padding: 12px 13px;
  border: 1px solid rgba(143,217,236,.11);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 9px;
  background: rgba(143,217,236,.055);
}

.marketplace-privacy-note > span {
  color: var(--blue);
  font-size: 17px;
}

.marketplace-privacy-note p {
  margin: 0;
  color: rgba(255,255,255,.46);
  font-size: 7px;
  line-height: 1.5;
}

.marketplace-privacy-note strong {
  color: rgba(255,255,255,.76);
}

.ai-estimator-hero {
  margin-top: 18px;
}

.vendor-results-subtitle {
  margin: 5px 0 0;
  color: #83908b;
  font-size: 8px;
}

.vendor-card.is-locked {
  min-height: 218px;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(200,255,99,.12), transparent 46%),
    white;
}

.vendor-card.is-locked .vendor-card-top {
  padding: 21px 20px 15px;
  grid-template-columns: 42px 1fr;
  align-items: center;
}

.vendor-card.is-locked .vendor-avatar {
  width: 42px;
  height: 42px;
  border: 1px solid #d8e5df;
  background: #f1f7f3;
}

.vendor-card.is-locked .vendor-card-top small {
  color: #71817a;
}

.vendor-card.is-locked .vendor-card-top h3 {
  margin-top: 5px;
  font-size: 13px;
}

.vendor-public-lock {
  margin-top: auto;
  padding: 17px 20px 20px;
  border-top: 1px solid #e4ebe6;
  background: rgba(242,247,243,.72);
}

.vendor-public-lock p {
  margin: 0 0 12px;
  color: #71817a;
  font-size: 8px;
  line-height: 1.55;
}

.vendor-public-lock button,
.vendor-contact-trigger,
.vendor-contact-disclosure > summary {
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--ink);
  border-radius: 9px;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-size: 8px;
  font-weight: 800;
}

.vendor-public-lock button span,
.vendor-contact-trigger span,
.vendor-contact-disclosure > summary span {
  margin-right: 7px;
  color: var(--sage);
}

.vendor-contact-trigger {
  margin-top: auto;
}

.vendor-contact-disclosure {
  margin-top: auto;
}

.vendor-contact-disclosure > summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.vendor-contact-disclosure > summary::-webkit-details-marker {
  display: none;
}

.vendor-contact-disclosure > summary b {
  font-size: 8px;
}

.vendor-contact-disclosure .when-open {
  display: none;
}

.vendor-contact-disclosure[open] .when-closed {
  display: none;
}

.vendor-contact-disclosure[open] .when-open {
  display: inline;
}

.vendor-contact-disclosure[open] > summary > span {
  transform: rotate(45deg);
}

.vendor-contact-panel {
  margin-top: 11px;
  padding: 13px;
  border: 1px solid #cfe0d8;
  border-radius: 10px;
  display: grid;
  gap: 10px;
  background: #f1f8f3;
}

.vendor-contact-panel > div {
  display: grid;
  gap: 3px;
}

.vendor-contact-panel small {
  color: #778881;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .8px;
}

.vendor-contact-panel strong,
.vendor-contact-panel a {
  color: #244d42;
  font-size: 9px;
  font-weight: 750;
  text-decoration: none;
}

.vendor-contact-actions {
  display: flex !important;
  grid-template-columns: none !important;
  flex-wrap: wrap;
  gap: 6px !important;
}

.vendor-contact-actions a {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid #c5d8cf;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  background: white;
  font-size: 7px;
}

.vendor-contact-missing {
  color: #75847e !important;
  font-weight: 600 !important;
}

.detail-vendor-locked {
  color: rgba(255,255,255,.42) !important;
}

@media (max-width: 1050px) {
  .marketplace-lead { grid-template-columns: minmax(0, 1fr) 380px; }
  .marketplace-lead-copy { padding: 38px 32px; }
}

@media (max-width: 800px) {
  .marketplace-lead { grid-template-columns: 1fr; }
  .marketplace-preview { min-height: 335px; }
  .welcome-row h1 { font-size: clamp(36px, 9vw, 52px); }
}

@media (max-width: 560px) {
  .welcome-actions { align-items: stretch; flex-direction: column; }
  .welcome-actions button { width: 100%; }
  .marketplace-lead { border-radius: 15px; }
  .marketplace-lead-copy { padding: 30px 21px 26px; }
  .marketplace-lead-copy h2 { font-size: 34px; letter-spacing: -1.7px; }
  .marketplace-search-launch { grid-template-columns: 23px 1fr; }
  .marketplace-search-launch b { display: none; }
  .marketplace-preview { min-height: 0; padding: 22px 17px; }
  .marketplace-preview > button { grid-template-columns: 38px 1fr; }
  .marketplace-preview > button b { display: none; }
  .vendor-card.is-locked { min-height: 205px; }
}

.saved-vendor-list .saved-vendor-contact {
  min-height: 31px;
  padding: 0 10px;
  border: 1px solid #c9d9d2;
  border-radius: 7px;
  background: #f4f9f6;
  color: #315d50;
  font-weight: 750;
}

.saved-vendor-list .vendor-contact-disclosure.is-compact {
  margin: 0;
  position: relative;
}

.saved-vendor-list .vendor-contact-disclosure.is-compact > summary {
  min-height: 31px;
  padding: 0 10px;
  border: 1px solid #c9d9d2;
  border-radius: 7px;
  background: #f4f9f6;
  color: #315d50;
}

.saved-vendor-list .vendor-contact-disclosure.is-compact > summary b {
  font-size: 7px;
}

.saved-vendor-list .vendor-contact-disclosure.is-compact > .vendor-contact-panel {
  position: absolute;
  right: 0;
  z-index: 3;
  width: min(330px, calc(100vw - 44px));
  box-shadow: 0 14px 34px rgba(8, 30, 38, .14);
}

.saved-vendor-list article > .vendor-contact-panel {
  grid-column: 2 / -1;
  width: 100%;
  padding: 11px;
}

.saved-vendor-list article.is-locked > div p {
  color: #75847e;
}

@media (max-width: 560px) {
  .saved-vendor-list .saved-vendor-contact { grid-column: 2 / 4; grid-row: auto; }
  .saved-vendor-list article > .vendor-contact-panel { grid-column: 1 / -1; }
}

.seo-explainer {
  width: min(1248px, calc(100% - 72px));
  margin: 0 auto 24px;
  padding: 42px;
  border: 1px solid rgba(10, 37, 46, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 0%, rgba(200, 255, 99, 0.16), transparent 24rem),
    #ffffff;
  box-shadow: 0 18px 50px rgba(10, 37, 46, 0.06);
}

.seo-explainer-heading {
  max-width: 760px;
}

.seo-explainer-heading h2 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: clamp(25px, 3vw, 38px);
  letter-spacing: -1.6px;
  line-height: 1.05;
}

.seo-explainer-heading > p:last-child {
  margin: 0;
  color: #64757c;
  font-size: 12px;
  line-height: 1.75;
}

.seo-explainer-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.seo-explainer-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(10, 37, 46, 0.09);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  background: #f8faf7;
}

.seo-explainer-grid article > span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--sage);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
}

.seo-explainer-grid h3 {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: 15px;
  letter-spacing: -0.3px;
}

.seo-explainer-grid p {
  margin: 0 0 18px;
  color: #6c7b81;
  font-size: 10px;
  line-height: 1.7;
}

.seo-explainer-grid a,
.seo-explainer-grid button {
  margin-top: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #477521;
  cursor: pointer;
  font: inherit;
  font-size: 9px;
  font-weight: 750;
  text-decoration: none;
}

.seo-explainer-grid a:hover,
.seo-explainer-grid button:hover {
  text-decoration: underline;
}

.seo-explainer-links {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(10, 37, 46, 0.08);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.seo-explainer-links strong {
  color: var(--ink);
  font-size: 9px;
}

.seo-explainer-links a {
  color: #5d7077;
  font-size: 9px;
  text-decoration: none;
}

.seo-explainer-links a:hover {
  color: #477521;
  text-decoration: underline;
}

.site-contact {
  width: min(1248px, calc(100% - 72px));
  margin: 0 auto 34px;
  padding: 18px 22px;
  border: 1px solid rgba(10, 37, 46, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.62);
}

.site-contact div {
  display: grid;
  gap: 3px;
}

.site-contact strong {
  font-size: 10px;
}

.site-contact span {
  color: #7a898f;
  font-size: 9px;
}

.site-contact a {
  color: #477521;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}

.site-contact a:hover {
  text-decoration: underline;
}

.site-contact nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.site-contact .social-links {
  gap: 8px;
}

.site-contact .social-links a {
  min-height: 32px;
  padding: 5px 10px 5px 6px;
  border: 1px solid rgba(10, 37, 46, 0.1);
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.75);
  color: #53666d;
  font-size: 9px;
}

.site-contact .social-links a:hover {
  border-color: rgba(71, 117, 33, 0.35);
  color: #477521;
  text-decoration: none;
}

.site-contact .social-links span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--sage);
  font-size: 7px;
  font-weight: 800;
}

@media (max-width: 800px) {
  .seo-explainer {
    width: auto;
    margin: 0 18px 24px;
    padding: 30px 24px;
  }

  .seo-explainer-grid {
    grid-template-columns: 1fr;
  }

  .seo-explainer-grid article {
    min-height: 0;
  }

  .site-contact {
    width: auto;
    margin: 0 18px 82px;
  }

  .site-contact .social-links { width: 100%; justify-content: flex-start; }
}

@media (max-width: 520px) {
  .site-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .site-contact nav { justify-content: flex-start; gap: 12px; }

  .site-contact .social-links { width: 100%; }
}

@media print {
  .seo-explainer,
  .site-contact { display: none !important; }
}
