:root {
  --blue: #55a7e3;
  --navy: #020c14;
  --navy-2: #071724;
  --surface: #f3f8fc;
  --muted: #93a8b8;
  --line: rgba(85, 167, 227, 0.28);
  --white: #ffffff;
  --success: #96d7b6;
  --grid-cols: 12;
  --grid-max: 1296px;
  --grid-gutter: 24px;
  --grid-margin: clamp(24px, 6vw, 72px);
  --baseline: 8px;
  --leading: 24px;
  color-scheme: dark;
  font-family: "Inter Tight", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(rgba(2, 12, 20, 0.84), rgba(2, 12, 20, 0.94)),
    url("assets/winter-property.png") center / cover fixed;
  color: var(--white);
}

button,
input,
textarea {
  font: inherit;
}

.app-shell {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 22px 0 42px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 230px;
  height: 58px;
  text-decoration: none;
  border-radius: 8px;
  background: var(--navy);
  padding: 7px 10px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
}

main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
}

.hero-wrap {
  display: grid;
  justify-items: center;
  gap: 22px;
}

.hero-copy {
  max-width: 980px;
  text-align: center;
  padding-top: 10px;
}

.hero-kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.hero-copy h1 {
  max-width: 1080px;
  margin: 0 auto 18px;
  font-size: clamp(52px, 7.3vw, 98px);
  line-height: 0.98;
  font-weight: 900;
  text-transform: none;
}

.hero-copy h1 span {
  color: var(--blue);
}

.hero-copy p:not(.hero-kicker) {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(222, 235, 244, 0.76);
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.42;
  font-weight: 500;
}

.simulator-panel {
  width: min(720px, 100%);
  min-height: 0;
  border: 1px solid rgba(85, 167, 227, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
  overflow: visible;
}

.screen {
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr;
}

.screen-inner {
  padding: clamp(22px, 3vw, 36px);
}

.progress-wrap {
  padding: 20px clamp(22px, 3vw, 36px) 0;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.progress {
  height: 2px;
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.12);
}

.progress span {
  display: block;
  height: 100%;
  width: var(--progress);
  background: var(--blue);
  transition: width 280ms ease;
}

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

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

h1 {
  max-width: 780px;
  margin-bottom: 12px;
  font-size: clamp(42px, 8vw, 78px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.form-heading {
  text-align: center;
  margin-bottom: 26px;
}

.form-heading h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
  font-weight: 900;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

h1 .blue {
  color: var(--blue);
}

.lede {
  max-width: 540px;
  color: #cfe0ec;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.48;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 16px;
  margin: 0 0 10px;
}

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

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

label,
.choice-label {
  color: #d8e8f2;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  outline: none;
  padding: 0 16px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

textarea {
  min-height: 110px;
  padding-top: 14px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  background: rgba(85, 167, 227, 0.1);
}

.primary-button,
.secondary-button,
.ghost-button,
.option-button,
.photo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.primary-button {
  width: 100%;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: var(--navy);
  font-weight: 900;
  text-transform: uppercase;
}

.primary-button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.secondary-button,
.ghost-button,
.photo-button {
  border: 1px solid rgba(85, 167, 227, 0.38);
  background: rgba(85, 167, 227, 0.06);
  color: var(--white);
  font-weight: 800;
}

.ghost-button {
  min-height: 42px;
  padding: 0 14px;
  font-size: 13px;
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.option-button:hover,
.photo-button:hover {
  transform: translateY(-1px);
}

.link-button {
  display: inline-flex;
  margin-top: 18px;
  border: 0;
  background: transparent;
  color: #c8deee;
  cursor: pointer;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.microcopy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.field-note {
  margin: -2px 0 0;
  color: #637a8a;
  font-size: 13px;
  line-height: 1.4;
}

.contact-purpose-note {
  margin: -4px 0 2px;
}

.streetview-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.streetview-note i {
  width: 16px;
  height: 16px;
  color: var(--blue);
}

.consent-check {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 12px;
  margin-top: 4px;
  color: #526b7c;
  font-size: 13px;
  line-height: 1.45;
  text-transform: none;
}

.consent-check input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.form-error {
  min-height: 20px;
  margin: -2px 0 0;
  color: #1d4259;
  font-size: 14px;
  font-weight: 800;
}

.form-error:empty {
  display: none;
}

.form-error:not(:empty) {
  padding: 12px 14px;
  border: 1px solid rgba(85, 167, 227, 0.36);
  border-radius: 8px;
  background: rgba(85, 167, 227, 0.09);
}

.google-address-host {
  width: 100%;
}

.google-address-input,
gmp-place-autocomplete {
  display: block;
  width: 100%;
  min-height: 56px;
  color-scheme: dark;
}

.summary-card,
.detected-card,
.offer-card {
  border: 1px solid rgba(85, 167, 227, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.pac-container {
  z-index: 30;
  border: 1px solid rgba(2, 12, 20, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(2, 12, 20, 0.16);
  color: var(--navy);
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  margin-top: 6px;
}

.pac-item {
  min-height: 48px;
  border-top: 1px solid rgba(2, 12, 20, 0.08);
  color: #526b7c;
  cursor: pointer;
  padding: 10px 12px;
}

.pac-item:hover,
.pac-item-selected {
  background: rgba(85, 167, 227, 0.12);
}

.pac-item-query,
.pac-matched {
  color: var(--navy);
  font-weight: 700;
}

.property-view {
  position: relative;
  min-height: 350px;
  margin: 30px 0 22px;
  overflow: hidden;
  border: 1px solid rgba(85, 167, 227, 0.28);
  border-radius: 8px;
  background: var(--navy-2);
}

.property-view img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  display: block;
}

.streetview-placeholder {
  display: grid;
  width: 100%;
  min-height: 350px;
  place-items: center;
  align-content: center;
  gap: 12px;
  background:
    linear-gradient(135deg, rgba(85, 167, 227, 0.08), rgba(255, 255, 255, 0.03)),
    #06131d;
  color: #d8e8f2;
  font-weight: 900;
  text-transform: uppercase;
}

.streetview-placeholder i {
  color: var(--blue);
}

.image-chip {
  position: absolute;
  left: 16px;
  top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(2, 12, 20, 0.68);
  color: #e9f4fb;
  font-size: 12px;
  font-weight: 800;
}

.streetview-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 10px;
  background: rgba(2, 12, 20, 0.58);
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.streetview-loading i {
  color: var(--blue);
  animation: pulse 1.2s ease-in-out infinite;
}

.photo-actions,
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.photo-help-note {
  margin: 24px 0 0;
  border: 1px solid rgba(2, 12, 20, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #526b7c;
  padding: 16px 18px;
  font-size: 18px;
  line-height: 1.4;
}

.photo-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.analysis-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.82fr);
  gap: 24px;
  margin-top: 28px;
}

.scan-box {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(85, 167, 227, 0.3);
  border-radius: 8px;
  background: #06131d;
}

.scan-box img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.05);
}

.scan-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(85, 167, 227, 0.42), transparent);
  height: 34%;
  animation: scan 2.4s ease-in-out infinite;
}

.analysis-list {
  display: grid;
  align-content: center;
  gap: 12px;
}

.analysis-message {
  display: grid;
  justify-items: start;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(85, 167, 227, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.analysis-message i {
  color: var(--blue);
}

.analysis-message h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}

.analysis-message p {
  margin: 0;
  color: #cfe0ec;
  font-size: 16px;
  line-height: 1.45;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(85, 167, 227, 0.22);
  border-radius: 8px;
  color: #dbeaf4;
  opacity: 0.45;
}

.check-row.done {
  opacity: 1;
  border-color: rgba(85, 167, 227, 0.52);
}

.check-row i {
  color: var(--blue);
}

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

.detected-card {
  padding: 18px;
}

.detected-card span {
  display: block;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.detected-card strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
}

.option-button {
  border: 1px solid rgba(85, 167, 227, 0.28);
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  font-weight: 800;
}

.option-button.active {
  border-color: var(--blue);
  background: rgba(85, 167, 227, 0.18);
}

.price-wrap {
  display: grid;
  gap: 24px;
}

.price {
  margin: 4px 0 0;
  font-size: clamp(60px, 12vw, 126px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0;
}

.per {
  color: #5e7485;
  font-size: clamp(20px, 4vw, 38px);
  font-weight: 500;
}

.service-list,
.steps-list {
  display: grid;
  gap: 12px;
}

.service-list div,
.steps-list div,
.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.steps-list span {
  display: grid;
  gap: 4px;
}

.steps-list b {
  color: var(--navy);
  font-weight: 700;
}

.steps-list small {
  color: #5e7485;
  font-size: 14px;
  line-height: 1.35;
}

.next-steps-list {
  gap: 0;
}

.next-steps-list div {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: start;
  justify-content: stretch;
  gap: 26px;
  padding: 18px 0;
}

.next-steps-list div:first-child {
  padding-top: 10px;
}

.next-steps-list strong {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.2;
}

.next-steps-list span {
  justify-items: start;
  max-width: 720px;
}

.reservation-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.reservation-summary > .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

.reservation-summary .summary-line {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 6px;
  min-width: 0;
  padding: 0 0 16px;
  border-bottom-color: rgba(2, 12, 20, 0.08);
}

.reservation-summary .summary-line:nth-child(2) {
  grid-column: 1 / -1;
}

.reservation-summary .summary-line span {
  color: #5e7485;
  font-size: 16px;
}

.reservation-summary .summary-line strong {
  min-width: 0;
  text-align: left;
  overflow-wrap: anywhere;
  line-height: 1.2;
}

.reservation-summary .summary-line:nth-child(2) strong {
  max-width: 100%;
}

.offer-card,
.summary-card {
  padding: 18px;
}

.summary-card strong {
  color: var(--navy);
  font-weight: 700;
}

.cta-note {
  margin: -10px 0 0;
  text-align: center;
}

.offer-card h2 {
  margin: 0 0 6px;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 0.94;
  text-transform: uppercase;
}

.confirm-mark {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  margin-bottom: 24px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(85, 167, 227, 0.36);
  border-radius: 999px;
  padding: 8px 12px;
  color: #dff1fd;
  font-size: 12px;
  font-weight: 900;
}

.trust-panel {
  position: sticky;
  top: 22px;
  border: 1px solid rgba(85, 167, 227, 0.18);
  border-radius: 8px;
  background: rgba(2, 12, 20, 0.76);
  padding: 24px;
}

.trust-grid {
  display: grid;
  gap: 18px;
}

.trust-grid article {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-grid i {
  color: var(--blue);
}

.trust-grid h3 {
  margin: 10px 0 4px;
  font-size: 15px;
}

.trust-grid p {
  margin: 0;
  color: #bfd1de;
  font-size: 14px;
  line-height: 1.45;
}

.landing-section {
  margin-top: 34px;
  border: 1px solid rgba(85, 167, 227, 0.18);
  border-radius: 8px;
  background: rgba(2, 12, 20, 0.84);
  padding: clamp(28px, 6vw, 64px);
}

.landing-section h2 {
  max-width: 780px;
  margin: 0 0 24px;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.landing-section h2 span,
.landing-section h2 em {
  color: var(--blue);
  font-style: normal;
}

.section-lede {
  max-width: 760px;
  margin: -6px 0 28px;
  color: #cfe0ec;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
}

.landing-grid {
  display: grid;
  gap: 14px;
}

.landing-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-card {
  min-height: 190px;
  border: 1px solid rgba(85, 167, 227, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 20px;
}

.landing-card b {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(85, 167, 227, 0.35);
  border-radius: 50%;
  color: var(--blue);
  font-size: 13px;
}

.landing-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.1;
}

.landing-card p,
.section-copy p,
.faq-list p,
.final-cta p,
.service-copy p {
  color: #bfd1de;
  line-height: 1.5;
}

.vsl-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
  gap: 34px;
  align-items: center;
}

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

.section-copy h2 {
  max-width: 100%;
  margin-bottom: 16px;
  font-size: clamp(30px, 4.4vw, 54px);
}

.vsl-frame {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(85, 167, 227, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(rgba(2, 12, 20, 0.2), rgba(2, 12, 20, 0.78)),
    url("assets/winter-property.png") center / cover;
}

.vsl-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 12, 20, 0.25);
}

.play-button {
  position: relative;
  z-index: 1;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 50%;
  background: var(--blue);
  color: var(--navy);
  cursor: pointer;
}

.vsl-frame span {
  position: absolute;
  z-index: 1;
  bottom: 22px;
  color: #e6f3fb;
  font-weight: 900;
  text-transform: uppercase;
}

.service-section {
  background:
    linear-gradient(rgba(2, 12, 20, 0.78), rgba(2, 12, 20, 0.94)),
    url("assets/winter-property.png") center / cover;
}

.service-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  align-items: end;
}

.service-copy {
  max-width: 720px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
}

.service-copy p:last-child {
  color: var(--white);
}

.service-points {
  display: grid;
  gap: 12px;
}

.service-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  border: 1px solid rgba(85, 167, 227, 0.28);
  border-radius: 8px;
  background: rgba(2, 12, 20, 0.62);
  padding: 14px;
  color: #e6f3fb;
  font-weight: 900;
}

.service-points i {
  flex: 0 0 auto;
  color: var(--blue);
}

.value-list {
  display: grid;
  gap: 12px;
}

.value-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  border: 1px solid rgba(85, 167, 227, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 16px 18px;
  color: #e6f3fb;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 900;
  line-height: 1.25;
}

.value-list i {
  color: var(--blue);
}

.commitment-section {
  background: rgba(243, 248, 252, 0.96);
  color: var(--navy);
}

.commitment-section .eyebrow,
.commitment-section .landing-card b {
  color: #237dbd;
}

.commitment-section h2,
.commitment-section .landing-card h3 {
  color: var(--navy);
}

.commitment-section .landing-card {
  background: rgba(2, 12, 20, 0.04);
  border-color: rgba(2, 12, 20, 0.12);
}

.commitment-section .landing-card p {
  color: #315064;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid rgba(85, 167, 227, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 0 18px;
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  color: var(--white);
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--blue);
  font-size: 22px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin-bottom: 18px;
}

.final-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-bottom: 36px;
}

.final-cta h2 {
  margin-left: auto;
  margin-right: auto;
}

.final-cta .primary-button {
  width: min(520px, 100%);
}

/* Snow.ca-inspired clean landing treatment */
body {
  background: #f5f8fb;
  color: var(--navy);
}

.topbar {
  margin-bottom: 18px;
}

main {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(2, 12, 20, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(245, 248, 251, 0.96), rgba(225, 239, 249, 0.8)),
    url("assets/winter-property.png") center / cover;
}

.hero-copy h1 {
  color: var(--navy);
  font-size: clamp(50px, 6.8vw, 92px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy p:not(.hero-kicker) {
  color: #536b7b;
}

.simulator-panel,
.trust-panel {
  border-color: rgba(2, 12, 20, 0.1);
  background: rgba(255, 255, 255, 0.76);
  color: var(--navy);
}

.form-heading h2,
.trust-grid h3,
.landing-card h3,
.faq-list summary {
  color: var(--navy);
}

.form-heading p,
.progress-meta,
.microcopy {
  color: #637a8a;
}

.screen-inner .lede {
  color: #526b7c;
}

.screen-inner .eyebrow {
  color: #506879;
}

.progress {
  background: rgba(2, 12, 20, 0.1);
}

label,
.choice-label {
  color: #183246;
}

input,
textarea {
  border-color: rgba(2, 12, 20, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
}

.google-address-input,
gmp-place-autocomplete {
  color-scheme: light;
}

.simulator-panel .google-address-host {
  position: relative;
  z-index: 5;
  width: 100%;
  overflow: visible;
}

.simulator-panel .google-address-input,
.simulator-panel gmp-place-autocomplete {
  display: block;
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(2, 12, 20, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  color-scheme: light;
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  overflow: visible;
}

.simulator-panel .google-address-input::part(input),
.simulator-panel gmp-place-autocomplete::part(input) {
  min-height: 58px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
}

.simulator-panel .google-address-input:focus-within,
.simulator-panel gmp-place-autocomplete:focus-within {
  border-color: rgba(85, 167, 227, 0.9);
  box-shadow: 0 0 0 3px rgba(85, 167, 227, 0.12);
}

.simulator-panel .streetview-note {
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.simulator-panel .streetview-note svg,
.simulator-panel .streetview-note i {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: var(--blue);
  stroke: var(--blue);
  stroke-width: 2;
}

.form-error {
  color: #314b5e;
}

.form-error:not(:empty) {
  border-color: rgba(57, 127, 189, 0.28);
  background: rgba(57, 127, 189, 0.08);
  color: #27475c;
}

input:focus,
textarea:focus {
  background: #ffffff;
}

.trust-grid article {
  border-bottom-color: rgba(2, 12, 20, 0.08);
}

.trust-grid p {
  color: #516b7d;
}

.landing-section {
  border-color: rgba(2, 12, 20, 0.08);
  background: #ffffff;
  color: var(--navy);
}

.landing-section h2 {
  color: var(--navy);
  max-width: 860px;
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1;
}

.section-lede,
.landing-card p,
.section-copy p,
.faq-list p,
.final-cta p,
.service-copy p {
  color: #516b7d;
}

.landing-card,
.faq-list details,
.value-list div,
.service-points div {
  border-color: rgba(2, 12, 20, 0.1);
  background: #f7fafc;
  color: var(--navy);
}

.landing-card b {
  border-color: rgba(85, 167, 227, 0.3);
}

.service-section {
  background:
    linear-gradient(90deg, rgba(245, 248, 251, 0.96), rgba(225, 239, 249, 0.78)),
    url("assets/winter-property.png") center / cover;
}

.service-copy p:last-child {
  color: var(--navy);
}

.value-list div {
  color: var(--navy);
}

.commitment-section {
  background: #eaf4fb;
}

.vsl-section,
.scarcity-section,
.faq-section,
.final-cta {
  background: #ffffff;
}

.faq-list summary {
  color: var(--navy);
}

.secondary-button,
.photo-button {
  border-color: rgba(2, 12, 20, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
}

/* Snow.ca closer composition pass */
.app-shell {
  width: 100%;
  padding: 0 0 56px;
}

.topbar {
  height: 74px;
  margin: 0;
  padding: 0 var(--grid-margin);
  border-bottom: 1px solid rgba(2, 12, 20, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.menu-hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 500;
}

.brand {
  position: absolute;
  left: 50%;
  width: 228px;
  height: 50px;
  transform: translateX(-50%);
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.brand img {
  filter: drop-shadow(0 0 0 transparent);
}

main {
  display: block;
  width: 100%;
  max-width: none;
  min-height: calc(100vh - 74px);
  margin: 0;
  padding: clamp(52px, 7vw, 92px) var(--grid-margin) clamp(56px, 8vw, 104px);
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.88), transparent 34%),
    linear-gradient(180deg, #dcecf8 0%, #edf6fc 54%, #f7fafc 100%);
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: start;
  width: min(100%, 1040px);
  margin: 0 auto;
  gap: 34px;
}

.hero-copy {
  max-width: 900px;
  text-align: center;
  padding-top: 18px;
}

.hero-kicker {
  margin-bottom: 22px;
  color: rgba(2, 12, 20, 0.68);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 12px;
  transform: rotate(45deg);
  background: #415260;
  vertical-align: 1px;
}

.hero-copy h1 {
  max-width: 860px;
  margin: 0 auto 22px;
  color: #020c14;
  font-size: clamp(48px, 5.4vw, 82px);
  line-height: 1.02;
  font-weight: 500;
}

.hero-copy h1 span {
  display: block;
  color: #397fbd;
  font-weight: 700;
}

.hero-copy p:not(.hero-kicker) {
  max-width: 980px;
  margin: 0 auto;
  color: #3f4f5d;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.45;
  font-weight: 400;
}

.keep-together {
  white-space: nowrap;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 26px;
  color: rgba(2, 12, 20, 0.72);
  font-size: 14px;
  font-weight: 500;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 2px;
  white-space: nowrap;
}

.hero-proof i {
  width: 17px;
  height: 17px;
  color: #397fbd;
  stroke-width: 2.2;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  margin-top: 26px;
  border: 1px solid #397fbd;
  border-radius: 8px;
  background: #55a7e3;
  color: var(--navy);
  padding: 0 24px;
  font-family: "Inter Tight", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.hero-cta:hover {
  transform: translateY(-1px);
  background: #67b4eb;
}

.hero-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 62px);
  width: min(760px, 100%);
  margin-top: clamp(10px, 2.4vw, 22px);
  color: var(--navy);
  text-align: center;
}

.hero-steps article {
  display: grid;
  justify-items: center;
  gap: 6px;
  animation: stepFloat 4.8s ease-in-out infinite;
}

.hero-steps article:nth-child(2) {
  animation-delay: 0.32s;
}

.hero-steps article:nth-child(3) {
  animation-delay: 0.64s;
}

.hero-steps span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 999px;
  background: rgba(57, 127, 189, 0.12);
  color: #397fbd;
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 0 0 0 rgba(85, 167, 227, 0.28);
  animation: stepPulse 4.8s ease-out infinite;
}

.hero-steps article:nth-child(2) span {
  animation-delay: 0.32s;
}

.hero-steps article:nth-child(3) span {
  animation-delay: 0.64s;
}

.hero-steps h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 500;
  line-height: 1.1;
}

.hero-steps p {
  margin: 0;
  color: #617282;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.35;
}

.simulator-panel {
  width: min(640px, 100%);
  border-color: rgba(2, 12, 20, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 80px rgba(57, 127, 189, 0.12);
}

.screen-inner {
  padding: clamp(22px, 2.6vw, 34px);
}

.progress-wrap {
  padding: 20px clamp(22px, 2.6vw, 34px) 0;
}

.form-heading {
  text-align: left;
}

.form-heading h2 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
}

.trust-panel {
  top: 94px;
  width: min(360px, calc(100% - 72px));
  margin-left: auto;
  margin-right: max(var(--grid-margin), calc((100vw - var(--grid-max)) / 2 + var(--grid-margin)));
  margin-top: 56px;
  background: rgba(2, 12, 20, 0.5);
  border-color: rgba(2, 12, 20, 0.12);
  color: #ffffff;
}

.trust-panel .eyebrow,
.trust-grid h3,
.trust-grid p {
  color: #ffffff;
}

.trust-grid p {
  opacity: 0.76;
}

.landing-section {
  width: min(var(--grid-max), calc(100% - (var(--grid-margin) * 2)));
  margin: 0 auto;
  padding: calc(var(--leading) * 4) 0;
  border: 0;
  border-top: 1px solid rgba(2, 12, 20, 0.1);
  border-radius: 0;
  background: transparent;
}

.landing-section h2 {
  max-width: 720px;
  margin-bottom: calc(var(--leading) * 2);
  font-size: clamp(34px, 4.1vw, 62px);
  line-height: 1.05;
  font-weight: 500;
  text-transform: none;
}

.eyebrow {
  color: #506272;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.section-lede {
  max-width: 540px;
  color: #4b5f70;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.45;
}

.landing-grid {
  gap: 0;
  display: grid;
  border-top: 1px solid rgba(2, 12, 20, 0.1);
  border-left: 1px solid rgba(2, 12, 20, 0.1);
}

.landing-card {
  min-height: calc(var(--leading) * 6.5);
  border: 0;
  border-right: 1px solid rgba(2, 12, 20, 0.1);
  border-bottom: 1px solid rgba(2, 12, 20, 0.1);
  border-radius: 0;
  background: transparent;
  padding: var(--leading);
}

.landing-card b {
  width: auto;
  height: auto;
  margin-bottom: 22px;
  border: 0;
  border-radius: 0;
  color: #397fbd;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.landing-card h3 {
  color: #020c14;
  font-size: 19px;
  font-weight: 500;
}

.landing-card p,
.section-copy p,
.faq-list p,
.final-cta p,
.service-copy p {
  color: #4b5f70;
  font-weight: 400;
  line-height: 1.45;
}

.service-section {
  width: 100%;
  max-width: none;
  padding-left: max(var(--grid-margin), calc((100vw - var(--grid-max)) / 2 + var(--grid-margin)));
  padding-right: max(var(--grid-margin), calc((100vw - var(--grid-max)) / 2 + var(--grid-margin)));
  background:
    linear-gradient(90deg, rgba(245, 248, 251, 0.96), rgba(225, 239, 249, 0.84)),
    url("assets/winter-property.png") center / cover;
}

.service-points div,
.value-list div,
.faq-list details {
  border-color: rgba(2, 12, 20, 0.1);
  border-radius: 0;
  background: transparent;
}

.value-list {
  border-top: 1px solid rgba(2, 12, 20, 0.1);
}

.value-list div {
  border-width: 0 0 1px;
  padding-left: 0;
  padding-right: 0;
}

.value-list div {
  align-items: start;
}

.value-list i {
  margin-top: 4px;
}

.value-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
  font-weight: 500;
}

.value-block {
  margin-top: clamp(48px, 7vw, 92px);
}

.value-block h3 {
  max-width: 680px;
  margin: 0 0 28px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
  font-weight: 500;
}

.value-note {
  max-width: 640px;
  margin: 18px 0 0;
  color: #536b7b;
  font-size: clamp(15px, 1.1vw, 17px);
  font-style: italic;
  line-height: 1.5;
}

.commitment-section {
  width: min(var(--grid-max), calc(100% - (var(--grid-margin) * 2)));
  background: transparent;
}

.vsl-section {
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
}

.radar-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.radar-section h2 {
  max-width: 760px;
  color: var(--navy);
  font-size: clamp(42px, 4vw, 68px);
}

.radar-section h2 span {
  display: block;
  color: var(--navy);
}

.radar-section h2 .keep-line {
  white-space: nowrap;
}

.radar-card {
  border: 1px solid rgba(2, 12, 20, 0.16);
  background: #081018;
  color: #ffffff;
  overflow: hidden;
}

.radar-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  min-height: 58px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.radar-head span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.radar-live-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #55a7e3;
  box-shadow: 0 0 0 0 rgba(85, 167, 227, 0.54);
  animation: radarLivePulse 1.7s ease-out infinite;
}

.radar-map {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(280px, 34vw, 440px);
  background: #121820;
}

.radar-iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 50vh, 520px);
  border: 0;
  background: #081018;
}

.radar-map .leaflet-container,
.radar-map .leaflet-pane,
.radar-map .leaflet-map-pane {
  background: #121820;
}

.radar-map .leaflet-tile-pane {
  filter: grayscale(1) invert(1) contrast(1.04) brightness(0.52);
}

.radar-map .leaflet-rainviewerRadar-pane {
  opacity: 0.86;
  filter: saturate(0.95) contrast(1.08) brightness(1.04);
}

.radar-map .leaflet-control-container,
.radar-map .leaflet-marker-pane,
.radar-map .leaflet-tooltip-pane {
  display: none;
}

.radar-loading {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.radar-city-label {
  border: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Courier New", ui-monospace, SFMono-Regular, monospace;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}

.radar-city-label::before {
  display: none;
}

.radar-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 44px;
  padding: 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.62);
  font-family: "Courier New", ui-monospace, SFMono-Regular, monospace;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.vsl-frame {
  border-radius: 0;
  border-color: rgba(2, 12, 20, 0.1);
}

.faq-list {
  border-top: 1px solid rgba(2, 12, 20, 0.1);
}

.faq-section {
  width: 100%;
  max-width: none;
  padding-left: max(var(--grid-margin), calc((100vw - var(--grid-max)) / 2 + var(--grid-margin)));
  padding-right: max(var(--grid-margin), calc((100vw - var(--grid-max)) / 2 + var(--grid-margin)));
  background: #14161b;
  color: #eef5fb;
}

.faq-section .eyebrow,
.faq-section h2 {
  color: #eef5fb;
}

.faq-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-columns .faq-list {
  display: grid;
  gap: 14px;
  border-top: 0;
}

.faq-columns details {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  padding: 0;
}

.faq-columns summary {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  cursor: pointer;
  color: #eef5fb;
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.18;
  list-style: none;
  text-transform: uppercase;
}

.faq-columns summary::-webkit-details-marker {
  display: none;
}

.faq-columns summary::after {
  content: "+";
  color: #2e90ff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.faq-columns details[open] summary::after {
  content: "-";
}

.faq-columns details p {
  max-width: 720px;
  margin: -2px 24px 22px;
  color: rgba(238, 245, 251, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.faq-columns details strong {
  color: #ffffff;
  font-weight: 600;
}

.final-cta {
  padding-bottom: clamp(72px, 9vw, 132px);
}

.final-cta h2 {
  max-width: 760px;
  text-align: center;
}

/* Quiet copy pass: sparse, lighter, more editorial. */
.landing-section h2 span,
.landing-section h2 em {
  font-weight: inherit;
}

.hero-copy h1 span {
  font-weight: 700;
}

.hero-kicker,
.eyebrow {
  font-weight: 500;
}

.hero-proof span,
.progress-meta,
label,
.choice-label,
.microcopy {
  font-weight: 500;
}

.form-heading p,
.microcopy {
  font-size: 14px;
  line-height: 1.4;
}

.landing-section {
  padding-top: clamp(72px, 8vw, 104px);
  padding-bottom: clamp(72px, 8vw, 104px);
}

.landing-section h2 {
  max-width: 700px;
  font-size: clamp(32px, 3.8vw, 58px);
  line-height: 1.08;
  font-weight: 500;
}

.section-lede,
.service-copy p,
.section-copy p,
.landing-card p,
.faq-list p,
.final-cta p {
  max-width: 620px;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.55;
  font-weight: 400;
}

.landing-card {
  min-height: 168px;
}

.landing-card b {
  color: rgba(57, 127, 189, 0.78);
  font-size: 12px;
  font-weight: 500;
}

.landing-card h3 {
  font-size: 18px;
  font-weight: 500;
}

.service-points span,
.value-list div {
  color: var(--navy);
  font-size: clamp(16px, 1.15vw, 18px);
  font-weight: 400;
  line-height: 1.5;
}

.faq-list summary {
  color: var(--navy);
  font-size: clamp(17px, 1.25vw, 20px);
  font-weight: 500;
}

.final-cta h2 {
  max-width: 560px;
}

.final-cta > p:not(.eyebrow):not(.microcopy) {
  max-width: 560px;
  margin: 18px auto 28px;
  color: #4b5f70;
  text-align: center;
}

.final-cta > .microcopy {
  margin: 12px auto 0;
  color: #5e7485;
  font-size: 14px;
  text-align: center;
}

.faq-section .faq-list summary {
  color: #eef5fb;
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 600;
}

.faq-section .faq-list details {
  background: rgba(255, 255, 255, 0.025);
}

.faq-section .faq-list p {
  color: rgba(238, 245, 251, 0.72);
}

/* Final alignment pass for mission + FAQ. */
.service-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.68fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
  width: 100%;
  min-height: 560px;
  padding: clamp(76px, 8vw, 118px) max(var(--grid-margin), calc((100vw - var(--grid-max)) / 2 + var(--grid-margin)));
}

.service-section > .eyebrow,
.service-section > h2 {
  grid-column: 1;
  width: min(720px, 100%);
  margin-left: 0;
  margin-right: 0;
}

.service-section > h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.04;
}

.service-section > .eyebrow {
  align-self: end;
  margin-bottom: -22px;
}

.service-split {
  grid-column: 2;
  grid-row: 1 / 3;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 24px;
  width: min(440px, 100%);
  margin-left: 0;
  margin-right: 0;
}

.service-copy {
  max-width: 420px;
}

.service-copy p {
  margin: 0;
}

.service-points div {
  align-items: flex-start;
  min-height: 54px;
  border-color: rgba(2, 12, 20, 0.12);
  background: rgba(255, 255, 255, 0.42);
  color: var(--navy);
  padding: 14px;
}

.service-points span {
  color: var(--navy);
  font-weight: 400;
  line-height: 1.45;
}

.service-points strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
  font-weight: 500;
}

.service-points i {
  margin-top: 3px;
}

.faq-section {
  width: min(var(--grid-max), calc(100% - (var(--grid-margin) * 2)));
  max-width: var(--grid-max);
  padding-left: 0;
  padding-right: 0;
  background: transparent;
  color: var(--navy);
}

.faq-section .eyebrow,
.faq-section h2 {
  color: var(--navy);
}

.faq-columns {
  gap: 18px;
}

.faq-section .faq-list {
  gap: 12px;
}

.faq-section .faq-list details {
  border: 1px solid rgba(2, 12, 20, 0.1);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.42);
}

.faq-section .faq-list summary {
  min-height: 68px;
  color: var(--navy);
  font-size: clamp(15px, 1vw, 17px);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.faq-section .faq-list summary::after {
  color: #397fbd;
}

.faq-section .faq-list p {
  color: #4b5f70;
}

.faq-section .faq-list strong {
  color: var(--navy);
}

/* Funnel typography pass: keep every control on the same visual system. */
.simulator-panel,
.simulator-panel *,
.pac-container,
.pac-container * {
  font-family: "Inter Tight", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.simulator-panel h1 {
  max-width: 100%;
  color: var(--navy);
  font-size: clamp(42px, 5.2vw, 66px);
  line-height: 1;
  font-weight: 500;
  text-transform: none;
}

.simulator-panel h1 .blue {
  display: inline;
  color: #397fbd;
  font-weight: inherit;
}

.simulator-panel h2,
.form-heading h2,
.offer-card h2,
.analysis-message h2 {
  color: var(--navy);
  font-weight: 500;
  text-transform: none;
}

.simulator-panel .eyebrow,
.simulator-panel label,
.simulator-panel .choice-label,
.simulator-panel .progress-meta,
.simulator-panel .detected-card span,
.simulator-panel .status-pill {
  color: #5e7485;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.simulator-panel .detected-card {
  background: #ffffff;
}

.simulator-panel .detected-card strong {
  color: var(--navy);
}

.simulator-panel .lede,
.simulator-panel .microcopy,
.simulator-panel p {
  font-weight: 400;
}

.primary-button,
.secondary-button,
.ghost-button,
.option-button,
.photo-button,
.link-button,
.icon-button {
  font-family: "Inter Tight", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}

.primary-button,
.secondary-button,
.photo-button,
.option-button {
  text-transform: none;
}

.primary-button {
  font-size: clamp(16px, 1.2vw, 18px);
}

.secondary-button,
.photo-button,
.option-button {
  color: var(--navy);
}

.link-button {
  color: #314b5e;
  font-weight: 500;
}

.pac-container {
  font-family: "Inter Tight", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pac-item-query,
.pac-matched {
  font-weight: 600;
}

.simulator-panel .consent-check {
  color: #526b7c;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.simulator-panel .field-note {
  color: #637a8a;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

@media (max-width: 920px) {
  .topbar {
    padding: 0 18px;
  }

  .menu-hint {
    font-size: 0;
  }

  main {
    padding: 34px 18px 54px;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 15vw, 74px);
  }

  .landing-section,
  .commitment-section {
    width: min(100% - 36px, 720px);
  }

  .service-section {
    grid-template-columns: 1fr;
    padding-left: 18px;
    padding-right: 18px;
  }

  .service-section > .eyebrow,
  .service-section > h2,
  .service-section > .service-split {
    grid-column: 1;
  }
}

.admin-drawer {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(2, 12, 20, 0.72);
  padding: 18px;
  z-index: 10;
}

.admin-drawer.open {
  display: grid;
  place-items: center;
}

.drawer-card {
  width: min(1080px, 100%);
  max-height: min(820px, calc(100vh - 36px));
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #04111b;
  padding: 24px;
}

.drawer-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.drawer-head h2 {
  margin: 0;
  font-size: 30px;
  text-transform: uppercase;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(85, 167, 227, 0.34);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.crm-board {
  display: grid;
  gap: 14px;
}

.pricing-rules-form {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, minmax(110px, 1fr)) auto;
  gap: 10px;
  align-items: end;
  border: 1px solid rgba(85, 167, 227, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 14px;
  margin-bottom: 16px;
}

.pricing-rules-form label {
  display: grid;
  gap: 6px;
  color: #d7e8f3;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-rules-form input {
  min-width: 0;
  border: 1px solid rgba(85, 167, 227, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
  padding: 10px;
}

.crm-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  border: 1px solid rgba(85, 167, 227, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 18px;
}

.crm-image {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border: 1px solid rgba(85, 167, 227, 0.22);
  border-radius: 8px;
  margin: 10px 0 14px;
}

.crm-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  color: #d7e8f3;
  font-size: 13px;
}

.crm-actions {
  display: grid;
  gap: 10px;
  align-content: start;
}

@keyframes scan {
  0% { transform: translateY(-90%); }
  50% { transform: translateY(190%); }
  100% { transform: translateY(-90%); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.55; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes radarLivePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(85, 167, 227, 0.52);
  }
  70% {
    box-shadow: 0 0 0 11px rgba(85, 167, 227, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(85, 167, 227, 0);
  }
}

@keyframes stepPulse {
  0%, 58%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(85, 167, 227, 0);
  }

  12% {
    transform: scale(1.06);
    box-shadow: 0 0 0 12px rgba(85, 167, 227, 0.12);
  }

  24% {
    transform: scale(1);
    box-shadow: 0 0 0 20px rgba(85, 167, 227, 0);
  }
}

@keyframes stepFloat {
  0%, 64%, 100% {
    transform: translateY(0);
  }

  16% {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-steps article,
  .hero-steps span {
    animation: none;
  }
}

@media (max-width: 920px) {
  .app-shell {
    width: min(100% - 18px, 720px);
    padding-top: 12px;
  }

  main,
  .analysis-stage,
  .radar-section,
  .vsl-section,
  .service-split {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(44px, 13vw, 78px);
  }

  .hero-steps {
    grid-template-columns: 1fr;
    gap: 14px;
    width: min(420px, 100%);
  }

  .hero-steps article {
    grid-template-columns: 42px 1fr;
    justify-items: start;
    align-items: center;
    column-gap: 12px;
    text-align: left;
  }

  .hero-steps span {
    width: 42px;
    height: 42px;
    margin: 0;
  }

  .hero-steps p {
    grid-column: 2;
  }

  .landing-grid.three,
  .landing-grid.four,
  .landing-grid.two,
  .faq-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-panel {
    position: static;
  }

  .simulator-panel,
  .screen {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  body {
    background-attachment: scroll;
  }

  .topbar {
    align-items: flex-start;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-copy p:not(.hero-kicker) {
    font-size: 18px;
  }

  .brand {
    width: 184px;
    height: 48px;
  }

  .ghost-button {
    width: 42px;
    padding: 0;
    overflow: hidden;
    color: transparent;
  }

  .ghost-button i {
    color: var(--white);
  }

  .screen-inner,
  .progress-wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  .form-grid,
  .photo-actions,
  .choice-grid,
  .reservation-summary,
  .detected-grid,
  .faq-columns,
  .landing-grid.three,
  .landing-grid.four,
  .landing-grid.two,
  .crm-card,
  .crm-meta,
  .pricing-rules-form {
    grid-template-columns: 1fr;
  }

  .property-view,
  .property-view img,
  .scan-box img {
    min-height: 280px;
    height: 280px;
  }

  .radar-card iframe {
    height: 300px;
  }

  .faq-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .faq-columns summary {
    min-height: 66px;
    padding: 16px 18px;
    font-size: 14px;
  }

  .faq-columns details p {
    margin: -2px 18px 18px;
    font-size: 14px;
  }

  .primary-button,
  .secondary-button,
  .photo-button {
    min-height: 58px;
  }
}

/* Landing header: no menu bar, logo sits directly on the gradient. */
.topbar {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  min-height: 0;
  justify-content: center;
  padding: clamp(20px, 3vw, 34px) var(--grid-margin) 0;
  border: 0;
  background: transparent;
  pointer-events: none;
}

.topbar .brand {
  position: static;
  width: clamp(170px, 14vw, 228px);
  height: clamp(40px, 4vw, 54px);
  transform: none;
  pointer-events: auto;
}

.menu-hint {
  display: none;
}

.admin-floating-toggle {
  position: fixed;
  z-index: 50;
  top: 18px;
  right: 18px;
  width: auto;
}

main {
  min-height: 100vh;
  padding-top: clamp(104px, 10vw, 142px);
}

/* Premium service section: one visual idea, no stacked mission/cards. */
.service-section.service-value-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
  width: min(var(--grid-max), calc(100% - (var(--grid-margin) * 2)));
  max-width: var(--grid-max);
  min-height: 0;
  margin: 0 auto;
  padding: clamp(78px, 8vw, 122px) 0;
  border-top: 1px solid rgba(2, 12, 20, 0.1);
  background: transparent;
}

.service-content {
  max-width: 560px;
}

.service-content .eyebrow {
  margin-bottom: 18px;
}

.service-content h2 {
  max-width: 520px;
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1;
  font-weight: 500;
}

.service-intro {
  max-width: 520px;
  margin: 0 0 34px;
  color: #3f4f5d;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.45;
  font-weight: 500;
}

.service-items {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.service-items div {
  display: grid;
  gap: 6px;
}

.service-items strong {
  color: var(--navy);
  font-size: 17px;
  font-weight: 650;
}

.service-items span,
.service-content .value-note {
  color: #516b7d;
  font-size: 16px;
  line-height: 1.45;
}

.service-content .value-note {
  margin: 30px 0 0;
  font-style: italic;
}

.service-photo {
  position: relative;
  align-self: stretch;
  min-height: clamp(440px, 38vw, 600px);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #d8e6ef;
}

.service-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  display: block;
}

.photo-callout {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  background: rgba(2, 12, 20, 0.7);
  color: #ffffff;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.photo-guides {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.photo-guides line {
  stroke: rgba(255, 255, 255, 0.88);
  stroke-width: 1.45;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 2px 3px rgba(2, 12, 20, 0.42));
}

.photo-guides circle {
  fill: var(--blue);
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 0.42;
  filter: drop-shadow(0 2px 3px rgba(2, 12, 20, 0.34));
}

.photo-callout span {
  color: var(--blue);
  font-size: 14px;
}

.callout-walkway {
  left: 17%;
  top: 64%;
  bottom: auto;
}

.callout-steps {
  left: 61%;
  top: 53%;
  right: auto;
}

.callout-porch {
  left: 60%;
  top: 36%;
}

.service-benefit-strip {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
  justify-content: center;
  border-top: 1px solid rgba(2, 12, 20, 0.1);
  padding-top: 28px;
  color: #4b5f70;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-benefit-strip span + span::before {
  content: "—";
  margin-right: 34px;
  color: rgba(2, 12, 20, 0.28);
}

@media (max-width: 980px) {
  .service-section.service-value-section {
    grid-template-columns: 1fr;
  }

  .service-content {
    max-width: 720px;
  }

  .service-photo {
    min-height: 460px;
  }
}

@media (max-width: 620px) {
  .service-section.service-value-section {
    width: calc(100% - 36px);
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .service-content h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .service-photo {
    min-height: 340px;
  }

  .photo-callout {
    padding: 7px 9px;
    font-size: 10px;
  }

  .photo-guides {
    display: none;
  }

  .callout-walkway {
    left: 30%;
    bottom: 20%;
  }

  .callout-steps {
    left: 52%;
    right: auto;
    top: 51%;
  }

  .callout-porch {
    left: 44%;
    top: 34%;
  }

  .service-benefit-strip {
    justify-content: flex-start;
    gap: 10px;
  }

  .service-benefit-strip span + span::before {
    content: none;
  }

  .topbar {
    align-items: center;
    padding-top: 18px;
  }

  .topbar .brand {
    width: 178px;
    height: 44px;
  }

  main {
    padding-top: 86px;
  }
}
