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

:root {
  --paper: oklch(0.987 0.0015 75);
  --paper-2: oklch(0.957 0.0028 75);
  --paper-3: oklch(0.93 0.004 75);
  --ink: oklch(0.18 0.004 75);
  --ink-soft: oklch(0.46 0.005 75);
  --ink-faint: oklch(0.64 0.006 75);
  --on-ink: oklch(0.965 0.002 75);
  --dark: oklch(0.145 0.005 75);
  --pad-x: clamp(1.75rem, 7vw, 8rem);
  --sec: clamp(6rem, 13vw, 13rem);
  --maxw: 1320px;
  --navh: clamp(78px, 9vh, 108px);
  --gap: clamp(18px, 2.4vw, 38px);
  --ease: cubic-bezier(.22, .7, .16, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: "Switzer", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 500;
  line-height: 1.05;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

main {
  min-height: 100vh;
}

.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.eyebrow,
.note,
.num,
.trust-line,
.form-note {
  color: var(--ink-soft);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .05em;
}

.btn,
.lnk {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .05em;
  transition: background .3s var(--ease), color .3s var(--ease), gap .35s var(--ease);
}

.btn {
  padding: 1.1em 1.8em;
  color: var(--on-ink);
  background: var(--ink);
  cursor: pointer;
}

.btn:hover {
  background: oklch(0.26 0.006 75);
}

.btn.light {
  color: var(--ink);
  background: var(--on-ink);
}

.btn.light:hover {
  background: #fff;
}

.lnk:hover,
.btn:hover {
  gap: .95em;
}

.ar {
  display: inline-block;
  transition: transform .35s var(--ease);
}

.btn:hover .ar,
.lnk:hover .ar {
  transform: translateX(.22em);
}

.rv {
  transition: opacity 1s var(--ease), transform 1.15s var(--ease);
}

.js .rv {
  opacity: 0;
  transform: translateY(10px);
}

.rv.in {
  opacity: 1;
  transform: none;
}

.rv.d1 {
  transition-delay: .09s;
}

.rv.d2 {
  transition-delay: .2s;
}

.rv.d3 {
  transition-delay: .32s;
}

header.site {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in oklch, var(--paper) 80%, transparent);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  backdrop-filter: blur(16px) saturate(1.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navh);
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  width: auto;
  height: clamp(18px, 2.1vw, 24px);
}

nav.menu {
  display: flex;
  gap: clamp(18px, 2.6vw, 40px);
  align-items: center;
}

nav.menu a,
.nav-cta {
  position: relative;
  color: var(--ink-soft);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .05em;
  white-space: nowrap;
  transition: color .3s var(--ease);
}

nav.menu a:hover,
.nav-cta,
.nav-cta:hover {
  color: var(--ink);
}

nav.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}

nav.menu a:hover::after {
  transform: scaleX(1);
}

.nav-burger {
  display: none;
  position: fixed;
  top: 0;
  right: calc(var(--pad-x) - 10px);
  z-index: 45;
  width: 44px;
  height: var(--navh);
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-burger span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 25px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform .45s var(--ease), margin-top .45s var(--ease);
}

.nav-burger span:nth-child(1) {
  margin-top: -3.5px;
}

.nav-burger span:nth-child(2) {
  margin-top: 3.5px;
}

.nav-burger.open span:nth-child(1) {
  margin-top: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  margin-top: 0;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.m-nav {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(96px, 16vh, 150px) clamp(40px, 8vh, 64px);
  padding-inline: var(--pad-x);
  visibility: hidden;
  background: var(--paper);
  opacity: 0;
  transition: opacity .5s var(--ease), visibility .5s;
}

.m-nav.open {
  visibility: visible;
  opacity: 1;
}

.m-links {
  display: flex;
  flex-direction: column;
  gap: clamp(.4rem, 2vh, 1rem);
}

.m-links a {
  color: var(--ink-soft);
  font-size: clamp(2rem, 8.5vw, 3.1rem);
  font-weight: 500;
  line-height: 1.05;
  opacity: 0;
  transform: translateY(8px);
  transition: color .3s var(--ease), opacity .55s var(--ease), transform .55s var(--ease);
}

.m-links a:hover {
  color: var(--ink);
}

.m-cta {
  display: inline-flex;
  margin-top: clamp(2rem, 5.5vh, 3.4rem);
  color: var(--ink);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .05em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}

.m-nav.open .m-links a,
.m-nav.open .m-cta {
  opacity: 1;
  transform: none;
}

body.nav-open {
  overflow: hidden;
}

.lp-hero {
  position: relative;
  isolation: isolate;
  padding-top: clamp(3.5rem, 7vw, 7rem);
  padding-bottom: var(--sec);
}

.modfield {
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: min(78vh, 820px);
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 52%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 52%, transparent 100%);
}

.modfield i {
  position: absolute;
  width: 7px;
  height: 7px;
  background: color-mix(in srgb, var(--ink), transparent 93%);
  transform: translate(-50%, -50%) scale(1);
  transition: transform .4s var(--ease);
}

.lp-hero-copy {
  max-width: 1020px;
  margin-inline: auto;
  text-align: center;
}

.lp-hero-copy .eyebrow {
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}

.lp-hero h1 {
  max-width: 22ch;
  margin-inline: auto;
  font-size: clamp(2.55rem, 5.3vw, 4.8rem);
}

.lp-hero .lead {
  max-width: 54ch;
  margin: clamp(1.6rem, 2.6vw, 2.2rem) auto 0;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 3.4vw, 2.8rem);
}

.trust-line {
  max-width: 70ch;
  margin: clamp(1.3rem, 2.4vw, 1.8rem) auto 0;
  line-height: 1.5;
}

.hero-image {
  position: relative;
  width: 75vw;
  margin: clamp(3rem, 6vw, 6rem) auto 0;
  overflow: hidden;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.16);
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: clamp(420px, 72vh, 820px);
  object-fit: cover;
}

.belief-sec,
.promises-sec,
.steps-sec,
.proof-sec,
.faq-sec,
.contact-sec {
  padding-bottom: var(--sec);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: center;
}

.split .txt h2 {
  max-width: 14ch;
  margin-top: .8rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.split .txt p:not(.eyebrow) {
  max-width: 56ch;
  margin-top: 1.25rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.6;
}

.split .img {
  overflow: hidden;
}

.split .img img {
  width: 100%;
  height: clamp(420px, 62vh, 720px);
  object-fit: cover;
}

.head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.head h2 {
  max-width: 18ch;
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
}

.head .note {
  max-width: 34ch;
  text-align: right;
  line-height: 1.5;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap);
}

.promise {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(1.35rem, 2.25vw, 1.85rem) clamp(1.15rem, 1.75vw, 1.6rem);
  background: var(--paper-2);
}

.promise .num {
  display: block;
  margin-bottom: clamp(1.65rem, 3vw, 2.7rem);
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
}

.promise h3 {
  font-size: clamp(1.32rem, 1.95vw, 1.72rem);
  line-height: 1.06;
}

.promise p {
  margin-top: .85rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.steps.flow {
  display: flex;
  flex-direction: column;
}

.steps.flow .step {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: baseline;
  padding-block: clamp(1.6rem, 3vw, 2.6rem);
}

.steps.flow .step h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
}

.steps.flow .step p {
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.trust {
  padding-block: clamp(4rem, 7vw, 6rem);
  background: var(--paper-2);
}

.proof-sec .head {
  margin-bottom: clamp(2.6rem, 4vw, 3.5rem);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
}

.stat .v {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat .k {
  margin-top: .7rem;
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.45;
}

.section-cta {
  margin-top: clamp(1.8rem, 3.2vw, 2.8rem);
}

.faq details {
  padding: clamp(1.3rem, 2vw, 1.7rem) clamp(.4rem, 1vw, 1rem);
}

.faq details + details {
  margin-top: .4rem;
}

.faq summary {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  color: var(--ink-faint);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
  transition: transform .3s var(--ease);
}

.faq details[open] summary::after,
.faq details.is-open summary::after {
  transform: rotate(45deg);
}

.faq .a {
  max-width: 64ch;
  margin-top: 1rem;
  overflow: hidden;
  color: var(--ink-soft);
  line-height: 1.6;
  transition: height .4s var(--ease), margin-top .4s var(--ease);
}

.faq .a p {
  margin: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.contact-head h2 {
  max-width: 12ch;
  margin-top: .8rem;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.contact-head .lead {
  max-width: 32ch;
  margin-top: 1.4rem;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.lead-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: .95rem 1rem;
  min-width: 0;
}

.field,
.consent,
.privacy-note,
.lead-form .btn,
.form-note,
.form-success {
  grid-column: 1 / -1;
}

.field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.field:nth-child(1),
.field:nth-child(2),
.field:nth-child(3),
.field:nth-child(4) {
  grid-column: span 1;
}

.field label {
  display: block;
  margin-bottom: .55rem;
  color: var(--ink-soft);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .05em;
}

.field label span {
  color: var(--ink);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 0;
  border-radius: 0;
  padding: 1em 1.1em;
  color: var(--ink);
  background: var(--paper-2);
  transition: background .3s var(--ease), outline-color .3s var(--ease);
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%237a7975' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1em center;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-soft);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
  background: var(--paper-3);
}

.consent {
  display: flex;
  gap: .65em;
  align-items: flex-start;
  margin-top: .45rem;
  color: var(--ink-soft);
  font-size: .875rem;
  line-height: 1.5;
  cursor: pointer;
}

.consent input {
  width: 17px;
  height: 17px;
  margin-top: .15em;
  accent-color: var(--ink);
  flex: 0 0 auto;
}

.privacy-note {
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: .875rem;
  line-height: 1.55;
}

.lead-form .btn {
  justify-self: start;
  margin-top: .8rem;
}

.form-note {
  margin-top: .2rem;
}

.form-success {
  margin-top: .5rem;
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.5;
}

.g12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap);
}

.w75 {
  width: 75vw;
  margin-inline: auto;
}

.lnk.light {
  color: var(--on-ink);
}

.closing-sec {
  margin-top: clamp(2rem, 4vw, 4rem);
}

.statement {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(3rem, 6.2vw, 6.5rem);
  color: var(--on-ink);
  background: var(--dark);
}

.statement .bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.statement .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.4) contrast(1.05);
}

.statement .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, oklch(0.145 0.005 75 / .9), oklch(0.145 0.005 75 / .5));
}

.statement .wrap {
  position: relative;
  z-index: 1;
}

.statement .inner {
  grid-column: 2 / span 8;
}

.statement .quote {
  max-width: 18ch;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.04em;
}

.statement .quote b {
  font-weight: 300;
}

.statement p {
  max-width: 52ch;
  margin-top: 2.4rem;
  color: oklch(0.83 0.006 75);
  font-size: 1.1rem;
  line-height: 1.7;
}

.statement .st-foot {
  margin-top: clamp(2.6rem, 5vw, 3.5rem);
}

.statement .mark {
  position: absolute;
  right: -2%;
  bottom: -7%;
  z-index: 0;
  width: clamp(300px, 42vw, 640px);
  height: auto;
  pointer-events: none;
  transform: translate(calc(var(--px, 0) * 1px), calc(var(--py, 0) * 1px));
  transition: transform .5s var(--ease);
}

.statement .mark svg {
  display: block;
  width: 100%;
  height: auto;
  fill: color-mix(in oklch, var(--paper), transparent 86%);
}

.site-footer {
  padding-block: clamp(4rem, 8vw, 7rem) clamp(2.4rem, 4vw, 3rem);
  background: var(--paper-2);
}

.foot {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
}

.foot p {
  max-width: 36ch;
  margin-top: 1.2rem;
  color: var(--ink-soft);
  font-size: .95rem;
}

.foot-links {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: .95rem;
}

.foot-links a:hover {
  color: var(--ink);
}

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

  nav.menu a,
  .nav-cta {
    font-size: .82rem;
  }

  .promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .nav-burger {
    display: flex;
  }

  .lp-hero {
    padding-top: clamp(2.5rem, 9vw, 4rem);
  }

  .lp-hero h1 {
    font-size: clamp(2.4rem, 11vw, 4rem);
  }

  .hero-image {
    width: 100vw;
  }

  .hero-image img {
    height: clamp(360px, 58vh, 620px);
  }

  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .head .note {
    text-align: left;
  }

  .steps.flow .step {
    grid-template-columns: 1fr;
    gap: .55rem;
  }

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

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

  .field:nth-child(1),
  .field:nth-child(2),
  .field:nth-child(3),
  .field:nth-child(4) {
    grid-column: 1 / -1;
  }

  .w75 {
    width: 100vw;
  }

  .statement .inner {
    grid-column: 1 / -1;
  }

  .statement .mark {
    display: none;
  }
}

@media (max-width: 620px) {
  .promise-grid {
    grid-template-columns: 1fr;
  }

  .promise {
    padding: 1.45rem;
  }

  .promise .num {
    margin-bottom: 1.65rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-actions,
  .lead-form .btn {
    width: 100%;
  }

  .foot {
    flex-direction: column;
  }
}

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

  .rv,
  .js .rv,
  .modfield i,
  .m-links a,
  .m-cta,
  .faq .a,
  .statement .mark {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
