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

:root {
  --ink: #171813;
  --paper: #f4f1e8;
  --white: #fffdf7;
  --lime: #c8f45d;
  --lime-dark: #a9d936;
  --muted: #686a5f;
  --line: #d6d3c8;
  --coral: #de9478;
  --sky: #8fd4eb;
  --shadow: 0 24px 70px rgba(23, 24, 19, 0.13);
}

* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  scroll-behavior: smooth;
  font-size: 17px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, select {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  line-height: 1.65;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 99;
  background: var(--lime);
  padding: 0.75rem 1rem;
  font-weight: 800;
}
.skip-link:focus {
  top: 1rem;
}

.site-header {
  height: 78px;
  display: flex;
  align-items: center;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--ink);
  color: var(--white);
  gap: 3rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}
.brand-wordmark > span {
  color: var(--lime);
}
.brand-symbol {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  color: var(--lime);
  overflow: visible;
}
.brand-symbol-check {
  stroke: var(--ink);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header-login {
  color: #d9d9d1;
  font-size: 0.8rem;
  font-weight: 800;
}
.header-login:hover {
  color: var(--lime);
}
.header-cta {
  min-height: 44px;
  border-color: rgba(200, 244, 93, 0.72);
  background: rgba(200, 244, 93, 0.12);
  color: #edffc4;
  white-space: nowrap;
}
.header-cta:hover {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.2);
}
.header-cta:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}
.site-header nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
.site-header nav a {
  color: #c9c9c2;
  font-size: 0.86rem;
  font-weight: 600;
}
.site-header nav a:hover {
  color: var(--lime);
}

.button {
  min-height: 52px;
  padding: 0 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 3px;
  font-weight: 800;
  cursor: pointer;
  gap: 1rem;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}
.button:hover {
  transform: translateY(-2px);
}
.button:disabled, .button[aria-busy="true"] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}
.button.is-loading::before {
  width: 0.9rem;
  height: 0.9rem;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
  animation: button-spin 0.7s linear infinite;
}
@keyframes button-spin {
  to {
    transform: rotate(360deg);
  }
}
.page-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 3px;
  pointer-events: none;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.15s;
}
.page-progress span {
  display: block;
  width: 35%;
  height: 100%;
  background: var(--lime);
  transform: translateX(-120%);
}
.is-navigating .page-progress {
  opacity: 1;
}
.is-navigating .page-progress span {
  animation: page-progress 1.1s ease-in-out infinite;
}
@keyframes page-progress {
  50% {
    transform: translateX(180%);
  }
  100% {
    transform: translateX(420%);
  }
}
.button-primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 7px 0 rgba(0, 0, 0, 0.16);
}
.button-primary:hover {
  background: #d5ff72;
  box-shadow: 0 9px 0 rgba(0, 0, 0, 0.18);
}
.button-ink {
  color: var(--white);
  background: var(--ink);
}
.button-outline {
  border-color: var(--ink);
  background: transparent;
}
.button-danger {
  border-color: #f58d79;
  background: #f58d79;
  color: #251915;
}
.button-danger:hover {
  background: #ffa18f;
}
.button-small {
  min-height: 40px;
  padding: 0 1rem;
  font-size: 0.8rem;
}
.button-full {
  width: 100%;
}
.kicker {
  margin: 0 0 1.25rem;
  color: var(--lime);
  font: 500 0.72rem/1.2 "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.kicker.dark {
  color: #4c6a10;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 0.3rem;
}
.dark-link {
  border-bottom-color: #888;
}

.hero {
  min-height: 690px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  background: var(--ink);
  color: var(--white);
  padding: 7rem clamp(1.25rem, 6vw, 7rem) 7.5rem;
}
.hero::before {
  content: "";
  position: absolute;
  left: -8%;
  bottom: -53%;
  width: 65%;
  aspect-ratio: 1;
  border: 1px solid rgba(200, 244, 93, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(200, 244, 93, 0.03), 0 0 0 140px rgba(200, 244, 93, 0.025);
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero h1, .directory-hero h1, .pricing-hero h1 {
  margin: 0;
  font-size: clamp(3.5rem, 6.4vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}
.hero h1 em, .directory-hero h1 em, .pricing-hero h1 em, .closing-cta h2 em {
  color: var(--lime);
  font-style: normal;
}
.hero-lede {
  max-width: 640px;
  margin: 2rem 0 2.2rem;
  color: #c8c8c0;
  font-size: 1.08rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.trust-row {
  display: flex;
  gap: 1.35rem;
  margin-top: 2.7rem;
  color: #a9aaa1;
  font: 500 0.68rem "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.trust-row b {
  color: var(--lime);
  margin-right: 0.35rem;
}
.hero-art {
  position: relative;
  min-height: 460px;
}
.contract-card {
  position: absolute;
  border-radius: 5px;
}
.card-main {
  z-index: 2;
  top: 22px;
  left: 10%;
  width: 410px;
  min-height: 340px;
  padding: 2rem;
  color: var(--ink);
  background: var(--white);
  box-shadow: 20px 24px 0 rgba(0, 0, 0, 0.2);
  transform: rotate(2deg);
}
.card-main::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.23;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.03) 4px
  );
}
.card-top {
  display: flex;
  justify-content: space-between;
  font: 500 0.63rem "DM Mono";
  letter-spacing: 0.09em;
}
.card-top i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime-dark);
  box-shadow: 0 0 0 5px rgba(169, 217, 54, 0.25);
}
.card-main > p {
  margin: 4.7rem 0 0.3rem;
  color: var(--muted);
  font-size: 0.8rem;
}
.card-main > strong {
  font-size: 4.4rem;
  letter-spacing: -0.07em;
}
.mini-chart {
  height: 70px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 1.8rem 0 1rem;
  border-bottom: 1px solid #cbc9c0;
}
.mini-chart span {
  flex: 1;
  background: var(--ink);
}
.mini-chart span:nth-child(1) {
  height: 30%;
}
.mini-chart span:nth-child(2) {
  height: 45%;
}
.mini-chart span:nth-child(3) {
  height: 42%;
}
.mini-chart span:nth-child(4) {
  height: 60%;
}
.mini-chart span:nth-child(5) {
  height: 67%;
}
.mini-chart span:nth-child(6) {
  height: 80%;
}
.mini-chart span:nth-child(7) {
  height: 94%;
  background: var(--lime-dark);
}
.card-foot {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font: 500 0.63rem "DM Mono";
  text-transform: uppercase;
}
.card-back {
  z-index: 1;
  left: 22%;
  bottom: 7px;
  width: 350px;
  height: 180px;
  padding: 2rem;
  background: var(--coral);
  color: var(--ink);
  transform: rotate(-5deg);
}
.card-back span, .card-back small {
  display: block;
  font: 500 0.62rem "DM Mono";
  text-transform: uppercase;
}
.card-back strong {
  display: block;
  margin: 0.7rem 0 0.2rem;
  font-size: 2.8rem;
}
.margin-stamp {
  position: absolute;
  z-index: 3;
  right: 0;
  top: 41%;
  width: 145px;
  height: 145px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  transform: rotate(10deg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}
.margin-stamp small, .margin-stamp span {
  font: 500 0.58rem "DM Mono";
  text-transform: uppercase;
}
.margin-stamp strong {
  font-size: 2.4rem;
  letter-spacing: -0.06em;
}
.scribble {
  position: absolute;
  right: 0;
  bottom: 1rem;
  font: italic 1rem Georgia, serif;
  color: #dfdfd4;
  transform: rotate(-5deg);
}
.scribble span {
  color: var(--lime);
  font-size: 2rem;
}

.proof-strip {
  min-height: 78px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.1rem;
  padding: 1rem 2rem;
  background: var(--lime);
  font-size: 0.85rem;
}
.proof-strip > span {
  font: 500 0.68rem "DM Mono";
  text-transform: uppercase;
}
.proof-strip strong {
  font-size: 0.9rem;
}
.proof-strip i {
  opacity: 0.35;
  font-style: normal;
}
.page-wrap {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 6rem auto;
}

.calculator-shell {
  background: var(--white);
  border: 1px solid #dfdcd1;
  box-shadow: var(--shadow);
}
.calculator-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2.2rem 2.5rem 1.8rem;
  border-bottom: 1px solid var(--line);
}
.calculator-head .kicker {
  margin-bottom: 0.7rem;
}
.calculator-head h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  letter-spacing: -0.05em;
}
.calculator-intro {
  max-width: 540px;
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}
.calculator-edit-context {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
  padding: 0.48rem 0.7rem;
  border: 1px solid #b7dd55;
  border-radius: 5px;
  background: rgba(200, 244, 93, 0.18);
  color: #4e651c;
  font-size: 0.7rem;
}
.calculator-edit-context svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}
.calculator-edit-context span {
  font: 500 0.61rem "DM Mono";
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.calculator-edit-context strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--ink);
  font-size: 0.72rem;
}
.privacy-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font: 500 0.64rem "DM Mono";
  text-transform: uppercase;
}
.privacy-pill b {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime-dark);
  box-shadow: 0 0 0 4px rgba(169, 217, 54, 0.22);
}
.calculator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(330px, 0.7fr);
}
.bid-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  padding: 2.5rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.field-wide {
  grid-column: 1 / -1;
}
.field label {
  display: flex;
  justify-content: space-between;
  color: #34362f;
  font-size: 0.8rem;
  font-weight: 800;
}
.field label span {
  color: #85877e;
  font: 500 0.65rem "DM Mono";
  text-transform: uppercase;
}
.field input, .field select, .money-input {
  width: 100%;
  height: 48px;
  border: 1px solid #ccc9be;
  border-radius: 2px;
  background: #faf8f1;
  color: var(--ink);
}
.field input, .field select {
  padding: 0 0.8rem;
}
.field input:focus, .field select:focus {
  outline: 3px solid rgba(200, 244, 93, 0.55);
  border-color: #789c28;
}
.field small {
  color: #83857d;
  font-size: 0.71rem;
}
.assumptions-panel {
  border: 1px solid #cbc8bc;
  background: #f5f2e9;
}
.assumptions-panel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
  list-style-position: inside;
}
.assumptions-panel summary small {
  margin-left: auto;
  color: #777a70;
  font-size: 0.7rem;
  font-weight: 500;
}
.assumptions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  padding: 0.4rem 1.1rem 1.2rem;
}
.assumption-readout {
  display: grid;
  align-content: center;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid #d5d1c5;
  background: var(--white);
}
.assumption-readout span {
  color: #74766e;
  font: 500 0.6rem "DM Mono";
  text-transform: uppercase;
}
.assumption-readout strong {
  font-size: 1rem;
}
.assumption-readout small {
  color: #7b7d74;
  font-size: 0.65rem;
}
.methodology-note {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
  color: #6e7068;
  font-size: 0.65rem;
}
.methodology-note a {
  margin-left: 0.8rem;
  border-bottom: 1px solid currentColor;
  color: #506b19;
  font-weight: 700;
}
.money-input {
  display: flex;
  align-items: center;
}
.money-input span {
  padding-left: 0.8rem;
  color: #777970;
}
.money-input input {
  border: 0;
  background: transparent;
}
.money-input:focus-within {
  outline: 3px solid rgba(200, 244, 93, 0.55);
  border-color: #789c28;
}
.bid-result {
  min-height: 510px;
  padding: 2.5rem;
  background: var(--ink);
  color: var(--white);
}
.result-label {
  margin: 0;
  color: #a9aaa3;
  font: 500 0.71rem "DM Mono";
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.result-price {
  margin-top: 0.4rem;
  color: var(--lime);
  font-size: clamp(3rem, 5vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.08em;
}
.result-note {
  margin: -0.3rem 0 2rem;
  color: #85877e;
  font-size: 0.74rem;
}
.result-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #373832;
  border: 1px solid #373832;
}
.result-stats div {
  padding: 1rem;
  background: #20211c;
}
.result-stats span, .result-stats strong {
  display: block;
}
.result-stats span {
  margin-bottom: 0.3rem;
  color: #8f9188;
  font: 500 0.62rem "DM Mono";
  text-transform: uppercase;
}
.result-stats strong {
  font-size: 1.05rem;
}
.cost-bar {
  height: 9px;
  display: flex;
  margin: 1.8rem 0 0.7rem;
  border-radius: 4px;
  overflow: hidden;
  background: var(--lime);
}
.cost-bar span {
  height: 100%;
}
.cost-bar .labor {
  background: #777b6e;
}
.cost-bar .other {
  background: var(--coral);
}
.cost-bar .profit {
  flex: 1;
  background: var(--lime);
}
.cost-key {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
  color: #92948b;
  font-size: 0.62rem;
}
.cost-key span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.cost-key i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.key-labor {
  background: #777b6e;
}
.key-other {
  background: var(--coral);
}
.key-profit {
  background: var(--lime);
}
.mini-trust {
  margin: 0.8rem 0 0;
  color: #82847b;
  text-align: center;
  font-size: 0.62rem;
}

.proposal-dialog {
  width: min(960px, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  padding: 0;
  border: 0;
  border-radius: 5px;
  background: var(--paper);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
}
.proposal-dialog[open] {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}
.proposal-dialog::backdrop {
  background: rgba(16, 17, 13, 0.72);
  backdrop-filter: blur(3px);
}
.dialog-close {
  position: absolute;
  z-index: 4;
  right: 1rem;
  top: 1rem;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: currentColor;
  font-size: 1.5rem;
  cursor: pointer;
}
.proposal-preview {
  position: relative;
  min-height: 580px;
  padding: 3rem;
  overflow: hidden;
  background: var(--white);
}
.proposal-topline {
  display: flex;
  justify-content: space-between;
  border-bottom: 3px solid var(--ink);
  padding-bottom: 0.7rem;
  font: 500 0.63rem "DM Mono";
  letter-spacing: 0.08em;
}
.proposal-overline {
  margin: 3.5rem 0 0.2rem;
  color: var(--muted);
  font: 500 0.63rem "DM Mono";
  text-transform: uppercase;
}
.proposal-preview h3 {
  margin: 0;
  font-size: 2.3rem;
  letter-spacing: -0.05em;
}
.proposal-subtitle {
  margin-top: 0.4rem;
  color: var(--muted);
}
.proposal-price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 2.5rem 0;
  border: 1px solid var(--line);
}
.proposal-price-row div {
  padding: 1.2rem;
}
.proposal-price-row div + div {
  border-left: 1px solid var(--line);
}
.proposal-price-row span, .proposal-price-row strong {
  display: block;
}
.proposal-price-row span {
  color: var(--muted);
  font-size: 0.65rem;
}
.proposal-price-row strong {
  margin-top: 0.3rem;
  font-size: 1.6rem;
}
.proposal-preview h4 {
  margin-bottom: 0.7rem;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.proposal-preview ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding: 0;
  list-style: none;
  font-size: 0.76rem;
}
.proposal-preview li::before {
  content: "✓";
  margin-right: 0.45rem;
  color: #6b8d24;
  font-weight: 800;
}
.watermark {
  position: absolute;
  right: -2rem;
  bottom: 5rem;
  color: rgba(23, 24, 19, 0.04);
  font-size: 7rem;
  font-weight: 800;
  transform: rotate(-15deg);
}
.proposal-upsell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  background: var(--ink);
  color: var(--white);
}
.proposal-upsell h3 {
  margin: 0;
  font-size: 2.2rem;
  letter-spacing: -0.05em;
  line-height: 1.05;
}
.proposal-upsell > p:not(.kicker) {
  color: #aaaca3;
}
.proposal-upsell small {
  margin-top: 0.8rem;
  color: #8d8f86;
  text-align: center;
}

.problem-section {
  padding: 8rem clamp(1.25rem, 7vw, 8rem);
  background: var(--ink);
  color: var(--white);
}
.section-intro {
  max-width: 790px;
}
.section-intro h2,
.section-heading-row h2,
.facility-section > h2,
.content-main h2,
.faq-section > h2,
.related-section > h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.6vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.065em;
}
.section-intro > p:last-child {
  max-width: 650px;
  color: #a9aaa3;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 5rem;
  background: #3d3e38;
  border: 1px solid #3d3e38;
}
.process-grid article {
  position: relative;
  min-height: 325px;
  padding: 2rem;
  background: #20211c;
}
.process-grid article > span {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #686a62;
  font: 500 0.65rem "DM Mono";
}
.process-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 4.5rem;
  border: 1px solid #5f6259;
  border-radius: 50%;
  color: var(--lime);
  font-size: 1.6rem;
}
.process-grid h3 {
  margin: 0;
  font-size: 1.25rem;
}
.process-grid p {
  color: #96988f;
  font-size: 0.82rem;
}

.facility-section {
  padding: 8rem clamp(1.25rem, 7vw, 8rem);
}
.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}
.section-heading-row .kicker {
  margin-bottom: 0.8rem;
}
.facility-grid, .directory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.facility-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.6rem;
  border: 1px solid #d7d4c9;
  background: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
}
.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(23, 24, 19, 0.1);
}
.facility-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 2.7rem;
  border-radius: 50%;
  background: var(--tone, var(--lime));
  font: 500 1.4rem "DM Mono";
}
.facility-card span {
  color: var(--muted);
  font: 500 0.61rem "DM Mono";
  text-transform: uppercase;
}
.facility-card h3 {
  margin: 0.5rem 0;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}
.facility-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.75rem;
}
.facility-card strong {
  font-size: 0.73rem;
}
.tone-lime {
  --tone: var(--lime);
}
.tone-coral {
  --tone: var(--coral);
}
.tone-sky {
  --tone: var(--sky);
}
.tone-violet {
  --tone: #c4aff3;
}
.tone-gold {
  --tone: #f4cf63;
}
.tone-blue {
  --tone: #95b8f4;
}
.tone-pink {
  --tone: #f4aed0;
}
.tone-orange {
  --tone: #f5a664;
}
.tone-mint {
  --tone: #8ddac4;
}
.tone-red {
  --tone: #ef817c;
}
.tone-teal {
  --tone: #71c3c2;
}
.tone-slate {
  --tone: #aeb7ba;
}

.closing-cta {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 6rem;
  align-items: center;
  padding: 7rem clamp(1.25rem, 7vw, 8rem);
  background: var(--coral);
}
.closing-cta .kicker {
  color: #693124;
}
.closing-cta h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}
.closing-cta h2 em {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 5px;
  text-underline-offset: 8px;
}
.closing-cta p {
  max-width: 600px;
}
.lead-form {
  padding: 2rem;
  background: var(--white);
  box-shadow: 13px 13px 0 rgba(23, 24, 19, 0.17);
}
.lead-form label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 800;
}
.lead-form > div {
  display: flex;
}
.lead-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--ink);
  padding: 0 1rem;
}
.lead-form .button {
  border-radius: 0;
  box-shadow: none;
}
.lead-form > p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.65rem;
}

.directory-hero, .pricing-hero {
  padding: 7rem clamp(1.25rem, 7vw, 8rem);
  background: var(--ink);
  color: var(--white);
  text-align: center;
}
.directory-hero p:last-child, .pricing-hero p:last-child {
  max-width: 720px;
  margin: 2rem auto 0;
  color: #aeb0a6;
}
.directory-grid {
  padding: 5rem clamp(1.25rem, 7vw, 8rem) 8rem;
}
.directory-grid .facility-card {
  min-height: 330px;
}

.tool-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  padding: 5rem clamp(1.25rem, 7vw, 8rem) 9rem;
  background: var(--ink);
  color: var(--white);
}
.tool-hero > div:first-child {
  max-width: 880px;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 3rem;
  color: #888a81;
  font-size: 0.65rem;
}
.breadcrumbs a:hover {
  color: var(--lime);
}
.tool-hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}
.tool-hero > div > p:not(.kicker) {
  max-width: 720px;
  color: #aeb0a7;
}
.tool-tags {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.tool-tags span {
  border: 1px solid #55574f;
  padding: 0.5rem 0.7rem;
  color: #bfc1b8;
  font: 500 0.58rem "DM Mono";
  text-transform: uppercase;
}
.big-facility-icon {
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--tone);
  color: var(--ink);
  font: 500 4.5rem "DM Mono";
  box-shadow: 18px 18px 0 rgba(0, 0, 0, 0.25);
  transform: rotate(4deg);
}
.tool-wrap {
  position: relative;
  z-index: 2;
  margin-top: -4rem;
}
.content-section {
  width: min(1120px, calc(100% - 2.5rem));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 5rem;
  margin: 8rem auto;
}
.content-main h2 {
  margin: 4.5rem 0 1.5rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
}
.content-main > p {
  color: var(--muted);
}
.scope-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.scope-columns > div {
  padding: 1.6rem;
  border: 1px solid var(--line);
  background: var(--white);
}
.scope-columns h3 {
  margin-top: 0;
}
.check-list, .alert-list {
  padding: 0;
  list-style: none;
}
.check-list li, .alert-list li {
  position: relative;
  margin: 0.8rem 0;
  padding-left: 1.7rem;
  color: #55574f;
  font-size: 0.8rem;
}
.check-list li::before, .alert-list li::before {
  position: absolute;
  left: 0;
  top: -0.08rem;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(169, 217, 54, 0.22);
  color: #5f7d1e;
  content: "✓";
  font-size: 0.68rem;
  font-weight: 800;
}
.alert-list li::before {
  content: "?";
  background: rgba(255, 140, 107, 0.2);
  color: #9c4b35;
}
.check-list.compact {
  margin: 1.2rem 0 2rem;
}
.formula-steps {
  padding: 0;
  list-style: none;
  counter-reset: formula;
}
.formula-steps li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  counter-increment: formula;
}
.formula-steps strong::before {
  content: "0" counter(formula) "  ";
  color: #839e47;
  font: 500 0.65rem "DM Mono";
}
.formula-steps span {
  color: var(--muted);
  font-size: 0.82rem;
}
.callout {
  padding: 1.5rem;
  border-left: 5px solid var(--lime-dark);
  background: #e8e5da;
}
.content-aside {
  position: sticky;
  top: 1.5rem;
  height: max-content;
  padding: 1.8rem;
  background: var(--ink);
  color: var(--white);
}
.aside-label {
  display: block;
  margin-bottom: 0.4rem;
  color: #999b92;
  font: 500 0.62rem "DM Mono";
  text-transform: uppercase;
}
.content-aside > strong {
  font-size: 2rem;
}
.content-aside dl {
  margin: 1.5rem 0;
}
.content-aside dl div {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid #373832;
  font-size: 0.73rem;
}
.content-aside dt {
  color: #999b92;
}
.content-aside dd {
  margin: 0;
  font-weight: 700;
}
.faq-section {
  width: min(900px, calc(100% - 2.5rem));
  margin: 8rem auto;
}
.faq-section > h2 {
  margin-bottom: 2.5rem;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}
.faq-section details {
  border-top: 1px solid #bdbbb1;
}
.faq-section details:last-child {
  border-bottom: 1px solid #bdbbb1;
}
.faq-section summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}
.faq-section summary::-webkit-details-marker {
  display: none;
}
.faq-section summary span {
  color: #7d9c39;
  font-size: 1.5rem;
}
.faq-section details p {
  max-width: 750px;
  margin-top: 0;
  color: var(--muted);
  font-size: 0.85rem;
}
.related-section {
  padding: 6rem clamp(1.25rem, 7vw, 8rem);
  background: #e3e0d5;
}
.related-section > h2 {
  margin-bottom: 2.5rem;
  font-size: 2.8rem;
}
.related-section > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #c8c5ba;
}
.related-section a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 1.2rem;
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}
.related-section a > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
}
.related-section a b {
  color: #7e9d39;
}

.pricing-grid {
  width: min(1150px, calc(100% - 2.5rem));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 1rem;
  margin: -3rem auto 5rem;
  position: relative;
  z-index: 2;
}
.pricing-grid-live {
  width: min(780px, calc(100% - 2.5rem));
  grid-template-columns: repeat(2, 1fr);
}
.pricing-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.2rem;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 15px 40px rgba(23, 24, 19, 0.08);
}
.pricing-grid .featured-plan {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-1rem);
}
.plan-name {
  font: 500 0.68rem "DM Mono";
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.plan-price {
  margin: 1.5rem 0 0.5rem;
}
.plan-price strong {
  font-size: 3.6rem;
  letter-spacing: -0.07em;
}
.plan-price small {
  color: var(--muted);
}
.pricing-grid article > p {
  min-height: 52px;
  color: var(--muted);
  font-size: 0.8rem;
}
.featured-plan > p, .featured-plan .check-list li {
  color: #afb1a8 !important;
}
.pricing-grid ul {
  min-height: 190px;
  margin-bottom: 2rem;
}
.plan-legal {
  display: block;
  margin-top: 1rem;
  color: #9ea096;
  font-size: 0.68rem;
  line-height: 1.55;
  text-align: center;
}
.plan-legal a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.popular {
  position: absolute;
  right: 1.4rem;
  top: 1.4rem;
  padding: 0.4rem 0.5rem;
  background: var(--lime);
  color: var(--ink);
  font: 500 0.55rem "DM Mono";
}
.pricing-note {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  border-top: 1px solid var(--line);
}
.pricing-note span {
  color: var(--muted);
}
.not-found {
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.not-found > span {
  color: #839e47;
  font: 500 1rem "DM Mono";
}

.auth-page {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 5rem 1.25rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(200, 244, 93, 0.22), transparent 30%),
    var(--paper);
}
.auth-card {
  width: min(510px, 100%);
  padding: 2.7rem;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 14px 14px 0 rgba(23, 24, 19, 0.11);
}
.auth-card h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}
.auth-card > p:not(.kicker) {
  color: var(--muted);
}
.auth-form {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.7rem;
}
.auth-form label {
  font-size: 0.75rem;
  font-weight: 800;
}
.auth-form input {
  height: 52px;
  border: 1px solid var(--ink);
  padding: 0 1rem;
  background: #fbfaf5;
}
.auth-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.7rem;
}
.welcome-check {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: var(--lime);
  font-weight: 900;
  font-size: 1.5rem;
}
.welcome-page .auth-card > small {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
  text-align: center;
}

.onboarding-page {
  min-height: 100svh;
  padding: 1.15rem clamp(1rem, 4vw, 4rem) 1.5rem;
  background:
    radial-gradient(circle at 85% 8%, rgba(200, 244, 93, 0.32), transparent 25rem),
    linear-gradient(145deg, #f8f5ec 0%, #eeeadf 100%);
}
.onboarding-header {
  width: min(1040px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 0.72rem;
}
.onboarding-header .brand-wordmark {
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}
.onboarding-header .brand-wordmark::after {
  color: #86ad24;
  content: ".";
}
.onboarding-form {
  width: min(720px, 100%);
  margin-inline: auto;
}
.onboarding-intro {
  margin-bottom: 1.25rem;
}
.onboarding-intro h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}
.onboarding-intro > p:last-child {
  max-width: 590px;
  margin: 0.8rem 0 0;
  color: var(--muted);
}
.onboarding-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 0 1rem;
  padding: 0;
  color: #85877d;
  font: 500 0.65rem "DM Mono", monospace;
  list-style: none;
  text-transform: uppercase;
}
.onboarding-progress li {
  position: relative;
  padding-top: 1rem;
  border-top: 2px solid #d2d0c5;
}
.onboarding-progress li[aria-current="step"], .onboarding-progress li.is-complete {
  border-color: #789c22;
  color: var(--ink);
}
.onboarding-progress li[aria-current="step"]::before {
  position: absolute;
  width: 10px;
  height: 10px;
  left: 0;
  top: -6px;
  border: 2px solid #f3f0e6;
  border-radius: 50%;
  background: #789c22;
  content: "";
}
.onboarding-steps {
  display: grid;
  gap: 1rem;
}
.onboarding-steps fieldset {
  display: block;
  margin: 0;
  padding: clamp(1.5rem, 4vw, 2rem);
  border: 1px solid #cfccbf;
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 22px 60px rgba(23, 24, 19, 0.1);
}
.onboarding-steps legend {
  width: 100%;
  max-width: 610px;
  float: left;
  margin: 0 0 1.35rem;
  padding: 0;
  color: var(--ink);
  font-size: clamp(1.55rem, 4vw, 2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.onboarding-steps legend + * {
  clear: both;
}
.onboarding-steps label {
  display: grid;
  gap: 0.55rem;
  color: #484a42;
  font-size: 0.72rem;
  font-weight: 800;
}
.onboarding-steps label > span {
  color: var(--muted);
  font-weight: 500;
}
.onboarding-steps input:not([type="radio"]):not([type="color"]),
.onboarding-steps textarea {
  width: 100%;
  border: 1px solid #bdbbae;
  border-radius: 4px;
  padding: 0.9rem 1rem;
  background: #fffef9;
  color: var(--ink);
  font-size: 1rem;
  outline: 0;
}
.onboarding-steps input:not([type="radio"]):not([type="color"]) {
  min-height: 56px;
}
.onboarding-steps textarea {
  resize: vertical;
}
.onboarding-steps input:focus, .onboarding-steps textarea:focus {
  border-color: #607f19;
  box-shadow: 0 0 0 3px rgba(120, 156, 34, 0.18);
}
.onboarding-steps > fieldset > small {
  display: block;
  margin-top: 0.8rem;
  color: var(--muted);
}
.onboarding-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}
.onboarding-actions > p {
  margin: 0;
  color: var(--muted);
  font: 500 0.68rem "DM Mono", monospace;
}
.onboarding-actions > div {
  display: flex;
  gap: 0.75rem;
}
.onboarding-actions .button {
  min-width: 120px;
}

.palette-picker {
  display: grid;
  gap: 1rem;
}
.palette-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.palette-option {
  position: relative;
  min-height: 130px;
  display: flex;
  align-content: flex-start;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.85rem;
  border: 1px solid #cbc8bb;
  border-radius: 6px;
  background: #fffef9;
  cursor: pointer;
}
.palette-option:has(input:checked) {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px var(--ink);
}
.palette-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.palette-option:has(input:focus-visible) {
  outline: 3px solid rgba(120, 156, 34, 0.35);
  outline-offset: 2px;
}
.palette-option strong {
  font-size: 0.78rem;
}
.palette-option small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 500;
  line-height: 1.35;
}
.palette-swatches {
  height: 42px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  overflow: hidden;
  border-radius: 3px;
}
.palette-swatches i {
  display: block;
}
.palette-custom-mark {
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px dashed #aaa89d;
  border-radius: 3px;
  color: #6d8c28;
  font-size: 1.5rem;
}
.custom-color-controls {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #cbc8bb;
  border-radius: 6px;
  background: #fffef9;
}
.custom-color-controls:not([hidden]) {
  display: grid;
}
.custom-color-controls input[type="color"] {
  width: 100%;
  height: 48px;
  border: 1px solid #cbc8bb;
  padding: 0.25rem;
  background: white;
}

.brand-settings-page {
  min-height: 100vh;
  padding: clamp(2rem, 5vw, 5rem) 1.25rem;
  background:
    radial-gradient(circle at 85% 10%, rgba(200, 244, 93, 0.25), transparent 28%),
    var(--paper);
}
.brand-settings-page > header, .brand-settings-form {
  width: min(850px, 100%);
  margin-inline: auto;
}
.brand-settings-page > header {
  margin-bottom: 2rem;
}
.brand-settings-page > header > div {
  margin-top: 2.5rem;
}
.brand-settings-page > header h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}
.brand-settings-page > header p:not(.kicker) {
  max-width: 650px;
  color: var(--muted);
}
.brand-settings-page > header > span {
  color: var(--muted);
  font-size: 0.7rem;
}
.dark-link {
  color: var(--ink);
  border-bottom-color: rgba(23, 24, 19, 0.25);
}
.brand-settings-form {
  display: grid;
  gap: 1rem;
}
.brand-settings-form fieldset {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--white);
}
.brand-settings-form legend {
  padding: 0 0.5rem;
  color: #566d25;
  font: 500 0.64rem "DM Mono";
  text-transform: uppercase;
}
.brand-settings-form label {
  display: grid;
  gap: 0.45rem;
  color: #44463f;
  font-size: 0.7rem;
  font-weight: 800;
}
.brand-settings-form input:not([type="color"]), .brand-settings-form textarea {
  width: 100%;
  border: 1px solid #cbc8bc;
  padding: 0.8rem;
  background: #fbfaf5;
  color: var(--ink);
}
.brand-settings-form input:not([type="color"]) {
  height: 46px;
}
.brand-settings-form textarea {
  resize: vertical;
}
.brand-settings-form small {
  color: var(--muted);
  font-weight: 500;
}
.brand-color-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.brand-color-row input {
  width: 100%;
  height: 52px;
  border: 1px solid #cbc8bc;
  padding: 0.25rem;
  background: white;
}
.brand-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.app-body {
  background: #e8e5da;
}
.app-body #main {
  min-height: 100vh;
}
.pro-app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
}
.pro-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--ink);
  color: var(--white);
}
.pro-sidebar .brand {
  margin-bottom: 3rem;
}
.pro-nav {
  display: grid;
  gap: 0.6rem;
}
.pro-nav > button {
  width: 100%;
  border: 1px solid #3d3f37;
  padding: 0.9rem;
  background: transparent;
  color: #c6c8be;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
}
.pro-nav > button > span {
  margin-right: 0.55rem;
  color: #7e8077;
  font: 500 0.58rem "DM Mono";
}
.pro-nav > button.active > span {
  color: #526814;
}
.pro-nav > button:hover {
  border-color: var(--lime);
  color: var(--lime);
}
.pro-nav > button.active {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
}
.pro-settings-link {
  padding: 0.7rem 0.9rem;
  border: 1px solid #3d3f37;
  color: #c6c8be;
  font-size: 0.76rem;
  font-weight: 800;
}
.pro-settings-link:hover {
  border-color: var(--lime);
  color: var(--lime);
}
.pro-nav > span {
  margin: 1.2rem 0 0.5rem;
  color: #7e8077;
  font: 500 0.62rem "DM Mono";
  text-transform: uppercase;
}
.recent-search {
  position: relative;
  display: flex;
  align-items: center;
}
.recent-search svg {
  position: absolute;
  left: 0.7rem;
  width: 15px;
  fill: none;
  stroke: #7d8076;
  stroke-linecap: round;
  stroke-width: 1.6;
  pointer-events: none;
}
.recent-search input {
  width: 100%;
  height: 38px;
  border: 1px solid #3d3f37;
  border-radius: 4px;
  padding: 0 0.7rem 0 2rem;
  background: #20211c;
  color: var(--white);
  font-size: 0.68rem;
}
.recent-search input::placeholder {
  color: #777a70;
}
.recent-search input:focus {
  outline: 2px solid var(--lime);
  outline-offset: 1px;
  border-color: var(--lime);
}
.recent-proposals {
  display: grid;
  gap: 0.35rem;
  max-height: 45vh;
  overflow-y: auto;
}
.recent-proposals > p {
  color: #74766d;
  font-size: 0.68rem;
}
.recent-proposal-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  border-left: 2px solid #464740;
  transition: border-color 0.18s, background 0.18s;
}
.recent-proposal-row:hover {
  border-left-color: var(--lime);
  background: #23241f;
}
.recent-proposal-row.is-current {
  border-left-color: var(--lime);
  background: #292a24;
}
.recent-proposal-main {
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  min-width: 0;
  padding: 0.65rem 0.35rem 0.65rem 0.75rem;
  text-align: left;
}
.recent-proposal-menu {
  position: relative;
  align-self: start;
  margin: 0.48rem 0.25rem 0 0;
}
.recent-proposal-menu summary {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  color: #777a70;
  cursor: pointer;
  list-style: none;
  opacity: 0.45;
  transition: opacity 0.18s, color 0.18s, background 0.18s;
}
.recent-proposal-menu summary::-webkit-details-marker {
  display: none;
}
.recent-proposal-row:hover .recent-proposal-menu summary,
.recent-proposal-menu[open] summary,
.recent-proposal-menu summary:focus-visible {
  opacity: 1;
}
.recent-proposal-menu summary:hover,
.recent-proposal-menu[open] summary {
  background: #34362f;
  color: var(--white);
}
.recent-proposal-menu summary svg {
  width: 17px;
  fill: currentColor;
}
.recent-proposal-menu > div {
  position: absolute;
  z-index: 8;
  top: calc(100% + 0.3rem);
  right: 0;
  width: 150px;
  padding: 0.35rem;
  border: 1px solid #45473f;
  border-radius: 5px;
  background: #292a25;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
}
.recent-proposal-menu > div button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 3px;
  padding: 0.55rem 0.6rem;
  background: transparent;
  color: #f0b0a3;
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 750;
  text-align: left;
}
.recent-proposal-menu > div button:hover {
  background: #432e2a;
  color: #ffb6a7;
}
.recent-proposal-menu > div button svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}
.recent-proposals strong, .recent-proposals small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.recent-proposals strong {
  font-size: 0.77rem;
}
.recent-proposals small {
  margin-top: 0.2rem;
  color: #7f8178;
  font-size: 0.65rem;
}
.proposal-status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  margin-top: 0.48rem;
  padding: 0.2rem 0.42rem;
  border-radius: 999px;
  background: #30322b;
  color: #aaada2;
  font: 700 0.54rem "DM Mono";
  letter-spacing: 0.035em;
  line-height: 1;
  text-transform: uppercase;
}
.proposal-status svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}
.proposal-status-sent,
.proposal-status-shared,
.proposal-status-accepted {
  background: rgba(200, 244, 93, 0.12);
  color: var(--lime);
}
.proposal-status-changes_requested {
  background: rgba(242, 140, 109, 0.14);
  color: #f4a68d;
}
.proposal-status-declined {
  background: rgba(255, 255, 255, 0.08);
  color: #a5a79e;
}
.pro-account {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid #34352f;
}
.pro-account > span, .pro-account > strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pro-account > span {
  color: #797b72;
  font: 500 0.55rem "DM Mono";
  text-transform: uppercase;
}
.pro-account > strong {
  margin: 0.35rem 0 0.8rem;
  font-size: 0.68rem;
}
.pro-account > div {
  display: flex;
  gap: 0.8rem;
  color: #a8aaa1;
  font-size: 0.6rem;
}
.pro-account > .pro-legal-links {
  margin-top: 0.7rem;
  color: #777970;
  font-size: 0.56rem;
}
.pro-account a:hover {
  color: var(--white);
}
.app-help-button {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border: 1px solid #3c3e36;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 8px 28px rgba(23, 24, 19, 0.24);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.app-help-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--lime);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}
.app-help-button:hover {
  border-color: var(--lime);
  box-shadow: 0 10px 34px rgba(23, 24, 19, 0.32);
  transform: translateY(-2px);
}
.app-help-button:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}
.pro-workspace {
  min-width: 0;
  padding: 2rem clamp(1.25rem, 3vw, 3.5rem) 5rem;
}
.pro-calculator-workspace {
  display: grid;
  align-content: start;
}
.pro-calculator-workspace .calculator-shell {
  width: min(1180px, 100%);
  margin-inline: auto;
}
.studio-calculator {
  border: 0;
  box-shadow: none;
}
.studio-calculator .calculator-head {
  min-height: 152px;
  padding: 2rem 2.5rem;
  background: transparent;
}
.studio-calculator .calculator-grid {
  border: 1px solid #d3d0c4;
  box-shadow: 0 18px 48px rgba(23, 24, 19, 0.1);
}
.pro-workspace > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.pro-workspace > header .kicker {
  margin-bottom: 0.35rem;
}
.pro-workspace > header h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.15rem);
  letter-spacing: -0.065em;
}
.studio-stage-header > div:first-child > p:last-child {
  max-width: 620px;
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}
.pro-actions {
  display: flex;
  gap: 0.7rem;
}
.pro-actions .button {
  min-height: 46px;
  padding-inline: 1rem;
  white-space: nowrap;
}
.workspace-status {
  min-height: 1.25rem;
  margin: -1.15rem 0 1.25rem;
  color: #58711f;
  font-size: 0.68rem;
  font-weight: 750;
}
.workspace-status:empty {
  visibility: hidden;
}
.workspace-status.is-error {
  color: #a63b2e;
}
.client-response-panel {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin: 0 0 1rem;
  padding: 1.15rem;
  border: 1px solid #d5a38f;
  border-left: 5px solid var(--coral);
  border-radius: 6px;
  background: #fff5ef;
  box-shadow: 0 8px 24px rgba(71, 42, 30, 0.08);
}
.client-response-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f3b198;
  color: #5f2b1d;
}
.client-response-mark svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}
.client-response-panel .kicker {
  margin: 0 0 0.2rem;
  color: #94503b;
}
.client-response-panel h2 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.025em;
}
.client-response-panel blockquote {
  margin: 0.55rem 0;
  color: #4e413b;
  font-size: 0.86rem;
  line-height: 1.55;
}
.client-response-panel small {
  color: #7c6d65;
  font-size: 0.66rem;
}
.client-response-panel.is-accepted {
  border-color: #a8bd69;
  border-left-color: #789c22;
  background: #f4f9e5;
}
.client-response-panel.is-accepted .client-response-mark {
  background: #d9ee9d;
  color: #3f5915;
}
.client-response-panel.is-declined {
  border-color: #c4c1b7;
  border-left-color: #777970;
  background: #f4f2eb;
}
.pro-grid {
  display: grid;
  grid-template-columns: minmax(480px, 0.9fr) minmax(560px, 1.1fr);
  gap: 1.5rem;
  align-items: start;
}
.proposal-form {
  display: grid;
  gap: 1rem;
}
.proposal-form fieldset {
  position: relative;
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 4.15rem 1.35rem 1.45rem;
  border: 1px solid #ccc9bd;
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(23, 24, 19, 0.045);
  overflow: hidden;
}
.proposal-form legend {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  padding: 1rem 1.35rem;
  border-bottom: 1px solid #ddd9cc;
  background: #f1eee5;
  font: 700 0.61rem "DM Mono";
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: #566d25;
}
.proposal-form legend:has(.legend-action) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.65rem;
}
.proposal-form .legend-action {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.4rem 0.65rem;
  border: 1px solid #a9b98a;
  border-radius: 4px;
  background: #fbfaf4;
  color: #40561b;
  cursor: pointer;
  font: 800 0.65rem "Manrope", sans-serif;
  letter-spacing: 0;
  text-transform: none;
}
.proposal-form .legend-action svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}
.proposal-form .legend-action:hover {
  border-color: #77952f;
  background: #eef8d2;
}
.proposal-form .legend-action:focus-visible {
  outline: 3px solid rgba(200, 244, 93, 0.5);
  outline-offset: 2px;
}
.proposal-form label {
  display: grid;
  align-content: start;
  align-self: start;
  gap: 0.4rem;
  color: #44463f;
  font-size: 0.78rem;
  font-weight: 800;
}
.proposal-form input, .proposal-form textarea {
  width: 100%;
  border: 1px solid #cbc8bc;
  border-radius: 5px;
  padding: 0.8rem 0.9rem;
  background: #fffefa;
  color: var(--ink);
  font-size: 0.82rem;
  transition: border-color 0.16s, box-shadow 0.16s, background 0.16s;
}
.proposal-form input {
  height: 47px;
}
.proposal-form input[type="date"] {
  color-scheme: light;
  cursor: pointer;
}
.proposal-form input[readonly] {
  background: #eeece3;
  color: #686a61;
}
.proposal-form .money-input {
  height: 47px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  border: 1px solid #cbc8bc;
  border-radius: 5px;
  overflow: hidden;
  background: #fffefa;
  transition: border-color 0.16s, box-shadow 0.16s, background 0.16s;
}
.proposal-form .money-input span {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 0;
  border-right: 1px solid #dedbd0;
  background: #f3f0e7;
  color: #6f7168;
  font-size: 0.78rem;
}
.proposal-form .money-input input,
.proposal-form .money-input input:focus {
  min-width: 0;
  height: 45px;
  border: 0;
  border-radius: 0;
  padding: 0 0.8rem;
  outline: 0;
  background: transparent;
  box-shadow: none;
}
.proposal-form .money-input:focus-within {
  border-color: #799b2e;
  outline: 0;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(200, 244, 93, 0.34);
}
.proposal-form .money-input:has(input[readonly]) {
  background: #eeece3;
}
.proposal-form .money-input:has(input[readonly]) span {
  background: #e5e2d8;
}
.proposal-form label > small, .fieldset-help {
  color: #7b7d74;
  font-size: 0.69rem;
  font-weight: 500;
}
.studio-bid-summary {
  padding: 1.2rem;
  border: 1px solid #31332c;
  background: var(--ink);
  color: var(--white);
}
.studio-bid-summary > div:first-child span,
.studio-bid-summary > div:first-child strong {
  display: block;
}
.studio-bid-summary > div:first-child span {
  color: #92948b;
  font: 500 0.58rem "DM Mono";
  text-transform: uppercase;
}
.studio-bid-summary > div:first-child strong {
  margin-top: 0.25rem;
  font-size: 1rem;
}
.studio-bid-summary dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 1rem 0;
  background: #3c3e36;
}
.studio-bid-summary dl div {
  padding: 0.7rem;
  background: #23241f;
}
.studio-bid-summary dt {
  color: #85877e;
  font: 500 0.54rem "DM Mono";
  text-transform: uppercase;
}
.studio-bid-summary dd {
  margin: 0.25rem 0 0;
  color: var(--lime);
  font-weight: 800;
}
.studio-bid-summary button {
  border: 0;
  border-bottom: 1px solid #a4cc43;
  padding: 0;
  background: transparent;
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 800;
  cursor: pointer;
}
.proposal-sender-details {
  border: 1px solid #ccc9bd;
  border-radius: 7px;
  background: #eeece3;
  overflow: hidden;
}
.proposal-sender-details summary {
  padding: 1rem 1.2rem;
  color: #56584f;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
}
.proposal-sender-details[open] {
  padding: 0 1.2rem 1.2rem;
}
.proposal-sender-details[open] summary {
  margin: 0 -1.2rem 1rem;
}
.proposal-form textarea {
  resize: vertical;
  line-height: 1.5;
}
.proposal-form input:focus, .proposal-form textarea:focus {
  outline: 0;
  border-color: #799b2e;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(200, 244, 93, 0.34);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 0.8rem;
}
.form-message {
  min-height: 1rem;
  margin: 0;
  color: #617e22;
  font-size: 0.68rem;
  font-weight: 700;
}
.form-message.is-error {
  color: #a62d20;
}
.send-proposal-dialog,
.delete-proposal-dialog,
.send-success-dialog {
  width: min(560px, calc(100% - 2rem));
  max-height: calc(100vh - 2rem);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}
.send-proposal-dialog,
.delete-proposal-dialog {
  padding: 2.4rem;
  background: var(--ink);
  color: var(--white);
}
.send-proposal-dialog::backdrop,
.delete-proposal-dialog::backdrop,
.send-success-dialog::backdrop {
  background: rgba(13, 14, 11, 0.72);
  backdrop-filter: blur(4px);
}
.send-proposal-dialog[open],
.delete-proposal-dialog[open] {
  animation: dialog-rise 0.24s ease-out both;
}
.send-dialog-mark,
.delete-dialog-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 900;
}
.delete-dialog-mark {
  background: #f58d79;
}
.delete-dialog-mark svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}
.send-proposal-dialog .kicker,
.delete-proposal-dialog .kicker {
  margin-bottom: 0.55rem;
}
.send-proposal-dialog h2,
.delete-proposal-dialog h2,
.send-success-dialog h2 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.25rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}
.send-proposal-dialog > p:not(.kicker, .send-dialog-status),
.delete-proposal-dialog > p:not(.kicker, .send-dialog-status) {
  margin: 1rem 0 0;
  color: #bec0b6;
  font-size: 0.78rem;
  line-height: 1.6;
}
.send-proposal-dialog > p strong,
.delete-proposal-dialog > p strong {
  color: var(--white);
}
.send-dialog-actions,
.send-success-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.6rem;
}
.send-proposal-dialog .button-outline,
.delete-proposal-dialog .button-outline {
  border-color: #777a70;
  color: var(--white);
}
.send-dialog-status {
  min-height: 1rem;
  margin: 0.8rem 0 0;
  color: #ff9d8c;
  font-size: 0.67rem;
  font-weight: 750;
}
.send-dialog-status:not(:empty) {
  padding: 0.65rem 0.75rem;
  border-left: 3px solid #ff9d8c;
  background: rgba(255, 157, 140, 0.09);
}
.button.has-error {
  animation: action-nudge 0.28s ease-in-out;
}
@keyframes action-nudge {
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-3px);
  }
}
.send-dialog-cancel {
  display: block;
  margin: 0.8rem auto 0;
  border: 0;
  border-bottom: 1px solid #6e7067;
  padding: 0.12rem 0;
  background: transparent;
  color: #a8aaa1;
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 700;
}
.send-proposal-dialog > small {
  display: block;
  margin-top: 1rem;
  color: #7f8178;
  font-size: 0.6rem;
  line-height: 1.5;
}
.send-success-dialog {
  position: relative;
  padding: 3.1rem 2.8rem 2.2rem;
  overflow: hidden;
  background: #fffdf6;
  color: var(--ink);
  text-align: center;
}
.send-success-dialog[open] {
  animation: success-dialog-rise 0.45s cubic-bezier(0.2, 1.25, 0.3, 1) both;
}
.send-success-mark {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 1.35rem;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 12px rgba(200, 244, 93, 0.2);
}
.send-success-dialog[open] .send-success-mark {
  animation: success-pop 0.6s 0.08s cubic-bezier(0.2, 1.5, 0.35, 1) both;
}
.send-success-mark svg {
  width: 38px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}
.send-success-dialog .kicker {
  position: relative;
  z-index: 2;
  margin-bottom: 0.55rem;
  color: #617d22;
}
.send-success-dialog > p:not(.kicker, .copy-status) {
  position: relative;
  z-index: 2;
  margin: 1rem auto 0;
  color: #686a61;
  font-size: 0.78rem;
  line-height: 1.55;
}
.send-success-actions {
  position: relative;
  z-index: 2;
}
.send-success-actions .button {
  width: 100%;
}
.send-success-actions.is-single {
  grid-template-columns: 1fr;
  max-width: 250px;
  margin-inline: auto;
}
.copy-status {
  min-height: 1rem;
  margin: 0.75rem 0 0;
  color: #5f7922;
  font-size: 0.65rem;
  font-weight: 750;
}
.send-success-close {
  position: relative;
  z-index: 2;
  margin-top: 0.7rem;
  border: 0;
  border-bottom: 1px solid #8d8f86;
  padding: 0.15rem 0;
  background: transparent;
  color: #74766e;
  cursor: pointer;
  font-size: 0.66rem;
  font-weight: 700;
}
.celebration-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.celebration-confetti span {
  --x: 0px;
  --y: 0px;
  position: absolute;
  left: 50%;
  top: 23%;
  width: 9px;
  height: 18px;
  border-radius: 2px;
  background: var(--lime);
  opacity: 0;
}
.send-success-dialog[open] .celebration-confetti span {
  animation: confetti-burst 0.95s 0.1s cubic-bezier(0.12, 0.75, 0.3, 1) both;
}
.celebration-confetti span:nth-child(2n) {
  background: var(--coral);
}
.celebration-confetti span:nth-child(3n) {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1e4b80;
}
.celebration-confetti span:nth-child(1) {
  --x: -210px;
  --y: -75px;
  transform: rotate(-36deg);
}
.celebration-confetti span:nth-child(2) {
  --x: -165px;
  --y: 75px;
  transform: rotate(28deg);
}
.celebration-confetti span:nth-child(3) {
  --x: -110px;
  --y: -120px;
  transform: rotate(61deg);
}
.celebration-confetti span:nth-child(4) {
  --x: -65px;
  --y: 120px;
  transform: rotate(-18deg);
}
.celebration-confetti span:nth-child(5) {
  --x: -25px;
  --y: -135px;
  transform: rotate(40deg);
}
.celebration-confetti span:nth-child(6) {
  --x: 30px;
  --y: 125px;
  transform: rotate(-46deg);
}
.celebration-confetti span:nth-child(7) {
  --x: 70px;
  --y: -125px;
  transform: rotate(22deg);
}
.celebration-confetti span:nth-child(8) {
  --x: 115px;
  --y: 105px;
  transform: rotate(54deg);
}
.celebration-confetti span:nth-child(9) {
  --x: 155px;
  --y: -90px;
  transform: rotate(-22deg);
}
.celebration-confetti span:nth-child(10) {
  --x: 195px;
  --y: 60px;
  transform: rotate(34deg);
}
.celebration-confetti span:nth-child(11) {
  --x: -220px;
  --y: 25px;
  transform: rotate(65deg);
}
.celebration-confetti span:nth-child(12) {
  --x: 220px;
  --y: -15px;
  transform: rotate(-55deg);
}
@keyframes dialog-rise {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes success-dialog-rise {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes success-pop {
  from {
    opacity: 0;
    transform: scale(0.45) rotate(-18deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
@keyframes confetti-burst {
  0% {
    opacity: 0;
    translate: -50% -50%;
    scale: 0.2;
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    translate: var(--x) var(--y);
    scale: 1;
    rotate: 160deg;
  }
}
.proposal-document {
  position: sticky;
  top: 1rem;
  min-height: 920px;
  padding: 3.2rem;
  background: white;
  box-shadow: 0 18px 50px rgba(23, 24, 19, 0.13);
}
.proposal-document[aria-busy="true"] {
  opacity: 0.82;
}
.document-brand {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 1rem;
  border-bottom: 4px solid var(--proposal-primary, var(--ink));
}
.document-brand-identity img {
  display: block;
  width: auto;
  max-width: 150px;
  height: 42px;
  margin-bottom: 0.65rem;
  object-fit: contain;
  object-position: left center;
}
.document-brand-identity img[hidden] {
  display: none;
}
.document-brand > div span, .document-brand > div strong {
  display: block;
}
.document-brand > div strong {
  font-size: 1rem;
}
.document-brand > div span {
  color: #777970;
  font-size: 0.58rem;
}
.document-brand > b {
  color: #b7b9ae;
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}
.document-hero {
  padding: 4.5rem 0 2.5rem;
}
.document-hero p {
  margin: 0;
  color: #74766e;
  font: 500 0.6rem "DM Mono";
  text-transform: uppercase;
}
.document-hero h2 {
  margin: 0.35rem 0;
  font-size: 2.5rem;
  letter-spacing: -0.06em;
}
.document-hero > span {
  display: block;
  color: #66685f;
  font-size: 0.75rem;
}
.document-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 2rem;
  border: 1px solid #d6d4cb;
}
.document-meta > div {
  padding: 0.8rem;
}
.document-meta > div + div {
  border-left: 1px solid #d6d4cb;
}
.document-meta span, .document-meta strong {
  display: block;
}
.document-meta span {
  color: #777970;
  font: 500 0.52rem "DM Mono";
  text-transform: uppercase;
}
.document-meta strong {
  margin-top: 0.25rem;
  font-size: 0.7rem;
}
.document-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 2.3rem;
  background: var(--proposal-primary, var(--ink));
  color: var(--white);
}
.document-pricing > div {
  padding: 1.2rem;
}
.document-pricing > div + div {
  border-left: 1px solid #44463e;
}
.document-pricing span, .document-pricing strong {
  display: block;
}
.document-pricing span {
  color: #9b9d93;
  font-size: 0.58rem;
}
.document-pricing strong {
  margin-top: 0.3rem;
  color: var(--proposal-accent, var(--lime));
  font-size: 1.65rem;
}
.proposal-document section {
  margin: 1.8rem 0;
}
.proposal-document section h3 {
  padding-bottom: 0.45rem;
  border-bottom: 2px solid var(--ink);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.proposal-document section p, .proposal-document section li {
  color: #53554e;
  font-size: 0.67rem;
  line-height: 1.55;
}
.proposal-document section ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  padding: 0;
  list-style: none;
}
.proposal-document section li::before {
  content: "✓";
  margin-right: 0.4rem;
  color: var(--proposal-primary, #6d8c28);
  font-weight: 900;
}
.document-footer {
  margin: 2.4rem 0 0;
  padding-top: 0.8rem;
  border-top: 1px solid #d6d4cb;
  color: #777970;
  font-size: 0.6rem;
  text-align: center;
}
.document-acceptance {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}
.document-acceptance > div {
  height: 40px;
  border-bottom: 1px solid #888a81;
  display: flex;
  align-items: flex-end;
}
.document-acceptance span {
  color: #777970;
  font-size: 0.55rem;
}

.shared-proposal-page {
  min-height: 100vh;
  padding: 1.5rem clamp(1rem, 4vw, 4rem) 5rem;
  background: #e9e6dc;
}
.shared-proposal-header {
  width: min(1300px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 1.5rem;
}
.shared-proposal-header span,
.shared-proposal-header strong {
  display: block;
}
.shared-proposal-header span {
  color: #6f7168;
  font: 500 0.58rem "DM Mono";
  text-transform: uppercase;
}
.shared-proposal-header strong {
  margin-top: 0.2rem;
}
.shared-proposal-header small {
  color: #75776e;
  font-size: 0.68rem;
}
.shared-proposal-layout {
  width: min(1300px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.5rem;
  align-items: start;
  margin: auto;
}
.shared-proposal-document {
  position: static;
}
.proposal-response-card {
  position: sticky;
  top: 1.5rem;
  padding: 1.5rem;
  border-top: 5px solid var(--lime);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(23, 24, 19, 0.12);
}
.proposal-response-card h1 {
  margin: 0 0 1.2rem;
  font-size: 1.7rem;
  letter-spacing: -0.05em;
}
.proposal-response-card label {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
  color: #45473f;
  font-size: 0.7rem;
  font-weight: 800;
}
.proposal-response-card input,
.proposal-response-card textarea {
  width: 100%;
  border: 1px solid #c8c5b9;
  padding: 0.8rem;
  background: #fbfaf5;
}
.proposal-response-card .button {
  margin-top: 0.65rem;
}
.proposal-response-card > form > small {
  display: block;
  margin-top: 1rem;
  color: #777970;
  font-size: 0.62rem;
  text-align: center;
}
.proposal-decline {
  width: 100%;
  margin-top: 0.85rem;
  border: 0;
  background: transparent;
  color: #777970;
  cursor: pointer;
  font-size: 0.67rem;
  text-decoration: underline;
}
.proposal-response-complete > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--lime);
  font-size: 1.4rem;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .pro-grid {
    grid-template-columns: 1fr;
  }
  .proposal-document {
    position: static;
  }
  .shared-proposal-layout {
    grid-template-columns: 1fr;
  }
  .proposal-response-card {
    position: static;
    grid-row: 1;
  }
}

@media (max-width: 760px) {
  .onboarding-page {
    padding: 1rem 0.85rem 2.5rem;
  }
  .onboarding-header {
    margin-bottom: 2rem;
  }
  .onboarding-intro h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }
  .onboarding-progress {
    font-size: 0.56rem;
  }
  .onboarding-steps fieldset {
    padding: 1.4rem;
  }
  .onboarding-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .onboarding-actions > div, .onboarding-actions .button {
    width: 100%;
  }
  .palette-options {
    grid-template-columns: 1fr 1fr;
  }
  .auth-card {
    padding: 2rem 1.4rem;
  }
  .brand-color-row, .brand-settings-form .field-row {
    grid-template-columns: 1fr;
  }
  .brand-form-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .pro-app {
    grid-template-columns: 1fr;
  }
  .pro-sidebar {
    position: static;
    height: auto;
  }
  .pro-sidebar .brand {
    margin-bottom: 1.2rem;
  }
  .pro-account {
    display: none;
  }
  .app-help-button {
    right: 0.8rem;
    bottom: 0.8rem;
  }
  .pro-nav {
    grid-template-columns: 1fr 1fr;
  }
  .pro-nav .pro-settings-link {
    grid-column: 1 / -1;
  }
  .pro-nav > span, .pro-nav .recent-search, .pro-nav .recent-proposals {
    display: none;
  }
  .pro-workspace {
    padding: 1.2rem 0.75rem 3rem;
  }
  .proposal-form .legend-action {
    padding-inline: 0.55rem;
    font-size: 0.62rem;
  }
  .client-response-panel {
    grid-template-columns: 38px 1fr;
  }
  .client-response-panel .button {
    grid-column: 1 / -1;
    width: 100%;
  }
  .client-response-mark {
    width: 38px;
    height: 38px;
  }
  .pro-workspace > header {
    align-items: flex-start;
    flex-direction: column;
  }
  .pro-actions {
    width: 100%;
  }
  .pro-actions .button {
    flex: 1;
    min-width: 0;
    padding-inline: 0.65rem;
    font-size: 0.68rem;
  }
  .send-proposal-dialog,
  .delete-proposal-dialog,
  .send-success-dialog {
    width: calc(100% - 1.25rem);
  }
  .send-proposal-dialog,
  .delete-proposal-dialog,
  .send-success-dialog {
    padding: 2rem 1.3rem 1.5rem;
  }
  .send-dialog-actions,
  .send-success-actions {
    grid-template-columns: 1fr;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .assumptions-grid {
    grid-template-columns: 1fr;
  }
  .assumptions-panel summary {
    align-items: flex-start;
    flex-direction: column;
  }
  .assumptions-panel summary small {
    margin-left: 0;
  }
  .methodology-note a {
    display: block;
    width: fit-content;
    margin: 0.5rem 0 0;
  }
  .proposal-document {
    min-height: 760px;
    padding: 1.5rem;
  }
  .shared-proposal-page {
    padding: 1rem 0.75rem 3rem;
  }
  .shared-proposal-header {
    align-items: flex-start;
    gap: 1rem;
  }
  .document-hero {
    padding-top: 2.5rem;
  }
  .document-hero h2 {
    font-size: 2rem;
  }
}

@media print {
  @page {
    size: letter;
    margin: 0;
  }
  html,
  body {
    width: 8.5in !important;
    min-height: 0 !important;
    margin: 0 !important;
    background: white !important;
  }
  .pro-app {
    min-height: 0 !important;
    display: block !important;
  }
  .pro-sidebar,
  .pro-calculator-workspace,
  [data-studio-view="proposal"] > :not(.pro-grid),
  .pro-grid > :not(.proposal-document),
  .minimal-legal-links,
  .page-progress,
  .skip-link {
    display: none !important;
  }
  [data-studio-view="proposal"],
  .pro-grid {
    width: 8.5in !important;
    min-height: 0 !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .proposal-document {
    position: static !important;
    width: 8.5in !important;
    min-height: 11in !important;
    margin: 0 !important;
    padding: 0.45in !important;
    box-shadow: none !important;
    break-after: avoid-page;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
  .proposal-document .document-hero {
    padding: 2.8rem 0 1.8rem;
  }
  .proposal-document section {
    margin: 1.25rem 0;
  }
  .proposal-document .document-pricing {
    margin-bottom: 1.5rem;
  }
  .proposal-document .document-footer {
    margin-top: 1.5rem;
  }
  .proposal-document .document-acceptance {
    margin-top: 1.8rem;
    break-inside: avoid;
  }
}
.not-found h1 {
  margin: 0.7rem 0;
  font-size: 4rem;
  letter-spacing: -0.07em;
}
.not-found p {
  color: var(--muted);
}

.legal-page {
  background:
    radial-gradient(circle at 88% 5%, rgba(200, 244, 93, 0.14), transparent 30rem),
    #eeece3;
  padding: clamp(3.5rem, 7vw, 6.5rem) 1.25rem 7rem;
}
.legal-hero,
.legal-content {
  width: min(920px, 100%);
  margin-inline: auto;
}
.legal-hero {
  padding-bottom: clamp(2.75rem, 5vw, 4.25rem);
  border-bottom: 1px solid #cbc8bb;
}
.legal-hero .kicker {
  color: #4c6a10;
  font-weight: 700;
}
.legal-hero h1 {
  max-width: 850px;
  margin: 0.8rem 0 1.25rem;
  font-size: clamp(3.2rem, 7vw, 5.3rem);
  letter-spacing: -0.067em;
  line-height: 0.95;
}
.legal-hero > p:not(.kicker) {
  max-width: 750px;
  margin: 0 0 1.4rem;
  color: #55574f;
  font-size: clamp(1.06rem, 2vw, 1.2rem);
  line-height: 1.65;
}
.legal-hero small {
  color: #66685f;
  font: 500 0.7rem/1.5 "DM Mono", monospace;
  letter-spacing: 0.025em;
}
.legal-content {
  margin-top: 2.5rem;
  padding: 0 clamp(1.4rem, 4vw, 3.1rem);
  border: 1px solid #d2cfc2;
  background: rgba(255, 253, 247, 0.82);
  box-shadow: 0 22px 60px rgba(23, 24, 19, 0.07);
}
.legal-content section {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(0, 1.75fr);
  column-gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(2.2rem, 4vw, 3rem) 0;
  border-bottom: 1px solid #d3d0c4;
}
.legal-content section:last-child {
  border-bottom: 0;
}
.legal-content h2 {
  grid-column: 1;
  margin: 0 0 0.8rem;
  color: #20211d;
  font-size: clamp(1.2rem, 2vw, 1.48rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
}
.legal-content p,
.legal-content li {
  color: #4f5149;
  font-size: 1.02rem;
  line-height: 1.72;
}
.legal-content p {
  grid-column: 2;
  margin: 0 0 1rem;
}
.legal-content p:last-child {
  margin-bottom: 0;
}
.legal-content ul {
  grid-column: 2;
  margin: 0;
  padding-left: 1.3rem;
}
.legal-content li + li {
  margin-top: 0.42rem;
}
.legal-content a {
  color: #466214;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.legal-hero-refunds {
  position: relative;
}
.legal-content .policy-callout {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 2rem 0;
  padding: clamp(1.7rem, 4vw, 2.6rem);
  border: 1px solid #a9c35c;
  border-left: 7px solid #91b337;
  background: linear-gradient(135deg, rgba(200, 244, 93, 0.32), rgba(200, 244, 93, 0.14));
  color: #2f3d18;
}
.legal-content .policy-callout::after {
  content: "30";
  position: absolute;
  right: -0.5rem;
  bottom: -3.9rem;
  color: rgba(76, 106, 16, 0.08);
  font-size: 13rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.1em;
  pointer-events: none;
}
.legal-content .policy-callout > span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.42rem 0.65rem;
  border: 1px solid rgba(76, 106, 16, 0.28);
  background: rgba(255, 253, 247, 0.58);
  color: #4c6a10;
  font: 700 0.67rem/1 "DM Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.legal-content .policy-callout h2 {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin-bottom: 0.8rem;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
}
.legal-content .policy-callout p {
  position: relative;
  z-index: 1;
  max-width: 690px;
  color: #3e482b;
  line-height: 1.68;
}
@media (max-width: 760px) {
  .legal-page {
    padding: 3.25rem 1rem 5rem;
  }
  .legal-hero h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }
  .legal-content {
    margin-top: 1.5rem;
    padding-inline: 1.25rem;
  }
  .legal-content section {
    display: block;
    padding: 2rem 0;
  }
  .legal-content h2 {
    margin-bottom: 0.85rem;
  }
  .legal-content .policy-callout {
    margin: 1.25rem 0;
    padding: 1.5rem 1.25rem;
  }
  .legal-content .policy-callout::after {
    right: -0.25rem;
    bottom: -2.4rem;
    font-size: 9rem;
  }
}
.minimal-legal-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  padding: 1rem 1.25rem 1.5rem;
  background: #eeece3;
  color: #66685f;
  font-size: 0.72rem;
}
.minimal-legal-links a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.checkout-confirmation {
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  padding: clamp(3rem, 7vw, 7rem) 1.25rem;
  background:
    radial-gradient(circle at 80% 15%, rgba(200, 244, 93, 0.18), transparent 28rem),
    #eeece3;
}
.checkout-card {
  width: min(620px, 100%);
  padding: clamp(1.75rem, 5vw, 3.5rem);
  border: 1px solid #c8c5b8;
  background: #faf9f4;
  box-shadow: 0 24px 70px rgba(23, 24, 19, 0.12);
}
.checkout-card h1 {
  margin: 0.7rem 0 0.8rem;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  letter-spacing: -0.07em;
  line-height: 0.98;
}
.checkout-intro {
  max-width: 470px;
  color: #63655d;
  font-size: 1rem;
  line-height: 1.6;
}
.checkout-price {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  margin: 1.8rem 0;
  padding: 1.2rem 0;
  border-block: 1px solid #d7d4c8;
}
.checkout-price strong {
  font-size: 3rem;
  letter-spacing: -0.06em;
}
.checkout-price span {
  color: #6f7169;
}
.checkout-promises {
  display: grid;
  gap: 0.8rem;
  margin: 0 0 1.8rem;
  padding: 0;
  list-style: none;
  color: #52544d;
  font-size: 0.92rem;
  line-height: 1.55;
}
.checkout-promises li {
  padding-left: 1.55rem;
  position: relative;
}
.checkout-promises li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #668628;
  font-weight: 900;
}
.checkout-consent-form {
  display: grid;
  gap: 1rem;
}
.checkout-consent {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1.1rem;
  border: 1px solid #c8c5b8;
  background: var(--white);
  color: #44463f;
  font-size: 0.86rem;
  line-height: 1.55;
  cursor: pointer;
}
.checkout-consent:focus-within {
  border-color: #769c32;
  box-shadow: 0 0 0 3px rgba(200, 244, 93, 0.35);
}
.checkout-consent input {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.15rem;
  accent-color: #769c32;
}
.checkout-consent a,
.checkout-footnote a {
  color: #526f21;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}
.checkout-error {
  margin: 0;
  padding: 0.8rem 1rem;
  border-left: 3px solid #c6543d;
  background: #fff0eb;
  color: #8f2f20;
  font-size: 0.82rem;
  font-weight: 700;
}
.checkout-footnote {
  margin: 1rem 0 0;
  color: #777970;
  font-size: 0.72rem;
  line-height: 1.55;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  padding: 4rem clamp(1.25rem, 6vw, 7rem) 2rem;
  background: var(--ink);
  color: var(--white);
}
.brand-footer {
  margin-bottom: 0.8rem;
}
.site-footer > div > p {
  max-width: 430px;
  color: #85877e;
  font-size: 0.75rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 2rem;
  align-items: flex-start;
  max-width: 560px;
  color: #b4b6ad;
  font-size: 0.78rem;
}
.fine-print {
  grid-column: 1 / -1;
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid #32332e;
  color: #696b63;
  font-size: 0.62rem;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 5rem;
  }
  .hero-copy {
    max-width: 800px;
  }
  .hero-art {
    width: min(600px, 100%);
    margin: 4rem auto 0;
  }
  .calculator-grid {
    grid-template-columns: 1fr;
  }
  .bid-result {
    min-height: auto;
  }
  .facility-grid, .directory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .closing-cta {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .related-section > div {
    grid-template-columns: 1fr 1fr;
  }
  .tool-hero {
    grid-template-columns: 1fr;
    padding-bottom: 8rem;
  }
  .big-facility-icon {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 68px;
    padding: 0 1.1rem;
  }
  .site-header nav {
    display: none;
  }
  .header-actions {
    margin-left: auto;
    gap: 0.7rem;
  }
  .header-cta {
    min-height: 40px;
    padding: 0 0.8rem;
    font-size: 0.72rem;
  }
  .hero {
    min-height: auto;
    display: block;
    padding: 4.5rem 1.25rem 5rem;
  }
  .hero h1, .directory-hero h1, .pricing-hero h1 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
  }
  .trust-row {
    flex-direction: column;
    gap: 0.7rem;
  }
  .hero-art {
    min-height: 390px;
    margin-top: 3rem;
  }
  .card-main {
    left: 0;
    width: calc(100% - 12px);
    min-height: 300px;
    padding: 1.5rem;
  }
  .card-main > p {
    margin-top: 3.5rem;
  }
  .card-main > strong {
    font-size: 3.5rem;
  }
  .card-back {
    left: 12%;
    width: 75%;
  }
  .margin-stamp {
    right: -1rem;
    width: 110px;
    height: 110px;
  }
  .proof-strip {
    justify-content: flex-start;
  }
  .page-wrap {
    width: calc(100% - 1.5rem);
    margin: 3.5rem auto;
  }
  .calculator-head {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }
  .bid-form {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
  .field-wide {
    grid-column: auto;
  }
  .bid-result {
    padding: 1.5rem;
  }
  .problem-section, .facility-section, .directory-grid, .closing-cta {
    padding: 5rem 1.25rem;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-grid article {
    min-height: 270px;
  }
  .process-icon {
    margin-bottom: 3.5rem;
  }
  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
  }
  .facility-grid, .directory-grid {
    grid-template-columns: 1fr;
  }
  .facility-card {
    min-height: 270px;
  }
  .lead-form > div {
    flex-direction: column;
  }
  .lead-form input {
    min-height: 50px;
  }
  .lead-form .button {
    margin-top: 0.6rem;
  }
  .proposal-dialog[open] {
    display: block;
    overflow-y: auto;
  }
  .proposal-preview {
    min-height: 520px;
    padding: 2rem;
  }
  .proposal-upsell {
    padding: 2rem;
  }
  .proposal-preview ul {
    grid-template-columns: 1fr;
  }
  .directory-hero, .pricing-hero {
    padding: 5rem 1.25rem 7rem;
  }
  .tool-hero {
    padding: 3rem 1.25rem 7rem;
  }
  .tool-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }
  .breadcrumbs {
    overflow-x: auto;
    white-space: nowrap;
  }
  .content-section {
    width: calc(100% - 2.5rem);
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 5rem auto;
  }
  .scope-columns {
    grid-template-columns: 1fr;
  }
  .content-aside {
    position: static;
  }
  .formula-steps li {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
  .related-section {
    padding: 4rem 1.25rem;
  }
  .related-section > div {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    margin-top: -3rem;
  }
  .pricing-grid.pricing-grid-live {
    grid-template-columns: 1fr;
  }
  .pricing-grid .featured-plan {
    transform: none;
  }
  .pricing-note {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  .site-footer {
    grid-template-columns: 1fr;
  }
  .footer-links {
    flex-direction: column;
    gap: 0.8rem;
  }
  .fine-print {
    grid-column: 1;
  }
}

@media (max-width: 430px) {
  .site-header {
    padding: 0 0.75rem;
  }
  .logo-lockup {
    gap: 0.5rem;
  }
  .brand-symbol {
    width: 27px;
    height: 27px;
  }
  .brand-wordmark {
    font-size: 1rem;
  }
  .header-actions {
    gap: 0.55rem;
  }
  .header-login {
    font-size: 0.72rem;
  }
  .header-cta {
    padding: 0 0.65rem;
    font-size: 0.68rem;
  }
}

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