:root {
  --night: #121a31;
  --night-2: #192544;
  --ink: #18233a;
  --muted: #667188;
  --paper: #f7f8fb;
  --white: #ffffff;
  --line: #dfe4ee;
  --line-dark: rgba(255, 255, 255, 0.14);
  --blue: #365de2;
  --blue-dark: #2746b8;
  --blue-soft: #edf1ff;
  --lime: #d1ff70;
  --lime-soft: #f2ffd7;
  --mint: #83e8c3;
  --red: #b53c46;
  --red-soft: #fff0f1;
  --amber: #9b6814;
  --amber-soft: #fff6de;
  --radius-sm: 12px;
  --radius: 19px;
  --radius-lg: 29px;
  --shadow-sm: 0 14px 42px rgba(28, 42, 77, 0.09);
  --shadow: 0 28px 85px rgba(10, 20, 45, 0.17);
  --shell: 1160px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  line-height: 1.55;
}

body,
button,
input,
textarea {
  font: inherit;
}

button,
input,
textarea {
  color: inherit;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

svg {
  display: block;
}

[hidden] {
  display: none !important;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--night);
  background: var(--lime);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #7bb6ff;
  outline-offset: 3px;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 18px;
  font-weight: 640;
  letter-spacing: -0.028em;
  text-decoration: none;
}

.brand strong {
  color: var(--lime);
  font-weight: 850;
}

.brand-mark {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 11px;
  color: var(--lime);
  background: rgba(255, 255, 255, 0.07);
}

.brand-mark svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-nav > a:not(.button) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 670;
  text-decoration: none;
}

.header-nav > a:not(.button):hover {
  color: var(--white);
}

.button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: -0.01em;
  text-align: center;
  text-decoration: none;
  transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.button-small {
  min-height: 38px;
  padding-inline: 15px;
  border-radius: 9px;
  font-size: 10px;
}

.button-header {
  color: var(--night);
  background: var(--lime);
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(54, 93, 226, 0.25);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.hero .button-primary {
  color: var(--night);
  background: var(--lime);
  box-shadow: 0 13px 28px rgba(209, 255, 112, 0.14);
}

.hero .button-primary:hover,
.button-header:hover {
  background: #ddff94;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.43);
  background: rgba(255, 255, 255, 0.11);
}

.button-dark {
  color: var(--white);
  background: var(--night);
}

.button-dark:hover {
  background: #243054;
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  padding: 145px 0 105px;
  color: var(--white);
  background:
    radial-gradient(circle at 11% 12%, rgba(82, 104, 231, 0.28), transparent 31%),
    radial-gradient(circle at 90% 80%, rgba(131, 232, 195, 0.14), transparent 31%),
    linear-gradient(145deg, #0d1427, var(--night) 48%, #1a2948);
}

.hero::before {
  position: absolute;
  right: -120px;
  bottom: -330px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 95px rgba(255, 255, 255, 0.025),
    0 0 0 190px rgba(255, 255, 255, 0.018);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  gap: clamp(55px, 8vw, 105px);
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 19px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.eyebrow-dark {
  color: var(--blue);
}

.eyebrow-light {
  color: var(--lime);
}

.hero h1 {
  max-width: 730px;
  margin: 0;
  font-size: clamp(49px, 6vw, 78px);
  font-weight: 760;
  letter-spacing: -0.068em;
  line-height: 0.98;
}

.hero h1 em {
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.hero-lead {
  max-width: 670px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 17px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 29px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  margin: 24px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 650;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-list span {
  color: var(--lime);
}

.hero-proof {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.proof-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.57);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.live-dot {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--mint);
}

.live-dot::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
  box-shadow: 0 0 0 4px rgba(131, 232, 195, 0.1);
}

.hero-proof h2 {
  margin: 25px 0 22px;
  font-size: 29px;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.hero-proof ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.hero-proof li > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  color: var(--night);
  background: var(--lime);
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
}

.hero-proof li div {
  display: grid;
  gap: 2px;
}

.hero-proof li strong {
  font-size: 14px;
}

.hero-proof li small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.hero-proof > p {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.offers-section,
.request-section,
.faq-section {
  padding: 110px 0;
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 75px;
  align-items: end;
  margin-bottom: 47px;
}

.section-intro h2,
.process-heading h2,
.request-copy h2,
.boundary-grid h2,
.faq-grid h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: -0.062em;
  line-height: 1.02;
}

.section-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin-inline: auto;
}

.offer-card {
  position: relative;
  display: flex;
  min-height: 570px;
  flex-direction: column;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.offer-featured {
  border-color: #c9d5ff;
  box-shadow: 0 25px 70px rgba(54, 93, 226, 0.13);
}

.offer-featured::before {
  position: absolute;
  top: -1px;
  right: 38px;
  left: 38px;
  height: 4px;
  border-radius: 0 0 5px 5px;
  background: var(--blue);
  content: "";
}

.offer-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.offer-label > span {
  font-size: 17px;
  font-weight: 830;
  letter-spacing: -0.025em;
}

.offer-label small {
  padding: 5px 9px;
  border-radius: 99px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price {
  display: grid;
  gap: 3px;
  margin: 33px 0 20px;
}

.price strong {
  font-size: 54px;
  letter-spacing: -0.065em;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 12px;
}

.offer-card > p:not(.offer-fineprint) {
  min-height: 63px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.offer-card ul {
  display: grid;
  gap: 12px;
  margin: 27px 0 31px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  color: #455069;
  font-size: 13px;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding-left: 22px;
}

.offer-card li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--blue);
  content: "✓";
  font-weight: 900;
}

.offer-card .button {
  margin-top: auto;
}

.offer-fineprint {
  min-height: 0 !important;
  margin: 11px 0 0 !important;
  color: #5e687e !important;
  font-size: 12px !important;
  line-height: 1.5;
  text-align: center;
}

.process-section {
  padding: 110px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(54, 93, 226, 0.22), transparent 29%),
    var(--night);
}

.process-heading {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 55px;
  align-items: end;
  margin-bottom: 48px;
}

.process-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -28px;
}

.process-heading > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: var(--line-dark);
  list-style: none;
}

.process-list li {
  min-height: 290px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
}

.process-list li > span {
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
}

.process-list li > div {
  margin-top: 75px;
}

.process-list h3 {
  margin: 0 0 10px;
  font-size: 19px;
  letter-spacing: -0.035em;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.request-section {
  background:
    radial-gradient(circle at 4% 18%, rgba(54, 93, 226, 0.08), transparent 24%),
    #eef1f8;
}

.request-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1fr);
  gap: clamp(55px, 8vw, 100px);
  align-items: start;
}

.request-copy {
  position: sticky;
  top: 28px;
}

.request-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.report-context {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 13px;
  align-items: center;
  margin-top: 30px;
  padding: 15px;
  border: 1px solid #d9dfec;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.7);
}

.report-context.is-ready {
  border-color: #b8ddcf;
  background: #f0fbf7;
}

.report-context.is-error {
  border-color: #e5c7ca;
  background: var(--red-soft);
}

.context-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 19px;
}

.report-context.is-ready .context-icon {
  color: #13775b;
  background: #dff7ee;
}

.report-context > div {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.report-context strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.report-context span:not(.context-icon) {
  color: var(--muted);
  font-size: 12px;
}

.report-context a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.expectation-card {
  margin-top: 14px;
  padding: 22px;
  border-radius: 14px;
  color: var(--white);
  background: var(--night);
}

.expectation-card > strong {
  color: var(--lime);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.expectation-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  list-style: none;
}

.expectation-card li::before {
  margin-right: 8px;
  color: var(--lime);
  content: "—";
}

.form-card {
  padding: 29px;
  border: 1px solid #d7ddea;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.form-card fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-card fieldset:disabled {
  opacity: 0.52;
}

.form-card legend {
  width: 100%;
  margin-bottom: 10px;
  color: #43506a;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kind-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-bottom: 23px;
}

.kind-option {
  position: relative;
  display: block;
  cursor: pointer;
}

.kind-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.kind-option span {
  display: grid;
  min-height: 75px;
  align-content: center;
  gap: 3px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fafbfe;
  transition: border-color 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
}

.kind-option input:checked + span {
  border-color: var(--blue);
  background: var(--blue-soft);
  box-shadow: 0 0 0 3px rgba(54, 93, 226, 0.09);
}

.kind-option input:focus-visible + span {
  outline: 3px solid #7bb6ff;
  outline-offset: 2px;
}

.kind-option strong {
  font-size: 14px;
}

.kind-option small {
  color: #5b657b;
  font-size: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: #46516a;
  font-size: 12px;
  font-weight: 800;
}

.field label > span {
  float: right;
  color: #626d82;
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #d3d9e5;
  border-radius: 10px;
  background: #fbfcfe;
  outline: 0;
  font-size: 12px;
  transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.field input {
  min-height: 46px;
  padding: 0 12px;
}

.field textarea {
  min-height: 108px;
  padding: 12px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(54, 93, 226, 0.1);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9aa2b1;
}

.consent-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 18px;
  color: #5e687e;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.55;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.privacy-note {
  margin: 11px 0 0;
  color: #626d82;
  font-size: 12px;
  line-height: 1.55;
}

.privacy-note a {
  color: var(--blue);
  font-weight: 750;
}

.form-error {
  min-height: 20px;
  margin: 10px 0 5px;
  color: var(--red);
  font-size: 12px;
  font-weight: 750;
}

.no-charge {
  margin: 10px 0 0;
  color: #626d82;
  font-size: 12px;
  text-align: center;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.success-card {
  padding: 42px 30px;
  border: 1px solid #bbdfd2;
  border-radius: var(--radius);
  background: #eefaf6;
  text-align: center;
}

.success-card > span {
  display: grid;
  width: 57px;
  height: 57px;
  margin: 0 auto 17px;
  place-items: center;
  border-radius: 50%;
  color: #0b614a;
  background: var(--mint);
  font-size: 25px;
  font-weight: 900;
}

.success-card h3 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.045em;
}

.success-card > p {
  max-width: 430px;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 11px;
}

.success-id {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 12px !important;
}

.success-card .button {
  margin-top: 22px;
}

.boundary-section {
  padding: 104px 0;
  color: var(--white);
  background: var(--night);
}

.boundary-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 95px;
  align-items: start;
}

.boundary-table {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--line-dark);
}

.boundary-table > div {
  display: grid;
  grid-template-columns: 0.52fr 1fr;
  gap: 24px;
  align-items: start;
  padding: 21px;
  background: rgba(255, 255, 255, 0.052);
}

.boundary-table strong {
  color: var(--lime);
  font-size: 14px;
}

.boundary-table span {
  color: rgba(255, 255, 255, 0.59);
  font-size: 14px;
}

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 100px;
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 21px 35px 21px 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 790;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 5px;
  color: var(--blue);
  content: "+";
  font-size: 20px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: -4px 35px 21px 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 35px 0;
  color: var(--white);
  background: #0a1020;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
}

.brand-footer {
  font-size: 14px;
}

.footer-inner > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
}

.footer-inner nav {
  display: flex;
  gap: 18px;
}

.footer-inner nav a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  text-decoration: none;
}

.noscript {
  position: fixed;
  z-index: 200;
  right: 14px;
  bottom: 14px;
  left: 14px;
  margin: 0;
  padding: 15px;
  border-radius: 10px;
  color: var(--white);
  background: var(--red);
  text-align: center;
}

@media (max-width: 1030px) {
  .hero-grid {
    grid-template-columns: 1fr;
    max-width: 800px;
  }

  .hero-proof {
    max-width: 630px;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .request-grid {
    grid-template-columns: 1fr;
    max-width: 820px;
  }

  .request-copy {
    position: static;
  }

  .boundary-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 43px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .header-inner {
    min-height: 70px;
  }

  .header-nav > a:not(.button) {
    display: none;
  }

  .header-nav {
    gap: 8px;
  }

  .hero {
    min-height: auto;
    padding: 116px 0 78px;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(43px, 12.5vw, 59px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-proof {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .offers-section,
  .process-section,
  .request-section,
  .boundary-section,
  .faq-section {
    padding: 78px 0;
  }

  .section-intro,
  .process-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .process-heading .eyebrow {
    grid-column: auto;
    margin-bottom: -3px;
  }

  .offer-grid,
  .process-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    min-height: auto;
    padding: 29px 22px;
    border-radius: 23px;
  }

  .offer-card > p:not(.offer-fineprint) {
    min-height: 0;
  }

  .process-list li {
    min-height: 225px;
  }

  .process-list li > div {
    margin-top: 44px;
  }

  .report-context {
    grid-template-columns: 38px 1fr;
  }

  .report-context a {
    grid-column: 2;
  }

  .form-card {
    padding: 23px 17px;
    border-radius: 22px;
  }

  .field-wide {
    grid-column: auto;
  }

  .boundary-table > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-inner nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .header-nav .button {
    min-height: 35px;
    padding-inline: 10px;
  }

  .hero-actions {
    display: grid;
  }

  .trust-list {
    display: grid;
  }

  .offer-label {
    align-items: flex-start;
  }

  .kind-options {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (forced-colors: active) {
  .eyebrow > span,
  .live-dot::before {
    background: CanvasText;
  }
}
