:root {
  --navy: #060f3d;
  --navy-dark: #060f3d;
  --blue: #347d96;
  --blue-light: #d9edf0;
  --cream: #f7f6f2;
  --paper: #ffffff;
  --ink: #142b3e;
  --muted: #5f6f7c;
  --line: #dce3e6;
  --shadow: 0 22px 60px rgba(16, 41, 60, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-header {
  min-height: 76px;
  color: #fff;
  background: var(--navy);
}

.header-inner,
.hero-inner,
.footer-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 142px;
  height: 60px;
  display: block;
  object-fit: contain;
  mix-blend-mode: lighten;
}

.header-contact {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.015em;
}

.header-contact a {
  text-decoration: none;
}

.header-contact a:hover,
.header-contact a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.46);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -205px;
  top: 70px;
  border: 1px solid rgba(52, 125, 150, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(52, 125, 150, 0.026),
    0 0 0 130px rgba(52, 125, 150, 0.02);
  pointer-events: none;
}

.hero-inner {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.8fr);
  align-items: center;
  gap: clamp(56px, 8vw, 112px);
  padding-block: 74px 68px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 610px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-family: "Nunito Sans", "Arial Rounded MT Bold", Arial, sans-serif;
  font-size: clamp(42px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.intro {
  max-width: 530px;
  margin: 22px 0 35px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.benefits {
  display: grid;
  gap: 20px;
}

.benefit {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 17px;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  position: relative;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 50%;
}

.benefit h2 {
  margin: 0 0 3px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.icon-chart {
  grid-template-columns: repeat(3, 4px);
  align-items: end;
  justify-content: center;
  gap: 3px;
  padding-bottom: 12px;
}

.icon-chart i {
  width: 4px;
  height: 8px;
  background: currentColor;
  border-radius: 1px;
}

.icon-chart i:nth-child(2) {
  height: 13px;
}

.icon-chart i:nth-child(3) {
  height: 19px;
}

.icon-equity span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
}

.icon-market .roof {
  width: 21px;
  height: 21px;
  position: absolute;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
}

.icon-market .door {
  width: 18px;
  height: 16px;
  position: absolute;
  top: 19px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.presented-by {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.presented-rule {
  width: 34px;
  height: 1px;
  background: var(--blue);
}

.presented-by p {
  margin: 0;
}

.presented-by small,
.presented-by strong {
  display: block;
}

.presented-by small {
  margin-bottom: 2px;
  color: #87929a;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.presented-by strong {
  color: var(--navy);
  font-family: "Nunito Sans", "Arial Rounded MT Bold", Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.embed-column {
  width: 100%;
  max-width: 465px;
  justify-self: end;
}

.valuation-card {
  padding: 12px;
  position: relative;
  background: #fff;
  border: 1px solid #e3e7e8;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.card-accent {
  width: 64px;
  height: 4px;
  position: absolute;
  top: -1px;
  left: 50%;
  z-index: 2;
  background: var(--blue);
  border-radius: 0 0 4px 4px;
  transform: translateX(-50%);
}

.homebot-embed {
  width: 100%;
  background: #fbfcfc;
  border-radius: 4px;
}

#homebot_homeowner {
  width: 100%;
}

#homebot_homeowner > * {
  width: 100% !important;
}

#homebot_homeowner iframe {
  display: block;
  width: 100% !important;
  border: 0;
}

.privacy-note {
  margin: 17px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #7c888f;
  font-size: 11px;
}

.lock {
  width: 9px;
  height: 8px;
  position: relative;
  border: 1.5px solid #7c888f;
  border-radius: 1px;
}

.lock::before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: -6px;
  left: 50%;
  border: 1.5px solid #7c888f;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  transform: translateX(-50%);
}

.site-footer {
  color: #b9c3ca;
  background: var(--navy-dark);
}

.footer-inner {
  min-height: 69px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 9px;
  letter-spacing: 0.025em;
}

.footer-inner p {
  margin: 0;
}

.equal-housing {
  display: flex;
  align-items: center;
  gap: 7px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.equal-housing-mark {
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  color: #fff;
  border: 1px solid #8393a0;
  font-size: 12px;
}

@media (max-width: 900px) {
  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 50px;
    padding-block: 64px 60px;
  }

  .hero-copy,
  .embed-column {
    max-width: 650px;
    justify-self: center;
  }

  .embed-column {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .header-inner,
  .hero-inner,
  .footer-inner {
    width: min(100% - 36px, 1160px);
  }

  .site-header,
  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 112px;
    height: 54px;
  }

  .header-contact {
    gap: 9px;
    font-size: 12px;
  }

  .header-contact span:first-child {
    display: none;
  }

  .header-contact .divider {
    display: none;
  }

  .hero-inner {
    gap: 42px;
    padding-block: 50px 48px;
  }

  .eyebrow {
    margin-bottom: 15px;
    font-size: 10px;
  }

  h1 {
    font-size: clamp(38px, 11.8vw, 49px);
    line-height: 1.06;
  }

  .intro {
    margin: 18px 0 29px;
    font-size: 15px;
  }

  .benefits {
    gap: 18px;
  }

  .benefit {
    grid-template-columns: 43px 1fr;
    gap: 13px;
  }

  .benefit-icon {
    width: 40px;
    height: 40px;
  }

  .benefit p {
    font-size: 12px;
  }

  .presented-by {
    margin-top: 29px;
  }

  .valuation-card {
    margin-inline: -4px;
    padding: 8px;
  }

  .footer-inner {
    min-height: 88px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    line-height: 1.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
