:root {
  --navy: #0d1b2a;
  --navy-2: #132a43;
  --red: #b22222;
  --red-dark: #8f171b;
  --steel: #5d7283;
  --steel-dark: #435d70;
  --cream: #f8fbfd;
  --soft: #f1f7fb;
  --white: #ffffff;
  --charcoal: #1f2a35;
  --muted: #586c7b;
  --line: #cfdde6;
  --radius: 22px;
  --shadow: 0 24px 64px rgba(13, 42, 67, .11);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--charcoal);
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .18;
  background-image: radial-gradient(rgba(36, 81, 111, .10) .55px, transparent .55px);
  background-size: 8px 8px;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; }

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

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

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  color: var(--navy);
  font-weight: 750;
  letter-spacing: -.035em;
  line-height: 1.08;
}

h1 { font-size: clamp(3.15rem, 6.7vw, 6.2rem); }
h2 { font-size: clamp(2.25rem, 4.4vw, 4.1rem); }
h3 { font-size: clamp(1.4rem, 2.1vw, 2rem); }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.section { padding: 108px 0; }

.skip-link {
  position: fixed;
  left: 18px;
  top: -100px;
  z-index: 999;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 10px;
}

.skip-link:focus { top: 18px; }

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--red-dark);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
}

.utility-bar {
  color: #dfe6ec;
  background: var(--navy);
  font-size: .76rem;
}

.utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.utility-inner a {
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.utility-inner span { color: #bdc7d1; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(13, 42, 67, .12);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 24px rgba(13, 42, 67, .045);
  backdrop-filter: blur(18px);
}

.header-inner {
  position: relative;
  min-height: 88px;
  display: grid;
  grid-template-columns: 270px 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 260px; }

#site-navigation {
  display: flex;
  justify-content: center;
  gap: 30px;
}

#site-navigation a {
  position: relative;
  color: var(--navy);
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
}

#site-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--red);
  transition: right .2s ease;
}

#site-navigation a:hover::after,
#site-navigation a:focus-visible::after { right: 0; }

.header-call {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: var(--navy);
  line-height: 1.15;
  text-decoration: none;
}

.header-call span {
  color: var(--muted);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.header-call strong { margin-top: 5px; font-size: 1.02rem; white-space: nowrap; }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 116px 0 118px;
  background: linear-gradient(135deg, #ffffff 0%, #f5fafe 56%, #edf6fb 100%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -230px;
  top: -260px;
  border: 100px solid rgba(178, 34, 34, .055);
  transform: rotate(22deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(430px, .93fr);
  align-items: center;
  gap: 80px;
}

.hero-copy h1 { margin-bottom: 30px; }
.hero-copy h1 span { color: var(--red-dark); }

.hero-lede {
  max-width: 680px;
  margin-bottom: 34px;
  color: #4d5c67;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 30px rgba(18, 38, 58, .17);
}

.button-primary:hover { background: var(--red-dark); }

.button-secondary {
  color: var(--navy);
  border-color: rgba(18, 38, 58, .25);
  background: transparent;
}

.button-secondary:hover { background: rgba(255, 255, 255, .55); }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 34px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 700;
  list-style: none;
}

.trust-list li { position: relative; padding-left: 18px; }
.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.path-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 28px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 34px 100px rgba(18, 38, 58, .25);
}

.path-panel-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 30px 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.path-panel-heading img {
  width: 76px;
  height: 76px;
  padding: 8px;
  border-radius: 18px;
  background: var(--cream);
}

.path-panel-heading p {
  margin-bottom: 4px;
  color: #a8bac7;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.path-panel-heading strong { font-size: 1.25rem; }

.path-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 116px;
  padding: 20px 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  color: var(--white);
  text-decoration: none;
  transition: background .2s ease, padding .2s ease;
}

.path-row:last-child { border-bottom: 0; }
.path-row:hover, .path-row:focus-visible { padding-left: 40px; background: rgba(255, 255, 255, .055); }

.path-number {
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.path-sell .path-number { color: #ef8b8b; }
.path-buy .path-number { color: #bdc7d1; }
.path-invest .path-number { color: #ffffff; }

.path-row strong { display: block; font-size: 1.08rem; }
.path-row small { display: block; margin-top: 4px; color: #a8bac7; }
.path-arrow { font-size: 1.4rem; }

.solutions {
  background: var(--soft);
  border-block: 1px solid rgba(18, 38, 58, .08);
}

.section-heading { max-width: 790px; margin-bottom: 60px; }
.section-heading h2 { margin-bottom: 24px; }
.section-heading > p:last-child { max-width: 650px; color: var(--muted); font-size: 1.08rem; }

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.solution-card {
  position: relative;
  display: flex;
  min-height: 540px;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(13, 42, 67, .065);
  transition: transform .25s ease, box-shadow .25s ease;
}

.solution-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background: var(--navy);
}

.seller-card::before { background: var(--red); }
.buyer-card::before { background: var(--steel); }

.solution-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 54px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.card-topline b { color: var(--navy); }
.seller-card .card-topline b { color: var(--red-dark); }
.buyer-card .card-topline b { color: var(--steel-dark); }

.solution-card h3 { min-height: 100px; margin-bottom: 18px; }
.solution-card > p { color: var(--muted); }

.solution-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 30px;
  padding: 0;
  color: #52616c;
  list-style: none;
}

.solution-card li { position: relative; padding-left: 20px; }
.solution-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .67em;
  width: 8px;
  height: 2px;
  background: currentColor;
}

.solution-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.solution-card > a span { font-size: 1.35rem; }

.seller-support-preview {
  background: var(--white);
  border-bottom: 1px solid rgba(18, 38, 58, .08);
}

.support-preview-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 74px;
}

.support-preview-copy h2 { margin-bottom: 24px; }
.support-preview-copy > p:not(.eyebrow) { max-width: 560px; color: var(--muted); font-size: 1.06rem; }
.support-preview-copy .button { margin-top: 18px; }

.support-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.support-mini-grid article {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 52px rgba(18, 38, 58, .08);
}
.support-mini-grid article > span { color: var(--red); font-size: .75rem; font-weight: 900; letter-spacing: .12em; }
.support-mini-grid h3 { margin: 42px 0 18px; }
.support-mini-grid p { color: var(--muted); }
.support-mini-grid a { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); color: var(--navy); font-weight: 800; text-decoration: none; }

.why { background: var(--navy); color: #dbe5eb; }
.why h2, .why h3 { color: var(--white); }
.why .eyebrow { color: #ef8b8b; }

.why-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
  gap: 100px;
}

.why-intro { max-width: 540px; color: #a9bbc7; font-size: 1.08rem; }

.text-link {
  display: inline-flex;
  gap: 14px;
  margin-top: 18px;
  color: var(--white);
  font-weight: 800;
  text-underline-offset: 5px;
}

.principles { border-top: 1px solid rgba(255, 255, 255, .13); }

.principles article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.principles article > span {
  color: #ef8b8b;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.principles h3 { margin-bottom: 8px; font-size: 1.4rem; }
.principles p { margin-bottom: 0; color: #a9bbc7; }

.faq-section { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 76px; }
.faq-layout > .section-heading { position: sticky; top: 126px; }
.faq-grid { border-top: 1px solid var(--line); }
.faq-grid details { border-bottom: 1px solid var(--line); }
.faq-grid summary {
  position: relative;
  padding: 25px 52px 25px 0;
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary::after { content: "+"; position: absolute; right: 4px; top: 20px; color: var(--red-dark); font-size: 1.7rem; font-weight: 500; }
.faq-grid details[open] summary::after { content: "−"; }
.faq-grid details p { max-width: 760px; margin: -4px 44px 25px 0; color: var(--muted); }
.faq-grid summary:focus-visible { outline: 3px solid rgba(178, 34, 34, .24); outline-offset: 5px; }

.about { background: var(--soft); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) 1.25fr;
  align-items: stretch;
  gap: 68px;
}

.portrait-photo {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 24px 70px rgba(18, 38, 58, .17);
}

.portrait-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(to top, rgba(6, 20, 39, .72), transparent);
  pointer-events: none;
}

.portrait-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center top;
}

.portrait-photo figcaption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  color: var(--white);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-copy { align-self: center; }
.about-copy h2 { margin-bottom: 12px; }
.about-lede { margin-bottom: 20px; color: var(--red-dark); font-size: 1.35rem; font-weight: 750; }
.about-copy > p:not(.eyebrow, .about-lede) { max-width: 650px; color: var(--muted); font-size: 1.06rem; }

.about-copy .network-note {
  max-width: 650px;
  padding-left: 15px;
  border-left: 3px solid var(--steel);
  font-size: .82rem;
}

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

.form-security-host { margin-top: 18px; }

.form-privacy-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.55;
}

.form-status {
  margin: 20px 0 4px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
  color: var(--navy);
}

.form-status[hidden] { display: none; }

.form-status[data-state="processing"] {
  border-color: var(--steel);
  background: rgba(223, 230, 235, .55);
}

.form-status[data-state="success"] {
  border-color: #2f7853;
  background: #edf7f1;
}

.form-status[data-state="error"] {
  border-color: var(--red);
  background: #fff0ee;
}

.form-status strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.form-status p { margin: 0; }

[data-lead-form] .button[disabled] {
  cursor: wait;
  opacity: .68;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.about-facts li {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(13, 42, 67, .045);
}

.about-facts strong,
.about-facts span { display: block; }
.about-facts strong { color: var(--navy); font-size: 1.05rem; }
.about-facts span { margin-top: 3px; color: var(--muted); font-size: .72rem; font-weight: 700; }

.contact-strip {
  display: grid;
  grid-template-columns: .72fr 1.38fr 1.45fr;
  gap: 22px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.contact-strip small { display: block; color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-strip a { display: inline-block; margin-top: 6px; color: var(--navy); font-weight: 800; text-decoration: none; }
.contact-strip .email-link { font-size: clamp(.82rem, 1.03vw, .98rem); white-space: nowrap; }
.contact-strip span { display: block; margin-top: 6px; color: var(--navy); font-weight: 750; line-height: 1.45; }

.connect {
  background: var(--white);
  border-top: 1px solid rgba(18, 38, 58, .08);
}

.connect-shell { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: 70px; }
.connect-heading { position: sticky; top: 130px; }
.connect-heading h2 { margin-bottom: 24px; }
.connect-heading > p:last-child { color: var(--muted); font-size: 1.06rem; }

.lead-hub {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.lead-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 6px;
  border-radius: 18px;
  background: rgba(18, 38, 58, .07);
}

.lead-tabs button {
  min-height: 48px;
  border: 0;
  border-radius: 14px;
  color: var(--muted);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.lead-tabs button[aria-selected="true"] {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 7px 18px rgba(18, 38, 58, .1);
}

[data-lead-form] { padding: 30px 24px 24px; }
[data-lead-form][hidden] { display: none; }

.form-heading { margin-bottom: 28px; }
.form-heading h3 { margin-bottom: 8px; }
.form-heading p { margin-bottom: 0; color: var(--muted); }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

[data-lead-form] label {
  display: block;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 800;
}

[data-lead-form] input,
[data-lead-form] select,
[data-lead-form] textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  border: 1px solid #cdd3d3;
  border-radius: 11px;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}

[data-lead-form] input,
[data-lead-form] select { min-height: 50px; }
[data-lead-form] textarea { resize: vertical; }

[data-lead-form] input:focus,
[data-lead-form] select:focus,
[data-lead-form] textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(178, 34, 34, .13);
}

[data-lead-form] .consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  margin: 6px 0 24px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 600;
}

[data-lead-form] .consent input { width: 18px; min-height: 18px; margin: 2px 0 0; }

.site-footer {
  padding: 76px 0 28px;
  color: #a9bbc7;
  background: var(--navy-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr .8fr 1fr 1fr;
  gap: 45px;
}

.footer-brand img { width: 285px; }
.footer-brand p { margin: 18px 0 0; }

.site-footer h2 {
  margin: 6px 0 18px;
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-footer a { color: var(--white); text-decoration: none; }
.site-footer p { overflow-wrap: anywhere; }
.site-footer .footer-email { display: block; max-width: 100%; font-size: .9rem; overflow-wrap: normal; word-break: normal; }
.site-footer > .footer-grid > div:not(.footer-brand) > a { display: block; margin-bottom: 10px; }
.site-footer address { margin-bottom: 12px; font-style: normal; }

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .11);
  font-size: .72rem;
}

.footer-legal p { max-width: 650px; margin-bottom: 0; }

.privacy-page { background: var(--cream); }

.resource-page { background: var(--cream); }
.resource-hero {
  padding: 100px 0 92px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f5fafe 56%, #edf6fb 100%);
}
.resource-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; }
.resource-hero h1 { margin-bottom: 28px; font-size: clamp(3rem, 5.3vw, 5.2rem); }

.urgent-panel {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 26px;
  color: #dbe5eb;
  background: var(--navy);
  box-shadow: var(--shadow);
}
.urgent-panel > p:first-child { color: #ef8b8b; font-size: .72rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.urgent-panel h2 { margin-bottom: 20px; color: var(--white); font-size: clamp(2rem, 3.3vw, 3.1rem); }
.urgent-panel p:last-child { margin-bottom: 0; color: #b4c5d0; }

.resource-section { background: var(--white); border-top: 1px solid rgba(18, 38, 58, .08); }
.wholesale-section { background: var(--soft); }
.resource-content-grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: start; gap: 88px; }
.resource-heading { position: sticky; top: 126px; }
.resource-heading h2 { margin-bottom: 24px; }
.resource-heading > p:last-child { color: var(--muted); }
.resource-body > h3 { margin-top: 42px; font-size: 1.55rem; }

.step-list { display: grid; gap: 0; margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.step-list li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.step-list li > span { color: var(--red); font-size: .75rem; font-weight: 900; letter-spacing: .12em; }
.step-list h3 { margin-bottom: 9px; font-size: 1.35rem; }
.step-list p { margin-bottom: 0; color: var(--muted); }

.official-resources,
.privacy-alert,
.role-box,
.question-box {
  margin-top: 28px;
  padding: 28px;
  border-radius: 18px;
}
.official-resources { color: #dbe5eb; background: var(--navy); }
.official-resources h3 { color: var(--white); }
.official-resources p { margin-bottom: 9px; color: #b4c5d0; }
.official-resources p:last-child { margin-bottom: 0; }
.official-resources a { color: var(--white); font-weight: 800; text-underline-offset: 4px; }
.privacy-alert { border: 1px solid rgba(178, 34, 34, .2); background: rgba(178, 34, 34, .055); }
.privacy-alert strong { color: var(--red-dark); }
.privacy-alert p { margin: 8px 0 0; color: var(--muted); }
.role-box { margin-top: 0; border: 1px solid rgba(76, 110, 143, .27); background: #f3f8fc; box-shadow: 0 12px 32px rgba(13, 42, 67, .05); }
.role-box + .role-box { margin-top: 22px; }
.buyer-role-disclosure { border-left: 5px solid var(--red); background: var(--white); }
.role-box h3 { margin-bottom: 14px; }
.role-box p { color: #52616c; }
.role-box p:last-child { margin-bottom: 0; }

.check-list { display: grid; gap: 12px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 24px; color: #52616c; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .65em; width: 10px; height: 3px; background: var(--red); }
.question-box { border-left: 5px solid var(--steel); background: var(--white); box-shadow: 0 15px 45px rgba(18, 38, 58, .07); }
.question-box h3 { margin-bottom: 10px; }
.question-box p { margin-bottom: 0; color: var(--muted); }
.source-note { margin: 28px 0 0; color: var(--muted); font-size: .82rem; }
.source-note a { color: var(--navy); font-weight: 800; text-underline-offset: 3px; }

.resource-cta { background: var(--white); border-top: 1px solid rgba(18, 38, 58, .08); }
.resource-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.resource-cta h2 { max-width: 760px; margin-bottom: 0; }
.resource-cta .hero-actions { flex: 0 0 auto; }

.downloads-section { background: var(--soft); border-top: 1px solid rgba(13, 27, 42, .08); }
.download-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.download-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(13, 42, 67, .075);
}
.download-card .file-type { color: var(--red); font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.download-card h3 { margin: 34px 0 14px; }
.download-card p { color: var(--muted); }
.download-card a { margin-top: auto; color: var(--navy); font-weight: 850; text-underline-offset: 4px; }
.download-note { margin-top: 28px; padding: 22px 25px; border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: 0 14px 14px 0; color: var(--muted); background: var(--white); box-shadow: 0 10px 30px rgba(13, 42, 67, .05); }

/* Seller calculator and contract-readiness workflow */
.calculator-section { background: var(--white); border-top: 1px solid rgba(18, 38, 58, .08); }
.calculator-layout { display: grid; grid-template-columns: .82fr 1.18fr; align-items: start; gap: 72px; }
.calculator-copy h2 { margin-bottom: 22px; }
.calculator-copy > p { color: var(--muted); }
.formula-card {
  display: grid;
  gap: 7px;
  margin: 32px 0;
  padding: 28px;
  border-radius: 20px;
  color: #d7e2ea;
  background: var(--navy);
  box-shadow: var(--shadow);
}
.formula-card span { font-size: .9rem; }
.formula-card b { color: #f4a0a0; font-size: 1.25rem; }
.formula-card strong { margin-top: 8px; color: var(--white); font-size: 1.4rem; }
.compact-check-list { margin-top: 30px; }

.calculator-card,
.contract-form-card {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--soft);
  box-shadow: var(--shadow);
}
.calculator-card form { padding: 28px 24px 24px; }
.calculator-card .form-heading h2,
.contract-form-card .form-heading h2 { margin-bottom: 8px; font-size: clamp(1.7rem, 3vw, 2.35rem); }
.calculator-card label,
.contract-selector-label {
  display: block;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: .86rem;
  font-weight: 850;
}
.field-help { display: block; margin-top: 4px; color: var(--muted); font-size: .73rem; font-weight: 600; }
.currency-input { position: relative; display: block; margin-top: 8px; }
.currency-input > span { position: absolute; left: 15px; top: 50%; z-index: 1; transform: translateY(-50%); color: var(--muted); font-weight: 800; }
.currency-input input,
.contract-selector-label select {
  width: 100%;
  min-height: 54px;
  padding: 13px 14px 13px 34px;
  border: 1px solid #cdd3d3;
  border-radius: 11px;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
}
.contract-selector-label select { margin-top: 9px; padding-left: 14px; }
.currency-input input:focus,
.contract-selector-label select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(178, 34, 34, .13); }
.calculator-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button-quiet { border: 1px solid var(--line); color: var(--navy); background: var(--white); cursor: pointer; }
.calculator-result { padding: 30px; border-radius: 20px; color: #d4e0e8; background: var(--navy); }
.calculator-result .eyebrow { color: #f4a0a0; }
.calculator-result dl { margin: 0 0 22px; }
.calculator-result dl > div { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.calculator-result dt { color: #b7c7d2; }
.calculator-result dd { margin: 0; color: var(--white); font-weight: 850; }
.calculator-result .result-total { align-items: center; margin-top: 7px; padding-top: 20px; border-bottom: 0; }
.calculator-result .result-total dt { color: var(--white); font-weight: 800; }
.calculator-result .result-total dd { color: #f4a0a0; font-size: 1.8rem; }
.calculator-result > p:last-child { margin-bottom: 0; color: #aebfca; font-size: .78rem; }

.expectation-section,
.signature-process { background: var(--soft); border-top: 1px solid rgba(18, 38, 58, .08); }
.expectation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.expectation-grid article { min-height: 270px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 14px 38px rgba(13, 42, 67, .06); }
.expectation-grid article > span { color: var(--red); font-size: .75rem; font-weight: 900; letter-spacing: .14em; }
.expectation-grid h3 { margin: 42px 0 14px; }
.expectation-grid p { margin-bottom: 0; color: var(--muted); }

.contract-routing-section { background: var(--white); border-top: 1px solid rgba(18, 38, 58, .08); }
.contract-routing-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: 70px; }
.contract-routing-grid h2 { margin-bottom: 22px; }
.contract-routing-grid > div > p { color: var(--muted); }
.contract-recommendation { padding: 34px; border: 1px solid rgba(76, 110, 143, .30); border-radius: 24px; background: #f2f8fc; box-shadow: 0 18px 46px rgba(13, 42, 67, .075); }
.contract-recommendation h2 { margin-bottom: 12px; font-size: clamp(1.9rem, 3.5vw, 3rem); }
.contract-recommendation > strong { display: block; margin-bottom: 18px; color: var(--red-dark); }
.contract-recommendation > p { color: #52616c; }
.contract-recommendation .text-link {
  color: var(--navy);
  font-weight: 900;
  text-decoration-thickness: 2px;
}
.contract-recommendation .text-link span { color: var(--red-dark); }
.contract-caution { margin: 26px 0 0; padding-top: 20px; border-top: 1px solid rgba(76, 110, 143, .22); font-size: .8rem; }

.contract-intake-section { background: var(--soft); border-top: 1px solid rgba(18, 38, 58, .08); }
.contract-intake-grid { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; gap: 58px; }
.contract-intake-copy { position: sticky; top: 126px; }
.contract-intake-copy > p { color: var(--muted); }
.contract-form-card [data-lead-form] { padding: 30px 24px 24px; }
.contract-form-card .field-full { grid-column: 1 / -1; }
[data-lead-form] .consent-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  margin: 6px 0 24px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 600;
}
[data-lead-form] .consent-field input { width: 18px; min-height: 18px; margin: 2px 0 0; }
.signature-process { background: var(--white); }

/* Real-estate sales path and property-file workflow */
.sales-path-section { background: var(--white); border-top: 1px solid rgba(18, 38, 58, .08); }
.sales-path-grid,
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.sales-path-card,
.pricing-card {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(13, 42, 67, .07);
}
.sales-path-card { border-top: 6px solid var(--navy); }
.sales-path-card.market-path { border-top-color: var(--red); }
.sales-path-card > span,
.plan-label { color: var(--red-dark); font-size: .74rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.sales-path-card h3 { margin: 34px 0 18px; }
.sales-path-card > p { color: var(--muted); }
.sales-path-card > a { margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); color: var(--navy); font-weight: 850; text-decoration: none; }

.property-file-section { background: var(--soft); border-top: 1px solid rgba(18, 38, 58, .08); }
.property-file-layout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 70px; }
.property-file-layout h2 { margin-bottom: 22px; }
.section-lede { color: var(--muted); font-size: 1.06rem; }
.property-file-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 0; padding: 0; list-style: none; }
.property-file-grid li { display: grid; grid-template-columns: 38px 1fr; gap: 14px; min-height: 190px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: 0 10px 28px rgba(13, 42, 67, .05); }
.property-file-grid li > span { color: var(--red); font-size: .72rem; font-weight: 900; letter-spacing: .12em; }
.property-file-grid h3 { margin-bottom: 10px; font-size: 1.28rem; }
.property-file-grid p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }

.pricing-section { background: var(--white); border-top: 1px solid rgba(18, 38, 58, .08); }
.pricing-card { min-height: 560px; }
.pricing-card h3 { margin: 26px 0 18px; font-size: clamp(2.4rem, 4vw, 3.8rem); }
.pricing-card.featured-plan { border: 2px solid var(--navy); }
.price-split { display: grid; gap: 5px; padding: 18px 20px; border-radius: 14px; background: var(--soft); }
.price-split strong { color: var(--navy); font-size: 1.12rem; }
.price-split span { color: var(--muted); font-size: .85rem; }
.pricing-card .check-list { margin: 28px 0 32px; }
.pricing-card .button { margin-top: auto; }
.independence-notice { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; margin-top: 32px; padding: 40px; border: 1px solid rgba(76, 110, 143, .26); border-radius: var(--radius); background: #f2f8fc; box-shadow: 0 16px 42px rgba(13, 42, 67, .055); }
.independence-notice h2 { margin-bottom: 0; font-size: clamp(2rem, 3.7vw, 3.2rem); }
.independence-notice > div:last-child p { color: var(--muted); }
.independence-notice > div:last-child p:last-child { margin-bottom: 0; }

.sales-workflow { background: var(--soft); border-top: 1px solid rgba(18, 38, 58, .08); }
.sales-workflow .expectation-grid { grid-template-columns: repeat(3, 1fr); }
.sales-workflow .expectation-grid article { min-height: 250px; }

.seller-document-section { background: var(--white); border-top: 1px solid rgba(18, 38, 58, .08); }
.agreement-boundary {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 56px;
  margin-bottom: 28px;
  padding: 38px;
  border-radius: var(--radius);
  color: #dbe5eb;
  background: var(--navy);
  box-shadow: var(--shadow);
}
.agreement-boundary h2 { margin-bottom: 0; color: var(--white); font-size: clamp(2rem, 3.7vw, 3.2rem); }
.agreement-boundary .eyebrow { color: #ef8b8b; }
.agreement-boundary > div:last-child p { color: #b4c5d0; }
.agreement-boundary > div:last-child p:last-child { margin-bottom: 0; }
.agreement-boundary strong { color: var(--white); }

.document-responsibility-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.document-responsibility-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(13, 42, 67, .07);
}
.document-owner { color: var(--red-dark); font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.document-responsibility-card h3 { margin: 32px 0 15px; }
.document-responsibility-card p { color: var(--muted); }
.document-actions { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); }
.document-actions a { color: var(--navy); font-weight: 850; text-underline-offset: 4px; }

.process-boundary-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 28px; }
.process-boundary-grid article { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); }
.process-boundary-grid article:last-child { border-left: 5px solid var(--red); background: #fff9f8; }
.process-boundary-grid h3 { margin-bottom: 22px; }
.process-boundary-grid .check-list { margin-bottom: 0; }

.current-form-notice { margin-top: 28px; padding: 28px 30px; border: 1px solid rgba(76, 110, 143, .27); border-left: 5px solid var(--steel); border-radius: 0 18px 18px 0; background: #f3f8fc; }
.current-form-notice > strong { display: block; margin-bottom: 8px; color: var(--navy); font-size: 1.12rem; }
.current-form-notice > p { max-width: 900px; color: var(--muted); }
.current-form-notice > .button { margin-top: 8px; }
.current-form-notice .hero-actions { margin-top: 20px; }

.legal-content {
  max-width: 820px;
  padding-top: 100px;
  padding-bottom: 120px;
}

.legal-content h1 { margin-bottom: 30px; }
.legal-content h2 { margin-top: 42px; font-size: 1.5rem; }
.legal-content p { color: #52616c; }
.legal-content .legal-intro { font-size: 1.14rem; }
.legal-content .button { margin-top: 30px; }

@media (max-width: 1040px) {
  .header-inner { grid-template-columns: 235px 1fr auto; gap: 20px; }
  .brand img { width: 230px; }
  #site-navigation { gap: 18px; }
  .hero-grid { grid-template-columns: 1fr 420px; gap: 45px; }
  .solution-card { padding: 27px; }
  .why-grid { gap: 60px; }
  .connect-shell { gap: 45px; }
  .support-preview-grid,
  .resource-content-grid { gap: 50px; }
}

@media (max-width: 900px) {
  .section { padding: 82px 0; }
  .header-inner { grid-template-columns: 1fr auto; min-height: 78px; }
  .brand img { width: 230px; }
  .menu-button { display: block; grid-column: 2; grid-row: 1; }
  .header-call { display: none; }

  #site-navigation {
    position: absolute;
    left: -20px;
    right: -20px;
    top: 100%;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 20px 30px rgba(18, 38, 58, .1);
  }

  #site-navigation.is-open { display: flex; }
  #site-navigation a { padding: 12px 4px; }
  #site-navigation a::after { display: none; }

  .hero { padding: 85px 0; }
  .hero-grid, .why-grid, .faq-layout, .about-grid, .connect-shell, .support-preview-grid, .resource-hero-grid, .resource-content-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 55px; }
  .path-panel { max-width: 620px; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: auto; }
  .solution-card h3 { min-height: 0; }
  .card-topline { margin-bottom: 34px; }
  .about-grid { gap: 42px; }
  .faq-layout { gap: 38px; }
  .faq-layout > .section-heading { position: static; }
  .portrait-photo {
    width: min(100%, 430px);
    min-height: 0;
    aspect-ratio: 4 / 5;
    justify-self: center;
  }
  .portrait-photo img {
    height: 100%;
    min-height: 0;
  }
  .connect-heading { position: static; }
  .resource-heading { position: static; }
  .resource-cta-inner { align-items: flex-start; flex-direction: column; }
  .calculator-layout,
  .contract-routing-grid,
  .contract-intake-grid,
  .property-file-layout,
  .agreement-boundary { grid-template-columns: 1fr; }
  .contract-intake-copy { position: static; }
  .expectation-grid { grid-template-columns: 1fr; }
  .sales-workflow .expectation-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 15px; }
  .contact-strip { grid-template-columns: 1fr 1.45fr; }
  .contact-strip > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  #site-navigation { left: -14px; right: -14px; }
  .section { padding: 66px 0; }
  .brand img { width: 210px; }
  h1 { font-size: clamp(3rem, 15vw, 4.3rem); }
  h2 { font-size: clamp(2.1rem, 11vw, 3.1rem); }
  .hero { padding: 70px 0; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .trust-list { display: grid; }
  .path-panel-heading { padding: 25px 22px; }
  .path-panel-heading img { width: 64px; height: 64px; }
  .path-row { grid-template-columns: 32px 1fr auto; min-height: 108px; padding: 18px 22px; gap: 12px; }
  .path-row:hover, .path-row:focus-visible { padding-left: 25px; }
  .path-row small { font-size: .72rem; }
  .solution-card { padding: 28px 24px; }
  .support-mini-grid { grid-template-columns: 1fr; }
  .support-mini-grid article { min-height: 300px; }
  .about-grid { gap: 32px; }
  .portrait-photo { width: min(100%, 390px); }
  .about-facts { grid-template-columns: 1fr; }
  .utility-inner { min-height: 58px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 2px; padding-block: 7px; }
  .utility-inner .utility-location { display: none; }
  .contact-strip { grid-template-columns: 1fr; }
  .contact-strip > div:last-child { grid-column: auto; }
  .contact-strip .email-link { white-space: normal; overflow-wrap: anywhere; }
  .connect-shell { gap: 34px; }
  .lead-hub { padding: 8px; }
  [data-lead-form] { padding: 26px 14px 18px; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand { grid-column: auto; }
  .footer-legal { flex-direction: column; margin-top: 44px; }
  .legal-content { padding-top: 72px; }
  .resource-hero { padding: 72px 0 66px; }
  .urgent-panel { padding: 28px 24px; }
  .resource-cta .hero-actions { width: 100%; }
  .download-grid { grid-template-columns: 1fr; }
  .sales-path-grid,
  .pricing-grid,
  .property-file-grid,
  .sales-workflow .expectation-grid,
  .independence-notice,
  .document-responsibility-grid,
  .process-boundary-grid { grid-template-columns: 1fr; }
  .sales-path-card,
  .pricing-card { min-height: auto; }
  .calculator-card form,
  .contract-form-card [data-lead-form] { padding: 24px 14px 18px; }
  .calculator-result { padding: 24px 20px; }
  .calculator-result dl > div { align-items: flex-start; flex-direction: column; gap: 4px; }
  .calculator-actions { display: grid; grid-template-columns: 1fr; }
  .contract-form-card .field-full { grid-column: auto; }
}

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