@font-face {
  font-family: "Switzer";
  src: url("assets/switzer-variable-v1.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/inter-variable-v1.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #071b17;
  --deep: #031411;
  --ivory: #f4f2ea;
  --mint: #27c7b5;
  --coral: #f06a4d;
  --line: rgba(39, 199, 181, .22);
  --radius: 28px;
  --paper: #ebe9df;
  --muted: #52615b;
  --mint-ink: #0f746a;
  --header-height: 86px;
  --interface-bar-height: 40px;
  --content: 1320px;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  -webkit-hyphens: none;
  hyphens: none;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

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

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
dl,
dd,
ol {
  margin: 0;
}

h1,
h2,
h3,
.brand,
.eyebrow {
  font-family: "Switzer", "Inter", system-ui, sans-serif;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 300;
  top: 12px;
  left: 20px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ivory);
  color: var(--ink);
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 200;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header-height);
  padding: 16px max(28px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid transparent;
  color: var(--ivory);
  transition: background-color 220ms ease, border-color 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  min-height: 74px;
  border-color: var(--line);
  background: rgba(3, 20, 17, .94);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-width: 142px;
  min-height: 44px;
}

.brand img {
  width: 154px;
  height: auto;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 40px);
  font-size: .86rem;
  font-weight: 650;
  letter-spacing: -.01em;
}

.site-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  opacity: .76;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-menu a:not(.header-action)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--mint);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  opacity: 1;
}

.site-menu a:not(.header-action):hover::after,
.site-menu a:not(.header-action):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-menu .header-action {
  min-height: 46px;
  padding: 0 21px;
  border: 1px solid rgba(244, 242, 234, .3);
  border-radius: 999px;
  opacity: 1;
}

.site-menu .header-action:hover,
.site-menu .header-action:focus-visible {
  border-color: var(--mint);
  color: var(--mint);
  transform: translateY(-2px);
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(244, 242, 234, .25);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, top 180ms ease;
}

.menu-toggle > span:nth-child(2) {
  top: 19px;
}

.menu-toggle > span:nth-child(3) {
  top: 27px;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  top: 23px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--deep);
  color: var(--ivory);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  width: min(100%, var(--content));
  min-height: 100svh;
  margin: 0 auto;
  padding: calc(var(--header-height) + 62px) 28px 72px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(500px, 40vw);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--mint);
  font-size: .76rem;
  font-weight: 760;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--mint-ink);
}

.hero h1 {
  max-width: 500px;
  margin-top: 0;
  font-size: clamp(3.75rem, 4.6vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1;
  word-spacing: .06em;
}

.hero-title-accent {
  display: inline;
  color: #b9f4ec;
}

@media (min-width: 1181px) {
  .hero h1 {
    font-size: clamp(3.55rem, 4.2vw, 3.9rem);
  }
}

.hero-lead {
  max-width: 500px;
  margin-top: 34px;
  color: rgba(244, 242, 234, .74);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.65;
}

.hero-lead-main,
.hero-lead-detail {
  display: block;
}

.hero-lead-main {
  margin-bottom: 4px;
}

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

.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 10px 26px;
  justify-content: start;
  max-width: 500px;
  margin-top: 30px;
  color: rgba(244, 242, 234, .68);
  font-size: .78rem;
  font-weight: 650;
}

.hero-trust-item {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}

.hero-trust-item::before {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: .48em;
  border-radius: 50%;
  background: #b9f4ec;
  box-shadow: 0 0 10px rgba(185, 244, 236, .5);
  content: "";
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 780;
  line-height: 1;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button-primary {
  background: var(--coral);
  color: #1e0b07;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ff8265;
  transform: translateY(-3px);
}

.button-secondary {
  border-color: rgba(244, 242, 234, .28);
  color: var(--ivory);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--mint);
  color: var(--mint);
  transform: translateY(-3px);
}

.hero-support {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 500px;
  margin-top: 26px;
  color: rgba(244, 242, 234, .54);
  font-size: .78rem;
  line-height: 1.5;
}

.hero-support > span {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: .45em;
  border-radius: 50%;
  background: var(--mint);
}

.hero-orbit {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: -25vw;
  width: min(79vw, 1100px);
  aspect-ratio: 1;
  transform: translateY(-46%);
}

.hero-orbit > span {
  position: absolute;
  inset: calc(var(--orbit) * 8%);
  border: 1px solid rgba(39, 199, 181, calc(.08 + var(--orbit) * .015));
  border-radius: 50%;
}

.hero-orbit > span:nth-child(1) { --orbit: 0; }
.hero-orbit > span:nth-child(2) { --orbit: 1; }
.hero-orbit > span:nth-child(3) { --orbit: 2; }
.hero-orbit > span:nth-child(4) { --orbit: 3; }
.hero-orbit > span:nth-child(5) { --orbit: 4; }

.hero-product {
  position: absolute;
  z-index: 2;
  top: clamp(170px, 18vh, 220px);
  right: max(28px, calc((100vw - 1440px) / 2 + 28px));
  width: min(56vw, 780px);
}

.hero-product figcaption {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 18px 12px;
  color: rgba(244, 242, 234, .66);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-product-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(244, 242, 234, .18);
  border-radius: var(--radius) var(--radius) 0 0;
  background: #eef0ec;
  box-shadow: 0 36px 100px rgba(0, 0, 0, .34);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: var(--interface-bar-height);
  padding: 0 15px;
  border-bottom: 1px solid #dcded9;
  background: #f7f7f3;
  color: #6d7571;
}

.window-bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c7cbc7;
}

.window-bar > span:first-child {
  background: var(--coral);
}

.window-bar p {
  margin-left: 8px;
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero-product-window > img {
  width: 100%;
  height: auto;
}

.hero-flow-line {
  position: absolute;
  right: 5%;
  bottom: 7%;
  left: 31%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 1px;
  background: rgba(3, 20, 17, .34);
}

.hero-flow-line i {
  width: 9px;
  height: 9px;
  border: 2px solid var(--mint);
  border-radius: 50%;
  background: #edf0ea;
}

.hero-flow-line i:last-child {
  border-color: var(--coral);
}

.flow-pulse {
  position: absolute;
  z-index: 2;
  left: 0;
  width: 14px;
  height: 14px;
  border: 4px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 7px rgba(39, 199, 181, .2);
  animation: flowTravel 5s cubic-bezier(.65, 0, .35, 1) infinite;
}

.flow-story,
.proof,
.faq {
  padding: clamp(94px, 10vw, 150px) max(28px, calc((100vw - var(--content)) / 2));
}

.flow-story {
  background: var(--ivory);
}

.section-intro.flow-intro {
  align-items: center;
}

.section-intro.proof-intro {
  align-items: center;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: start;
  padding-bottom: clamp(70px, 8vw, 115px);
}

.section-intro h2,
.audience h2,
.trust h2,
.closing h2 {
  max-width: 850px;
  margin-top: 24px;
  font-size: clamp(2.7rem, 4.6vw, 4.5rem);
  font-weight: 540;
  letter-spacing: -.035em;
  line-height: .98;
  word-spacing: .06em;
}

.hero h1,
.section-intro h2,
.conversion-copy h2,
.flow-step h3,
.proof-copy h3,
.audience h2,
.trust h2,
.closing h2 {
  text-wrap: balance;
}

.section-intro > p {
  max-width: 430px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: start;
}

.flow-visual-column {
  position: sticky;
  top: calc(var(--header-height) + 34px);
}

.receivable-stage {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--deep);
  color: var(--ivory);
  box-shadow: 0 30px 80px rgba(7, 27, 23, .13);
}

.receivable-stage::before,
.receivable-stage::after {
  position: absolute;
  border: 1px solid rgba(39, 199, 181, .12);
  border-radius: 50%;
  content: "";
}

.receivable-stage::before {
  top: -210px;
  right: -190px;
  width: 470px;
  height: 470px;
}

.receivable-stage::after {
  top: -142px;
  right: -122px;
  width: 334px;
  height: 334px;
}

.stage-topline {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
  color: rgba(244, 242, 234, .54);
  font-size: .65rem;
  font-weight: 670;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.stage-brand {
  color: var(--mint);
  font-family: "Switzer", sans-serif;
  font-size: .8rem;
  font-weight: 820;
}

.stage-label {
  margin-right: auto;
}

.stage-data-label {
  padding: 5px 8px;
  border: 1px solid rgba(244, 242, 234, .16);
  border-radius: 999px;
}

.stage-panels {
  position: relative;
  z-index: 2;
  min-height: 414px;
}

.stage-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 42px clamp(28px, 5vw, 58px) 30px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 340ms ease, transform 340ms ease;
}

.receivable-stage[data-receivable-stage="0"] [data-stage-panel="0"],
.receivable-stage[data-receivable-stage="1"] [data-stage-panel="1"],
.receivable-stage[data-receivable-stage="2"] [data-stage-panel="2"],
.receivable-stage[data-receivable-stage="3"] [data-stage-panel="3"],
.receivable-stage[data-receivable-stage="4"] [data-stage-panel="4"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.stage-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(244, 242, 234, .54);
  font-size: .66rem;
  font-weight: 730;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.stage-heading strong {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(39, 199, 181, .13);
  color: var(--mint);
  font-size: inherit;
}

.stage-panel > h3 {
  margin-top: 24px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 540;
  letter-spacing: -.035em;
  line-height: 1;
  word-spacing: .06em;
}

.contract-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  margin-top: 34px;
}

.contract-fields > div {
  padding-top: 13px;
  border-top: 1px solid rgba(244, 242, 234, .14);
}

.contract-fields dt,
.contract-fields dd {
  line-height: 1.35;
}

.contract-fields dt {
  color: rgba(244, 242, 234, .54);
  font-size: .69rem;
}

.contract-fields dd {
  margin-top: 5px;
  font-size: .9rem;
  font-weight: 650;
}

.stage-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: rgba(244, 242, 234, .66);
  font-size: .7rem;
}

.stage-note > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
}

.stage-note-alert > span {
  background: var(--coral);
}

.status-path,
.reminder-line {
  display: grid;
  padding: 0;
  list-style: none;
}

.status-path {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 50px;
}

.status-path li {
  position: relative;
  display: grid;
  gap: 5px;
  padding-top: 24px;
  color: rgba(244, 242, 234, .54);
}

.status-path li::before {
  position: absolute;
  top: 5px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(244, 242, 234, .14);
  content: "";
}

.status-path li > span {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 11px;
  height: 11px;
  border: 2px solid #50605b;
  border-radius: 50%;
  background: var(--deep);
}

.status-path li.is-complete,
.status-path li.is-current {
  color: var(--ivory);
}

.status-path li.is-complete::before {
  background: var(--mint);
}

.status-path li.is-complete > span,
.status-path li.is-current > span {
  border-color: var(--mint);
  background: var(--mint);
}

.status-path strong,
.reminder-line strong {
  font-size: .74rem;
}

.status-path small,
.reminder-line small {
  color: rgba(244, 242, 234, .54);
  font-size: .61rem;
}

.reminder-line {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.reminder-line li {
  display: grid;
  gap: 6px;
  min-height: 116px;
  padding: 16px;
  border: 1px solid rgba(244, 242, 234, .12);
  border-radius: 16px;
}

.reminder-line li > span {
  color: var(--mint);
  font-family: "Switzer", sans-serif;
  font-size: 1rem;
  font-weight: 760;
}

.reminder-line li.has-alert {
  border-color: rgba(240, 106, 77, .48);
}

.reminder-line li.has-alert > span {
  color: var(--coral);
}

.payment-due {
  margin-top: 12px;
  color: rgba(244, 242, 234, .56);
  font-size: .8rem;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 42px;
}

.payment-methods span {
  min-width: 94px;
  padding: 12px 17px;
  border: 1px solid rgba(244, 242, 234, .16);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  text-align: center;
}

.payment-methods span:first-child {
  border-color: var(--mint);
  background: var(--mint);
  color: var(--deep);
}

.receipt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(244, 242, 234, .14);
  color: rgba(244, 242, 234, .55);
  font-size: .71rem;
}

.receipt-row strong {
  color: var(--ivory);
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 50px 1fr;
  gap: 8px;
  align-items: center;
  margin-top: 46px;
}

.comparison > div {
  display: grid;
  gap: 4px;
  padding: 20px;
  border: 1px solid rgba(244, 242, 234, .13);
  border-radius: 18px;
}

.comparison > div > span,
.comparison > div > small {
  color: rgba(244, 242, 234, .54);
  font-size: .63rem;
}

.comparison > div > strong {
  color: var(--mint);
  font-size: 1rem;
}

.comparison > i {
  position: relative;
  height: 1px;
  background: var(--mint);
}

.comparison > i::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--mint);
  border-right: 1px solid var(--mint);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.match-state {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 7px;
  margin-top: auto;
  color: var(--mint);
  font-size: .76rem;
  font-weight: 720;
}

.match-state span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--deep);
}

.stage-progress {
  position: absolute;
  right: 28px;
  bottom: 66px;
  left: 28px;
  height: 2px;
  overflow: hidden;
  background: rgba(244, 242, 234, .12);
}

.stage-progress > span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--mint);
  transform: scaleX(var(--flow-progress));
  transform-origin: left;
  transition: transform 360ms ease;
}

.stage-footer {
  position: absolute;
  right: 28px;
  bottom: 22px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  color: rgba(244, 242, 234, .54);
  font-size: .54rem;
  letter-spacing: .03em;
}

.flow-step {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(620px, 68vh, 760px);
  padding: clamp(60px, 8vh, 96px) 0 clamp(60px, 8vh, 96px) 28px;
  border-top: 1px solid rgba(7, 27, 23, .16);
  opacity: 1;
}

.flow-step::before {
  position: absolute;
  top: clamp(60px, 8vh, 96px);
  left: 0;
  width: 3px;
  height: 58px;
  border-radius: 999px;
  background: rgba(15, 116, 106, .16);
  content: "";
  transition: background-color 240ms ease, height 240ms ease;
}

.flow-step:last-child {
  border-bottom: 1px solid rgba(7, 27, 23, .16);
}

.flow-step.is-active {
  opacity: 1;
}

.flow-step.is-active::before {
  height: 92px;
  background: var(--mint-ink);
}

.flow-step-number {
  color: var(--mint-ink);
  font-family: "Switzer", sans-serif;
  font-size: .68rem;
  font-weight: 760;
  letter-spacing: .1em;
}

.flow-step-kicker {
  margin-top: 34px;
  color: var(--coral);
  font-size: .75rem;
  font-weight: 760;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.flow-step h3 {
  max-width: 540px;
  margin-top: 13px;
  font-size: clamp(2.25rem, 3.6vw, 3.15rem);
  font-weight: 540;
  letter-spacing: -.035em;
  line-height: 1;
  word-spacing: .06em;
}

.flow-step > p:not(.flow-step-kicker) {
  max-width: 510px;
  margin-top: 25px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.75;
}

.flow-step > a {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 13px;
  min-height: 44px;
  margin-top: 25px;
  border-bottom: 1px solid rgba(7, 27, 23, .28);
  font-size: .76rem;
  font-weight: 750;
  transition: color 180ms ease, gap 180ms ease, border-color 180ms ease;
}

.flow-step > a:hover,
.flow-step > a:focus-visible {
  gap: 19px;
  border-color: var(--coral);
  color: var(--coral);
}

.compact-stage {
  display: none;
  margin-top: 34px;
  overflow: hidden;
  padding: 26px;
  border-radius: 22px;
  background: var(--deep);
  color: var(--ivory);
  box-shadow: 0 20px 50px rgba(7, 27, 23, .12);
}

.compact-stage-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 14px;
  min-height: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: .64rem;
  font-weight: 720;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.compact-stage-head > span {
  color: var(--mint);
}

.compact-stage-head > small {
  margin-left: auto;
  color: rgba(244, 242, 234, .6);
  font-size: .58rem;
  font-weight: 660;
}

.compact-stage-head > strong {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(39, 199, 181, .14);
  color: var(--mint);
  font-size: .58rem;
}

.compact-contract-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 22px;
  margin-top: 25px;
}

.compact-contract-grid > div {
  padding-top: 11px;
  border-top: 1px solid rgba(244, 242, 234, .14);
}

.compact-contract-grid dt {
  color: rgba(244, 242, 234, .58);
  font-size: .63rem;
}

.compact-contract-grid dd {
  margin-top: 4px;
  font-size: .78rem;
  font-weight: 680;
}

.compact-stage-action {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: rgba(244, 242, 234, .62);
  font-size: .66rem;
}

.compact-stage-action > span {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
}

.compact-stage-alert > span {
  background: var(--coral);
}

.compact-status-path,
.compact-reminder-line {
  display: grid;
  padding: 0;
  list-style: none;
}

.compact-status-path {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.compact-status-path li {
  position: relative;
  padding: 24px 8px 0 0;
  color: rgba(244, 242, 234, .58);
  font-size: .65rem;
}

.compact-status-path li::before {
  position: absolute;
  top: 5px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(244, 242, 234, .2);
  content: "";
}

.compact-status-path li > span {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 11px;
  height: 11px;
  border: 2px solid #71807b;
  border-radius: 50%;
  background: var(--deep);
}

.compact-status-path li.is-complete,
.compact-status-path li.is-current {
  color: var(--ivory);
}

.compact-status-path li.is-complete::before {
  background: var(--mint);
}

.compact-status-path li.is-complete > span,
.compact-status-path li.is-current > span {
  border-color: var(--mint);
  background: var(--mint);
}

.compact-reminder-line {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 24px;
}

.compact-reminder-line li {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(244, 242, 234, .16);
  border-radius: 14px;
}

.compact-reminder-line li > span {
  color: var(--mint);
  font-size: .82rem;
  font-weight: 780;
}

.compact-reminder-line li > strong {
  font-size: .66rem;
}

.compact-reminder-line li.has-alert {
  border-color: rgba(240, 106, 77, .58);
}

.compact-reminder-line li.has-alert > span {
  color: var(--coral);
}

.compact-payment-value {
  display: block;
  margin-top: 26px;
  font-family: "Switzer", sans-serif;
  font-size: clamp(2.25rem, 8vw, 3.25rem);
  font-weight: 580;
  letter-spacing: -.025em;
  line-height: 1;
}

.compact-payment > p:not(.compact-stage-action) {
  margin-top: 9px;
  color: rgba(244, 242, 234, .6);
  font-size: .7rem;
}

.compact-payment-methods {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.compact-payment-methods span {
  min-width: 78px;
  padding: 9px 14px;
  border: 1px solid rgba(244, 242, 234, .2);
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 720;
  text-align: center;
}

.compact-payment-methods span:first-child {
  border-color: var(--mint);
  background: var(--mint);
  color: var(--deep);
}

.compact-comparison {
  display: grid;
  grid-template-columns: 1fr 34px 1fr;
  gap: 9px;
  align-items: center;
  margin-top: 26px;
}

.compact-comparison > div {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid rgba(244, 242, 234, .16);
  border-radius: 14px;
}

.compact-comparison > div > span {
  color: rgba(244, 242, 234, .58);
  font-size: .61rem;
}

.compact-comparison > div > strong {
  color: var(--mint);
  font-size: .78rem;
}

.compact-comparison > i {
  position: relative;
  height: 1px;
  background: var(--mint);
}

.compact-comparison > i::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--mint);
  border-right: 1px solid var(--mint);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.compact-match {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  color: var(--mint);
  font-size: .68rem;
  font-weight: 740;
}

.compact-match > span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--deep);
}

.proof {
  padding-bottom: clamp(72px, 6vw, 100px);
  background: var(--paper);
}

.proof-list {
  border-top: 1px solid rgba(7, 27, 23, .17);
}

.proof-row {
  display: grid;
  grid-template-columns: minmax(250px, .65fr) minmax(0, 1.35fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: start;
  min-height: 560px;
  padding: 78px 0;
  border-bottom: 1px solid rgba(7, 27, 23, .17);
}

.proof-row:last-child {
  border-bottom: 0;
}

.proof-row-reverse {
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, .65fr);
}

.proof-row-reverse .proof-copy {
  order: 2;
}

.proof-row-reverse .payer-surface {
  order: 1;
}

.proof-number {
  color: var(--mint-ink);
  font-family: "Switzer", sans-serif;
  font-size: .68rem;
  font-weight: 760;
  letter-spacing: .1em;
}

.proof-copy h3 {
  margin-top: 38px;
  font-size: clamp(2.25rem, 3.4vw, 3.5rem);
  font-weight: 540;
  letter-spacing: -.035em;
  line-height: 1;
  word-spacing: .06em;
}

.proof-copy p {
  max-width: 390px;
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.72;
}

.queue-surface,
.payer-surface,
.check-surface {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 27, 23, .1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 65px rgba(7, 27, 23, .09);
}

.surface-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding: 0 24px;
  border-bottom: 1px solid #e4e8e4;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 650;
}

.surface-label strong {
  color: var(--mint-ink);
  font-size: .62rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.queue-head,
.queue-item {
  display: grid;
  grid-template-columns: 1fr .8fr 1.25fr;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
}

.queue-head {
  min-height: 45px;
  color: #8b938f;
  font-size: .62rem;
  font-weight: 650;
}

.queue-item {
  min-height: 78px;
  border-top: 1px solid #edf0ed;
  font-size: .76rem;
}

.queue-item > span:first-child {
  justify-self: start;
  padding: 6px 9px;
  border-radius: 999px;
  background: #f1f2ef;
  color: #58625d;
  font-size: .64rem;
  font-weight: 710;
}

.queue-item.queue-alert > span {
  background: rgba(240, 106, 77, .13);
  color: #a13b26;
}

.queue-item.queue-mint > span {
  background: rgba(39, 199, 181, .13);
  color: #08786d;
}

.queue-action,
.payer-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  font-size: .67rem;
  font-weight: 730;
}

.queue-action {
  justify-self: end;
  padding: 0 16px;
  background: var(--deep);
  color: var(--ivory);
}

.payer-surface {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 56px 32px 38px;
  text-align: center;
}

.payer-brand {
  position: absolute;
  top: 22px;
  right: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.payer-brand > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--deep);
  color: var(--mint);
  font-family: "Switzer", sans-serif;
  font-size: .82rem;
  font-weight: 820;
}

.payer-brand > strong {
  font-size: .72rem;
}

.payer-brand > small {
  margin-left: auto;
  color: var(--mint-ink);
  font-size: .58rem;
  font-weight: 680;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.payer-surface > p {
  color: var(--muted);
  font-size: .76rem;
}

.payer-value {
  margin-top: 10px;
  font-family: "Switzer", sans-serif;
  font-size: clamp(2.8rem, 5.2vw, 5rem);
  font-weight: 570;
  letter-spacing: -.06em;
  line-height: 1;
}

.payer-status {
  margin-top: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(240, 106, 77, .12);
  color: #9d3a25;
  font-size: .66rem;
  font-weight: 700;
}

.payer-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 390px);
  margin-top: 32px;
}

.payer-action {
  padding: 0 18px;
  border: 1px solid var(--deep);
  background: transparent;
}

.payer-action:first-child {
  background: var(--deep);
  color: var(--ivory);
}

.payer-surface > small {
  margin-top: 16px;
  color: #8c9490;
  font-size: .61rem;
}

.check-row,
.check-foot {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.1fr;
  align-items: center;
  gap: 15px;
  padding: 0 24px;
}

.check-row {
  min-height: 92px;
  border-bottom: 1px solid #edf0ed;
  font-size: .74rem;
}

.check-row > strong {
  font-size: .7rem;
}

.check-row > em {
  justify-self: start;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: .62rem;
  font-style: normal;
  font-weight: 720;
}

.check-ok {
  background: rgba(39, 199, 181, .13);
  color: #08786d;
}

.check-action {
  background: rgba(240, 106, 77, .13);
  color: #a13b26;
}

.check-foot {
  min-height: 46px;
  color: #909793;
  font-size: .59rem;
}

.check-foot span:first-child {
  grid-column: 2;
}

.audience {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  column-gap: clamp(64px, 8vw, 120px);
  padding: clamp(100px, 11vw, 165px) max(28px, calc((100vw - var(--content)) / 2));
  background: var(--deep);
  color: var(--ivory);
}

.audience h2 {
  font-size: clamp(2.75rem, 3.9vw, 3.75rem);
}

.audience-content,
.trust-content {
  display: grid;
  min-width: 0;
  row-gap: 32px;
  align-content: start;
}

.audience-content {
  row-gap: 24px;
}

.audience-list {
  border-top: 1px solid rgba(244, 242, 234, .16);
}

.audience-list article {
  display: grid;
  grid-template-columns: 42px minmax(160px, .7fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 33px 0;
  border-bottom: 1px solid rgba(244, 242, 234, .16);
}

.audience-list article > span {
  color: var(--mint);
  font-size: .66rem;
  font-weight: 730;
}

.audience-list h3 {
  font-size: 1.15rem;
  font-weight: 560;
  line-height: 1.35;
}

.audience-list p {
  color: rgba(244, 242, 234, .56);
  font-size: .84rem;
  line-height: 1.7;
}

.trust {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  column-gap: clamp(64px, 8vw, 120px);
  align-items: center;
  padding: clamp(96px, 10vw, 140px) max(28px, calc((100vw - var(--content)) / 2));
  background: var(--mint);
  color: var(--deep);
}

.trust .eyebrow {
  color: var(--deep);
}

.trust h2 {
  font-size: clamp(2.5rem, 3.8vw, 3.6rem);
}

.trust-map {
  display: grid;
  grid-template-columns: 1fr 32px 1fr;
  gap: 22px;
  align-items: center;
}

.trust-map > div {
  align-self: stretch;
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(3, 20, 17, .22);
  border-radius: var(--radius);
}

.trust-map > div > span {
  display: block;
  font-size: .65rem;
  font-weight: 760;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.trust-map > div > strong {
  display: block;
  margin-top: 43px;
  font-family: "Switzer", sans-serif;
  font-size: 1.55rem;
  font-weight: 580;
  letter-spacing: -.035em;
  line-height: 1.1;
}

.trust-title-lock {
  white-space: nowrap;
}

.trust-map > div > p {
  margin-top: 14px;
  color: rgba(3, 20, 17, .66);
  font-size: .78rem;
  line-height: 1.65;
}

.trust-connector {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(3, 20, 17, .26);
  border-radius: 50%;
  font-weight: 730;
}

.trust-note {
  padding-top: 28px;
  border-top: 1px solid rgba(3, 20, 17, .22);
  color: rgba(3, 20, 17, .72);
  font-size: .76rem;
}

.faq {
  background: var(--ivory);
}

.faq-intro {
  grid-template-columns: 1fr;
}

.faq-list {
  max-width: 1040px;
  margin-left: clamp(0px, 10vw, 150px);
  border-top: 1px solid rgba(7, 27, 23, .18);
}

.faq details {
  border-bottom: 1px solid rgba(7, 27, 23, .18);
}

.faq summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 104px;
  cursor: pointer;
  font-family: "Switzer", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 570;
  letter-spacing: -.025em;
  list-style: none;
}

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

.faq summary > span {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(7, 27, 23, .22);
  border-radius: 50%;
  transition: background-color 180ms ease, border-color 180ms ease, transform 220ms ease;
}

.faq summary > span::before,
.faq summary > span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.faq summary > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq details[open] summary > span {
  border-color: var(--coral);
  background: var(--coral);
  transform: rotate(45deg);
}

.faq summary:hover > span,
.faq summary:focus-visible > span {
  border-color: var(--coral);
}

.faq details > p {
  max-width: 760px;
  padding: 0 70px 36px 0;
  color: var(--muted);
  line-height: 1.78;
}

.closing {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 720px;
  overflow: hidden;
  padding: 135px 28px 110px;
  background: var(--deep);
  color: var(--ivory);
  text-align: center;
}

.closing > *:not(.closing-orbit) {
  position: relative;
  z-index: 2;
}

.closing .eyebrow::before {
  display: none;
}

.closing h2 {
  max-width: 880px;
  margin-top: 30px;
}

.closing > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 28px;
  color: rgba(244, 242, 234, .62);
}

.closing .button {
  margin-top: 38px;
}

.closing > small {
  margin-top: 15px;
  color: rgba(244, 242, 234, .54);
  font-size: .66rem;
}

.closing-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(85vw, 930px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.closing-orbit span {
  position: absolute;
  inset: calc(var(--orbit) * 8%);
  border: 1px solid rgba(39, 199, 181, calc(.07 + var(--orbit) * .018));
  border-radius: 50%;
}

.closing-orbit span:nth-child(1) { --orbit: 0; }
.closing-orbit span:nth-child(2) { --orbit: 1; }
.closing-orbit span:nth-child(3) { --orbit: 2; }
.closing-orbit span:nth-child(4) { --orbit: 3; }
.closing-orbit span:nth-child(5) { --orbit: 4; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  min-height: 140px;
  padding: 28px max(28px, calc((100vw - var(--content)) / 2));
  border-top: 1px solid var(--line);
  background: var(--deep);
  color: rgba(244, 242, 234, .54);
  font-size: .71rem;
}

.footer-brand img {
  width: 130px;
}

.site-footer p {
  text-align: center;
}

.site-footer > a:last-child {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  min-height: 44px;
  color: var(--ivory);
  font-weight: 660;
}

.site-footer > a:last-child span {
  margin-left: 10px;
  color: var(--mint);
}

.hero-copy > *,
.hero-product {
  opacity: 0;
  animation: heroReveal 680ms cubic-bezier(.2, .75, .2, 1) forwards;
}

.hero-copy > :nth-child(1) { animation-delay: 80ms; }
.hero-copy > :nth-child(2) { animation-delay: 150ms; }
.hero-copy > :nth-child(3) { animation-delay: 230ms; }
.hero-copy > :nth-child(4) { animation-delay: 310ms; }
.hero-copy > :nth-child(5) { animation-delay: 390ms; }
.hero-product { animation-delay: 290ms; }

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes flowTravel {
  0%, 12% {
    left: 0;
  }
  88%, 100% {
    left: calc(100% - 14px);
  }
}

@media (min-width: 901px) and (max-height: 720px) {
  .flow-visual-column {
    top: calc(var(--header-height) + 18px);
  }

  .receivable-stage {
    height: calc(100vh - var(--header-height) - 36px);
    min-height: 0;
  }

  .stage-topline {
    min-height: clamp(50px, 8vh, 58px);
    padding: 0 22px;
  }

  .stage-panels {
    height: calc(100% - clamp(50px, 8vh, 58px));
    min-height: 0;
  }

  .stage-panel {
    padding: clamp(18px, 4vh, 28px) clamp(22px, 3.6vw, 42px) 68px;
  }

  .stage-panel > h3 {
    margin-top: clamp(12px, 2.6vh, 18px);
    font-size: clamp(1.65rem, 5.5vh, 2.65rem);
  }

  .contract-fields {
    gap: clamp(10px, 2vh, 14px) 18px;
    margin-top: clamp(16px, 3.4vh, 24px);
  }

  .status-path {
    margin-top: clamp(22px, 4.2vh, 32px);
  }

  .reminder-line {
    margin-top: clamp(18px, 3.6vh, 28px);
  }

  .reminder-line li {
    min-height: clamp(78px, 14vh, 96px);
    padding: 12px;
  }

  .payment-methods {
    margin-top: clamp(20px, 4vh, 30px);
  }

  .payment-methods span {
    padding: 10px 14px;
  }

  .comparison {
    margin-top: clamp(20px, 4vh, 30px);
  }

  .comparison > div {
    padding: 14px;
  }

  .stage-progress {
    right: 22px;
    bottom: 54px;
    left: 22px;
  }

  .stage-footer {
    right: 22px;
    bottom: 16px;
    left: 22px;
  }
}

@media (max-width: 1180px) {
  :root {
    --content: 1100px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 4.8vw, 3.8rem);
  }

  .hero-product {
    right: -90px;
    width: 61vw;
  }

  .flow-layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .7fr);
    gap: 54px;
  }

  .audience-list article {
    grid-template-columns: 38px minmax(130px, .6fr) minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .menu-toggle {
    display: block;
  }

  .site-menu {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 2px;
    padding: 100px 28px 38px;
    background: var(--deep);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  }

  .site-header.is-menu-open {
    border-color: transparent;
    background: transparent;
    backdrop-filter: none;
  }

  .site-menu.is-menu-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .site-menu a,
  .site-menu .header-action {
    justify-content: space-between;
    min-height: 64px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(244, 242, 234, .14);
    border-radius: 0;
    font-family: "Switzer", sans-serif;
    font-size: 1.35rem;
    font-weight: 560;
    opacity: 1;
  }

  .site-menu a::before {
    color: var(--mint);
    content: "0" counter(menu);
    counter-increment: menu;
    font-family: "Inter", sans-serif;
    font-size: .65rem;
  }

  .site-menu {
    counter-reset: menu;
  }

  .site-menu a:not(.header-action)::after {
    display: none;
  }

  .hero-inner {
    align-items: start;
    padding-top: calc(var(--header-height) + 58px);
  }

  .hero-copy {
    width: min(100%, 650px);
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(3.55rem, 9vw, 5rem);
  }

  .hero-lead {
    max-width: 580px;
  }

  .hero-product {
    top: auto;
    right: -120px;
    bottom: -120px;
    width: min(92vw, 760px);
  }

  .hero-product figcaption {
    justify-content: flex-start;
    gap: 24px;
  }

  .hero-orbit {
    right: -40vw;
    width: 105vw;
  }

  .section-intro,
  .audience {
    grid-template-columns: 1fr;
  }

  .section-intro {
    gap: 28px;
  }

  .flow-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .flow-visual-column {
    display: none;
  }

  .receivable-stage {
    min-height: 555px;
  }

  .flow-step {
    min-height: 0;
    padding: 76px 0 76px 28px;
  }

  .flow-step::before {
    top: 76px;
  }

  .compact-stage {
    display: block;
  }

  .flow-step h3 {
    max-width: 670px;
  }

  .flow-step > p:not(.flow-step-kicker) {
    max-width: 640px;
  }

  .proof-row,
  .proof-row-reverse {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: 0;
  }

  .proof-row-reverse .proof-copy,
  .proof-row-reverse .payer-surface {
    order: initial;
  }

  .proof-copy p {
    max-width: 560px;
  }

  .audience {
    row-gap: 64px;
  }

  .faq-list {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 70px;
    --interface-bar-height: 30px;
    --radius: 22px;
  }

  .site-header {
    padding: 11px 20px;
  }

  .brand img {
    width: 132px;
  }

  .hero-inner {
    min-height: 100svh;
    padding: calc(var(--header-height) + 34px) 20px 272px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(2.7rem, 12vw, 3.55rem);
    letter-spacing: -.035em;
    line-height: .94;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: .91rem;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 23px;
  }

  .button {
    min-height: 50px;
  }

  .hero-support {
    margin-top: 17px;
    font-size: .68rem;
  }

  .hero-product {
    right: -58px;
    bottom: -90px;
    width: calc(100vw + 92px);
  }

  .hero-product figcaption {
    position: relative;
    left: 58px;
    width: calc(100vw - 40px);
    margin: 0 0 8px;
    font-size: .55rem;
  }

  .hero-flow-line {
    left: 26%;
  }

  .hero-orbit {
    top: 72%;
    right: -74vw;
    width: 150vw;
  }

  .flow-story,
  .proof,
  .faq {
    padding: 84px 20px;
  }

  .section-intro {
    padding-bottom: 60px;
  }

  .section-intro h2,
  .audience h2,
  .trust h2,
  .closing h2 {
    font-size: clamp(2.55rem, 12vw, 3.35rem);
  }

  .receivable-stage {
    min-height: 528px;
  }

  .stage-topline {
    flex-wrap: wrap;
    gap: 4px 10px;
    min-height: 74px;
    padding: 14px 18px;
  }

  .stage-label {
    margin-right: 0;
  }

  .stage-data-label {
    flex-basis: auto;
    margin-left: auto;
  }

  .stage-panels {
    min-height: 384px;
  }

  .stage-panel {
    padding: 32px 21px 26px;
  }

  .stage-panel > h3 {
    font-size: 2.25rem;
  }

  .contract-fields {
    gap: 14px;
    margin-top: 26px;
  }

  .contract-fields dd {
    font-size: .78rem;
  }

  .status-path {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 0;
    margin-top: 30px;
  }

  .reminder-line {
    gap: 7px;
    margin-top: 28px;
  }

  .reminder-line li {
    min-height: 108px;
    padding: 12px;
  }

  .payment-methods {
    margin-top: 30px;
  }

  .payment-methods span {
    min-width: 82px;
  }

  .comparison {
    grid-template-columns: 1fr 24px 1fr;
    margin-top: 30px;
  }

  .comparison > div {
    padding: 14px;
  }

  .stage-progress {
    right: 18px;
    bottom: 46px;
    left: 18px;
  }

  .stage-footer {
    right: 18px;
    bottom: 14px;
    left: 18px;
  }

  .stage-footer span:nth-child(even) {
    display: none;
  }

  .flow-step {
    padding: 64px 0 64px 24px;
    opacity: 1;
  }

  .flow-step::before {
    top: 64px;
  }

  .flow-step h3,
  .proof-copy h3 {
    font-size: 2.65rem;
  }

  .proof-row {
    padding: 60px 0;
  }

  .queue-head,
  .queue-item {
    grid-template-columns: .75fr .7fr 1.1fr;
    gap: 7px;
    padding: 0 12px;
  }

  .queue-head {
    font-size: .52rem;
  }

  .queue-item {
    min-height: 84px;
    font-size: .63rem;
  }

  .queue-item > span:first-child {
    padding: 5px 6px;
    font-size: .54rem;
  }

  .queue-action {
    min-height: 44px;
    padding: 0 9px;
    font-size: .56rem;
  }

  .compact-stage {
    padding: 20px;
  }

  .compact-stage-head {
    gap: 8px;
  }

  .compact-stage-head > small {
    order: 3;
    width: 100%;
    margin-left: 0;
  }

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

  .compact-reminder-line li {
    padding: 11px;
  }

  .compact-payment-methods {
    flex-wrap: wrap;
  }

  .surface-label {
    padding: 0 15px;
  }

  .payer-surface {
    min-height: 390px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .payer-brand {
    right: 16px;
    left: 16px;
  }

  .payer-brand > small {
    max-width: 90px;
    text-align: right;
  }

  .check-row,
  .check-foot {
    grid-template-columns: .75fr .8fr .95fr 1.05fr;
    gap: 7px;
    padding: 0 11px;
  }

  .check-row {
    font-size: .6rem;
  }

  .check-row > strong {
    font-size: .59rem;
  }

  .check-row > em {
    padding: 5px 6px;
    font-size: .52rem;
  }

  .audience,
  .trust {
    padding: 88px 20px;
  }

  .audience-list article {
    grid-template-columns: 34px 1fr;
    gap: 10px;
  }

  .audience-list p {
    grid-column: 2;
  }

  .trust-map {
    grid-template-columns: 1fr;
  }

  .trust-connector {
    margin: -10px auto;
  }

  .trust-map > div {
    min-height: 190px;
  }

  .faq summary {
    min-height: 90px;
    font-size: 1.05rem;
  }

  .faq details > p {
    padding-right: 0;
  }

  .closing {
    min-height: 680px;
    padding: 110px 20px 90px;
  }

  .closing-orbit {
    width: 150vw;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    min-height: 150px;
    padding: 28px 20px;
  }

  .site-footer p {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .hero-copy > *,
  .hero-product {
    opacity: 1;
    transform: none;
  }

  .flow-pulse {
    left: 0;
  }
}

/* Preview refinement v2: production header and collision-safe composition. */
.unitax-header {
  position: fixed;
  z-index: 200;
  top: 24px;
  left: 50%;
  width: min(calc(100% - 32px), var(--content));
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 380ms ease, transform 380ms cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.unitax-header.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(calc(-100% - 48px));
}

.unitax-pill {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) minmax(720px, 800px) minmax(140px, 1fr);
  align-items: center;
  gap: clamp(24px, 1.6vw, 32px);
  padding: 10px 16px;
  border: 1px solid rgba(72, 210, 207, .24);
  border-radius: 9999px;
  background: rgba(8, 24, 24, .58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 18px 46px rgba(0, 0, 0, .34);
  color: var(--ivory);
  pointer-events: auto;
  backdrop-filter: blur(18px) saturate(150%);
  transition: background-color 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.unitax-header.is-scrolled .unitax-pill,
.unitax-header.is-menu-open .unitax-pill {
  border-color: rgba(72, 210, 207, .26);
  background: rgba(8, 24, 24, .72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 12px 36px rgba(0, 0, 0, .34);
}

.unitax-logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  flex: 0 0 auto;
}

.unitax-logo-img {
  width: auto;
  height: 29px;
}

.unitax-nav {
  display: flex;
  align-items: center;
  justify-self: stretch;
  gap: 30px;
}

.unitax-nav a {
  padding: 4px 0;
  color: #fff;
  font-family: "Switzer", "Inter", system-ui, sans-serif;
  font-size: .71rem;
  font-weight: 650;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.unitax-nav a:hover,
.unitax-nav a:focus-visible {
  opacity: .78;
}

.unitax-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
  flex: 0 0 auto;
}

.unitax-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 9px 14px;
  border-radius: 9999px;
  background: #c84b36;
  color: #fff;
  font-family: "Switzer", "Inter", system-ui, sans-serif;
  font-size: .78rem;
  font-weight: 740;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: background-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.unitax-cta:hover,
.unitax-cta:focus-visible {
  background: #b84230;
  box-shadow: 0 6px 12px rgba(200, 75, 54, .22);
  transform: translateY(-1px);
}

.unitax-burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 9999px;
  background: transparent;
  cursor: pointer;
  transition: background-color 200ms ease;
}

.unitax-burger:hover,
.unitax-burger:focus-visible {
  background: rgba(255, 255, 255, .08);
}

.unitax-burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: #fff;
  transition: opacity 200ms ease, transform 250ms ease;
}

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

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

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

.unitax-mobile {
  position: fixed;
  z-index: 190;
  top: 84px;
  left: 50%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: calc(100% - 32px);
  max-width: 520px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  background: rgba(14, 26, 26, .94);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px) scale(.98);
  visibility: hidden;
  backdrop-filter: blur(16px) saturate(160%);
  transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
}

.unitax-mobile.is-menu-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
  visibility: visible;
  transition-delay: 0s;
}

.unitax-mobile a {
  min-height: 50px;
  padding: 14px 18px;
  border-radius: 14px;
  color: #fff;
  font-family: "Switzer", "Inter", system-ui, sans-serif;
  font-size: .92rem;
  font-weight: 620;
  transition: background-color 150ms ease;
}

.unitax-mobile a:hover,
.unitax-mobile a:focus-visible {
  background: rgba(255, 255, 255, .06);
}

.unitax-mobile .unitax-cta-mobile {
  justify-content: center;
  margin-top: 8px;
  background: #c84b36;
  text-align: center;
}

.hero-inner {
  grid-template-columns: minmax(390px, .78fr) minmax(560px, 1.22fr);
  gap: clamp(48px, 5.5vw, 88px);
  padding-top: 132px;
}

.hero-copy {
  width: auto;
  min-width: 0;
}

.hero-product {
  position: relative;
  top: auto;
  right: auto;
  width: 100%;
  min-width: 0;
}

@media (max-width: 1180px) {
  .unitax-nav {
    gap: 18px;
  }

  .unitax-nav a {
    font-size: .66rem;
  }

  .hero-inner {
    grid-template-columns: minmax(350px, .8fr) minmax(500px, 1.2fr);
    gap: 42px;
  }

  .hero-product {
    right: auto;
    width: 100%;
  }
}

@media (max-width: 1120px) {
  .unitax-nav,
  .unitax-actions > .unitax-cta {
    display: none;
  }

  .unitax-burger {
    display: block;
  }
}

@media (max-width: 980px) {
  .unitax-nav,
  .unitax-actions > .unitax-cta {
    display: none;
  }

  .unitax-burger {
    display: block;
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 52px;
    align-items: start;
    min-height: 0;
    padding-top: 126px;
    padding-bottom: 76px;
  }

  .hero-copy {
    width: min(100%, 690px);
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(3.35rem, 7.5vw, 3.85rem);
    line-height: .98;
  }

  .hero-product {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 820px);
    margin-left: auto;
  }

  .hero-orbit {
    top: 68%;
  }
}

@media (max-width: 640px) {
  .unitax-header {
    top: 24px;
    width: calc(100% - 32px);
  }

  .unitax-pill {
    padding: 12px 16px 12px 24px;
  }

  .unitax-logo-img {
    height: 27px;
  }

  .unitax-mobile {
    top: 84px;
    width: calc(100% - 32px);
  }

  .hero-inner {
    min-height: 0;
    gap: 38px;
    padding: 112px 20px 54px;
  }

  .hero h1 {
    max-width: 530px;
    font-size: clamp(2.5rem, 11.2vw, 2.75rem);
    line-height: .98;
  }

  .section-intro h2,
  .audience h2,
  .trust h2,
  .closing h2 {
    font-size: clamp(2.15rem, 9.8vw, 2.5rem);
    line-height: 1;
  }

  .flow-step {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .flow-step::before {
    top: 52px;
  }

  .flow-step h3,
  .proof-copy h3 {
    font-size: clamp(1.95rem, 8.7vw, 2.25rem);
    line-height: 1.02;
  }

  .hero-product {
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .hero-product figcaption {
    left: auto;
    width: auto;
    margin: 0 0 10px;
  }
}

/* Menu institucional com iconografia semantica. */
.unitax-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  flex: 1 1 auto;
  gap: 0;
  width: 100%;
  min-width: 0;
}

.unitax-nav .route-nav-link,
.unitax-mobile .route-nav-link {
  position: relative;
  display: inline-grid;
  grid-template-columns: 44px auto;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 0;
  min-height: 64px;
  padding: 10px 12px;
  border: 0;
  border-radius: 12px;
  color: var(--ivory);
  font-family: "Switzer", "Inter", system-ui, sans-serif;
  letter-spacing: 0;
  text-transform: none;
  opacity: 1;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.route-nav-node {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(244, 242, 234, .2);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(13, 42, 37, .92), rgba(3, 20, 17, .9));
  color: rgba(244, 242, 234, .68);
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, color 220ms ease, transform 220ms ease;
}

.route-nav-node::before {
  position: absolute;
  inset: -4px;
  border: 2px solid transparent;
  border-radius: 18px;
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: rotate(-18deg) scale(.9);
}

.route-nav-icon {
  width: 21px;
  height: 21px;
  color: inherit;
  vector-effect: non-scaling-stroke;
  transition: color 180ms ease, opacity 180ms ease, transform 220ms cubic-bezier(.2, .75, .2, 1);
}

.route-nav-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
  line-height: 1;
}

.route-nav-copy strong {
  color: var(--ivory);
  font-size: .75rem;
  font-weight: 680;
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}

.route-nav-copy small {
  color: rgba(244, 242, 234, .64);
  font-family: "Inter", system-ui, sans-serif;
  font-size: .625rem;
  font-weight: 580;
  letter-spacing: 0;
  white-space: nowrap;
  transition: color 180ms ease;
}

.unitax-nav .route-nav-link:focus-visible,
.unitax-mobile .route-nav-link:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
  opacity: 1;
}

.flow-step {
  scroll-margin-top: calc(var(--header-height) + 32px);
}

@media (hover: hover) and (pointer: fine) {
  .unitax-nav .route-nav-link:hover,
  .unitax-mobile .route-nav-link:hover {
    background: rgba(39, 199, 181, .055);
    opacity: 1;
    transform: translateY(-1px);
  }

  .route-nav-link:hover .route-nav-node {
    border-color: var(--mint);
    color: var(--ivory);
    box-shadow: inset 0 1px 0 rgba(185, 244, 236, .1), 0 8px 18px rgba(0, 0, 0, .15);
  }

  .route-nav-link:hover .route-nav-icon {
    transform: translateY(-2px);
  }
}

@media (max-width: 1180px) and (min-width: 1121px) {
  .unitax-pill {
    gap: 24px;
  }
}

@media (min-width: 1121px) {
  .unitax-pill {
    height: 78px;
  }

  .unitax-nav .route-nav-link {
    grid-template-columns: 44px auto;
    justify-self: center;
    gap: 14px;
    width: max-content;
    min-height: 58px;
    padding: 6px 8px;
  }

  .unitax-nav .route-nav-node {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .unitax-nav .route-nav-node::before {
    border-radius: 18px;
  }

  .unitax-nav .route-nav-icon {
    width: 21px;
    height: 21px;
  }

  .unitax-nav .route-nav-copy strong {
    font-size: .875rem;
  }

  .unitax-nav .route-nav-copy small {
    font-size: .6875rem;
  }
}

@media (max-width: 1120px) {
  .unitax-pill {
    display: flex;
    justify-content: space-between;
  }

  .unitax-nav {
    display: none;
  }

  .unitax-mobile {
    gap: 4px;
    padding: 10px;
  }

  .unitax-mobile .route-nav-link {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    width: 100%;
    min-height: 64px;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .unitax-mobile .route-nav-node {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .unitax-mobile .route-nav-node::before {
    border-radius: 18px;
  }

  .unitax-mobile .route-nav-icon {
    width: 21px;
    height: 21px;
  }

  .unitax-mobile .route-nav-copy {
    gap: 5px;
  }

  .unitax-mobile .route-nav-copy strong {
    font-size: .9rem;
  }

  .unitax-mobile .route-nav-copy small {
    font-size: .65rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  .route-nav-link,
  .route-nav-node,
  .route-nav-icon,
  .route-nav-copy strong,
  .route-nav-copy small,
  .route-nav-node::before,
  .route-nav-node::after {
    transition: none;
    animation: none !important;
  }
}

/* Copy and conversion refinement. */
.conversion-section {
  padding: 0 max(28px, calc((100vw - var(--content)) / 2)) clamp(94px, 10vw, 150px);
  background: var(--ivory);
}

.conversion-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  overflow: hidden;
  padding: clamp(40px, 5vw, 70px);
  border: 1px solid rgba(39, 199, 181, .22);
  border-radius: clamp(24px, 3vw, 38px);
  background:
    radial-gradient(circle at 12% 0%, rgba(39, 199, 181, .17), transparent 42%),
    var(--deep);
  color: var(--ivory);
  box-shadow: 0 30px 80px rgba(7, 27, 23, .13);
}

.conversion-band::after {
  position: absolute;
  right: -130px;
  bottom: -250px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(39, 199, 181, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 62px rgba(39, 199, 181, .035), 0 0 0 124px rgba(39, 199, 181, .025);
  content: "";
  pointer-events: none;
}

.conversion-copy {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.conversion-copy h2 {
  max-width: 800px;
  margin-top: 18px;
  font-family: "Switzer", "Inter", system-ui, sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  font-weight: 560;
  letter-spacing: -.035em;
  line-height: 1.02;
}

.conversion-copy > p:last-child {
  max-width: 680px;
  margin-top: 20px;
  color: rgba(244, 242, 234, .65);
  line-height: 1.72;
}

.section-action {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  max-width: 100%;
  margin-top: clamp(38px, 5vw, 70px);
}

.faq-action {
  justify-content: flex-start;
  max-width: 1040px;
  margin-top: 40px;
  margin-left: clamp(0px, 10vw, 150px);
}

.proof-action {
  justify-content: flex-start;
  margin-top: 32px;
}

.audience-action {
  justify-content: flex-start;
  margin-top: 0;
}

.hero-actions .button,
.conversion-actions .button,
.section-action .button {
  margin: 0;
}

.proof-action .button-primary,
.faq-action .button-primary {
  color: #1e0b07;
}

.trust-map > div > strong {
  margin-top: 34px;
}

.closing {
  display: block;
  min-height: 0;
  padding: clamp(96px, 10vw, 148px) max(28px, calc((100vw - var(--content)) / 2));
  text-align: left;
}

.closing-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(460px, 1.18fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: start;
}

.closing-copy {
  position: sticky;
  top: calc(var(--header-height) + 36px);
  padding-top: 26px;
}

.closing .closing-copy .eyebrow::before {
  display: block;
}

.closing .closing-copy h2 {
  max-width: 650px;
  margin-top: 26px;
  font-size: clamp(2.6rem, 4.2vw, 4rem);
}

.closing-title-lock {
  white-space: nowrap;
}

.closing .closing-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin-top: 28px;
  color: rgba(244, 242, 234, .64);
  line-height: 1.75;
}

.closing-markers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.closing-markers span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(185, 244, 236, .22);
  border-radius: 999px;
  color: rgba(244, 242, 234, .76);
  font-size: .74rem;
  font-weight: 660;
}

.closing-markers span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px rgba(39, 199, 181, .55);
  content: "";
}

.contact-form-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(244, 242, 234, .24);
  border-radius: 30px;
  background: #f4f2ea;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(7, 27, 23, .05), 0 30px 78px rgba(0, 33, 27, .34);
}

body.is-analysis-modal-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.analysis-modal {
  width: calc(100vw - 32px);
  max-width: 780px;
  max-height: calc(100svh - 32px);
  margin: auto;
  padding: 0;
  border: 0;
  overflow: visible;
  background: transparent;
  color: var(--ink);
}

.analysis-modal[open] {
  animation: analysis-modal-fade 180ms ease-out both;
}

.analysis-modal::backdrop {
  background: rgba(2, 31, 27, .78);
  backdrop-filter: blur(9px);
}

.analysis-modal[open]::backdrop {
  animation: analysis-backdrop-fade 180ms ease-out both;
}

.analysis-modal-card {
  position: relative;
  width: 100%;
  max-height: calc(100svh - 32px);
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(7, 27, 23, .08);
  border-radius: 28px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  background: var(--ivory);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .7), 0 38px 110px rgba(0, 21, 18, .48);
}

.analysis-modal[open] .analysis-modal-card {
  animation: analysis-modal-card-in 220ms cubic-bezier(.2, .72, .28, 1) both;
}

.analysis-modal-close {
  position: sticky;
  z-index: 4;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  min-width: 46px;
  height: 46px;
  min-height: 46px;
  margin: 0 0 -46px auto;
  padding: 0;
  border: 1px solid rgba(185, 244, 236, .24);
  border-radius: 50%;
  background: var(--deep);
  color: var(--ivory);
  box-shadow: 0 10px 26px rgba(0, 31, 26, .24);
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.analysis-modal-close span {
  display: block;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-1px);
}

.analysis-modal-close:hover {
  border-color: var(--mint);
  background: #0a3029;
  color: var(--mint);
  transform: rotate(4deg);
}

.analysis-modal-close:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.analysis-modal .contact-form-intro {
  max-width: 760px;
  padding-right: 68px;
  padding-bottom: 28px;
}

.analysis-modal .contact-form-intro h2 {
  max-width: 680px;
  margin-top: 8px;
  color: var(--ink);
  font-family: "Switzer", "Inter", system-ui, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 720;
  letter-spacing: -.035em;
  line-height: 1.02;
}

.analysis-modal .contact-form-intro h2::after {
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 17px;
  border-radius: 999px;
  background: var(--mint);
  content: "";
}

.analysis-modal .contact-form-intro p:last-child {
  max-width: 680px;
  margin-top: 15px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65;
}

.analysis-form .form-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.analysis-form .form-section {
  gap: 17px;
}

.analysis-form .form-section + .form-section {
  margin-top: 28px;
}

.analysis-modal .contact-form-actions {
  padding-top: 26px;
}

.analysis-modal .contact-submit {
  justify-content: space-between;
  justify-self: center;
  width: min(320px, calc(100% - 24px));
  min-height: 50px;
  padding: 0 18px;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(240, 106, 77, .18);
}

.analysis-modal .contact-submit:hover,
.analysis-modal .contact-submit:focus-visible {
  box-shadow: 0 16px 34px rgba(240, 106, 77, .27);
}

.analysis-modal .contact-consent,
.quick-contact-form .contact-consent {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.analysis-modal .contact-consent {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  text-wrap: balance;
}

.quick-contact-form .contact-form-actions {
  padding-top: 2px;
}

.quick-contact-form .contact-consent {
  margin-top: 14px;
  padding-top: 14px;
}

@keyframes analysis-modal-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes analysis-backdrop-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes analysis-modal-card-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form-intro {
  display: block;
  padding-bottom: 22px;
}

.contact-form-kicker {
  color: var(--mint-ink);
  font-size: .68rem;
  font-weight: 780;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.contact-form-intro h3 {
  margin-top: 7px;
  color: var(--ink);
  font-family: "Switzer", "Inter", system-ui, sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  font-weight: 760;
  letter-spacing: -.025em;
  line-height: 1.08;
}

.contact-form {
  display: grid;
  gap: 0;
}

.form-section {
  display: grid;
  gap: 16px;
  padding: 0;
}

.form-section + .form-section {
  margin-top: 24px;
}

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

.contact-form label {
  display: grid;
  align-content: start;
  gap: 7px;
  color: #233832;
  font-size: .72rem;
  font-weight: 730;
  line-height: 1.35;
}

.field-label {
  display: flex;
  align-items: baseline;
  gap: 4px;
  width: fit-content;
  max-width: 100%;
}

.required-mark {
  flex: 0 0 auto;
  color: #b84230;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(7, 27, 23, .18);
  border-radius: 14px;
  outline: 0;
  background: rgba(255, 255, 255, .82);
  color: var(--ink);
  font: inherit;
  font-size: .84rem;
  font-weight: 520;
  line-height: 1.4;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.contact-form select {
  appearance: none;
  padding-right: 38px;
  background-image: linear-gradient(45deg, transparent 50%, #52615b 50%), linear-gradient(135deg, #52615b 50%, transparent 50%);
  background-position: calc(100% - 18px) 23px, calc(100% - 13px) 23px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.contact-form textarea {
  min-height: 104px;
  resize: vertical;
}

.contact-form.quick-contact-form {
  gap: 14px;
}

.contact-form.quick-contact-form textarea {
  min-height: 96px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7a8983;
  opacity: 1;
}

@media (hover: hover) {
  .contact-form input:hover,
  .contact-form select:hover,
  .contact-form textarea:hover {
    border-color: rgba(15, 116, 106, .48);
    background-color: #fff;
  }
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  border-color: var(--mint-ink);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(39, 199, 181, .16);
}

.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--ink);
  box-shadow: 0 0 0 1000px #fff inset;
  caret-color: var(--ink);
}

.contact-form .is-invalid {
  border-color: #c84b36;
  background: rgba(240, 106, 77, .05);
  box-shadow: 0 0 0 3px rgba(240, 106, 77, .11);
}

.contact-form-actions {
  display: grid;
  gap: 0;
  padding-top: 22px;
}

.closing .contact-submit {
  display: flex;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  margin-top: 0;
  padding: 0 20px 0 22px;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(240, 106, 77, .18);
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.closing .contact-submit:hover,
.closing .contact-submit:focus-visible {
  box-shadow: 0 16px 34px rgba(240, 106, 77, .27);
  transform: translateY(-2px);
}

.closing .contact-submit:active {
  box-shadow: 0 8px 20px rgba(240, 106, 77, .2);
  transform: translateY(0) scale(.995);
}

.contact-submit-arrow {
  color: #1e0b07;
  font-size: 1.2rem;
  font-weight: 600;
  transition: transform 180ms ease;
}

.contact-submit:hover .contact-submit-arrow,
.contact-submit:focus-visible .contact-submit-arrow {
  transform: translateX(4px);
}

.contact-status {
  margin-top: 12px;
  color: var(--mint-ink);
  font-size: .76rem;
  font-weight: 650;
  line-height: 1.55;
}

.contact-status:empty {
  display: none;
}

.contact-status.is-error {
  color: #a13b26;
}

.contact-consent {
  display: block;
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px solid rgba(7, 27, 23, .1);
  color: #52615b;
  font-size: .625rem;
  line-height: 1.55;
}

.site-footer {
  grid-template-columns: 150px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  min-height: 190px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.footer-brand {
  min-width: 0;
  max-width: 100%;
}

.footer-copy {
  display: grid;
  gap: 5px;
  max-width: 690px;
}

.site-footer .footer-copy p {
  text-align: left;
}

.footer-copy p:first-child {
  color: var(--ivory);
  font-family: "Switzer", "Inter", system-ui, sans-serif;
  font-size: .9rem;
  font-weight: 650;
}

.footer-copy small {
  display: block;
  max-width: 650px;
  margin-top: 8px;
  color: rgba(244, 242, 234, .55);
  font-size: .6875rem;
  line-height: 1.55;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
}

.footer-copy small + small {
  margin-top: 3px;
}

.footer-copy small[id] {
  scroll-margin-top: 32px;
}

.footer-copy small strong {
  color: rgba(244, 242, 234, .72);
  font-weight: 650;
}

@media (max-width: 1024px) {
  .closing-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .closing-copy {
    position: relative;
    top: auto;
    padding-top: 0;
  }

  .contact-form-card {
    justify-self: start;
    width: 100%;
    max-width: 760px;
  }
}

@media (max-width: 900px) {
  .conversion-band,
  .closing-layout {
    grid-template-columns: 1fr;
  }

  .conversion-actions {
    justify-self: start;
  }

  .closing-copy {
    position: relative;
    top: auto;
    padding-top: 0;
  }

  .closing-layout {
    gap: 52px;
  }

  .faq-action {
    max-width: none;
    margin-left: 0;
  }

  .site-footer {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .conversion-section {
    padding: 0 20px 84px;
  }

  .conversion-band {
    gap: 30px;
    padding: 32px 24px;
  }

  .conversion-copy h2 {
    font-size: clamp(2rem, 9.2vw, 2.5rem);
  }

  .conversion-actions,
  .conversion-actions .button,
  .section-action .button {
    width: 100%;
  }

  .section-action {
    justify-content: stretch;
    width: 100%;
    margin-top: 38px;
  }

  .faq-action {
    margin-top: 40px;
  }

  .audience-action {
    margin-top: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .analysis-modal {
    width: calc(100vw - 20px);
    max-height: calc(100svh - 20px);
  }

  .analysis-modal-card {
    max-height: calc(100svh - 20px);
    padding: 22px 16px 24px;
    border-radius: 20px;
    scrollbar-gutter: auto;
  }

  .analysis-modal-close {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    margin-bottom: -44px;
  }

  .analysis-modal .contact-form-intro {
    padding-right: 54px;
    padding-bottom: 23px;
  }

  .analysis-modal .contact-form-intro h2 {
    font-size: clamp(1.72rem, 8.5vw, 2.15rem);
    line-height: 1.05;
  }

  .analysis-modal .contact-form-intro h2::after {
    margin-top: 14px;
  }

  .analysis-modal .contact-form-intro p:last-child {
    margin-top: 13px;
    font-size: .82rem;
    line-height: 1.55;
  }

  .analysis-form .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .analysis-form .form-section + .form-section {
    margin-top: 23px;
  }

  .analysis-modal .contact-form-actions {
    padding-top: 22px;
  }

  .closing {
    padding: 92px 20px;
  }

  .closing .closing-copy h2 {
    font-size: clamp(2.25rem, 9.6vw, 2.5rem);
  }

  .contact-form-card {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .contact-form-intro {
    padding-bottom: 19px;
  }

  .contact-form-intro h3 {
    font-size: clamp(1.4rem, 6.2vw, 1.72rem);
  }

  .form-section {
    gap: 14px;
    padding: 0;
  }

  .form-section + .form-section {
    margin-top: 22px;
  }

  .contact-form-actions {
    padding-top: 20px;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 24px 18px;
    min-height: 0;
    padding: 36px 20px;
  }

  .footer-brand {
    grid-column: 1;
  }

  .footer-copy {
    grid-column: 1;
    grid-row: 2;
  }

  .site-footer .footer-copy p {
    grid-column: auto;
    grid-row: auto;
    text-align: left;
  }

}

@media (max-width: 440px) {
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-copy {
    grid-column: 1;
    grid-row: auto;
  }
}

/* Strategic amplitude revision: avulso, parcelado e recorrente. */
.hero-eyebrow {
  margin-bottom: 18px;
  color: #b9f4ec;
  font-family: "Switzer", "Inter", system-ui, sans-serif;
  font-size: .72rem;
  font-weight: 760;
  letter-spacing: .14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-scope {
  margin-top: 13px;
  color: #b9f4ec;
  font-size: .9em;
  font-weight: 700;
}

.interface-copy-overlays {
  position: absolute;
  z-index: 2;
  inset: var(--interface-bar-height) 0 0;
  overflow: hidden;
  pointer-events: none;
}

.interface-overlay {
  position: absolute;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f4f3ef;
  color: #46504b;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 560;
  line-height: 1;
  white-space: nowrap;
}

.interface-overlay-subtitle {
  top: 8.6%;
  left: 21.1%;
  width: 31%;
  height: 5.2%;
  font-size: clamp(.38rem, .72vw, .66rem);
}

.interface-overlay-conditions {
  top: 34.5%;
  left: 3.45%;
  width: 15.6%;
  height: 5.4%;
  font-size: clamp(.34rem, .61vw, .58rem);
}

.interface-overlay-pix {
  top: 93.3%;
  left: 3.3%;
  width: 16%;
  height: 6.4%;
}

.hero-product-note {
  max-width: 760px;
  margin: 10px 18px 0;
  color: var(--mint);
  font-size: .68rem;
  font-weight: 730;
  letter-spacing: .08em;
  line-height: 1.3;
  text-align: right;
  text-transform: uppercase;
}

.flow-step > p.flow-step-disclaimer {
  padding: 12px 14px;
  border-left: 2px solid var(--mint);
  background: rgba(39, 199, 181, .07);
  color: rgba(7, 27, 23, .7);
  font-size: .75rem;
  line-height: 1.55;
}

.conversion-actions {
  position: relative;
  z-index: 1;
  display: grid;
  align-self: center;
  justify-self: end;
  gap: 10px;
  min-width: 210px;
}

.audience-segments {
  max-width: 760px;
  margin: 0;
  color: rgba(244, 242, 234, .68);
  font-size: .82rem;
  line-height: 1.7;
}

.trust-map {
  grid-template-columns: 1fr 24px 1fr 24px 1fr;
  gap: 12px;
}

.trust-map > div {
  min-height: 250px;
  padding: 24px;
}

.trust-map > div > strong {
  font-size: clamp(1.18rem, 1.45vw, 1.5rem);
}

.contact-consent a,
.footer-copy a,
.footer-legal-links a,
.faq-list a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 9px;
  color: rgba(244, 242, 234, .68);
  font-size: .6875rem;
}

@media (max-width: 1120px) {
  .unitax-mobile .route-nav-copy strong {
    font-size: .95rem;
  }

  .trust {
    grid-template-columns: 1fr;
    row-gap: 64px;
  }

  .trust-map {
    grid-template-columns: 1fr;
  }

  .trust-map > div {
    min-height: 0;
  }

  .trust-connector {
    justify-self: center;
    transform: rotate(90deg);
  }
}

@media (max-width: 900px) {
  .conversion-actions {
    justify-self: start;
  }

}

@media (max-width: 640px) {
  .hero-eyebrow {
    margin-bottom: 14px;
    font-size: .64rem;
  }

  .hero-lead-break {
    display: none;
  }

  .hero-product-note {
    margin-right: 0;
    margin-left: 0;
  }

  .conversion-actions,
  .conversion-actions .button {
    width: 100%;
  }

  .trust-map > div {
    min-height: 0;
  }
}

/* Analysis modal: viewport-fit composition without internal scrolling. */
.analysis-modal {
  max-height: none;
  overflow: hidden;
}

.analysis-modal-card {
  max-height: none;
  overflow: hidden;
  overscroll-behavior: none;
  scrollbar-gutter: auto;
}

.analysis-modal-close {
  position: absolute;
  top: clamp(18px, 2.2vw, 28px);
  right: clamp(18px, 2.2vw, 28px);
  margin: 0;
}

@media (max-height: 960px) {
  .analysis-modal {
    width: min(780px, calc(100vw - 24px));
  }

  .analysis-modal-card {
    padding: clamp(20px, 3vh, 28px) clamp(24px, 3vw, 34px);
    border-radius: 24px;
  }

  .analysis-modal-close {
    top: 18px;
    right: 20px;
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
  }

  .analysis-modal .contact-form-intro {
    padding-right: 60px;
    padding-bottom: 16px;
  }

  .analysis-modal .contact-form-intro h2 {
    margin-top: 5px;
    font-size: clamp(1.75rem, 3.4vw, 2.35rem);
    line-height: 1;
  }

  .analysis-modal .contact-form-intro h2::after {
    width: 42px;
    height: 2px;
    margin-top: 10px;
  }

  .analysis-modal .contact-form-kicker {
    font-size: .72rem;
  }

  .analysis-modal .contact-form-intro p:last-child {
    margin-top: 9px;
    font-size: .84rem;
    line-height: 1.45;
  }

  .analysis-form .form-section {
    gap: 10px;
  }

  .analysis-form .form-section + .form-section {
    margin-top: 12px;
  }

  .analysis-form .form-row {
    gap: 12px;
  }

  .analysis-modal .contact-form label {
    gap: 4px;
    font-size: .74rem;
    line-height: 1.25;
  }

  .analysis-modal .contact-form input,
  .analysis-modal .contact-form select,
  .analysis-modal .contact-form textarea {
    min-height: 46px;
    padding: 9px 12px;
    border-radius: 12px;
    font-size: .84rem;
    line-height: 1.3;
  }

  .analysis-modal .contact-form select {
    padding-right: 34px;
    background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  }

  .analysis-modal .contact-form textarea {
    height: 70px;
    min-height: 70px;
    resize: none;
  }

  .analysis-modal .contact-form-actions {
    padding-top: 12px;
  }

  .analysis-modal .contact-submit {
    justify-content: space-between;
    justify-self: center;
    width: min(360px, 100%);
    min-height: 54px;
    padding: 0 22px;
    border-radius: 15px;
    font-size: .95rem;
    gap: 20px;
  }

  .analysis-modal .contact-status {
    margin-top: 6px;
    font-size: .64rem;
    line-height: 1.35;
  }

  .analysis-modal .contact-consent {
    margin-top: 9px;
    padding-top: 8px;
    font-size: .62rem;
    line-height: 1.4;
  }
}

@media (max-width: 640px) {
  .analysis-modal {
    width: calc(100vw - 12px);
  }

  .analysis-modal-card {
    padding: 16px 14px;
    border-radius: 18px;
  }

  .analysis-modal-close {
    top: 12px;
    right: 12px;
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
  }

  .analysis-modal-close span {
    font-size: 1.5rem;
  }

  .analysis-modal .contact-form-intro {
    padding-right: 48px;
    padding-bottom: 12px;
  }

  .analysis-modal .contact-form-intro h2 {
    margin-top: 4px;
    font-size: clamp(1.35rem, 6.8vw, 1.72rem);
    line-height: 1.02;
  }

  .analysis-modal .contact-form-intro h2::after {
    width: 34px;
    margin-top: 7px;
  }

  .analysis-modal .contact-form-intro p:last-child {
    margin-top: 7px;
    font-size: .68rem;
    line-height: 1.35;
  }

  .analysis-modal .contact-form-kicker {
    font-size: .58rem;
  }

  .analysis-form .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .analysis-form .form-section {
    gap: 8px;
  }

  .analysis-form .form-section + .form-section {
    margin-top: 8px;
  }

  .analysis-modal .contact-form label {
    gap: 3px;
    font-size: .625rem;
    line-height: 1.18;
  }

  .analysis-modal .field-label {
    align-items: flex-start;
  }

  .analysis-modal .contact-form input,
  .analysis-modal .contact-form select,
  .analysis-modal .contact-form textarea {
    min-height: 42px;
    padding: 8px 9px;
    border-radius: 10px;
    font-size: .78rem;
  }

  .analysis-modal .contact-form select {
    padding-right: 27px;
    background-position: calc(100% - 15px) 50%, calc(100% - 10px) 50%;
  }

  .analysis-modal .contact-form textarea {
    height: 58px;
    min-height: 58px;
  }

  .analysis-modal .contact-form-actions {
    padding-top: 9px;
  }

  .analysis-modal .contact-submit {
    min-height: 44px;
    padding-right: 14px;
    padding-left: 14px;
    border-radius: 12px;
    font-size: .74rem;
  }

  .analysis-modal .contact-consent {
    margin-top: 7px;
    padding-top: 7px;
    font-size: .52rem;
    line-height: 1.3;
  }
}

@media (max-height: 700px) {
  .analysis-modal {
    width: min(780px, calc(100vw - 12px));
  }

  .analysis-modal-card {
    padding: 12px 18px;
    border-radius: 18px;
  }

  .analysis-modal-close {
    top: 10px;
    right: 12px;
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
  }

  .analysis-modal .contact-form-intro {
    padding-right: 50px;
    padding-bottom: 8px;
  }

  .analysis-modal .contact-form-intro h2 {
    margin-top: 3px;
    font-size: clamp(1.35rem, 4.2vh, 1.75rem);
  }

  .analysis-modal .contact-form-intro h2::after {
    width: 32px;
    margin-top: 5px;
  }

  .analysis-modal .contact-form-intro p:last-child {
    margin-top: 5px;
    font-size: .65rem;
    line-height: 1.28;
  }

  .analysis-modal .contact-form-kicker {
    font-size: .55rem;
  }

  .analysis-form .form-section {
    gap: 6px;
  }

  .analysis-form .form-section + .form-section {
    margin-top: 6px;
  }

  .analysis-form .form-row {
    gap: 8px;
  }

  .analysis-modal .contact-form label {
    gap: 2px;
    font-size: .6rem;
    line-height: 1.15;
  }

  .analysis-modal .contact-form input,
  .analysis-modal .contact-form select,
  .analysis-modal .contact-form textarea {
    min-height: 42px;
    padding: 7px 10px;
    border-radius: 10px;
    font-size: .76rem;
  }

  .analysis-modal .contact-form select {
    padding-right: 29px;
    background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
  }

  .analysis-modal .contact-form textarea {
    height: 48px;
    min-height: 48px;
  }

  .analysis-modal .contact-form-actions {
    padding-top: 6px;
  }

  .analysis-modal .contact-submit {
    min-height: 42px;
    border-radius: 11px;
    font-size: .72rem;
  }

  .analysis-modal .contact-status {
    margin-top: 4px;
    font-size: .58rem;
    line-height: 1.2;
  }

  .analysis-modal .contact-consent {
    margin-top: 5px;
    padding-top: 5px;
    font-size: .5rem;
    line-height: 1.22;
  }
}

@media (max-width: 360px) and (max-height: 700px) {
  .analysis-modal-card {
    padding: 9px 10px;
    border-radius: 15px;
  }

  .analysis-modal-close {
    top: 8px;
    right: 8px;
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
  }

  .analysis-modal .contact-form-intro {
    padding-right: 44px;
    padding-bottom: 6px;
  }

  .analysis-modal .contact-form-intro h2 {
    max-width: 245px;
    font-size: 1.3rem;
  }

  .analysis-modal .contact-form-intro p:last-child {
    font-size: .61rem;
  }

  .analysis-form .form-row {
    gap: 6px;
  }

  .analysis-form .form-section {
    gap: 5px;
  }

  .analysis-form .form-section + .form-section {
    margin-top: 5px;
  }

  .analysis-modal .contact-form label {
    font-size: .58rem;
  }

  .analysis-modal .contact-form input,
  .analysis-modal .contact-form select,
  .analysis-modal .contact-form textarea {
    min-height: 44px;
    padding: 6px 8px;
    font-size: .72rem;
  }

  .analysis-modal .contact-form textarea {
    height: 48px;
    min-height: 48px;
  }

  .analysis-modal .contact-form-actions {
    padding-top: 5px;
  }

  .analysis-modal .contact-submit {
    min-height: 44px;
    padding-right: 11px;
    padding-left: 11px;
  }

  .analysis-modal .contact-consent {
    margin-top: 4px;
    padding-top: 4px;
    font-size: .5rem;
    line-height: 1.22;
  }
}

@media (max-height: 520px) {
  .analysis-modal {
    max-height: calc(100svh - 12px);
    overflow-x: hidden;
  }

  .analysis-modal-card {
    max-height: calc(100svh - 12px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .analysis-modal-close {
    position: sticky;
    top: 0;
    right: auto;
    margin: 0 0 -42px auto;
  }
}

/* Shared UNITAX back-to-top control. */
.back-to-top {
  --scroll-progress: 0%;
  position: fixed;
  right: clamp(18px, 2vw, 28px);
  bottom: calc(clamp(18px, 2vw, 28px) + env(safe-area-inset-bottom));
  z-index: 76;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 3px;
  border: 0;
  border-radius: 16px;
  background: conic-gradient(#f37357 var(--scroll-progress), rgba(243, 115, 87, .22) 0);
  color: #b9f4ec;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .34);
  opacity: 0;
  pointer-events: none;
  isolation: isolate;
  cursor: pointer;
  transform: translateY(12px) scale(.96);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  transition: opacity .22s ease, transform .22s ease, color .18s ease, filter .18s ease;
}

.back-to-top::before {
  position: absolute;
  inset: 3px;
  z-index: 0;
  border: 1px solid rgba(185, 244, 236, .2);
  border-radius: 13px;
  background:
    radial-gradient(circle at 34% 24%, rgba(185, 244, 236, .18), transparent 44%),
    linear-gradient(180deg, rgba(8, 32, 28, .92), rgba(2, 18, 14, .96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
  content: "";
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  color: #fff;
  filter: saturate(1.16) brightness(1.06);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(3, 166, 166, .34);
  outline-offset: 4px;
}

.back-to-top svg {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

@media (max-width: 720px) {
  .back-to-top {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }

  .back-to-top::before {
    border-radius: 12px;
  }

  .back-to-top svg {
    width: 21px;
    height: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }
}
