:root {
  --white: #ffffff;
  --surface: #f5f9fc;
  --surface-blue: #edf6fc;
  --text: #102033;
  --muted: #647381;
  --line: #d9e7ee;
  --blue: #2477d4;
  --blue-dark: #175fae;
  --blue-soft: #dcefff;
  --green: #2fb36d;
  --green-dark: #198454;
  --orange: #f28b2e;
  --shadow: 0 22px 60px rgba(11, 31, 53, 0.12);
  --shadow-soft: 0 12px 30px rgba(11, 31, 53, 0.07);
  --header-height: 68px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

body.nav-open,
body.modal-open,
html.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

button,
input {
  font: inherit;
}

.container {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
  scroll-margin-top: calc(var(--header-height) + 16px);
}

#top,
#how-it-works,
#plans,
#filter-finder,
#early-access {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid rgba(217, 231, 238, 0.8);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 28px rgba(11, 31, 53, 0.09);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.site-logo {
  width: auto;
  max-width: 150px;
  max-height: 40px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #40505e;
  font-size: 0.92rem;
  font-weight: 750;
}

.nav-links a {
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta {
  padding: 9px 14px;
  border-radius: 9px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

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

h1 {
  max-width: 700px;
  margin-bottom: 14px;
  font-size: clamp(2.45rem, 5vw, 4.55rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.85rem, 3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  line-height: 1.3;
}

.eyebrow {
  margin-bottom: 9px;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

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

.btn:focus-visible,
.nav-toggle:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(47, 179, 109, 0.42);
  outline-offset: 3px;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 16px 34px rgba(36, 119, 212, 0.28);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: var(--white);
  box-shadow: 0 8px 18px rgba(11, 31, 53, 0.06);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 44px 0 42px;
  background:
    radial-gradient(circle at 10% 10%, rgba(47, 179, 109, 0.12), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(36, 119, 212, 0.13), transparent 32%),
    linear-gradient(180deg, #f8fcff, #ffffff);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: -2;
  background-image: url("assets/images/filter-wizard-hero-delivery.webp");
  background-size: cover;
  background-position: 66% center;
  opacity: 0.16;
  filter: blur(10px);
  transform: scale(1.05);
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(248, 252, 255, 0.96) 0%, rgba(248, 252, 255, 0.88) 46%, rgba(255, 255, 255, 0.72) 100%),
    linear-gradient(180deg, rgba(248, 252, 255, 0.94), rgba(255, 255, 255, 0.96));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 32px;
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 12px;
  color: #40505e;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.48;
}

.hero-proof-line {
  max-width: 590px;
  margin: -4px 0 12px;
  color: #647585;
  font-size: 0.93rem;
  font-weight: 750;
}

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

.hero-value-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 0 0 12px;
  list-style: none;
}

.hero-value-pills li {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid rgba(47, 179, 109, 0.22);
  border-radius: 999px;
  color: #263a4c;
  background: rgba(232, 248, 239, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.trust-row li {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(217, 231, 238, 0.9);
  border-radius: 999px;
  color: #334351;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 800;
}

.image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 26px 70px rgba(11, 31, 53, 0.16);
}

.hero-visual {
  opacity: 0.82;
  filter: blur(4px);
  transform: translateY(12px) scale(0.985);
  transition:
    opacity 520ms ease,
    filter 520ms ease,
    transform 520ms ease,
    box-shadow 180ms ease;
}

.hero-visual.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.hero-visual picture,
.proof-image-card picture {
  display: block;
}

.hero-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: 66% center;
}

.countdown-badge {
  display: inline-grid;
  gap: 2px;
  padding: 9px 12px;
  border: 1px solid rgba(242, 139, 46, 0.34);
  border-radius: 14px;
  background: #fff8ed;
  color: #7b4a09;
  box-shadow: 0 10px 24px rgba(242, 139, 46, 0.1);
}

.countdown-badge span {
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.countdown-badge strong {
  color: #102033;
  font-size: 1.28rem;
  line-height: 1;
}

.countdown-badge small {
  color: #8a5c18;
  font-size: 0.78rem;
  font-weight: 750;
}

.compact-section {
  padding: 68px 0;
}

.compact-heading {
  max-width: 680px;
  margin: 0 auto 28px;
  text-align: center;
}

.compact-heading > p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
}

.compact-heading > p:not(.eyebrow) + p {
  margin-top: 6px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  min-height: 176px;
  padding: 24px;
  border: 1px solid rgba(217, 231, 238, 0.95);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 10%, rgba(36, 119, 212, 0.08), transparent 30%),
    var(--white);
  box-shadow: 0 16px 42px rgba(11, 31, 53, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  border-color: #b7d5e7;
  box-shadow: 0 16px 36px rgba(11, 31, 53, 0.1);
}

.benefit-card span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 12px;
  color: var(--green-dark);
  background: linear-gradient(180deg, #e7f8ee, #d6f2e2);
  font-size: 0.75rem;
  font-weight: 850;
}

.benefit-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.proof-section {
  padding: 66px 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(47, 179, 109, 0.09), transparent 28%),
    linear-gradient(180deg, #ffffff, #f8fcff);
}

.proof-image-card {
  width: min(100%, 880px);
  margin: 0 auto 18px;
}

.proof-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
}

.proof-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 880px);
  margin: 0 auto;
}

.proof-benefit-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 15px 16px;
  border: 1px solid rgba(217, 231, 238, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(11, 31, 53, 0.07);
}

.proof-benefit-card span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--green-dark);
  background: #e8f8ef;
  font-weight: 900;
}

.proof-benefit-card p {
  margin: 0;
  color: #253746;
  font-weight: 850;
}

.switch-section {
  padding: 44px 0;
  background: var(--white);
}

.switch-section .compact-heading {
  margin-bottom: 18px;
}

.switch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.switch-card {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 78px;
  padding: 18px;
  border: 1px solid rgba(217, 231, 238, 0.9);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f9fcff);
  box-shadow: 0 12px 32px rgba(11, 31, 53, 0.07);
}

.switch-card span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #b33625;
  background: #fff0ed;
  font-weight: 900;
}

.switch-card p {
  margin: 0;
  color: #253746;
  font-weight: 850;
}

.switch-solution {
  width: max-content;
  max-width: 100%;
  margin: 18px auto 0;
  padding: 10px 14px;
  border: 1px solid rgba(47, 179, 109, 0.22);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(232, 248, 239, 0.78);
  font-weight: 900;
  text-align: center;
}

.pricing-section {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--surface) 14%, var(--surface) 100%);
}

.pricing-countdown {
  display: grid;
  width: max-content;
  margin: 0 auto 22px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(217, 231, 238, 0.95);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(11, 31, 53, 0.1);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pricing-card:hover,
.pricing-card:active,
.pricing-card:focus-within {
  transform: scale(1.02);
  border-color: rgba(36, 119, 212, 0.52);
  box-shadow: 0 26px 70px rgba(36, 119, 212, 0.18);
}

.pricing-card.featured {
  border-color: rgba(36, 119, 212, 0.52);
  box-shadow: 0 26px 70px rgba(36, 119, 212, 0.18);
}

.popular-badge,
.offer-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 30px;
  margin: 0;
  padding: 5px 10px;
  border: 1px solid rgba(47, 179, 109, 0.28);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(47, 179, 109, 0.09);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.popular-badge {
  min-height: 34px;
  padding: 6px 12px;
  color: var(--white);
  border-color: rgba(36, 119, 212, 0.18);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 12px 24px rgba(36, 119, 212, 0.18);
}

.plan-head p {
  margin-bottom: 0;
  color: var(--muted);
}

.price-stack {
  display: grid;
  gap: 5px;
  padding: 16px;
  border-radius: 16px;
  background: #f8fbfe;
}

.price-stack span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-stack del {
  color: #8b99a6;
  font-size: 0.94rem;
  font-weight: 750;
}

.price-stack strong {
  color: var(--green-dark);
  font-size: clamp(2.25rem, 4vw, 3rem);
  line-height: 1.05;
}

.price-stack small {
  color: var(--muted);
  font-size: 0.9rem;
}

.shipping-note {
  width: max-content;
  margin: 0;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-size: 0.82rem;
  font-weight: 850;
}

.savings-note {
  width: max-content;
  margin: -4px 0 0;
  padding: 6px 10px;
  border: 1px solid rgba(47, 179, 109, 0.24);
  border-radius: 999px;
  color: var(--green-dark);
  background: #e8f8ef;
  font-size: 0.82rem;
  font-weight: 900;
}

.pricing-card ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 22px;
  color: #334351;
  font-size: 0.94rem;
  font-weight: 700;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.52em;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

.pricing-disclaimer {
  max-width: 820px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.pricing-faq {
  max-width: 820px;
  margin: 24px auto 0;
  padding: 18px;
  border: 1px solid rgba(217, 231, 238, 0.95);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(11, 31, 53, 0.07);
}

.pricing-faq h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.pricing-faq details {
  border-top: 1px solid var(--line);
}

.pricing-faq details:first-of-type {
  border-top: 0;
}

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

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

.pricing-faq summary::after {
  content: "+";
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--blue-soft);
}

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

.pricing-faq p {
  margin: -2px 0 14px;
  color: var(--muted);
}

.finder-lite-section {
  position: relative;
  padding: 64px 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(36, 119, 212, 0.08), transparent 28%),
    var(--white);
}

.anchor-target {
  position: absolute;
  top: calc(var(--header-height) * -1);
}

.finder-tool-card {
  display: grid;
  gap: 24px;
  padding: 26px;
  border: 1px solid rgba(217, 231, 238, 0.95);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 179, 109, 0.09), transparent 30%),
    linear-gradient(180deg, #ffffff, #f8fcff);
  box-shadow: var(--shadow-soft);
}

.finder-tool-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.finder-tool-intro p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
}

.finder-quiz,
.finder-result {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(217, 231, 238, 0.95);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(11, 31, 53, 0.08);
}

.finder-quiz[hidden],
.finder-result[hidden],
.finder-step[hidden],
.finder-actions [hidden] {
  display: none !important;
}

.finder-progress {
  display: grid;
  gap: 8px;
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.finder-progress-track {
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: #dbe9f3;
}

.finder-progress-track span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--blue), var(--green));
  transition: width 180ms ease;
}

.finder-step {
  display: grid;
  gap: 16px;
}

.finder-step h3,
.finder-result h3 {
  margin-bottom: 0;
}

.finder-report-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.finder-report-header p:not(.eyebrow) {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--muted);
}

.finder-status-badge {
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 1px solid rgba(47, 179, 109, 0.24);
  border-radius: 999px;
  color: var(--green-dark);
  background: #e8f8ef;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(47, 179, 109, 0.12);
}

.finder-status-badge.needs-confirmation {
  color: #76520c;
  border-color: rgba(242, 139, 46, 0.3);
  background: #fff8ed;
}

.finder-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.finder-options-multi {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.finder-option {
  min-height: 58px;
  padding: 14px;
  border: 1px solid #cddde7;
  border-radius: 14px;
  color: var(--text);
  background: #fbfdff;
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.finder-option:hover,
.finder-option.selected {
  transform: translateY(-2px);
  border-color: var(--blue);
  background: var(--blue-soft);
  box-shadow: 0 12px 28px rgba(36, 119, 212, 0.12);
}

.finder-field {
  position: relative;
  display: grid;
  gap: 8px;
  color: #2b3c4c;
  font-weight: 850;
}

.finder-field[hidden] {
  display: none !important;
}

.size-suggestions {
  position: absolute;
  z-index: 20;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  display: grid;
  gap: 4px;
  max-height: 214px;
  overflow-y: auto;
  padding: 7px;
  border: 1px solid rgba(205, 221, 231, 0.98);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(11, 31, 53, 0.14);
}

.size-suggestions[hidden] {
  display: none !important;
}

.size-suggestions button {
  min-height: 38px;
  padding: 8px 10px;
  border: 0;
  border-radius: 10px;
  color: var(--text);
  background: transparent;
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.size-suggestions button:hover,
.size-suggestions button:focus {
  outline: none;
  color: var(--blue-dark);
  background: var(--blue-soft);
}

.finder-helper {
  margin: 0;
  padding: 13px 14px;
  border: 1px solid rgba(36, 119, 212, 0.16);
  border-radius: 14px;
  color: #334351;
  background: var(--blue-soft);
  font-size: 0.92rem;
  font-weight: 750;
}

.finder-error,
.finder-email-note {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 800;
}

.finder-error {
  color: #9f2f2f;
  border: 1px solid #f0b4b4;
  background: #fff0f0;
}

.finder-email-note {
  color: #76520c;
  border: 1px solid rgba(242, 139, 46, 0.28);
  background: #fff8ed;
}

.finder-error[hidden],
.finder-email-note[hidden] {
  display: none !important;
}

.finder-actions,
.finder-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.finder-result-block {
  padding: 15px;
  border: 1px solid rgba(217, 231, 238, 0.95);
  border-radius: 16px;
  background: #f8fbfe;
}

.finder-result-size {
  border-color: rgba(36, 119, 212, 0.2);
  background: linear-gradient(180deg, #f3f9ff, #ffffff);
}

.finder-match-score {
  border-color: rgba(36, 119, 212, 0.24);
  background: linear-gradient(180deg, #f3f9ff, #ffffff);
}

.finder-result-schedule,
.finder-convenience-plan {
  border-color: rgba(47, 179, 109, 0.22);
  background: linear-gradient(180deg, #f2fff7, #ffffff);
}

.finder-filter-type,
.finder-reminder-schedule {
  border-color: rgba(36, 119, 212, 0.18);
  background: linear-gradient(180deg, #f8fbfe, #ffffff);
}

.finder-result-next {
  border-color: rgba(36, 119, 212, 0.24);
  background: linear-gradient(180deg, #edf6ff, #ffffff);
}

.finder-result-block p {
  margin: 5px 0 0;
  color: var(--muted);
}

.finder-result-block span {
  color: var(--green-dark);
  font-size: 1.1rem;
  font-weight: 900;
}

.finder-result-primary span,
.finder-result-block [data-finder-result-schedule] {
  display: block;
  margin-top: 6px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.08;
}

.finder-result-primary small {
  display: inline-flex;
  width: max-content;
  margin-top: 8px;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.finder-score-track {
  overflow: hidden;
  height: 10px;
  margin-top: 10px;
  border-radius: 999px;
  background: #dbe9f3;
}

.finder-score-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--blue), var(--green));
  transition: width 420ms ease;
}

.finder-match-score [data-finder-match-score],
.finder-filter-type [data-finder-merv] {
  display: block;
  margin-top: 6px;
  color: var(--blue-dark);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.05;
}

.finder-months {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.finder-months span {
  display: inline-flex;
  min-width: 48px;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-size: 0.84rem;
  font-weight: 900;
}

.finder-answer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.finder-answer-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 9px;
  border: 1px solid rgba(36, 119, 212, 0.16);
  border-radius: 999px;
  color: #263a4c;
  background: #ffffff;
  font-size: 0.82rem;
  font-weight: 850;
}

.finder-guidance-card {
  position: relative;
  padding-left: 58px;
}

.finder-guidance-card::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 18px;
  width: 24px;
  height: 24px;
  border: 2px solid var(--blue);
  border-radius: 7px;
  background:
    linear-gradient(90deg, transparent 45%, rgba(36, 119, 212, 0.34) 45%, rgba(36, 119, 212, 0.34) 55%, transparent 55%),
    linear-gradient(180deg, transparent 45%, rgba(36, 119, 212, 0.34) 45%, rgba(36, 119, 212, 0.34) 55%, transparent 55%),
    var(--blue-soft);
}

.finder-next-step ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.finder-next-step li,
.finder-convenience-plan li {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--green-dark);
  background: #e8f8ef;
  font-size: 0.82rem;
  font-weight: 900;
}

.finder-convenience-plan ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.finder-next-step li::before,
.finder-convenience-plan li::before {
  content: "✓ ";
}

.finder-result.report-visible .finder-result-block {
  animation: reportBlockIn 420ms ease both;
}

.finder-result.report-visible .finder-result-block:nth-of-type(2) {
  animation-delay: 80ms;
}

.finder-result.report-visible .finder-result-block:nth-of-type(3) {
  animation-delay: 180ms;
}

.finder-result.report-visible .finder-result-block:nth-of-type(4) {
  animation-delay: 280ms;
}

.finder-result.report-visible .finder-result-block:nth-of-type(5) {
  animation-delay: 380ms;
}

.finder-result.report-visible .finder-result-block:nth-of-type(6) {
  animation-delay: 480ms;
}

.finder-result.report-visible .finder-result-block:nth-of-type(7) {
  animation-delay: 580ms;
}

.finder-result.report-visible .finder-result-block:nth-of-type(8) {
  animation-delay: 680ms;
}

.finder-result.report-visible .finder-result-block:nth-of-type(9) {
  animation-delay: 780ms;
}

.finder-result.report-visible .finder-result-block:nth-of-type(10) {
  animation-delay: 880ms;
}

@keyframes reportBlockIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.finder-copy-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.finder-copy-button {
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid #cddde7;
  border-radius: 10px;
  color: var(--text);
  background: #ffffff;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 850;
  cursor: pointer;
}

.finder-copy-button:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.finder-copy-row span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.finder-copy-row span[hidden] {
  display: none !important;
}

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

.finder-schedule-grid div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(47, 179, 109, 0.2);
  border-radius: 14px;
  background: rgba(232, 248, 239, 0.68);
}

.finder-schedule-grid span {
  color: var(--green-dark);
  font-weight: 900;
}

.final-cta-block {
  padding: 66px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--green-dark));
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: center;
  gap: 38px;
}

.final-cta-inner h2 {
  max-width: 680px;
  margin-bottom: 12px;
  color: var(--white);
}

.final-cta-inner h2 span {
  color: #fff4d8;
}

.final-cta-inner p:not(.eyebrow):not(.offer-badge) {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.final-offer-badge {
  color: #fff4d8;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.14);
  margin-bottom: 12px;
}

.final-countdown {
  margin: 16px 0 10px;
}

.final-cta-inner .btn {
  color: var(--blue-dark);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(6, 34, 54, 0.2);
}

.early-access-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.early-access-list li {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
  font-weight: 850;
}

.early-access-form,
.reservation-success {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 42px rgba(6, 34, 54, 0.16);
}

.reservation-success[hidden] {
  display: none !important;
}

.reservation-success h3 {
  margin-bottom: 8px;
  color: var(--white);
}

.reservation-success p {
  color: rgba(255, 255, 255, 0.84);
}

.early-access-form .form-trust {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-form-trust {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 750;
}

.exit-assist {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 18px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: min(560px, calc(100% - 28px));
  padding: 14px 48px 14px 16px;
  border: 1px solid rgba(217, 231, 238, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 54px rgba(11, 31, 53, 0.18);
  transform: translate(-50%, 18px);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.exit-assist[hidden] {
  display: none !important;
}

.exit-assist.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.exit-assist p {
  margin: 0;
  color: var(--text);
  font-weight: 900;
}

.exit-assist .btn {
  min-height: 42px;
  padding: 10px 14px;
  white-space: nowrap;
}

.exit-assist-close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #ffffff;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.site-footer {
  padding: 30px 0 18px;
  color: rgba(255, 255, 255, 0.8);
  background: #102130;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 22px;
}

.footer-brand {
  margin-bottom: 10px;
}

.footer-logo-wrap {
  display: inline-flex;
  width: 138px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 10px;
  background: var(--white);
}

.footer-logo {
  max-width: 116px;
  max-height: 34px;
}

.site-footer p {
  max-width: 460px;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 750;
}

.footer-links a:hover {
  color: var(--white);
}

.disclaimer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(9, 22, 34, 0.55);
  backdrop-filter: blur(10px);
  opacity: 1;
  transition: opacity 180ms ease;
}

.modal-backdrop[hidden] {
  display: none !important;
}

.modal-backdrop.closing {
  opacity: 0;
}

.reservation-modal {
  position: relative;
  width: min(100%, 520px);
  max-height: min(760px, calc(100vh - 36px));
  overflow-y: auto;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(5, 18, 30, 0.28);
  transform: translateY(0) scale(1);
  transition: transform 180ms ease;
}

.modal-backdrop.closing .reservation-modal {
  transform: translateY(8px) scale(0.985);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 9999;
  pointer-events: auto;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.selected-plan-card {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 8%, rgba(47, 179, 109, 0.12), transparent 28%),
    #f8fbfe;
}

.selected-plan-card p {
  margin: 0;
}

.selected-plan-card del {
  width: max-content;
  color: #8b99a6;
  font-size: 1rem;
  font-weight: 850;
}

.selected-plan-card span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.selected-plan-card strong {
  color: var(--green-dark);
  font-size: clamp(2.15rem, 6vw, 2.85rem);
  line-height: 1.05;
}

.reservation-form,
.result-email-form {
  display: grid;
  gap: 12px;
}

.reservation-form .form-submit,
.result-email-form .form-submit {
  width: 100%;
}

.scarcity-note {
  margin: 0;
  color: #76520c;
  font-size: 0.88rem;
  font-weight: 850;
}

.modal-trust-list {
  display: grid;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f8fbfe;
  color: #334351;
  font-size: 0.88rem;
  font-weight: 800;
}

.reservation-success {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(47, 179, 109, 0.28);
  border-radius: 18px;
  background: linear-gradient(180deg, #f2fff7, #ffffff);
}

.reservation-success h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.reservation-success p {
  margin-bottom: 0;
  color: var(--muted);
}

.reservation-success ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #334351;
  font-weight: 850;
}

.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;
}

input {
  width: 100%;
  min-height: 52px;
  padding: 12px 13px;
  color: var(--text);
  border: 1px solid #cddde7;
  border-radius: 11px;
  outline: none;
  background: #fbfdff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(36, 119, 212, 0.12);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-trust {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.form-success,
.form-error {
  margin: 0;
  padding: 13px 14px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 750;
}

.form-success {
  color: var(--green-dark);
  border: 1px solid #a9dfc1;
  background: #e8f8ef;
}

.form-error {
  color: #9f2f2f;
  border: 1px solid #f0b4b4;
  background: #fff0f0;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 820px) {
  :root {
    --header-height: 60px;
  }

  .container {
    width: min(100% - 28px, 1080px);
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    left: 14px;
    right: 14px;
    top: calc(var(--header-height) + 8px);
    display: grid;
    gap: 2px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 11px 10px;
    border-radius: 8px;
  }

  .nav-cta {
    background: var(--blue-soft);
    white-space: normal;
  }

  .hero-grid,
  .benefit-grid,
  .final-cta-inner,
  .finder-tool-intro,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-grid {
    gap: 20px;
  }

  .final-cta-inner {
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .section,
  .compact-section {
    padding: 50px 0;
  }

  .site-logo {
    max-width: 125px;
    max-height: 34px;
  }

  .hero {
    padding: 22px 0 30px;
  }

  .hero::before {
    opacity: 0.13;
    background-position: 70% center;
    filter: blur(12px);
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(248, 252, 255, 0.97) 0%, rgba(248, 252, 255, 0.92) 55%, rgba(255, 255, 255, 0.98) 100%);
  }

  h1 {
    font-size: 2.25rem;
    line-height: 1.02;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .hero-proof-line {
    margin: -2px 0 10px;
    font-size: 0.86rem;
  }

  .hero-actions {
    display: grid;
    gap: 9px;
    margin-top: 12px;
  }

  .hero-value-pills {
    display: flex;
    gap: 7px;
    margin-bottom: 10px;
  }

  .hero-value-pills li {
    min-height: 28px;
    font-size: 0.76rem;
  }

  .btn {
    width: 100%;
    min-height: 54px;
  }

  .trust-row {
    gap: 7px;
    margin-top: 10px;
  }

  .hero-image {
    height: clamp(190px, 49vw, 230px);
    aspect-ratio: auto;
    object-position: 70% center;
  }

  .countdown-badge {
    width: 100%;
    padding: 8px 11px;
  }

  .countdown-badge strong {
    font-size: 1.12rem;
  }

  .switch-section {
    padding: 40px 0;
  }

  .switch-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .switch-card {
    min-height: 66px;
    padding: 15px;
  }

  .switch-solution {
    width: 100%;
    border-radius: 14px;
  }

  .proof-section {
    padding: 46px 0;
  }

  .proof-image {
    height: clamp(190px, 52vw, 245px);
    aspect-ratio: auto;
  }

  .proof-benefits {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .proof-benefit-card {
    min-height: 58px;
    padding: 14px 15px;
  }

  .pricing-card,
  .benefit-card,
  .switch-card,
  .finder-tool-card,
  .finder-quiz,
  .finder-result {
    padding: 20px;
  }

  .finder-lite-section {
    padding: 48px 0;
  }

  .finder-options,
  .finder-schedule-grid {
    grid-template-columns: 1fr;
  }

  .finder-actions,
  .finder-result-actions {
    display: grid;
  }

  .finder-tool-intro {
    gap: 16px;
  }

  .finder-report-header {
    display: grid;
    gap: 12px;
  }

  .finder-status-badge {
    width: max-content;
  }

  .finder-guidance-card {
    padding-left: 15px;
    padding-top: 54px;
  }

  .finder-guidance-card::before {
    top: 16px;
  }

  .finder-copy-row {
    display: grid;
  }

  .exit-assist {
    grid-template-columns: 1fr;
    gap: 10px;
    bottom: 12px;
    padding: 14px 44px 14px 14px;
  }

  .exit-assist .btn {
    width: 100%;
  }

  .price-stack strong {
    font-size: 2.25rem;
  }

  .final-cta-block {
    padding: 48px 0;
  }

  .reservation-modal {
    padding: 20px;
    border-radius: 20px;
  }

  .footer-links {
    display: grid;
    gap: 10px;
  }

  .site-footer {
    padding: 28px 0 18px;
  }

  .disclaimer {
    margin-top: 18px;
    padding-top: 14px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .finder-result.report-visible .finder-result-block {
    animation: none;
  }
}
