:root {
  --ink: #17151d;
  --ink-soft: #413b4b;
  --paper: #fffdf9;
  --lavender: #f7f3fb;
  --lavender-strong: #e9e1f1;
  --magenta: #d92373;
  --magenta-dark: #a81454;
  --orange: #f29a2e;
  --orange-dark: #bd6416;
  --white: #ffffff;
  --line: rgba(23, 21, 29, 0.14);
  --line-strong: rgba(23, 21, 29, 0.28);
  --shadow: 0 24px 70px rgba(45, 22, 50, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --page-gutter: clamp(20px, 4vw, 64px);
  --content-width: 1280px;
  --header-height: 82px;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

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

body.nav-open {
  overflow: hidden;
}

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

button,
input,
a {
  font: inherit;
}

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

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

button {
  color: inherit;
}

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

::selection {
  background: var(--magenta);
  color: var(--white);
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  transition: transform 180ms ease;
}

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

.shell {
  width: min(100%, var(--content-width));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow img {
  width: 19px;
  height: 19px;
}

.section-title {
  max-width: 980px;
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(3rem, 8vw, 7.7rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.92;
  text-transform: uppercase;
}

.section-title .accent {
  color: var(--magenta);
}

.section-intro {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(23, 21, 29, 0.94);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--content-width));
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  min-height: 44px;
  color: var(--white);
  font-size: clamp(1.16rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 44px;
}

.brand-wordmark span:last-child {
  color: var(--magenta);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 38px);
}

.site-nav > a:not(.button) {
  position: relative;
  padding-block: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 500;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--orange);
  content: "";
  transition: transform 220ms ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button):focus-visible {
  color: var(--white);
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--magenta);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--magenta-dark);
}

.button img {
  width: 20px;
  height: 20px;
  filter: invert(1);
}

.button--light {
  background: var(--white);
  color: var(--ink);
}

.button--light:hover {
  background: var(--lavender-strong);
}

.button--light img {
  filter: none;
}

.button--outline {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.button--outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button.is-coming-soon {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  cursor: not-allowed;
}

.site-header .button {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.8rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: 860px;
  padding-top: calc(var(--header-height) + clamp(56px, 8vw, 118px));
  padding-bottom: clamp(72px, 9vw, 124px);
  overflow: hidden;
  background: var(--lavender);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(46px, 7vw, 112px);
}

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

.hero .eyebrow {
  color: var(--magenta-dark);
}

.hero-title {
  max-width: 840px;
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(5rem, 10.7vw, 10.7rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.83;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.hero-title span:last-child {
  color: var(--magenta);
}

.hero-lede {
  max-width: 670px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-status {
  max-width: 510px;
  margin: 16px 0 0;
  color: #655c70;
  font-size: 0.82rem;
}

.hero-arrow {
  position: absolute;
  z-index: 1;
  width: clamp(150px, 19vw, 290px);
  right: 44%;
  bottom: 12%;
  filter: invert(64%) sepia(91%) saturate(1458%) hue-rotate(341deg) brightness(101%) contrast(90%);
  transform: rotate(-14deg);
  transform-origin: center;
  opacity: 0.95;
}

.app-preview {
  position: relative;
  z-index: 3;
  width: min(100%, 430px);
  justify-self: end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 46px;
  background: var(--ink);
  box-shadow: var(--shadow);
  color: var(--white);
}

.app-preview-inner {
  min-height: 590px;
  padding: 24px;
  border-radius: 31px;
  background: var(--white);
  color: var(--ink);
}

.app-preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.app-preview .brand-wordmark {
  color: var(--ink);
  font-size: 1.05rem;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fce5ef;
  color: var(--magenta-dark);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.app-preview-copy {
  margin-top: 52px;
}

.app-preview-label {
  margin: 0;
  color: #756c7d;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-preview-amount {
  margin: 10px 0 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(4.4rem, 7vw, 6rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.app-preview-limit {
  margin: 8px 0 0;
  color: #756c7d;
  font-size: 0.82rem;
}

.app-preview-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.app-preview-option {
  padding: 17px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--lavender);
}

.app-preview-option strong,
.app-preview-option span {
  display: block;
}

.app-preview-option strong {
  font-size: 0.92rem;
}

.app-preview-option span {
  margin-top: 3px;
  color: #756c7d;
  font-size: 0.69rem;
}

.app-preview-confirm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  margin-top: 24px;
  padding: 12px 16px;
  border-radius: 18px;
  background: var(--magenta);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
}

.app-preview-confirm img {
  width: 22px;
  filter: invert(1);
}

.app-preview-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 18px 0 0;
  color: #756c7d;
  font-size: 0.7rem;
}

.app-preview-note img {
  width: 18px;
  height: 18px;
}

.proof-rail {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--ink);
  color: var(--white);
}

.proof-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: proof-march 32s linear infinite;
}

.proof-list {
  display: flex;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-item {
  display: flex;
  align-items: center;
  min-width: clamp(285px, 28vw, 410px);
  min-height: 112px;
  padding: 24px clamp(26px, 3.5vw, 54px);
  gap: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.proof-item img {
  width: 28px;
  height: 28px;
  filter: invert(66%) sepia(96%) saturate(1560%) hue-rotate(337deg) brightness(103%) contrast(90%);
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.proof-item span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
}

.steps,
.features,
.calculator,
.trust,
.faq,
.disclosure,
.final-cta {
  padding-block: clamp(88px, 11vw, 164px);
}

.steps {
  background: var(--paper);
}

.steps-header {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 40px;
}

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

.step-card {
  position: relative;
  min-height: 360px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  counter-increment: steps;
  overflow: hidden;
}

.step-card:nth-child(2) {
  margin-top: 44px;
  background: var(--magenta);
  color: var(--white);
}

.step-card:nth-child(3) {
  margin-top: 88px;
  background: var(--orange);
}

.step-card::after {
  position: absolute;
  right: 24px;
  bottom: 6px;
  color: rgba(23, 21, 29, 0.08);
  content: "0" counter(steps);
  font-family: "Anton", Impact, sans-serif;
  font-size: 8.5rem;
  line-height: 1;
}

.step-card:nth-child(2)::after {
  color: rgba(255, 255, 255, 0.13);
}

.icon-disc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--lavender);
}

.icon-disc img {
  width: 27px;
  height: 27px;
}

.step-card:nth-child(2) .icon-disc {
  background: rgba(255, 255, 255, 0.18);
}

.step-card:nth-child(2) .icon-disc img {
  filter: invert(1);
}

.step-card:nth-child(3) .icon-disc {
  background: rgba(255, 255, 255, 0.55);
}

.step-card h3 {
  position: relative;
  z-index: 2;
  margin: 92px 0 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.step-card p {
  position: relative;
  z-index: 2;
  max-width: 340px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.step-card:nth-child(2) p {
  color: var(--white);
}

.features {
  background: var(--lavender);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 72px;
}

.feature-card {
  grid-column: span 4;
  min-height: 380px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-md);
  background: var(--white);
}

.feature-card--wide {
  grid-column: span 8;
  background: var(--ink);
  color: var(--white);
}

.feature-card--magenta {
  background: var(--magenta);
  color: var(--white);
}

.feature-card--orange {
  background: var(--orange);
}

.feature-number {
  display: block;
  margin: 0 0 98px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.feature-card h3 {
  max-width: 700px;
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2.5rem, 5.8vw, 5.7rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.94;
  text-transform: uppercase;
}

.feature-card p {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.feature-card--wide p {
  color: rgba(255, 255, 255, 0.74);
}

.feature-card--magenta p {
  color: var(--white);
}

.calculator {
  background: var(--paper);
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(50px, 8vw, 118px);
  align-items: start;
}

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

.calculator-copy .section-title {
  font-size: clamp(3.7rem, 7.6vw, 7.2rem);
}

.calculator-panel {
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.calc-kicker {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.calc-label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 500;
}

.calc-amount {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(4.3rem, 8vw, 7rem);
  line-height: 1;
}

.calc-range {
  width: 100%;
  height: 6px;
  margin: 36px 0 22px;
  appearance: none;
  border-radius: 999px;
  background: var(--lavender-strong);
  accent-color: var(--magenta);
  cursor: pointer;
}

.calc-range::-webkit-slider-thumb {
  width: 26px;
  height: 26px;
  appearance: none;
  border: 6px solid var(--white);
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 0 3px var(--magenta);
}

.calc-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 6px solid var(--white);
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 0 3px var(--magenta);
}

.calc-bounds {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.7rem;
}

.term-group {
  margin-top: 42px;
  padding: 0;
  border: 0;
}

.term-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.term-button {
  min-height: 52px;
  padding: 10px 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: transparent;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.term-button:hover,
.term-button.is-active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.calc-result {
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.calc-result dl {
  display: grid;
  gap: 15px;
  margin: 0;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.calc-row dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.79rem;
}

.calc-row dd {
  margin: 0;
  text-align: right;
  font-size: 0.9rem;
  font-weight: 600;
}

.calc-row--total {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.calc-row--total dt,
.calc-row--total dd {
  color: var(--white);
  font-size: 1.06rem;
}

.calc-footnote {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.67rem;
  line-height: 1.6;
}

.trust {
  background: var(--magenta);
  color: var(--white);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(480px, 1.16fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: start;
}

.trust .section-title {
  font-size: clamp(3.9rem, 8vw, 8rem);
}

.trust .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.trust-copy > p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
}

.trust-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.09);
}

.trust-item img {
  width: 28px;
  height: 28px;
  filter: invert(1);
}

.trust-item h3 {
  margin: 0;
  font-size: 1rem;
}

.trust-item p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.66fr) minmax(0, 1.34fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 34px);
}

.faq-intro .section-title {
  font-size: clamp(4rem, 7.7vw, 7.2rem);
}

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

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

.faq-question {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 92px;
  padding: 24px 0;
  gap: 24px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-question span:first-child {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 600;
}

.faq-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  line-height: 34px;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--magenta);
  background: var(--magenta);
  color: var(--white);
}

.faq-answer {
  padding: 0 70px 28px 0;
}

.faq-answer p {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.disclosure {
  background: var(--paper);
}

.disclosure-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 7vw, 100px);
  padding: clamp(34px, 6vw, 74px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
}

.disclosure-title {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(3.5rem, 7vw, 6.8rem);
  font-weight: 400;
  line-height: 0.94;
  text-transform: uppercase;
}

.disclosure-title span {
  color: var(--magenta);
}

.disclosure-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.disclosure-stat {
  min-height: 160px;
  padding: 24px;
  border-radius: var(--radius-sm);
  background: var(--lavender);
}

.disclosure-stat strong,
.disclosure-stat span {
  display: block;
}

.disclosure-stat strong {
  margin-top: 34px;
  font-family: "Anton", Impact, sans-serif;
  font-size: 2.6rem;
  font-weight: 400;
}

.disclosure-stat span {
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.disclosure-copy {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--orange);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 44px;
}

.final-cta h2 {
  max-width: 880px;
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.86;
  text-transform: uppercase;
}

.final-cta-copy p {
  max-width: 600px;
  margin: 28px 0 0;
  color: rgba(23, 21, 29, 0.72);
}

.final-cta .button {
  min-height: 64px;
  padding-inline: 30px;
  background: var(--ink);
}

.site-footer {
  padding-block: 58px 34px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(2, minmax(180px, 0.8fr));
  gap: 50px;
}

.footer-brand p {
  max-width: 420px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}

.footer-column h2 {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy[data-reveal] {
  transition-delay: 80ms;
}

.app-preview[data-reveal] {
  transition-delay: 220ms;
}

@keyframes proof-march {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

  .site-nav > a:not(.button) {
    font-size: 0.8rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    gap: 40px;
  }

  .hero-arrow {
    right: 39%;
  }

  .app-preview-inner {
    min-height: 530px;
  }

  .feature-card {
    grid-column: span 6;
  }

  .feature-card--wide {
    grid-column: span 12;
  }

  .calculator-layout,
  .trust-layout {
    grid-template-columns: 1fr;
  }

  .calculator-copy,
  .faq-intro {
    position: static;
  }

  .trust-list {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
  }

  .site-header .header-store-link {
    display: none;
  }

  .js .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 34px var(--page-gutter);
    gap: 0;
    transform: translateX(0);
    background: var(--ink);
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
  }

  .js .site-nav {
    transform: translateX(100%);
  }

  .js .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav > a:not(.button) {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-family: "Anton", Impact, sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
  }

  .site-nav .button {
    margin-top: 28px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(5rem, 18vw, 8rem);
  }

  .hero-arrow {
    right: -40px;
    bottom: 47%;
  }

  .app-preview {
    width: min(100%, 520px);
    justify-self: center;
  }

  .steps-header,
  .faq-layout,
  .disclosure-panel,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

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

  .step-card,
  .step-card:nth-child(2),
  .step-card:nth-child(3) {
    min-height: 300px;
    margin-top: 0;
  }

  .step-card h3 {
    margin-top: 64px;
  }

  .calculator-layout {
    grid-template-columns: 1fr;
  }

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

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

  .final-cta-inner {
    align-items: start;
  }

  .final-cta .button {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: calc(var(--header-height) + 54px);
  }

  .hero-title {
    font-size: clamp(4.2rem, 22vw, 6.7rem);
    line-height: 0.86;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-arrow {
    display: none;
  }

  .app-preview {
    padding: 10px;
    border-radius: 34px;
  }

  .app-preview-inner {
    min-height: 500px;
    padding: 21px;
    border-radius: 25px;
  }

  .app-preview-copy {
    margin-top: 38px;
  }

  .app-preview-amount {
    font-size: 4.2rem;
  }

  .steps-grid,
  .feature-grid {
    margin-top: 46px;
  }

  .feature-grid {
    display: flex;
    width: calc(100% + var(--page-gutter));
    padding-right: var(--page-gutter);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .feature-grid::-webkit-scrollbar {
    display: none;
  }

  .feature-card,
  .feature-card--wide {
    flex: 0 0 84vw;
    min-height: 410px;
    scroll-snap-align: start;
  }

  .feature-number {
    margin-bottom: 76px;
  }

  .calculator-panel {
    padding: 28px 20px;
    border-radius: 28px;
  }

  .calc-amount {
    font-size: 4rem;
  }

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

  .disclosure-stats {
    grid-template-columns: 1fr;
  }

  .disclosure-stat {
    min-height: 120px;
  }

  .disclosure-stat strong {
    margin-top: 18px;
  }

  .faq-answer {
    padding-right: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

  .proof-track {
    width: auto;
    overflow-x: auto;
    animation: none;
  }

  .proof-list[aria-hidden="true"] {
    display: none;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Marcha homepage — cinematic motion direction */

.home-page {
  --scroll-progress: 0;
  background: var(--ink);
}

.home-page main {
  background: var(--paper);
}

.scroll-progress {
  position: fixed;
  z-index: 2200;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
  background: var(--orange);
  will-change: transform;
}

.home-page .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.16);
  background: rgba(17, 15, 22, 0.76);
  transition: height 360ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 360ms ease,
    box-shadow 360ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-page .site-header.is-scrolled {
  background: rgba(17, 15, 22, 0.96);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.home-page .site-header.is-scrolling-down {
  transform: translateY(-105%);
}

.home-page .site-header.is-scrolling-up {
  transform: translateY(0);
}

.js .home-page:not(.is-loaded) .site-header {
  transform: translateY(-105%);
}

.home-page .brand-wordmark {
  font-size: clamp(1.25rem, 2vw, 1.62rem);
}

.hero--cinematic {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: max(900px, 100svh);
  padding: 0;
  overflow: hidden;
  background: #111016;
  color: var(--white);
}

.hero-frame {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 0.67fr) minmax(320px, 0.33fr);
  align-items: center;
  min-height: max(900px, 100svh);
  padding-top: calc(var(--header-height) + 58px);
  padding-bottom: 150px;
}

.hero--cinematic .hero-copy {
  position: relative;
  z-index: 4;
  width: min(100%, 850px);
}

.hero--cinematic .eyebrow {
  margin-bottom: clamp(26px, 3.5vw, 46px);
  color: rgba(255, 255, 255, 0.72);
}

.hero--cinematic .eyebrow img {
  filter: invert(69%) sepia(93%) saturate(1844%) hue-rotate(336deg) brightness(103%) contrast(91%);
}

.hero--cinematic .hero-title {
  position: relative;
  z-index: 3;
  width: max-content;
  max-width: none;
  color: var(--white);
  font-size: clamp(7rem, 12.1vw, 11.4rem);
  letter-spacing: -0.045em;
  line-height: 0.77;
  text-shadow: 5px 5px 0 #111016, 0 18px 60px rgba(0, 0, 0, 0.42);
}

.hero-line {
  display: block;
  overflow: hidden;
  padding: 0.08em 0.05em 0.04em 0;
}

.hero-line > span {
  display: block;
  will-change: transform;
}

.hero--cinematic .hero-line--accent {
  color: #f22983;
}

.hero--cinematic .hero-line:not(.hero-line--accent) > span {
  color: var(--white);
}

.hero--cinematic .hero-lede {
  max-width: 520px;
  margin-top: clamp(30px, 3.6vw, 48px);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

.hero--cinematic .hero-lede strong {
  color: var(--white);
}

.hero--cinematic .hero-actions {
  margin-top: 32px;
}

.button--hero {
  min-height: 62px;
  padding-inline: 28px;
  background: var(--magenta);
  box-shadow: 0 18px 42px rgba(217, 35, 115, 0.32);
}

.button--ghost {
  min-height: 62px;
  padding-inline: 28px;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(17, 16, 22, 0.46);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button--ghost:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.button--ghost img {
  filter: invert(1);
}

.button--ghost:hover img {
  filter: none;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 520px;
  margin: 40px 0 0;
  padding: 21px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-metrics div {
  padding-right: 18px;
}

.hero-metrics div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-metrics dt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-metrics dd {
  margin: 7px 0 0;
  color: var(--white);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.95rem);
  letter-spacing: -0.015em;
  line-height: 1;
  text-transform: uppercase;
}

.hero--cinematic .hero-status {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-visual {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  width: 54%;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
  background: var(--magenta-dark);
  box-shadow: -32px 0 90px rgba(0, 0, 0, 0.42);
  transition: clip-path 1400ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 900ms ease;
  will-change: transform;
}

.js .home-page:not(.is-loaded) .hero-visual {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 92% 100%);
  opacity: 0;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  content: "";
  pointer-events: none;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 51% 48%;
  transform: scale(1.065);
  animation: hero-image-breathe 8s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
  will-change: transform;
}

.hero-visual figcaption {
  position: absolute;
  z-index: 3;
  top: calc(var(--header-height) + 34px);
  right: 30px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(17, 16, 22, 0.78);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-ghost {
  position: absolute;
  z-index: 3;
  right: -1.5vw;
  bottom: 72px;
  color: transparent;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(9rem, 19.2vw, 19rem);
  letter-spacing: -0.04em;
  line-height: 0.72;
  opacity: 0.2;
  pointer-events: none;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.76);
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 1400ms 500ms ease;
  will-change: transform;
}

.js .home-page:not(.is-loaded) .hero-ghost {
  opacity: 0;
}

.hero-side-note {
  position: absolute;
  z-index: 7;
  bottom: 72px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: rotate(-90deg);
  transform-origin: left center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-side-note img {
  width: 28px;
  filter: invert(1);
}

.hero-speed-lines {
  position: absolute;
  z-index: 6;
  right: 43.5%;
  bottom: 122px;
  display: grid;
  gap: 1px;
  transform: rotate(-8deg);
  pointer-events: none;
  will-change: transform;
}

.hero-speed-lines img {
  width: clamp(90px, 10vw, 154px);
  filter: invert(66%) sepia(98%) saturate(1496%) hue-rotate(337deg) brightness(102%) contrast(90%);
  animation: arrow-pulse 1.7s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.hero-speed-lines img:nth-child(2) {
  margin-left: 24px;
  animation-delay: 140ms;
}

.hero-speed-lines img:nth-child(3) {
  margin-left: 48px;
  animation-delay: 280ms;
}

.home-page .proof-rail {
  position: relative;
  z-index: 8;
  border: 0;
  background: var(--orange);
  color: var(--ink);
}

.home-page .proof-track {
  animation-duration: 20s;
}

.home-page .proof-item {
  min-height: 100px;
  border-right-color: rgba(23, 21, 29, 0.26);
}

.home-page .proof-item img {
  width: 34px;
  height: 34px;
  filter: none;
}

.home-page .proof-item strong {
  font-size: 2rem;
}

.home-page .proof-item span {
  color: var(--ink-soft);
}

.kinetic-band {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.24);
  background: var(--magenta);
  color: var(--white);
}

.kinetic-track {
  display: flex;
  width: max-content;
  animation: kinetic-run 18s linear infinite;
  will-change: transform;
}

.kinetic-track span {
  display: block;
  padding: 16px 2vw 12px;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(4rem, 8vw, 8rem);
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-page .steps {
  position: relative;
  overflow: hidden;
}

.home-page .step-card,
.home-page .feature-card,
.home-page .trust-item {
  transform-style: preserve-3d;
  will-change: transform;
}

.home-page .step-card {
  border-width: 2px;
  box-shadow: 0 24px 80px rgba(45, 22, 50, 0.08);
  transition: box-shadow 420ms ease, border-color 420ms ease;
}

.home-page .step-card:hover {
  border-color: var(--magenta);
  box-shadow: 0 34px 100px rgba(45, 22, 50, 0.2);
}

.home-page .feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 21, 29, 0.1);
  box-shadow: 0 28px 80px rgba(45, 22, 50, 0.08);
}

.home-page .feature-card h3,
.home-page .feature-card p,
.home-page .feature-number,
.home-page .step-card h3,
.home-page .step-card p,
.home-page .step-card .icon-disc,
.home-page .trust-item > * {
  transform: translateZ(24px);
}

.home-page .calculator-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 36px 120px rgba(34, 12, 34, 0.24);
}

.home-page .trust {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.home-page .trust .section-title {
  color: #f22983;
}

.home-page .trust-item {
  background: rgba(255, 255, 255, 0.07);
  transition: background-color 360ms ease, border-color 360ms ease;
}

.home-page .trust-item:hover {
  border-color: var(--orange);
  background: rgba(242, 154, 46, 0.12);
}

.home-page .final-cta {
  min-height: 680px;
  display: flex;
  align-items: center;
}

.home-page .final-cta h2 {
  font-size: clamp(5.5rem, 11vw, 11rem);
}

.js .home-page [data-reveal] {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 74px, 0) rotateX(5deg);
  transform-origin: center bottom;
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js .home-page [data-reveal].is-visible {
  opacity: 1;
  filter: none;
  transform: translate3d(0, 0, 0) rotateX(0);
}

.js .home-page .hero-copy[data-reveal] {
  opacity: 1;
  filter: none;
  transform: none;
}

.js .home-page .hero-copy .motion-item {
  opacity: 0;
  transform: translate3d(0, 58px, 0);
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1000ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js .home-page .hero-copy.is-visible .motion-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.js .home-page .hero-copy .eyebrow {
  transition-delay: 120ms;
}

.js .home-page .hero-copy .hero-line:first-child {
  transition-delay: 210ms;
}

.js .home-page .hero-copy .hero-line--accent {
  transition-delay: 320ms;
}

.js .home-page .hero-copy .hero-lede {
  transition-delay: 440ms;
}

.js .home-page .hero-copy .hero-actions {
  transition-delay: 540ms;
}

.js .home-page .hero-copy .hero-metrics {
  transition-delay: 630ms;
}

.js .home-page .hero-copy .hero-status {
  transition-delay: 710ms;
}

.js .home-page .hero-copy .hero-line > span {
  transform: translateY(112%);
  transition: transform 1150ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js .home-page .hero-copy.is-visible .hero-line > span {
  transform: translateY(0);
}

.js .home-page .step-card:nth-child(2),
.js .home-page .feature-card:nth-child(2),
.js .home-page .trust-item:nth-child(2) {
  transition-delay: 110ms;
}

.js .home-page .step-card:nth-child(3),
.js .home-page .feature-card:nth-child(3),
.js .home-page .trust-item:nth-child(3) {
  transition-delay: 220ms;
}

.js .home-page .feature-card:nth-child(4) {
  transition-delay: 330ms;
}

@keyframes hero-image-breathe {
  from {
    transform: scale(1.065) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.2%, -0.8%, 0);
  }
}

@keyframes arrow-pulse {
  0%,
  100% {
    opacity: 0.25;
    transform: translateX(-28px);
  }
  50% {
    opacity: 1;
    transform: translateX(16px);
  }
}

@keyframes kinetic-run {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (max-width: 1180px) {
  .hero-frame {
    grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.3fr);
  }

  .hero--cinematic .hero-title {
    font-size: clamp(6.2rem, 12.3vw, 9rem);
  }

  .hero-visual {
    width: 53%;
  }

  .hero-speed-lines {
    right: 40%;
  }
}

@media (max-width: 860px) {
  .home-page.nav-open .site-header {
    transform: none;
  }

  .home-page .site-nav {
    bottom: auto;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    overscroll-behavior: contain;
  }

  .hero--cinematic {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 0;
  }

  .hero-frame {
    order: 1;
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--header-height) + 58px);
    padding-bottom: 52px;
  }

  .hero--cinematic .hero-copy {
    width: 100%;
  }

  .hero--cinematic .hero-title {
    width: auto;
    font-size: clamp(5.3rem, 18.4vw, 8.6rem);
    line-height: 0.8;
  }

  .hero-visual {
    position: relative;
    inset: auto;
    order: 2;
    width: calc(100% - (var(--page-gutter) * 2));
    height: min(122vw, 760px);
    margin: 0 var(--page-gutter) 32px;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    border-radius: 28px;
  }

  .hero-visual > img {
    object-position: 50% 49%;
  }

  .hero-visual figcaption {
    top: 26px;
    right: 24px;
  }

  .hero-ghost {
    z-index: 3;
    right: -10px;
    bottom: 36px;
    font-size: 26vw;
  }

  .hero-side-note {
    display: none;
  }

  .hero-speed-lines {
    z-index: 7;
    right: 4vw;
    bottom: 72px;
  }
}

@media (max-width: 620px) {
  .hero-frame {
    padding-top: calc(var(--header-height) + 48px);
    padding-bottom: 38px;
  }

  .hero--cinematic .eyebrow {
    margin-bottom: 24px;
    font-size: 0.68rem;
  }

  .hero--cinematic .hero-title {
    font-size: clamp(4.1rem, 18.2vw, 5.5rem);
    line-height: 0.82;
  }

  .hero--cinematic .hero-line > span {
    white-space: nowrap;
  }

  .hero--cinematic .hero-lede {
    margin-top: 22px;
    font-size: 0.96rem;
  }

  .hero--cinematic .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .hero--cinematic .hero-actions .button {
    min-height: 56px;
  }

  .hero-metrics {
    gap: 0;
    margin-top: 24px;
    padding-top: 16px;
  }

  .hero-metrics div {
    padding-right: 10px;
  }

  .hero-metrics div + div {
    padding-left: 10px;
  }

  .hero-metrics dt {
    font-size: 0.52rem;
    letter-spacing: 0.11em;
  }

  .hero-metrics dd {
    font-size: clamp(1rem, 4.7vw, 1.3rem);
  }

  .hero-visual {
    height: 132vw;
    max-height: 690px;
    margin-top: -8px;
    border-radius: 22px;
  }

  .hero--cinematic .hero-status {
    display: none;
  }

  .hero-visual figcaption {
    top: 22px;
    right: 18px;
    gap: 13px;
    font-size: 0.48rem;
  }

  .hero-speed-lines img {
    width: 78px;
  }

  .home-page .proof-item {
    min-width: 270px;
  }

  .kinetic-track span {
    padding-block: 13px 9px;
    font-size: 3.6rem;
  }

  .home-page .final-cta {
    min-height: 620px;
  }

  .home-page .final-cta h2 {
    font-size: clamp(4.5rem, 19vw, 6.2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .hero-visual > img,
  .home-page .hero-speed-lines img,
  .home-page .kinetic-track {
    animation: none !important;
  }

  .js .home-page [data-reveal],
  .js .home-page .hero-copy .motion-item,
  .js .home-page .hero-copy .hero-line > span {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .home-page [data-parallax],
  .home-page [data-scrub],
  .home-page [data-tilt],
  .home-page [data-magnetic] {
    transform: none !important;
  }
}
