:root {
  --ink: #111827;
  --ink-soft: #354056;
  --paper: #f8f7f2;
  --white: #ffffff;
  --lime: #b9ff66;
  --lime-deep: #8fdf35;
  --violet: #c9b9ff;
  --violet-deep: #7657e8;
  --peach: #ffcfad;
  --blue: #4777ff;
  --line: rgba(17, 24, 39, 0.14);
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.14);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter,
    Manrope,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-180%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  border-color: var(--line);
  background: rgba(248, 247, 242, 0.94);
  box-shadow: 0 8px 30px rgba(17, 24, 39, 0.06);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.075em;
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  overflow: visible;
  fill: var(--ink);
}

.brand-mark__line {
  fill: none;
  stroke: var(--lime);
  stroke-width: 3;
  stroke-linecap: round;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover {
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.16);
  transform: translateY(-2px);
}

.button svg,
.text-link svg,
.mobile-sticky-cta svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 13px;
}

.button--large {
  min-height: 58px;
  padding: 16px 26px;
  font-size: 16px;
}

.button--primary {
  border-color: var(--ink);
  background: var(--ink);
}

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

.button--lime {
  border-color: var(--lime);
  color: var(--ink);
  background: var(--lime);
}

.button--lime:hover {
  background: #c7ff83;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 180ms ease;
}

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

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

.mobile-menu {
  padding: 10px 24px 24px;
  background: var(--paper);
}

.mobile-menu nav {
  display: grid;
  gap: 4px;
}

.mobile-menu nav > a:not(.button) {
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu .button {
  margin-top: 14px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 44px;
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(185, 255, 102, 0.16),
      transparent 28%
    ),
    linear-gradient(180deg, #fbfaf6 0%, var(--paper) 100%);
}

.hero-orb {
  position: absolute;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb--one {
  top: 70px;
  left: -210px;
  width: 430px;
  height: 430px;
}

.hero-orb--two {
  right: -100px;
  bottom: 100px;
  width: 240px;
  height: 240px;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 610px;
  align-items: center;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  gap: 68px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 30px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime-deep);
  box-shadow: 0 0 0 4px rgba(143, 223, 53, 0.16);
}

.hero h1 {
  max-width: 680px;
  margin: 23px 0 22px;
  font-size: clamp(54px, 5.2vw, 82px);
  font-weight: 880;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.scribble {
  position: relative;
  z-index: 0;
  display: inline-block;
}

.scribble::after {
  position: absolute;
  z-index: -1;
  right: -7px;
  bottom: -3px;
  left: -6px;
  height: 24px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
  transform: rotate(-2deg) skewX(-15deg);
}

.hero-lead {
  max-width: 610px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.58;
}

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

.hero-note {
  max-width: 140px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.hero-checks svg,
.answer svg {
  width: 19px;
  height: 19px;
  padding: 3px;
  border-radius: 50%;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: var(--lime);
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 610px;
  place-items: center;
}

.visual-backdrop {
  position: absolute;
  width: min(100%, 510px);
  height: 540px;
  border-radius: 52% 48% 36% 64% / 45% 41% 59% 55%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 46%),
    var(--violet);
  transform: rotate(-4deg);
}

.visual-backdrop::before {
  position: absolute;
  top: 45px;
  right: 28px;
  width: 62px;
  height: 62px;
  border: 12px solid var(--lime);
  border-radius: 50%;
  content: "";
}

.visual-backdrop::after {
  position: absolute;
  bottom: 42px;
  left: 22px;
  width: 90px;
  height: 16px;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  content: "";
  transform: rotate(-18deg);
}

.phone {
  position: relative;
  z-index: 2;
  width: 328px;
  min-height: 570px;
  overflow: hidden;
  border: 8px solid var(--ink);
  border-radius: 42px;
  background: #f6f7fa;
  box-shadow: 0 32px 80px rgba(17, 24, 39, 0.32);
  transform: rotate(2deg);
}

.phone-speaker {
  position: absolute;
  z-index: 4;
  top: 8px;
  left: 50%;
  width: 70px;
  height: 18px;
  border-radius: 20px;
  background: var(--ink);
  transform: translateX(-50%);
}

.phone-bar {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  padding: 25px 18px 12px;
  color: var(--white);
  background: var(--ink);
}

.phone-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.mini-mark {
  display: grid;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: var(--ink);
  background: var(--lime);
  font-size: 14px;
  font-weight: 900;
  place-items: center;
}

.phone-brand div {
  display: grid;
}

.phone-brand b {
  font-size: 12px;
  letter-spacing: 0.09em;
}

.phone-brand small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
}

.phone-more {
  letter-spacing: 2px;
}

.phone-content {
  padding: 19px 16px 24px;
}

.progress-row {
  display: flex;
  justify-content: space-between;
  color: #687084;
  font-size: 10px;
  font-weight: 700;
}

.progress-row b {
  color: var(--ink);
}

.progress {
  height: 5px;
  margin-top: 7px;
  overflow: hidden;
  border-radius: 10px;
  background: #dfe3ea;
}

.progress i {
  display: block;
  width: 50%;
  height: 100%;
  border-radius: inherit;
  background: var(--violet-deep);
}

.message {
  border-radius: 18px;
  font-size: 11px;
  line-height: 1.45;
}

.message--bot {
  margin: 18px 0 12px;
  padding: 17px;
  border-bottom-left-radius: 5px;
  color: var(--white);
  background: var(--ink);
}

.message-label {
  display: block;
  margin-bottom: 11px;
  color: var(--lime);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.message strong {
  display: block;
  font-size: 13px;
  line-height: 1.42;
}

.message p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.answer {
  display: grid;
  width: 100%;
  min-height: 51px;
  align-items: center;
  grid-template-columns: 27px 1fr auto;
  gap: 9px;
  margin-top: 8px;
  padding: 9px 10px;
  border: 1px solid #d9dee8;
  border-radius: 14px;
  color: #5a6376;
  background: var(--white);
  font-size: 9.5px;
  font-weight: 650;
  text-align: left;
}

.answer > span {
  display: grid;
  width: 27px;
  height: 27px;
  border-radius: 9px;
  color: var(--ink);
  background: #eef0f5;
  font-size: 10px;
  font-weight: 850;
  place-items: center;
}

.answer--selected {
  border-color: var(--violet-deep);
  color: var(--ink);
  box-shadow: 0 0 0 2px rgba(118, 87, 232, 0.1);
}

.answer--selected > span {
  color: var(--white);
  background: var(--violet-deep);
}

.answer svg {
  width: 18px;
  height: 18px;
}

.message--success {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(76, 150, 25, 0.18);
  border-bottom-right-radius: 5px;
  color: #476236;
  background: #eaffd7;
}

.message--success span {
  display: block;
  color: #304b1b;
  font-weight: 850;
}

.float-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.14);
  font-size: 12px;
  font-weight: 800;
}

.float-chip--top {
  top: 88px;
  left: -8px;
}

.float-chip--bottom {
  right: -2px;
  bottom: 64px;
}

.float-chip__icon {
  display: grid;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 11px;
  place-items: center;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #30b969;
  box-shadow: 0 0 0 5px rgba(48, 185, 105, 0.14);
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 2fr;
  gap: 35px;
  padding: 24px 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
}

.trust-strip > p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.trust-items span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
}

.trust-items i {
  color: var(--violet-deep);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.section {
  padding: 116px 0;
}

.section-heading--split {
  display: grid;
  align-items: end;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 80px;
}

.section-heading h2,
.steps-copy h2,
.fit-copy h2,
.transparency-card h2,
.faq-heading h2,
.application-heading h2,
.legal-page h1,
.legal-page h2 {
  margin: 16px 0 0;
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.section-heading--split > p {
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.feature-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: var(--radius-md);
}

.feature-card::after {
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 50%;
  content: "";
}

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

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

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

.feature-icon {
  display: grid;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
  place-items: center;
}

.feature-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-number {
  position: absolute;
  top: 31px;
  right: 30px;
  font-size: 12px;
  font-weight: 900;
}

.feature-card h3 {
  max-width: 280px;
  margin: 82px 0 13px;
  font-size: 25px;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.feature-card p {
  position: relative;
  z-index: 1;
  max-width: 300px;
  margin: 0;
  color: rgba(17, 24, 39, 0.73);
  font-size: 14px;
}

.steps-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.steps-section::before {
  position: absolute;
  top: -260px;
  left: -160px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.steps-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 105px;
}

.steps-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.kicker--light {
  color: var(--lime);
}

.steps-copy h2 {
  font-size: clamp(42px, 4.3vw, 62px);
}

.steps-copy > p {
  margin: 25px 0 32px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.75;
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  min-height: 178px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.step:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.step-number {
  display: grid;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  color: var(--ink);
  background: var(--lime);
  font-size: 14px;
  font-weight: 900;
  place-items: center;
}

.step:nth-child(2) .step-number {
  background: var(--violet);
}

.step:nth-child(3) .step-number {
  background: var(--peach);
}

.step:nth-child(4) .step-number {
  background: var(--white);
}

.step h3 {
  margin: 3px 0 10px;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.step p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.fit-section {
  background: var(--white);
}

.fit-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 110px;
}

.fit-visual {
  position: relative;
  min-height: 580px;
}

.fit-visual::before {
  position: absolute;
  inset: 18px 26px 0 0;
  border-radius: 42% 58% 54% 46% / 42% 43% 57% 58%;
  background: var(--peach);
  content: "";
  transform: rotate(3deg);
}

.window-card {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 410px;
  max-width: 88%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%) rotate(-2deg);
}

.window-top {
  display: flex;
  gap: 6px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.window-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9dde5;
}

.window-top span:first-child {
  background: var(--peach);
}

.window-top span:nth-child(2) {
  background: var(--lime);
}

.window-top span:last-child {
  background: var(--violet);
}

.window-body {
  padding: 30px;
}

.window-label {
  color: var(--violet-deep);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.window-body h3 {
  margin: 9px 0 26px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.skill-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.skill-row i {
  position: relative;
  height: 7px;
  overflow: hidden;
  border-radius: 10px;
  background: #e8eaf0;
}

.skill-row i::after {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: var(--violet-deep);
  content: "";
}

.window-tip {
  display: grid;
  align-items: center;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  margin-top: 30px;
  padding: 14px;
  border-radius: 16px;
  background: #efffdc;
}

.window-tip svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.window-tip p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.45;
}

.shape {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.15);
  font-size: 30px;
  place-items: center;
}

.shape--asterisk {
  top: 55px;
  right: 2px;
  background: var(--lime);
  transform: rotate(8deg);
}

.shape--arrow {
  bottom: 60px;
  left: 0;
  color: var(--white);
  background: var(--ink);
  transform: rotate(-7deg);
}

.fit-copy h2 {
  max-width: 650px;
}

.fit-copy > p:not(.fine-print) {
  max-width: 620px;
  margin: 26px 0 32px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.fit-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-list li {
  display: grid;
  align-items: center;
  grid-template-columns: 45px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.fit-list li:first-child {
  border-top: 1px solid var(--line);
}

.fit-list span {
  color: var(--violet-deep);
  font-size: 11px;
  font-weight: 900;
}

.fine-print {
  margin: 22px 0 0;
  color: #717887;
  font-size: 11px;
  line-height: 1.55;
}

.transparency-section {
  padding-top: 0;
  background: var(--white);
}

.transparency-card {
  display: grid;
  align-items: center;
  grid-template-columns: 86px 1.05fr 0.95fr;
  gap: 32px;
  padding: 46px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: var(--radius-lg);
  background: var(--lime);
}

.transparency-icon {
  display: grid;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(17, 24, 39, 0.15);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.4);
  place-items: center;
}

.transparency-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.transparency-card h2 {
  max-width: 540px;
  margin-top: 10px;
  font-size: clamp(30px, 3.3vw, 46px);
}

.transparency-card > p {
  margin: 0;
  color: rgba(17, 24, 39, 0.72);
  font-size: 14px;
  line-height: 1.75;
}

.faq-section {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}

.faq-heading {
  position: sticky;
  top: 130px;
}

.faq-heading > p {
  margin: 22px 0 18px;
  color: var(--ink-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--violet-deep);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.text-link svg {
  width: 18px;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

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

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

.accordion-item h3 {
  margin: 0;
}

.accordion-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 20px;
  font-weight: 780;
  text-align: left;
  cursor: pointer;
}

.accordion-item button span {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.accordion-item button span::before,
.accordion-item button span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
}

.accordion-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.accordion-item button[aria-expanded="true"] span {
  background: var(--lime);
  transform: rotate(180deg);
}

.accordion-item button[aria-expanded="true"] span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-panel {
  overflow: hidden;
  padding: 0 62px 28px 0;
}

.accordion-panel p {
  max-width: 640px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.application-section {
  position: relative;
  overflow: hidden;
  padding-top: 32px;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(201, 185, 255, 0.24),
      transparent 25%
    ),
    radial-gradient(
      circle at 88% 80%,
      rgba(185, 255, 102, 0.22),
      transparent 27%
    ),
    var(--paper);
}

.application-section::before {
  position: absolute;
  top: 80px;
  right: -130px;
  width: 300px;
  height: 300px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.application-wrap {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.application-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.application-heading h2 {
  margin-top: 14px;
  font-size: clamp(42px, 5vw, 64px);
}

.application-heading p {
  max-width: 590px;
  margin: 20px auto 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.application-form {
  position: relative;
  display: grid;
  gap: 19px;
  padding: 48px;
  border: 1px solid rgba(17, 24, 39, 0.09);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.1);
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field > span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.form-field b {
  color: #d44b4b;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(17, 24, 39, 0.16);
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.form-field input {
  min-height: 56px;
  padding: 0 16px;
}

.form-field textarea {
  min-height: 132px;
  padding: 16px;
  line-height: 1.55;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #8d94a2;
}

.form-field input:hover,
.form-field textarea:hover {
  border-color: rgba(17, 24, 39, 0.32);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--violet-deep);
  box-shadow: 0 0 0 4px rgba(118, 87, 232, 0.12);
}

.consent-field {
  display: grid;
  align-items: start;
  grid-template-columns: 22px 1fr;
  gap: 11px;
  margin-top: 2px;
  color: #666f80;
  font-size: 11px;
  line-height: 1.55;
  cursor: pointer;
}

.consent-field input {
  width: 19px;
  height: 19px;
  margin: 1px 0 0;
  accent-color: var(--violet-deep);
}

.consent-field a {
  color: var(--violet-deep);
  font-weight: 750;
  text-underline-offset: 3px;
}

.form-submit {
  width: min(100%, 280px);
  margin: 10px auto 0;
}

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

.form-status {
  min-height: 22px;
  margin: 0;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.form-status:not(:empty) {
  padding: 12px 14px;
}

.form-status--loading {
  color: #56448e;
  background: #f1edff;
}

.form-status--success {
  color: #355b1c;
  background: #efffdc;
}

.form-status--error {
  color: #8a3434;
  background: #fff0f0;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding: 30px 0 24px;
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 60px;
  padding: 55px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.footer-grid > div:first-child p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.footer-grid nav,
.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-grid nav a,
.footer-links a {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.footer-grid nav a:hover,
.footer-links a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: #777e8c;
  font-size: 10px;
}

.mobile-sticky-cta {
  display: none;
}

.noscript {
  position: fixed;
  z-index: 200;
  right: 16px;
  bottom: 16px;
  max-width: 420px;
  padding: 14px 18px;
  border-radius: 14px;
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
}

.legal-page-wrap {
  min-height: 100vh;
  padding: 135px 0 90px;
  background: var(--white);
}

.legal-page {
  max-width: 820px;
}

.legal-page h1 {
  margin-bottom: 18px;
}

.legal-page h2 {
  margin-top: 50px;
  font-size: 27px;
}

.legal-page p,
.legal-page li {
  color: var(--ink-soft);
}

.legal-page .legal-alert {
  margin: 30px 0;
  padding: 20px 22px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 16px;
  background: #efffdc;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--violet-deep);
  font-weight: 750;
  text-decoration: none;
}

.legal-back:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.js .reveal--delay {
  transition-delay: 110ms;
}

.js .reveal--delay-2 {
  transition-delay: 220ms;
}

@media (max-width: 1050px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
    gap: 32px;
  }

  .float-chip--top {
    left: -4px;
  }

  .float-chip--bottom {
    right: -4px;
  }

  .section-heading--split {
    gap: 40px;
  }

  .steps-layout,
  .faq-layout {
    gap: 60px;
  }

  .fit-grid {
    gap: 55px;
  }

  .transparency-card {
    grid-template-columns: 76px 1fr;
  }

  .transparency-card > p {
    grid-column: 2;
  }
}

@media (max-width: 860px) {
  .header-cta,
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding-top: 126px;
  }

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

  .hero-copy {
    max-width: 720px;
    padding-bottom: 0;
  }

  .hero-visual {
    min-height: 620px;
  }

  .visual-backdrop {
    width: 510px;
    max-width: 90%;
  }

  .float-chip--top {
    left: 12%;
  }

  .float-chip--bottom {
    right: 10%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading--split,
  .fit-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .section-heading--split > p {
    max-width: 620px;
  }

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

  .feature-card {
    min-height: 310px;
  }

  .feature-card h3 {
    margin-top: 58px;
  }

  .steps-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .steps-copy,
  .faq-heading {
    position: static;
  }

  .steps-copy > p {
    max-width: 620px;
  }

  .fit-visual {
    min-height: 520px;
    order: 2;
  }

  .fit-copy {
    order: 1;
  }

  .transparency-card {
    grid-template-columns: 70px 1fr;
    padding: 36px;
  }

  .transparency-icon {
    width: 66px;
    height: 66px;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  :root {
    --radius-lg: 26px;
    --radius-md: 20px;
  }

  html {
    scroll-padding-top: 76px;
  }

  body {
    padding-bottom: 72px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand {
    font-size: 17px;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

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

  .hero-grid {
    min-height: auto;
  }

  .eyebrow {
    align-items: flex-start;
    border: 0;
    padding: 0;
    background: transparent;
    line-height: 1.35;
  }

  .eyebrow-dot {
    flex: 0 0 auto;
    margin-top: 4px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(43px, 13.8vw, 62px);
    line-height: 1;
  }

  .scribble::after {
    bottom: -1px;
    height: 17px;
  }

  .hero-lead {
    font-size: 16px;
  }

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

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

  .hero-note {
    max-width: none;
    text-align: center;
  }

  .hero-checks {
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-visual {
    min-height: 520px;
    margin-top: 4px;
  }

  .visual-backdrop {
    width: 350px;
    height: 430px;
  }

  .phone {
    width: 275px;
    min-height: 475px;
    border-width: 7px;
    border-radius: 35px;
    transform: rotate(1deg) scale(0.94);
  }

  .phone-bar {
    min-height: 68px;
    padding-top: 22px;
  }

  .phone-content {
    padding: 14px 13px 18px;
  }

  .message--bot {
    margin-top: 14px;
    padding: 13px;
  }

  .message strong {
    font-size: 11.5px;
  }

  .message p {
    margin-top: 7px;
  }

  .answer {
    min-height: 44px;
  }

  .message--success {
    margin-top: 9px;
    padding: 9px 11px;
    font-size: 9.5px;
  }

  .float-chip {
    padding: 9px 11px;
    font-size: 10px;
  }

  .float-chip--top {
    top: 54px;
    left: 0;
  }

  .float-chip--bottom {
    right: 0;
    bottom: 40px;
  }

  .trust-strip {
    padding: 22px;
  }

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

  .section {
    padding: 82px 0;
  }

  .section-heading h2,
  .steps-copy h2,
  .fit-copy h2,
  .faq-heading h2,
  .application-heading h2,
  .legal-page h1 {
    font-size: 39px;
  }

  .section-heading h2 br {
    display: none;
  }

  .section-heading--split {
    gap: 27px;
  }

  .section-heading--split > p,
  .fit-copy > p:not(.fine-print) {
    font-size: 15px;
  }

  .feature-grid {
    margin-top: 38px;
  }

  .feature-card {
    min-height: 300px;
    padding: 24px;
  }

  .feature-card h3 {
    margin-top: 48px;
    font-size: 23px;
  }

  .steps-layout {
    gap: 45px;
  }

  .steps-copy h2 {
    margin-top: 13px;
  }

  .steps-copy .button {
    width: 100%;
  }

  .step {
    grid-template-columns: 50px 1fr;
    gap: 15px;
    min-height: 160px;
    padding: 24px 0;
  }

  .step-number {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 11px;
  }

  .step h3 {
    margin-top: 0;
    font-size: 20px;
  }

  .fit-visual {
    min-height: 460px;
  }

  .fit-visual::before {
    inset: 18px 0 0;
  }

  .window-card {
    width: 340px;
    max-width: 92%;
  }

  .window-body {
    padding: 22px;
  }

  .window-body h3 {
    font-size: 23px;
  }

  .skill-row {
    grid-template-columns: 1fr 85px;
    gap: 10px;
  }

  .shape {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    font-size: 22px;
  }

  .shape--asterisk {
    right: -2px;
  }

  .shape--arrow {
    left: -2px;
  }

  .fit-list li {
    align-items: start;
    grid-template-columns: 36px 1fr;
    font-size: 14px;
  }

  .transparency-section {
    padding-top: 0;
  }

  .transparency-card {
    display: block;
    padding: 28px 24px;
  }

  .transparency-icon {
    margin-bottom: 28px;
  }

  .transparency-card h2 {
    font-size: 31px;
  }

  .transparency-card > p {
    margin-top: 20px;
    font-size: 13px;
  }

  .faq-layout {
    gap: 38px;
  }

  .accordion-item button {
    padding: 22px 0;
    font-size: 17px;
  }

  .accordion-panel {
    padding-right: 0;
  }

  .accordion-panel p {
    font-size: 14px;
  }

  .application-section {
    padding-top: 16px;
  }

  .application-heading {
    margin-bottom: 30px;
  }

  .application-heading h2 {
    font-size: 38px;
  }

  .application-heading p {
    font-size: 14px;
  }

  .application-form {
    gap: 17px;
    padding: 26px 20px;
    border-radius: 22px;
  }

  .form-field input {
    min-height: 54px;
  }

  .form-submit {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 44px 0;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: var(--ink);
    background: var(--lime);
    box-shadow: 0 14px 35px rgba(17, 24, 39, 0.28);
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
  }

  .mobile-sticky-cta svg {
    width: 19px;
  }

  .legal-page-wrap {
    padding: 105px 0 70px;
  }

  .legal-page h2 {
    font-size: 24px;
  }
}

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

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