:root {
  color-scheme: light;
  --ink: #172033;
  --navy: #101728;
  --muted: #61728a;
  --line: #dce8f2;
  --line-strong: #c4d9e9;
  --blue: #006fdc;
  --blue-dark: #005fbf;
  --blue-soft: #e7f3ff;
  --orange: #ff6b35;
  --orange-dark: #d94b18;
  --orange-soft: #fff0e9;
  --surface: #ffffff;
  --bg: #f3f9fd;
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 11%, rgba(32, 184, 245, .24), transparent 28rem),
    linear-gradient(180deg, #ffffff 0 38rem, var(--bg) 70rem);
  font-size: 16px;
  line-height: 1.5;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell,
.site-header,
.proof-strip,
.site-footer {
  width: min(calc(100% - 48px), 1400px);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  min-height: 82px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  margin-top: 18px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 22px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 48px rgba(30, 75, 112, .1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.045em;
  text-decoration: none;
}

.brand-target {
  display: block;
  color: var(--blue);
  fill: none;
}

.brand-target > circle:not(.target-signal) {
  stroke: currentColor;
  stroke-width: 3;
}

.brand-target > circle.target-inner {
  stroke-width: 2.5;
  opacity: .48;
}

.brand-target > path {
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.brand-target > .target-signal {
  fill: var(--orange);
}

.brand-target.inverse {
  color: #ffffff;
}

.brand > .brand-target {
  width: 43px;
  height: 43px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 36px);
}

.site-nav a {
  color: #43556e;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

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

.login-link {
  min-height: 46px;
  padding: 11px 18px;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.login-link:hover {
  color: #fff;
  background: var(--blue);
}

.hero {
  display: grid;
  min-height: min(850px, calc(100vh - 100px));
  grid-template-columns: minmax(0, .95fr) minmax(540px, 1.05fr);
  align-items: center;
  gap: clamp(38px, 6vw, 96px);
  padding-block: 74px 88px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

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

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero .eyebrow span {
  width: 10px;
  height: 10px;
  border: 3px solid #ffd1bf;
  border-radius: 50%;
  background: var(--orange);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(52px, 4.7vw, 76px);
  line-height: 1.01;
  letter-spacing: -.058em;
}

h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero-lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: #526783;
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.52;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 12px;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

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

.button.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(8, 124, 240, .22);
}

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

.button.secondary {
  color: #34465d;
  border-color: var(--line-strong);
  background: #fff;
}

.button.secondary:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  padding-left: 14px;
  border-left: 2px solid #b8dcf6;
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  font-size: 13px;
}

.hero-facts span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  perspective: 1200px;
}

.radar-orbit {
  position: absolute;
  border: 2px solid rgba(8, 124, 240, .18);
  border-radius: 50%;
}

.orbit-one {
  width: 620px;
  height: 620px;
  top: 6px;
  left: 1%;
}

.orbit-two {
  width: 430px;
  height: 430px;
  top: 102px;
  left: 16%;
  border-color: rgba(8, 124, 240, .1);
}

.match-card {
  position: absolute;
  z-index: 3;
  width: min(570px, 90%);
  top: 58px;
  left: 4%;
  padding: 30px;
  border: 1px solid #d7e7f3;
  border-radius: 25px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 36px 90px rgba(25, 76, 119, .2);
  transform: rotateY(-9deg) rotateX(2deg) rotateZ(-1.5deg);
}

.match-card-top,
.score-row,
.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.source-chip,
.fresh-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 800;
}

.source-chip {
  color: #075ccf;
  background: var(--blue-soft);
}

.fresh-chip {
  color: #08765d;
  background: #e4f7f1;
}

.fresh-chip i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a37d;
}

.match-meta {
  margin: 20px 0 7px;
  color: #7b8a9b;
  font-size: 11px;
}

.match-card h2 {
  margin: 0;
  font-size: 29px;
  line-height: 1.18;
  letter-spacing: -.035em;
}

.company {
  margin: 7px 0 0;
  color: #296da7;
  font-size: 13px;
  font-weight: 750;
}

.score-row {
  justify-content: flex-start;
  margin: 23px 0;
  padding: 16px;
  border: 1px solid #d7e9f6;
  border-radius: 14px;
  background: #f7fbff;
}

.score-badge {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  color: #08765d;
  border-radius: 12px;
  background: #e0f6ef;
  font-size: 20px;
  font-weight: 900;
}

.score-row strong,
.score-row small {
  display: block;
}

.score-row small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.evidence-block {
  margin-top: 12px;
  padding: 15px 16px;
  border-radius: 13px;
}

.evidence-block strong {
  font-size: 13px;
}

.evidence-block ul {
  margin: 8px 0 0;
  padding-left: 20px;
  color: #405674;
  font-size: 12px;
}

.evidence-block li + li {
  margin-top: 5px;
}

.evidence-block.positive {
  background: #eefaf6;
}

.evidence-block.warning {
  background: var(--orange-soft);
}

.evidence-block.warning p {
  margin: 6px 0 0;
  color: #80513d;
  font-size: 12px;
}

.card-actions {
  margin-top: 20px;
  padding-top: 17px;
  color: #526783;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
}

.card-actions b {
  color: var(--blue);
}

.signal-card {
  position: absolute;
  z-index: 5;
  display: grid;
  width: 180px;
  right: -1%;
  bottom: 47px;
  gap: 4px;
  padding: 22px;
  border: 1px solid #d7e7f3;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 26px 60px rgba(25, 76, 119, .18);
  transform: rotate(7deg);
}

.signal-card .brand-target {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}

.signal-card strong {
  font-size: 14px;
}

.signal-card span {
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 800;
}

.proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 48px);
  padding: 19px 24px;
  color: #405674;
  border: 1px solid #c9e2f3;
  border-radius: 18px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 14px 34px rgba(27, 77, 118, .07);
}

.proof-strip p {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.proof-strip span {
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: var(--orange);
}

.content-section {
  padding-block: 112px;
}

.section-heading {
  max-width: 780px;
}

.section-heading h2,
.final-cta h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.06;
  letter-spacing: -.05em;
}

.section-heading > p:last-child {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.compact-heading {
  max-width: 900px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.step-card {
  position: relative;
  min-height: 310px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(26, 72, 110, .07);
}

.step-card > span {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #9ccff4;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
}

.step-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  border-radius: 16px;
  background: var(--blue);
  font-size: 17px;
  font-weight: 900;
}

.target-icon {
  background: var(--blue-soft);
}

.target-icon .brand-target {
  width: 42px;
  height: 42px;
}

.step-card h3 {
  margin: 36px 0 10px;
  font-size: 23px;
  letter-spacing: -.025em;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.result-section {
  background: #fff;
  border-block: 1px solid #e4eef6;
}

.result-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 108px);
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 13px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list li > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.feature-list strong {
  display: block;
  font-size: 15px;
}

.feature-list p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.detail-preview {
  padding: 30px;
  border: 1px solid #c9dfef;
  border-radius: 24px;
  background: #f9fcff;
  box-shadow: 0 28px 70px rgba(25, 76, 119, .13);
}

.detail-preview-head {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.detail-preview-head span b,
.detail-preview-head span small {
  display: block;
}

.detail-preview-head span b {
  font-size: 13px;
}

.detail-preview-head span small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.detail-preview-head > strong {
  color: var(--blue);
  font-size: 24px;
}

.detail-preview h3 {
  margin: 28px 0 0;
  font-size: 29px;
  line-height: 1.2;
  letter-spacing: -.035em;
}

.detail-preview dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 26px 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  overflow: hidden;
}

.detail-preview dl div {
  min-width: 0;
  padding: 13px;
}

.detail-preview dl div + div {
  border-left: 1px solid var(--line);
}

.detail-preview dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-preview dd {
  margin: 5px 0 0;
  font-size: 12px;
  font-weight: 750;
}

.detail-evidence {
  padding: 18px;
  border-radius: 14px;
}

.detail-evidence + .detail-evidence {
  margin-top: 12px;
}

.detail-evidence.positive {
  background: #eaf8f3;
}

.detail-evidence.warning {
  background: var(--orange-soft);
}

.detail-evidence h4 {
  margin: 0 0 9px;
  font-size: 14px;
}

.detail-evidence ul,
.detail-evidence p {
  margin: 0;
  color: #405674;
  font-size: 12px;
  line-height: 1.55;
}

.detail-evidence ul {
  padding-left: 20px;
}

.merge-note {
  margin: 20px 0 0;
  padding-top: 16px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.audience-section {
  text-align: center;
}

.audience-section .section-heading {
  margin-inline: auto;
}

.audience-grid {
  display: flex;
  max-width: 1080px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 42px auto 0;
}

.audience-grid span {
  padding: 11px 16px;
  color: #234f78;
  border: 1px solid #b9d9f0;
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  font-weight: 750;
}

.audience-grid span:nth-child(3n) {
  color: #b94117;
  border-color: #ffc0a8;
  background: var(--orange-soft);
}

.audience-note {
  max-width: 760px;
  margin: 30px auto 0;
  color: var(--muted);
}

.sources-section {
  background: #102039;
}

.sources-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(500px, 1.2fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
}

.sources-section .section-heading h2,
.sources-section .section-heading > p:last-child {
  color: #fff;
}

.sources-section .section-heading > p:last-child {
  color: #b9c9dc;
}

.source-panel {
  padding: 22px;
  border: 1px solid #304560;
  border-radius: 22px;
  background: #162b48;
}

.source-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 4px 4px 18px;
  color: #fff;
}

.source-panel-head span {
  color: #9db3ca;
  font-size: 11px;
}

.source-panel ul {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #304a68;
  border-radius: 15px;
  background: #fff;
  list-style: none;
}

.source-panel li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
}

.source-panel li + li {
  border-top: 1px solid var(--line);
}

.source-logo {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 900;
}

.source-logo.finder {
  color: #075ccf;
  background: #e5f2ff;
}

.source-logo.sj {
  color: #216494;
  background: #e5f0f7;
}

.source-logo.trud {
  color: #172033;
  background: #eef1f4;
}

.source-logo.tg {
  color: #087aa8;
  background: #ddf4ff;
}

.source-panel li div strong,
.source-panel li div small {
  display: block;
}

.source-panel li div small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.source-panel li > b {
  color: #08765d;
  font-size: 10px;
  text-transform: uppercase;
}

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

.limitation-grid article {
  padding: 20px;
  color: #fff;
  border: 1px solid #304560;
  border-radius: 15px;
  background: #162b48;
}

.limitation-grid strong {
  font-size: 14px;
}

.limitation-grid p {
  margin: 8px 0 0;
  color: #aebfd2;
  font-size: 12px;
  line-height: 1.55;
}

.pricing-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

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

.price-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(26, 72, 110, .07);
}

.price-card.featured {
  border: 2px solid var(--blue);
  box-shadow: 0 22px 54px rgba(8, 124, 240, .16);
}

.popular {
  position: absolute;
  top: -14px;
  right: 22px;
  padding: 6px 10px;
  color: #fff;
  border-radius: 999px;
  background: var(--orange);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-name {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.price {
  display: flex;
  min-height: 64px;
  align-items: baseline;
  gap: 8px;
  margin-top: 14px;
}

.price strong {
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1;
  letter-spacing: -.045em;
}

.price span {
  color: var(--muted);
  font-size: 12px;
}

.price-card > p:not(.price-name) {
  min-height: 48px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.price-card ul {
  display: grid;
  flex: 1;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  color: #405674;
  font-size: 13px;
}

.price-card li::before {
  position: absolute;
  left: 0;
  color: var(--blue);
  content: "✓";
  font-weight: 900;
}

.pricing-note {
  max-width: 940px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.faq-section {
  background: #fff;
  border-block: 1px solid #e4eef6;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, .6fr) minmax(0, 1.4fr);
  gap: clamp(44px, 7vw, 100px);
}

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

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

.faq-list summary {
  position: relative;
  padding: 22px 44px 22px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 2px;
  width: 28px;
  height: 28px;
  color: var(--blue);
  content: "+";
  font-size: 23px;
  text-align: center;
}

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

.faq-list details p {
  max-width: 760px;
  margin: -6px 0 20px;
  color: var(--muted);
  line-height: 1.6;
}

.final-cta {
  position: relative;
  margin-block: 96px;
  padding: clamp(42px, 6vw, 82px);
  overflow: hidden;
  color: #fff;
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 12%, rgba(32, 184, 245, .34), transparent 23rem),
    #102039;
}

.final-cta::after {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -110px;
  bottom: -210px;
  content: "";
  border: 58px solid rgba(255, 255, 255, .06);
  border-radius: 50%;
}

.final-cta > * {
  position: relative;
  z-index: 2;
}

.final-cta > .brand-target {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
}

.final-cta h2 {
  color: #fff;
}

.final-cta > p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: #bfd0e2;
  font-size: 17px;
}

.button.light {
  color: var(--navy);
  background: #fff;
}

.button.outline-light {
  color: #fff;
  border-color: #4b6480;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) minmax(280px, auto);
  align-items: start;
  gap: 30px;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
}

.footer-brand .brand-target {
  width: 36px;
  height: 36px;
}

.site-footer > p {
  max-width: 420px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-placeholders {
  display: grid;
  gap: 5px;
  color: #74859a;
  font-size: 11px;
  text-align: right;
}

.footer-placeholders a {
  color: inherit;
  overflow-wrap: anywhere;
  text-underline-offset: 3px;
}

.footer-placeholders a:hover,
.footer-placeholders a:focus-visible {
  color: var(--navy);
}

.site-footer > small {
  grid-column: 1 / -1;
  color: #8a99aa;
  font-size: 10px;
}

@media (max-width: 1120px) {
  .site-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

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

  .hero-visual {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .result-layout,
  .sources-layout {
    grid-template-columns: 1fr;
  }

  .result-layout .section-heading,
  .sources-layout .section-heading {
    max-width: 900px;
  }

  .detail-preview,
  .source-panel {
    width: min(100%, 780px);
  }
}

@media (max-width: 820px) {
  .section-shell,
  .site-header,
  .proof-strip,
  .site-footer {
    width: min(calc(100% - 32px), 1400px);
  }

  .content-section {
    padding-block: 82px;
  }

  .steps-grid,
  .pricing-grid,
  .limitation-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 250px;
  }

  .proof-strip {
    flex-wrap: wrap;
  }

  .proof-strip p {
    flex: 1 1 40%;
  }

  .proof-strip span:nth-of-type(2) {
    display: none;
  }

  .faq-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-placeholders {
    text-align: left;
  }

  .site-footer > small {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  body {
    background:
      radial-gradient(circle at 90% 8%, rgba(32, 184, 245, .2), transparent 20rem),
      linear-gradient(180deg, #fff 0 30rem, var(--bg) 58rem);
  }

  .section-shell,
  .site-header,
  .proof-strip,
  .site-footer {
    width: min(calc(100% - 24px), 1400px);
  }

  .site-header {
    min-height: 68px;
    gap: 12px;
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .brand {
    gap: 8px;
    font-size: 18px;
  }

  .brand > .brand-target {
    width: 36px;
    height: 36px;
  }

  .login-link {
    min-height: 42px;
    padding: 9px 11px;
    font-size: 12px;
  }

  .hero {
    gap: 30px;
    padding: 58px 0 62px;
  }

  h1 {
    font-size: clamp(46px, 13.8vw, 65px);
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
  }

  .hero-visual {
    min-height: 520px;
    overflow: clip;
  }

  .orbit-one {
    width: 460px;
    height: 460px;
    left: -80px;
  }

  .orbit-two {
    width: 300px;
    height: 300px;
    left: 5%;
  }

  .match-card {
    width: 96%;
    top: 35px;
    left: 1%;
    padding: 20px;
    border-radius: 19px;
    transform: rotateY(-3deg) rotateZ(-1deg);
  }

  .match-card h2 {
    font-size: 23px;
  }

  .match-card-top {
    align-items: flex-start;
  }

  .match-card-top .fresh-chip {
    max-width: 130px;
  }

  .signal-card {
    width: 146px;
    right: -4px;
    bottom: 4px;
    padding: 16px;
  }

  .signal-card .brand-target {
    width: 39px;
    height: 39px;
  }

  .proof-strip {
    gap: 12px;
    padding: 16px;
  }

  .proof-strip p {
    flex-basis: 100%;
  }

  .proof-strip span {
    display: none;
  }

  .content-section {
    padding-block: 68px;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .section-heading > p:last-child {
    margin-top: 15px;
    font-size: 16px;
  }

  .steps-grid,
  .pricing-grid {
    margin-top: 32px;
  }

  .step-card,
  .price-card {
    padding: 22px;
  }

  .detail-preview {
    padding: 18px;
    border-radius: 18px;
  }

  .detail-preview h3 {
    font-size: 24px;
  }

  .detail-preview dl {
    grid-template-columns: 1fr;
  }

  .detail-preview dl div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .source-panel {
    padding: 14px;
  }

  .source-panel li {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .source-panel li > b {
    grid-column: 2;
  }

  .price-card > p:not(.price-name) {
    min-height: auto;
  }

  .faq-list summary {
    font-size: 15px;
  }

  .final-cta {
    margin-block: 58px;
    padding: 34px 22px;
    border-radius: 22px;
  }

  .site-footer {
    gap: 16px;
    padding-bottom: 30px;
  }
}

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

  .button {
    transition: none;
  }
}
