:root {
  --ink: #163342;
  --muted: #5b6e77;
  --ocean: #174f6b;
  --deep: #123e58;
  --orange: #e94b22;
  --mist: #f0f5f6;
  --line: #dbe4e7;
  --green: #2d795f;
  --white: #fff;
  --body: "Manrope", Arial, sans-serif;
  --display: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
}
.analytics-preference {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  text-decoration: underline;
  cursor: pointer;
}
/* First-visit stage: the page stays rendered underneath the dissolve. */
.intro-pending body {
  overflow: hidden;
}
.intro-pending body > :not(#mail-intro) {
  visibility: hidden;
}
.intro-active .hero-copy,
.intro-active .hero-scene,
.intro-active .hero-postcard,
.intro-active .map-label,
.intro-active .delivery-pill,
.intro-active .map-canvas .is-selected,
.intro-active .underlined::after {
  animation-play-state: paused;
}
.intro-active.intro-revealing .hero-copy,
.intro-active.intro-revealing .hero-scene,
.intro-active.intro-revealing .hero-postcard,
.intro-active.intro-revealing .map-label,
.intro-active.intro-revealing .delivery-pill,
.intro-active.intro-revealing .map-canvas .is-selected,
.intro-active.intro-revealing .underlined::after {
  animation-play-state: running;
}
.mail-intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  height: 100dvh;
  background: #eef3ef;
  color: var(--ink);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  padding: 27px clamp(20px, 4vw, 64px) 22px;
  overflow: hidden;
  isolation: isolate;
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.85s;
}
.mail-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 55%, #ffffff90 0, transparent 68%);
}
.intro-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.intro-topbar img {
  width: 190px;
  height: auto;
  mix-blend-mode: multiply;
}
.intro-skip {
  border: 0;
  background: transparent;
  padding: 10px 0 10px 15px;
  color: #49626c;
  font-size: 12px;
  font-weight: 700;
}
.intro-skip span {
  margin-left: 14px;
  font-size: 18px;
}
.intro-heading {
  text-align: center;
  padding-top: clamp(12px, 2.5vh, 28px);
  position: relative;
  z-index: 1;
}
.intro-heading .eyebrow {
  justify-content: center;
  margin-bottom: 10px;
  font-size: 11px;
}
.intro-heading h2 {
  font-size: clamp(42px, 5.7vh, 68px);
  line-height: 1;
}
.intro-heading h2 br {
  display: none;
}
.intro-heading > p:last-child {
  font-size: 12px;
  margin-top: 12px;
}
.intro-neighborhood {
  min-height: 0;
  width: min(100%, 1100px);
  margin: auto;
  height: 100%;
  position: relative;
}
.intro-neighborhood svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.intro-home {
  transform-box: fill-box;
}
.intro-mailbox .mailbox-flag {
  transform: rotate(80deg);
  transform-origin: 117px 86px;
  transition: transform 0.25s cubic-bezier(0.2, 1.5, 0.5, 1);
}
.intro-mailbox .mailbox-check {
  opacity: 0;
  transition: opacity 0.25s;
}
.intro-mailbox .mailbox-ripple {
  opacity: 0;
  transform-origin: 107px 97px;
}
.intro-mailbox.is-delivered .mailbox-flag {
  transform: rotate(0);
}
.intro-mailbox.is-delivered .mailbox-check {
  opacity: 1;
}
.intro-mailbox.is-delivered .mailbox-ripple {
  animation: mailbox-delivered 0.55s ease-out both;
}
.intro-flying-card {
  will-change: transform, opacity;
}
.intro-controls {
  position: relative;
  text-align: center;
  padding-top: 5px;
}
.intro-controls .button {
  min-width: 235px;
  font-size: 13px;
  padding: 14px 23px;
  box-shadow: 0 7px 20px #174f6b18;
}
.intro-controls .button:disabled {
  opacity: 1;
  cursor: default;
  background: var(--deep);
}
.intro-controls #intro-status {
  margin-top: 12px;
  font-size: 11px;
  min-height: 19px;
}
.intro-progress {
  width: 150px;
  height: 2px;
  background: #cddbd3;
  margin: 10px auto 8px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.2s;
}
.intro-progress > span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--green);
  transition: width 0.14s linear;
}
.intro-sending .intro-progress {
  opacity: 1;
}
.intro-caption {
  font-size: 9px;
  color: #63756e;
}
.intro-leaving {
  opacity: 0;
  filter: blur(5px);
  pointer-events: none;
}
.intro-complete .intro-controls .button {
  background: var(--green);
  border-color: var(--green);
}
@keyframes mailbox-delivered {
  0% {
    opacity: 0.8;
    transform: scale(0.65);
  }
  100% {
    opacity: 0;
    transform: scale(1.9);
  }
}
@media (max-width: 700px) {
  .mail-intro {
    padding: 16px 18px max(16px, env(safe-area-inset-bottom));
  }
  .intro-topbar img {
    width: 155px;
  }
  .intro-skip {
    font-size: 11px;
  }
  .intro-heading {
    padding-top: 16px;
  }
  .intro-heading h2 {
    font-size: clamp(36px, 5.5vh, 50px);
  }
  .intro-heading h2 br {
    display: block;
  }
  .intro-heading .eyebrow {
    font-size: 9px;
    margin-bottom: 10px;
  }
  .intro-heading > p:last-child {
    font-size: 11px;
    margin-top: 8px;
  }
  .intro-neighborhood {
    width: min(100%, 440px);
  }
  .intro-controls .button {
    min-width: 220px;
    padding: 12px 19px;
  }
  .intro-controls #intro-status {
    font-size: 10px;
    margin-top: 9px;
  }
  .intro-caption {
    font-size: 8px;
  }
  .intro-progress {
    margin-top: 7px;
    margin-bottom: 4px;
  }
}
@media (max-height: 580px) and (min-width: 701px) {
  .mail-intro {
    padding-top: 12px;
    padding-bottom: 10px;
  }
  .intro-topbar img {
    width: 150px;
  }
  .intro-heading {
    padding-top: 0;
  }
  .intro-heading h2 {
    font-size: 36px;
  }
  .intro-heading .eyebrow,
  .intro-heading > p:last-child {
    display: none;
  }
  .intro-controls .button {
    padding-block: 9px;
  }
  .intro-controls #intro-status {
    margin-top: 5px;
  }
  .intro-caption {
    display: none;
  }
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  color: var(--ink);
  font: 15px/1.7 var(--body);
  background: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(64px, 6.7vw, 96px);
}
h2 {
  font-size: clamp(42px, 4.5vw, 64px);
}
h3 {
  font-weight: 800;
  font-size: 17px;
  line-height: 1.35;
}
p {
  color: var(--muted);
}
p + p {
  margin-top: 16px;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--ocean);
  outline-offset: 2px;
}
::selection {
  color: white;
  background: var(--ocean);
}
.container {
  width: min(1280px, calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding-block: 100px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 800;
  color: var(--ocean);
  margin-bottom: 22px;
}
.status-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--ocean);
  color: white;
  padding: 16px 24px;
  border: 1px solid var(--ocean);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: var(--deep);
  transform: translateY(-2px);
}
.button span[aria-hidden] {
  font-size: 20px;
  line-height: 1;
}
.button-small {
  padding: 11px 17px;
  gap: 16px;
  font-size: 12px;
}
.button-light {
  background: white;
  color: var(--deep);
  border-color: white;
}
.button-light:hover {
  background: #eaf1f3;
}
.button-outline {
  background: transparent;
  color: var(--ink);
  border-color: #a8bac3;
}
.button-outline:hover {
  background: #e2ebee;
}
.button-row {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-weight: 800;
  font-size: 12px;
  padding-block: 8px;
}
.text-link:hover {
  color: var(--orange);
}
.text-link span {
  font-size: 19px;
}
.fine-print {
  font-size: 11px;
  line-height: 1.65;
}
.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;
}
[hidden] {
  display: none !important;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  background: white;
  padding: 12px;
  z-index: 100;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  height: 88px;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  z-index: 30;
  border-bottom: 1px solid #edf0f1;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 26px;
}
.brand {
  flex-shrink: 0;
}
.brand img {
  width: 205px;
  height: auto;
}
.nav nav {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 11px;
  font-weight: 700;
}
.nav nav > a:not(.button):hover {
  color: var(--orange);
}
.nav-call {
  margin-left: 16px;
}
.nav-call span {
  margin-left: 9px;
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 44px;
  padding-top: 64px;
  padding-bottom: 64px;
  align-items: center;
}
.hero .eyebrow {
  margin-bottom: 21px;
}
.hero-copy h1 {
  margin-bottom: 28px;
}
.underlined {
  position: relative;
  white-space: nowrap;
}
.underlined:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 100%;
  background: var(--orange);
  transform: rotate(-1.2deg);
  z-index: -1;
  animation: underline 1.4s 0.3s both;
  transform-origin: left;
}
.hero-description {
  font-size: 16px;
  line-height: 1.8;
  max-width: 440px;
}
.hero-sub {
  max-width: 425px;
  font-size: 13px;
  margin-top: 13px;
}
.hero .button-row {
  margin-top: 28px;
  gap: 22px;
}
.hero-price {
  display: flex;
  gap: 23px;
  margin-top: 34px;
  align-items: center;
}
.hero-price > strong {
  font-size: 16px;
  white-space: nowrap;
}
.hero-price strong span {
  font-size: 11px;
  font-weight: 500;
}
.hero-price > span {
  border-left: 1px solid var(--line);
  padding-left: 22px;
  font-size: 10px;
  color: var(--muted);
  line-height: 1.7;
}
.hero-scene {
  height: 576px;
  background: #e8f0f2;
  position: relative;
  border-radius: 8px;
  isolation: isolate;
  overflow: hidden;
}
.map-heading {
  position: absolute;
  inset: 23px 22px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 9px;
  font-weight: 700;
  z-index: 3;
}
.map-heading > span:first-child {
  display: flex;
  gap: 7px;
  align-items: center;
}
.demo-badge {
  background: #fff;
  border: 1px solid #d4e0e4;
  border-radius: 3px;
  padding: 4px 8px;
  font-size: 9px;
  line-height: 1.4;
  color: var(--muted);
  white-space: nowrap;
}
.map-canvas {
  position: absolute;
  inset: 30px -35px 110px;
  transform: rotate(-11deg) scale(1.06);
  opacity: 0.85;
}
.neighborhood-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.property {
  transition:
    opacity 0.65s,
    filter 0.65s;
}
.property.is-selected .lot {
  fill: #c7e1d5;
  stroke: #2d795f;
  stroke-width: 1.4;
}
.property.is-selected .roof {
  fill: #376951;
}
.property.is-selected .roof-side {
  fill: #254c3b;
}
.property.is-selected .house-base {
  fill: #fff;
}
.property:not(.is-selected) {
  opacity: 0.6;
}
.property .selection-dot {
  opacity: 0;
}
.property.is-selected .selection-dot {
  opacity: 1;
}
.map-canvas .is-selected {
  animation: house-select 1.2s both;
  animation-delay: var(--delay);
}
.map-label {
  position: absolute;
  z-index: 2;
  background: white;
  border: 1px solid #dbe6e8;
  box-shadow: 0 8px 22px #173d4c0d;
  padding: 13px 15px;
  display: flex;
  gap: 12px;
  align-items: center;
  border-radius: 5px;
  animation: enter 0.8s 0.4s both;
}
.map-label small,
.map-label strong {
  display: block;
}
.map-label small {
  font-size: 9px;
  color: var(--muted);
}
.map-label strong {
  font-size: 11px;
}
.map-label-one {
  top: 91px;
  left: 27px;
}
.map-label-two {
  top: 211px;
  right: 21px;
  animation-delay: 0.8s;
}
.mini-icon {
  font-size: 25px;
  color: var(--ocean);
}
.check-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  background: #e6f1e9;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  border-radius: 50%;
  flex-shrink: 0;
}
.sample-pin {
  position: absolute;
  top: 282px;
  left: 39px;
  font-size: 9px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.sample-pin > span {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px #2d795f20;
}
.hero-postcard {
  position: absolute;
  left: 48px;
  right: 53px;
  bottom: 80px;
  height: 202px;
  background: #fff;
  box-shadow: 0 17px 28px #183b4c2b;
  display: grid;
  grid-template-columns: 52% 48%;
  transform: rotate(-7deg);
  animation: postcard-arrive 1.1s 0.8s both;
  z-index: 4;
}
.postcard-picture {
  position: relative;
  overflow: hidden;
}
.postcard-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.postcard-picture > span {
  position: absolute;
  top: 12px;
  left: 12px;
  color: white;
  font-size: 8px;
  font-weight: 800;
  text-shadow: 0 1px 4px #000;
  background: #16334270;
  padding: 4px 6px;
}
.postcard-copy {
  background: var(--deep);
  color: white;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.postcard-copy > strong {
  font-family: var(--display);
  font-size: 31px;
  line-height: 0.98;
  font-weight: 600;
}
.postcard-copy > span {
  font-size: 8px;
  margin-top: 12px;
  line-height: 1.5;
  color: #d0e3ed;
}
.postcard-copy > b {
  margin-top: auto;
  font-size: 8px;
  background: #c83d1a;
  padding: 7px 10px;
  white-space: nowrap;
}
.postcard-stamp {
  position: absolute;
  right: -27px;
  bottom: -25px;
  width: 77px;
  height: 77px;
  border-radius: 50%;
  background: #f1aa77;
  border: 4px solid #e8f0f2;
  color: #163342;
  display: grid;
  place-content: center;
  text-align: center;
  font-weight: 800;
  font-size: 10px;
  transform: rotate(13deg);
  line-height: 1.4;
}
.delivery-pill {
  position: absolute;
  left: 33px;
  bottom: 45px;
  background: white;
  padding: 9px 14px;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 5px 15px #173d4c0c;
  border-radius: 4px;
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 5;
  animation: enter 1s 1.5s both;
}
.delivery-pill .check-circle {
  width: 18px;
  height: 18px;
  font-size: 10px;
}
.scene-caption {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-size: 8px;
  color: var(--muted);
}
.service-ribbon {
  background: var(--deep);
  color: #fff;
}
.service-ribbon .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 23px;
  font-size: 12px;
  font-weight: 700;
}
.service-ribbon i {
  font-style: normal;
  font-size: 20px;
  color: #82a5b8;
}
.service-ribbon b {
  color: #eea578;
  margin-left: 14px;
}
.trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 29px;
  border-bottom: 1px solid var(--line);
  gap: 30px;
}
.trust h2 {
  font: 700 12px var(--body);
  white-space: nowrap;
  letter-spacing: 0;
}
.company-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
  width: 68%;
}
.company-logos img {
  max-width: 29%;
  object-fit: contain;
  opacity: 0.63;
  filter: grayscale(1);
}
.company-logos img:first-child {
  width: 122px;
  object-fit: cover;
  height: 68px;
  object-position: center;
}
.comparison {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.comparison h2 {
  margin-bottom: 26px;
}
.comparison > div > p:not(.eyebrow) {
  font-size: 13px;
  max-width: 400px;
}
.comparison .text-link {
  margin-top: 20px;
}
.comparison-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.comparison-panel {
  background: #f5f6f5;
  padding: 22px 19px 24px;
  border: 1px solid #e7eceb;
}
.comparison-panel.selected {
  background: #edf4f1;
  border-color: #c9ddd2;
}
.comparison-panel h3 {
  font-size: 12px;
  margin-top: 18px;
}
.comparison-panel p {
  font-size: 10px;
  margin-top: 5px;
}
.house-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 11px 7px;
  padding: 8px 0;
}
.house-grid svg {
  width: 100%;
  height: 28px;
  fill: #b4beba;
}
.house-grid.broad svg {
  fill: #8da09a;
}
.house-grid.targeted svg.chosen {
  fill: var(--green);
}
.house-grid.targeted svg:not(.chosen) {
  fill: #d4dfda;
  opacity: 0.65;
}
.comparison-visual > .fine-print {
  grid-column: 1/-1;
  font-size: 10px;
  margin-top: 5px;
  line-height: 1.6;
}
.targeting {
  background: var(--mist);
}
.section-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 44px;
}
.section-intro > p,
.section-intro > div:nth-child(2) {
  max-width: 370px;
  font-size: 13px;
  line-height: 1.8;
}
.section-intro .eyebrow {
  margin-bottom: 16px;
}
.target-builder {
  display: grid;
  grid-template-columns: 40% 60%;
  border: 1px solid #cedde3;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 14px 35px #123e5808;
}
.builder-controls {
  padding: 28px 32px;
}
.builder-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.builder-title h3 {
  font-size: 16px;
}
.builder-controls > p {
  font-size: 11px;
  margin: 6px 0 18px;
}
label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  margin: 17px 0 7px;
}
input,
select,
textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid #ccd9df;
  border-radius: 3px;
  background: white;
  color: var(--ink);
  padding: 12px;
  font-size: 12px;
  min-height: 44px;
}
select {
  padding-right: 25px;
}
textarea {
  resize: vertical;
}
.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.reset-filters {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 10px;
  margin-top: 10px;
  padding: 0;
}
.builder-result {
  background: #e3ece9;
  position: relative;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.result-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 25px;
  font-size: 10px;
  font-weight: 700;
}
.result-top .status-dot {
  margin-right: 6px;
}
.builder-map {
  position: absolute;
  inset: 28px -10px 95px;
  transform: rotate(-7deg) scale(1.15);
}
.result-summary {
  position: relative;
  margin: auto 20px 0;
  background: var(--deep);
  padding: 20px 25px;
  color: white;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  z-index: 2;
  box-shadow: 0 5px 20px #123e5820;
}
.result-summary > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.result-summary strong {
  font-family: var(--display);
  font-size: 59px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.result-summary > div > span:last-child {
  font-size: 10px;
  color: #c9dce5;
}
.result-summary .demo-badge {
  background: #ffffff12;
  color: #e0eaf0;
  border-color: #668393;
  font-size: 8px;
}
.result-summary .button {
  padding: 12px 15px;
  font-size: 10px;
  gap: 15px;
}
.result-note {
  position: relative;
  z-index: 2;
  font-size: 9px;
  padding: 10px 22px 15px;
  color: #415c50;
  background: #e3ece9;
}
.target-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 44px;
}
.line-icon {
  font-size: 26px;
  color: var(--ocean);
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}
.target-options h3 {
  font-size: 12px;
  margin-bottom: 10px;
}
.target-options p {
  font-size: 11px;
  line-height: 1.8;
}
.data-note {
  font-size: 10px;
  line-height: 1.8;
  border-top: 1px solid #d3e0e4;
  margin-top: 32px;
  padding-top: 20px;
}
.data-note strong {
  color: var(--ink);
}
.process {
  list-style: none;
  padding: 0;
  margin: 52px 0 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  position: relative;
}
.process:before {
  content: "";
  position: absolute;
  top: 23px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}
.process li {
  position: relative;
}
.process li > span {
  background: white;
  color: var(--ocean);
  font-family: var(--display);
  font-size: 30px;
  line-height: 48px;
  display: inline-block;
  padding-right: 16px;
  margin-bottom: 18px;
}
.process h3 {
  font-size: 12px;
  margin-bottom: 10px;
}
.process p {
  font-size: 11px;
  line-height: 1.8;
}
.products {
  background: #f5f5f1;
}
.mailer-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.85fr;
  gap: 28px;
  align-items: end;
  margin-top: 64px;
}
.mailer-example {
  margin: 0;
  min-width: 0;
}
.print-piece {
  box-shadow: 0 16px 28px #16334222;
  transition: transform 0.45s;
  overflow: hidden;
}
.mailer-example:hover .print-piece {
  transform: rotate(0) translateY(-8px);
}
.blue-piece {
  display: grid;
  grid-template-columns: 52% 48%;
  background: var(--deep);
  color: white;
  height: 242px;
  transform: rotate(-5deg);
  margin-bottom: 43px;
}
.blue-piece > div {
  padding: 23px 19px;
  display: flex;
  flex-direction: column;
}
.print-piece span {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.print-piece h3 {
  font-family: var(--display);
  font-size: 38px;
  line-height: 1.02;
  margin-top: 17px;
  font-weight: 600;
}
.blue-piece p {
  font-size: 9px;
  color: #bfd1d9;
  line-height: 1.6;
  margin-top: 13px;
}
.print-piece b {
  font-size: 8px;
  font-weight: 700;
  display: block;
}
.blue-piece b {
  margin-top: auto;
  color: #f9c092;
}
.blue-piece img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35%;
}
.orange-piece {
  background: #e8a77c;
  transform: rotate(3deg);
  margin: 0 8px 32px;
  position: relative;
}
.orange-piece:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 66%;
  width: 1px;
  background: #ffffff40;
  box-shadow: 4px 0 9px #0002;
}
.orange-piece img {
  width: 100%;
  height: 126px;
  object-fit: cover;
}
.orange-piece > div {
  padding: 17px 23px 23px;
}
.orange-piece h3 {
  font-size: 34px;
  margin-top: 10px;
}
.orange-piece p {
  font-size: 9px;
  color: #443b36;
  margin-top: 12px;
}
.orange-piece b {
  font-size: 6px;
  margin-top: 16px;
}
.green-piece {
  background: #cee1ce;
  padding: 24px 24px 20px;
  transform: rotate(-3deg);
  position: relative;
  margin: 0 15px 36px;
  min-height: 274px;
}
.green-piece h3 {
  font-size: 48px;
}
.green-piece p {
  font-size: 9px;
  color: #365343;
  margin-top: 17px;
}
.green-piece b {
  border-top: 1px solid #54796055;
  margin-top: 19px;
  padding-top: 10px;
}
.roof-drawing {
  position: absolute;
  right: 15px;
  top: 85px;
  color: #517c5d;
  font-size: 99px;
  font-family: Arial;
  line-height: 1;
  transform: rotate(-8deg);
  opacity: 0.7;
}
.mailer-example figcaption {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid #d3d8d4;
}
.mailer-example figcaption strong {
  font-size: 11px;
}
.mailer-example figcaption span {
  font-size: 10px;
  color: var(--muted);
}
.design-details {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
  border-top: 1px solid #d5ddd8;
  margin-top: 40px;
  padding-top: 24px;
}
.design-details p {
  font-size: 11px;
  max-width: 740px;
  line-height: 1.8;
}
.design-details strong {
  color: var(--ink);
}
.design-details > span {
  font-size: 9px;
  color: var(--muted);
  flex-shrink: 0;
}
.starting-price {
  display: flex;
  flex-direction: column;
  padding-right: 65px;
}
.starting-price > span {
  font-size: 12px;
  color: var(--muted);
}
.starting-price strong {
  font: 600 70px/1.2 var(--display);
  letter-spacing: -0.025em;
}
.starting-price small {
  font: 12px var(--body);
  letter-spacing: 0;
}
.included-strip {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  background: #edf4f1;
  border-top: 1px solid #d2e3da;
  border-bottom: 1px solid #d2e3da;
  padding: 18px 23px;
  color: #315c49;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 36px;
}
.pricing-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr;
  gap: 60px;
  align-items: start;
}
.price-table-wrap {
  overflow-x: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 12px;
  text-align: left;
}
th {
  font-size: 10px;
  color: var(--muted);
  padding: 12px 10px;
  border-bottom: 1px solid #b4c7d0;
}
td {
  padding: 17px 10px;
  border-bottom: 1px solid #e6ecee;
}
td:first-child {
  font-weight: 700;
}
th:last-child,
td:last-child {
  text-align: right;
}
td:last-child {
  font-weight: 800;
  font-size: 14px;
}
tbody tr:hover {
  background: #f1f6f7;
}
tbody tr:first-child {
  background: #f1f6f7;
}
.calculator {
  background: var(--mist);
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 5px;
}
.calculator-heading {
  display: flex;
  gap: 12px;
  align-items: center;
}
.calculator-heading .line-icon {
  margin: 0;
  font-size: 22px;
}
.calculator h3 {
  font-size: 18px;
}
.calculator > p {
  font-size: 11px;
  margin-top: 7px;
}
.calculator label {
  margin-top: 23px;
}
.calculator label > span {
  float: right;
  font-size: 9px;
  color: var(--muted);
  font-weight: 500;
}
.quantity-presets {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.quantity-presets button {
  flex: 1;
  padding: 6px 0;
  font-size: 10px;
  background: white;
  border: 1px solid #cedce2;
  border-radius: 3px;
  color: var(--muted);
}
.quantity-presets button.active {
  background: var(--deep);
  border-color: var(--deep);
  color: white;
}
.estimate {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #d2e0e5;
  padding-top: 25px;
  margin-top: 25px;
}
.estimate > span {
  font-size: 11px;
  color: var(--muted);
}
.estimate strong {
  font-family: var(--display);
  font-size: 64px;
  line-height: 1.3;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.estimate > span:last-child {
  font-size: 10px;
}
.calculator .fine-print {
  margin-top: 17px;
  font-size: 10px;
}
.calculator .button {
  width: 100%;
  margin-top: 22px;
}
.calculator p.calculator-foot {
  text-align: center;
  font-size: 9px;
  margin-top: 12px;
}
.field-error {
  color: #a72e22;
  font-size: 10px;
  margin: 7px 0;
}
.recurring {
  background: var(--deep);
  color: white;
  padding-block: 80px;
  overflow: hidden;
}
.recurring-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.recurring .eyebrow {
  color: #a8c9d9;
}
.recurring h2 {
  font-size: 56px;
  margin-bottom: 26px;
}
.recurring h2 + p {
  font-size: 17px;
  color: white;
  font-weight: 600;
}
.recurring p.recurring-description {
  font-size: 12px;
  line-height: 1.9;
  color: #c3d8e2;
  max-width: 440px;
}
.recurring .button {
  margin-top: 25px;
}
.recurring small {
  display: block;
  font-size: 9px;
  color: #a7c1ce;
  margin-top: 15px;
}
.campaign-calendar {
  border: 1px solid #567b90;
  border-radius: 5px;
  padding: 28px;
  background: #1d4c65;
  transform: rotate(-3deg);
}
.calendar-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 35px;
}
.calendar-heading > span:last-child {
  font-size: 8px;
  color: #c2d9e5;
  background: #ffffff0d;
  padding: 4px 8px;
  border: 1px solid #7193a6;
  border-radius: 2px;
  white-space: nowrap;
}
.calendar-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 19px;
}
.calendar-row > span {
  font-size: 10px;
  white-space: nowrap;
  color: #c3d8e2;
}
.calendar-bar {
  background: #c2dacf;
  color: #204737;
  display: flex;
  justify-content: space-between;
  padding: 13px 15px;
  flex: 1;
  border-radius: 2px;
  font-size: 11px;
  transform-origin: left;
  animation: bar-enter 1s both;
  animation-play-state: paused;
}
.bar-two {
  margin-left: 15px;
  background: #d3e2d8;
  animation-delay: 0.2s;
}
.bar-three {
  margin-left: 30px;
  background: #e7ecdd;
  animation-delay: 0.4s;
}
.campaign-calendar.is-visible .calendar-bar {
  animation-play-state: running;
}
.calendar-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  margin-top: 30px;
  border-top: 1px solid #53788d;
  font-size: 10px;
  color: #bbd1df;
}
.calendar-bottom > span:last-child {
  font-size: 26px;
}
.coverage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 150px;
  align-items: center;
}
.coverage h2 {
  margin-bottom: 24px;
}
.coverage p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.9;
}
.coverage .text-link {
  margin-top: 17px;
}
.market-list > div {
  display: flex;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  gap: 25px;
}
.market-list > div > span {
  background: var(--mist);
  color: var(--ocean);
  font-size: 13px;
  font-weight: 800;
  width: 49px;
  height: 45px;
  display: grid;
  place-items: center;
}
.market-list h3 {
  font-size: 19px;
}
.market-list i {
  margin-left: auto;
  font-style: normal;
  font-size: 24px;
  color: var(--ocean);
}
.market-list p {
  font-size: 10px !important;
  margin-top: 18px;
}
.faq {
  background: var(--mist);
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 90px;
}
.faq-layout > div:first-child > p:not(.eyebrow) {
  font-size: 13px;
  max-width: 280px;
  margin-top: 24px;
}
.faq .text-link {
  margin-top: 15px;
}
details {
  border-bottom: 1px solid #d1dfe4;
}
summary {
  font-size: 12px;
  font-weight: 800;
  padding: 20px 30px 20px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 22px;
  line-height: 1;
  top: 20px;
  color: var(--ocean);
  font-weight: 400;
}
details[open] summary:after {
  content: "−";
}
details > p {
  font-size: 12px;
  line-height: 1.8;
  padding-bottom: 22px;
  max-width: 570px;
}
details[open] > p {
  animation: enter 0.25s both;
}
.contact {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  gap: 100px;
}
.contact-intro {
  padding-top: 14px;
}
.contact-intro > p:not(.eyebrow) {
  font-size: 13px;
  max-width: 335px;
  margin-top: 27px;
  line-height: 1.9;
}
.contact-points {
  margin-top: 33px;
}
.contact-points p {
  font-size: 11px;
  display: flex;
  gap: 11px;
  margin-top: 13px;
  color: var(--ink);
}
.contact-points span {
  color: var(--green);
}
.contact-direct {
  margin-top: 43px;
  border-top: 1px solid var(--line);
  padding-top: 25px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.contact-direct > span {
  font-size: 11px;
  color: var(--muted);
}
.contact-direct > a:last-child {
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
}
.contact-form-wrap {
  padding: 30px;
  background: #f7f9f9;
  border: 1px solid var(--line);
  border-radius: 5px;
}
.contact-form-wrap label {
  margin-top: 15px;
}
.contact-form-wrap label > span {
  font-weight: 500;
  color: var(--muted);
}
.contact-form-wrap label > span[aria-hidden] {
  color: var(--orange);
}
.contact-form-wrap small {
  font-size: 9px;
  color: var(--muted);
  display: block;
  margin-top: 5px;
}
.form-note {
  font-size: 10px;
  line-height: 1.8;
  margin-top: 19px;
}
.form-note a {
  text-decoration: underline;
}
.contact-form-wrap button.button {
  width: 100%;
  margin-top: 19px;
}
.contact-form-wrap .fine-print {
  font-size: 9px;
  margin-top: 12px;
}
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-error {
  background: #fff0eb;
  border-left: 3px solid #bc4929;
  padding: 13px;
  color: #862a17;
  font-size: 12px;
  margin-top: 16px;
}
.button:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}
.form-success {
  padding: 60px 10px;
  outline: none;
}
.success-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #deede3;
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 28px;
}
.form-success h3 {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 600;
}
.form-success p {
  font-size: 13px;
  margin-top: 20px;
}
.form-success .button {
  margin-top: 30px;
}
.final-cta {
  background: #eaf1f3;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta:before,
.final-cta:after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border: 1px solid #ccdde3;
  transform: rotate(45deg);
  pointer-events: none;
}
.final-cta:before {
  left: -270px;
  top: 10px;
  box-shadow:
    0 0 0 30px #e0ebef,
    0 0 0 31px #ccdde3;
}
.final-cta:after {
  right: -270px;
  bottom: 20px;
  box-shadow:
    0 0 0 30px #e0ebef,
    0 0 0 31px #ccdde3;
}
.final-cta .eyebrow {
  justify-content: center;
}
.final-cta h2 {
  font-size: 60px;
}
.final-cta p {
  font-size: 13px;
  line-height: 1.9;
  margin-top: 23px;
}
.final-cta .button-row {
  justify-content: center;
  margin-top: 30px;
}
.footer {
  padding-top: 42px;
  padding-bottom: 24px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 35px;
}
.footer-top > p {
  font-size: 10px;
  line-height: 1.8;
  margin-right: auto;
  margin-left: 20px;
}
.footer-top > div {
  display: flex;
  gap: 25px;
  font-size: 10px;
  font-weight: 700;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-size: 9px;
  color: var(--muted);
}
.footer-bottom > div {
  display: flex;
  gap: 24px;
}
.legal-page {
  max-width: 850px;
  padding-block: 70px;
}
.legal-page h1 {
  font-size: 65px;
  margin-bottom: 25px;
}
.legal-page h2 {
  font-size: 31px;
  margin: 35px 0 12px;
}
.legal-page p,
.legal-page li {
  font-size: 14px;
}
.legal-page a {
  text-decoration: underline;
  color: var(--ocean);
}
.legal-page ul {
  padding-left: 20px;
}
@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes underline {
  from {
    scale: 0 1;
  }
  to {
    scale: 1 1;
  }
}
@keyframes postcard-arrive {
  from {
    opacity: 0;
    transform: translate(60px, 75px) rotate(8deg);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(-7deg);
  }
}
@keyframes house-select {
  from {
    opacity: 0.1;
    filter: grayscale(1);
  }
  to {
    opacity: 1;
    filter: grayscale(0);
  }
}
@keyframes bar-enter {
  from {
    scale: 0 1;
  }
  to {
    scale: 1 1;
  }
}
.hero-copy {
  animation: enter 0.8s both;
}
.hero-scene {
  animation: enter 1s 0.15s both;
}
@media (min-width: 1500px) {
  .hero {
    gap: 70px;
    padding-block: 80px;
  }
  .hero-scene {
    height: 600px;
  }
  .hero-postcard {
    height: 225px;
  }
  .postcard-copy > strong {
    font-size: 37px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 64px);
  }
  .nav nav {
    gap: 17px;
  }
  .brand img {
    width: 175px;
  }
  .nav-call {
    margin-left: 0;
  }
  .hero {
    gap: 30px;
  }
  h1 {
    font-size: 76px;
  }
  .hero-scene {
    height: 560px;
  }
  .hero-postcard {
    left: 27px;
    right: 32px;
  }
  .hero .button-row {
    gap: 13px;
  }
  .hero .text-link {
    font-size: 10px;
  }
  .hero-price {
    gap: 12px;
  }
  .hero-price > span {
    padding-left: 12px;
  }
  .comparison {
    gap: 45px;
  }
  .company-logos {
    gap: 30px;
  }
  .builder-controls {
    padding: 25px;
  }
  .builder-title {
    flex-wrap: wrap;
  }
  .pricing-layout {
    gap: 35px;
  }
  .coverage {
    gap: 80px;
  }
  .contact {
    gap: 60px;
  }
  .process {
    gap: 18px;
  }
  .mailer-gallery {
    gap: 20px;
  }
  .blue-piece {
    height: 224px;
  }
  .blue-piece > div {
    padding: 18px 13px;
  }
  .print-piece h3 {
    font-size: 32px;
  }
  .green-piece {
    margin-inline: 3px;
  }
  .green-piece h3 {
    font-size: 42px;
  }
  .recurring-layout {
    gap: 45px;
  }
  .hero-description {
    font-size: 14px;
  }
}
@media (max-width: 950px) {
  .site-header {
    height: 75px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--line);
    width: 44px;
    height: 40px;
    border-radius: 3px;
  }
  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--ink);
  }
  .nav nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: white;
    padding: 24px 32px;
    box-shadow: 0 10px 20px #123e5810;
    align-items: stretch;
  }
  .nav nav.is-open {
    display: flex;
    flex-direction: column;
  }
  .nav nav > a {
    padding-block: 10px;
    font-size: 13px;
  }
  .hero {
    padding-block: 48px;
    gap: 22px;
  }
  h1 {
    font-size: 65px;
  }
  .hero-scene {
    height: 530px;
  }
  .hero-price {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
  .hero-price > span {
    border: 0;
    padding: 0;
  }
  .map-heading {
    inset: 20px 15px auto;
    flex-wrap: wrap;
  }
  .map-label-one {
    left: 14px;
    top: 100px;
  }
  .map-label-two {
    right: 13px;
    top: 204px;
  }
  .sample-pin {
    left: 25px;
    top: 276px;
    font-size: 8px;
  }
  .hero-postcard {
    height: 185px;
    bottom: 77px;
    left: 24px;
    right: 24px;
  }
  .postcard-copy {
    padding: 20px 12px;
  }
  .postcard-copy > strong {
    font-size: 27px;
  }
  .postcard-copy > b {
    font-size: 6px;
  }
  .postcard-stamp {
    width: 65px;
    height: 65px;
    font-size: 8px;
    right: -12px;
  }
  .delivery-pill {
    left: 22px;
    bottom: 34px;
  }
  .scene-caption {
    font-size: 7px;
    bottom: 12px;
  }
  .trust {
    flex-direction: column;
    gap: 17px;
  }
  .company-logos {
    width: 85%;
    justify-content: space-around;
  }
  .section {
    padding-block: 75px;
  }
  .comparison {
    gap: 32px;
  }
  .comparison-panel {
    padding: 15px 12px;
  }
  .house-grid {
    gap: 8px 4px;
  }
  .comparison-panel h3 {
    font-size: 10px;
  }
  .section-intro {
    gap: 30px;
  }
  .section-intro > p,
  .section-intro > div:nth-child(2) {
    max-width: 300px;
  }
  .target-builder {
    grid-template-columns: 43% 57%;
  }
  .builder-controls {
    padding: 22px;
  }
  .builder-controls .field-pair {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .result-summary {
    flex-direction: column;
    align-items: flex-start;
    margin-inline: 15px;
    padding: 20px;
    width: calc(100% - 30px);
  }
  .result-summary > div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0 10px;
    align-items: center;
    width: 100%;
  }
  .result-summary .demo-badge {
    grid-column: 1/-1;
    justify-self: start;
  }
  .result-summary > div > span:last-child {
    font-size: 9px;
  }
  .result-summary .button {
    width: 100%;
    margin-top: 10px;
  }
  .result-top {
    padding: 22px 18px;
    font-size: 9px;
  }
  .target-options {
    gap: 20px;
  }
  .process {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .process:before {
    display: none;
  }
  .process li {
    border-top: 1px solid var(--line);
  }
  .process li > span {
    margin-bottom: 7px;
  }
  .mailer-gallery {
    gap: 24px;
    grid-template-columns: 1fr 1fr;
  }
  .mailer-example:last-child {
    display: none;
  }
  .pricing-layout {
    gap: 27px;
    grid-template-columns: 1.1fr 1fr;
  }
  .calculator {
    padding: 24px;
  }
  .included-strip {
    flex-wrap: wrap;
    gap: 13px 25px;
  }
  .starting-price {
    padding-right: 15px;
  }
  .recurring h2 {
    font-size: 47px;
  }
  .recurring-layout {
    gap: 35px;
  }
  .campaign-calendar {
    padding: 22px;
  }
  .calendar-row {
    gap: 12px;
  }
  .calendar-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .coverage {
    gap: 60px;
  }
  .faq-layout {
    gap: 45px;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .contact {
    gap: 36px;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .contact-form-wrap {
    padding: 23px;
  }
  .contact-form-wrap .field-pair {
    gap: 12px;
  }
  .contact-form-wrap label {
    font-size: 10px;
  }
  .final-cta h2 {
    font-size: 52px;
  }
  .footer-top {
    flex-wrap: wrap;
  }
  .footer-top > p {
    margin: 0;
  }
  .footer-top > div {
    gap: 18px;
  }
  .footer-bottom > span:last-child {
    display: none;
  }
}
@media (max-width: 700px) {
  .container {
    width: calc(100% - 40px);
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 38px;
    padding-bottom: 34px;
    gap: 32px;
  }
  .hero-copy h1 {
    font-size: clamp(62px, 11vw, 86px);
  }
  .hero-copy .eyebrow {
    font-size: 11px;
  }
  .hero-description {
    font-size: 15px;
    max-width: 500px;
  }
  .hero-sub {
    font-size: 12px;
    max-width: 480px;
  }
  .hero-price {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
  }
  .hero-price > span {
    border-left: 1px solid var(--line);
    padding-left: 20px;
  }
  .hero-price > strong {
    font-size: 15px;
  }
  .hero .button-row {
    gap: 22px;
  }
  .hero .text-link {
    font-size: 11px;
  }
  .hero-scene {
    height: 500px;
    max-width: 570px;
    width: 100%;
    margin: auto;
  }
  .hero-postcard {
    height: 190px;
    left: 45px;
    right: 48px;
    bottom: 69px;
  }
  .postcard-copy > strong {
    font-size: 32px;
  }
  .postcard-copy > b {
    font-size: 8px;
  }
  .map-heading {
    inset: 18px 20px auto;
  }
  .map-label-one {
    top: 80px;
    left: 25px;
  }
  .map-label-two {
    top: 190px;
    right: 22px;
  }
  .sample-pin {
    top: 257px;
    left: 28px;
  }
  .map-canvas {
    inset: 0 -15px 80px;
  }
  .delivery-pill {
    bottom: 35px;
    left: 25px;
  }
  .scene-caption {
    font-size: 8px;
  }
  .service-ribbon .container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 15px;
    font-size: 10px;
    padding-block: 20px;
  }
  .service-ribbon i {
    font-size: 14px;
  }
  .service-ribbon b {
    margin-left: 7px;
  }
  .trust {
    padding-block: 24px;
    gap: 15px;
  }
  .trust h2 {
    font-size: 11px;
  }
  .company-logos {
    width: 100%;
    gap: 23px;
  }
  .company-logos img {
    max-width: 30%;
    height: 53px;
  }
  .company-logos img:first-child {
    height: 62px;
    width: 90px;
  }
  .section {
    padding-block: 58px;
  }
  h2 {
    font-size: 47px;
  }
  .eyebrow {
    font-size: 11px;
    margin-bottom: 17px;
  }
  .comparison {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .comparison > div > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 13px;
  }
  .comparison h2 {
    margin-bottom: 22px;
  }
  .comparison-panel {
    padding: 20px 18px;
  }
  .comparison-panel h3 {
    font-size: 11px;
  }
  .house-grid {
    gap: 10px 8px;
  }
  .house-grid svg {
    height: 26px;
  }
  .comparison-visual > .fine-print {
    font-size: 9px;
  }
  .section-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 30px;
  }
  .section-intro > p,
  .section-intro > div:nth-child(2) {
    max-width: 100%;
  }
  .target-builder {
    grid-template-columns: 1fr;
  }
  .builder-controls {
    padding: 25px;
  }
  .builder-title {
    flex-wrap: nowrap;
  }
  .builder-controls .field-pair {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .builder-result {
    min-height: 440px;
  }
  .result-summary {
    flex-direction: row;
    align-items: center;
    padding: 18px;
    gap: 12px;
  }
  .result-summary > div {
    display: flex;
    gap: 0;
    align-items: flex-start;
    width: auto;
  }
  .result-summary > div > span:last-child {
    font-size: 10px;
  }
  .result-summary .button {
    width: auto;
    font-size: 10px;
    gap: 10px;
  }
  .result-summary strong {
    font-size: 55px;
  }
  .result-note {
    font-size: 9px;
    padding-left: 20px;
  }
  .builder-map {
    inset: 12px -10px 80px;
  }
  .target-options {
    grid-template-columns: 1fr 1fr;
    gap: 28px 23px;
    margin-top: 32px;
  }
  .target-options h3 {
    font-size: 12px;
  }
  .target-options p {
    font-size: 11px;
  }
  .data-note {
    font-size: 10px;
  }
  .process {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 32px;
  }
  .process h3 {
    font-size: 13px;
  }
  .process p {
    font-size: 12px;
  }
  .mailer-gallery {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 44px;
  }
  .mailer-example {
    max-width: 390px;
    margin-inline: auto;
    width: 100%;
  }
  .mailer-example:last-child {
    display: block;
  }
  .blue-piece {
    height: 244px;
    margin: 0 10px 30px;
  }
  .blue-piece > div {
    padding: 24px 20px;
  }
  .print-piece h3 {
    font-size: 38px;
  }
  .orange-piece {
    margin: 0 35px 30px;
  }
  .green-piece {
    margin: 0 55px 30px;
  }
  .green-piece h3 {
    font-size: 51px;
  }
  .mailer-example figcaption strong {
    font-size: 12px;
  }
  .mailer-example figcaption span {
    font-size: 11px;
  }
  .design-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 30px;
  }
  .design-details p {
    font-size: 12px;
  }
  .design-details > span br {
    display: none;
  }
  .starting-price {
    padding: 0;
  }
  .starting-price strong {
    font-size: 64px;
  }
  .pricing .section-intro {
    flex-direction: row;
    align-items: flex-end;
    gap: 15px;
  }
  .pricing h2 {
    font-size: 43px;
  }
  .starting-price > span {
    font-size: 10px;
  }
  .starting-price small {
    font-size: 10px;
  }
  .included-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 17px;
    font-size: 10px;
    gap: 12px;
  }
  .pricing-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  td {
    padding: 15px 8px;
    font-size: 11px;
  }
  th {
    font-size: 9px;
    padding: 10px 8px;
  }
  td:last-child {
    font-size: 13px;
  }
  .calculator {
    padding: 27px;
  }
  .calculator > p {
    font-size: 12px;
  }
  .calculator label {
    font-size: 12px;
  }
  .calculator .fine-print {
    font-size: 11px;
  }
  .recurring {
    padding-block: 55px;
  }
  .recurring-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .recurring h2 {
    font-size: 48px;
  }
  .recurring h2 + p {
    font-size: 15px;
  }
  .recurring p.recurring-description {
    font-size: 13px;
  }
  .campaign-calendar {
    margin: 0 8px;
    padding: 26px;
  }
  .calendar-heading {
    flex-direction: row;
    font-size: 10px;
  }
  .calendar-row {
    gap: 20px;
  }
  .calendar-bar {
    font-size: 11px;
  }
  .coverage {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .market-list h3 {
    font-size: 19px;
  }
  .market-list > div {
    padding: 17px 0;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .faq-layout > div:first-child > p:not(.eyebrow) {
    max-width: 100%;
    margin-top: 20px;
  }
  summary {
    font-size: 12px;
    padding-block: 20px;
  }
  details > p {
    font-size: 12px;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-intro {
    padding-top: 0;
  }
  .contact-intro > p:not(.eyebrow) {
    max-width: 100%;
    margin-top: 20px;
  }
  .contact-points {
    margin-top: 23px;
  }
  .contact-direct {
    margin-top: 25px;
  }
  .contact-form-wrap {
    padding: 22px;
  }
  .contact-form-wrap label {
    font-size: 11px;
  }
  .contact-form-wrap .field-pair {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form-wrap small {
    font-size: 10px;
  }
  .form-note {
    font-size: 11px;
  }
  .final-cta {
    padding-block: 55px;
  }
  .final-cta h2 {
    font-size: 46px;
  }
  .final-cta p {
    font-size: 12px;
  }
  .final-cta p br {
    display: none;
  }
  .final-cta .button-row {
    gap: 13px;
  }
  .final-cta .button {
    padding: 13px 16px;
    font-size: 11px;
    gap: 17px;
  }
  .footer {
    padding-top: 30px;
  }
  .footer-top {
    gap: 22px;
    padding-bottom: 26px;
  }
  .footer-top > p {
    font-size: 9px;
  }
  .footer-top > div {
    width: 100%;
    justify-content: space-between;
    font-size: 10px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    font-size: 9px;
  }
  .footer-bottom > div {
    gap: 25px;
  }
  .legal-page {
    padding-block: 45px;
  }
  .legal-page h1 {
    font-size: 50px;
  }
}
@media (max-width: 380px) {
  .container {
    width: calc(100% - 32px);
  }
  .hero-copy h1 {
    font-size: 59px;
  }
  .hero-price {
    gap: 10px;
  }
  .hero-price > span {
    padding-left: 10px;
    font-size: 9px;
  }
  .hero-price > strong {
    font-size: 13px;
  }
  .hero .button-row {
    gap: 12px;
  }
  .hero .button {
    padding-inline: 17px;
    font-size: 12px;
    gap: 13px;
  }
  .hero .text-link {
    font-size: 10px;
    gap: 8px;
  }
  .hero-scene {
    height: 470px;
  }
  .hero-postcard {
    left: 28px;
    right: 28px;
    height: 180px;
  }
  .postcard-copy > strong {
    font-size: 29px;
  }
  .postcard-copy > b {
    font-size: 7px;
  }
  .sample-pin {
    top: 240px;
  }
  .map-label-two {
    top: 175px;
  }
  .result-summary {
    padding: 15px;
  }
  .result-summary .button {
    font-size: 9px;
    padding: 11px;
    gap: 7px;
  }
  .result-summary .demo-badge {
    font-size: 7px;
  }
  .builder-controls {
    padding: 21px;
  }
  .builder-title h3 {
    font-size: 15px;
  }
  .pricing h2 {
    font-size: 37px;
  }
  .starting-price strong {
    font-size: 53px;
  }
  .comparison-panel {
    padding: 16px 12px;
  }
  .comparison-panel h3 {
    font-size: 10px;
  }
}
.process.is-visible li {
  animation: enter 0.55s both;
}
.process.is-visible li:nth-child(2) {
  animation-delay: 0.12s;
}
.process.is-visible li:nth-child(3) {
  animation-delay: 0.24s;
}
.process.is-visible li:nth-child(4) {
  animation-delay: 0.36s;
}
.process.is-visible li:nth-child(5) {
  animation-delay: 0.48s;
}
.process.is-visible li:nth-child(6) {
  animation-delay: 0.6s;
}
@media (max-width: 700px) {
  .hero .button-row {
    gap: 16px;
  }
  .hero-copy h1 {
    margin-bottom: 23px;
  }
  .hero .text-link {
    gap: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .calendar-bar {
    scale: 1;
  }
  .hero-postcard {
    transform: rotate(-7deg);
  }
}
