:root {
    --hfm-ink: #0a0d0b;
    --hfm-ink-soft: #151a16;
    --hfm-lime: #a9dc25;
    --hfm-lime-bright: #c7f53d;
    --hfm-paper: #f5f6ef;
    --hfm-white: #fff;
    --hfm-grey: #697069;
    --hfm-line: rgba(10, 13, 11, .13);
    --hfm-shell: min(92vw, 1360px);
    --hfm-radius: 1.25rem;
    --hfm-shadow: 0 32px 90px rgba(0, 0, 0, .19);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

body.habitfit-marketing-page {
    margin: 0;
    color: var(--hfm-ink);
    background: var(--hfm-paper);
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

.habitfit-marketing-page img {
    display: block;
    max-width: 100%;
}

.habitfit-marketing-page button,
.habitfit-marketing-page input {
    font: inherit;
}

.habitfit-marketing-page a {
    color: inherit;
    text-decoration: none;
}

.hfm-shell {
    width: var(--hfm-shell);
    margin-inline: auto;
}

.hfm-skip {
    position: fixed;
    z-index: 9999;
    top: .75rem;
    left: .75rem;
    padding: .75rem 1rem;
    color: var(--hfm-ink);
    background: var(--hfm-lime);
    transform: translateY(-150%);
}

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

.hfm-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    color: #fff;
    transition: background .25s ease, box-shadow .25s ease;
}

.hfm-header.is-scrolled {
    background: rgba(10, 13, 11, .92);
    box-shadow: 0 1px rgba(255, 255, 255, .08);
    backdrop-filter: blur(16px);
}

.hfm-header__inner {
    display: grid;
    min-height: 5.5rem;
    grid-template-columns: 14rem 1fr auto;
    align-items: center;
    gap: 2rem;
}

.hfm-logo {
    display: block;
    width: 12.5rem;
}

.hfm-logo img {
    width: 100%;
}

.hfm-nav {
    display: flex;
    justify-content: center;
    gap: clamp(1.25rem, 2.6vw, 2.75rem);
    color: rgba(255, 255, 255, .72);
    font-size: .78rem;
    font-weight: 750;
    letter-spacing: .04em;
}

.hfm-nav a,
.hfm-login {
    transition: color .18s ease;
}

.hfm-nav a:hover,
.hfm-nav a:focus-visible,
.hfm-login:hover,
.hfm-login:focus-visible {
    color: var(--hfm-lime-bright);
}

.hfm-header__actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.hfm-login {
    font-size: .76rem;
    font-weight: 760;
}

.hfm-menu {
    display: none;
}

.hfm-button {
    display: inline-flex;
    min-height: 3.7rem;
    align-items: center;
    justify-content: center;
    gap: .9rem;
    padding: .9rem 1.45rem;
    border: 1px solid transparent;
    border-radius: .15rem;
    font-size: .79rem;
    font-weight: 850;
    letter-spacing: .035em;
    line-height: 1;
    cursor: pointer;
    transition: transform .18s ease, color .18s ease, background .18s ease, border-color .18s ease;
}

.hfm-button:hover,
.hfm-button:focus-visible {
    transform: translateY(-2px);
}

.hfm-button--small {
    min-height: 2.9rem;
    padding: .7rem 1.1rem;
}

.hfm-button--lime {
    color: var(--hfm-ink);
    background: var(--hfm-lime);
    box-shadow: 0 12px 36px rgba(169, 220, 37, .18);
}

.hfm-button--lime:hover,
.hfm-button--lime:focus-visible {
    background: var(--hfm-lime-bright);
}

.hfm-button--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .03);
}

.hfm-button--ghost:hover,
.hfm-button--ghost:focus-visible {
    border-color: #fff;
}

.hfm-button--dark {
    color: #fff;
    background: var(--hfm-ink);
}

.hfm-hero {
    position: relative;
    overflow: hidden;
    min-height: 48rem;
    padding-top: 5.5rem;
    color: #fff;
    background:
        radial-gradient(circle at 83% 22%, rgba(169, 220, 37, .16), transparent 22rem),
        linear-gradient(125deg, #090c0a 0%, #101511 66%, #0a0c0a 100%);
}

.hfm-hero::before {
    position: absolute;
    inset: 0;
    opacity: .28;
    background-image: repeating-linear-gradient(120deg, transparent 0 48px, rgba(255, 255, 255, .022) 49px 50px);
    content: "";
    pointer-events: none;
}

.hfm-hero__grid {
    position: relative;
    display: grid;
    min-height: 41.8rem;
    grid-template-columns: minmax(0, .9fr) minmax(32rem, 1.1fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 7.5rem);
    padding-block: clamp(4.5rem, 8vw, 7rem) 5rem;
}

.hfm-eyebrow {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin: 0 0 1.5rem;
    color: rgba(255, 255, 255, .62);
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .18em;
}

.hfm-eyebrow > span {
    width: 2.35rem;
    height: 2px;
    background: var(--hfm-lime);
}

.hfm-eyebrow--dark {
    color: var(--hfm-grey);
}

.hfm-hero h1,
.hfm-section-heading h2,
.hfm-specialties h2,
.hfm-payments h2,
.hfm-final h2,
.hfm-signup h2 {
    margin: 0;
    font-size: clamp(3.05rem, 5.35vw, 5.8rem);
    font-weight: 850;
    letter-spacing: -.066em;
    line-height: .95;
}

.hfm-hero h1 em,
.hfm-section-heading h2 em,
.hfm-specialties h2 em,
.hfm-payments h2 em,
.hfm-final h2 em,
.hfm-signup h2 em {
    color: var(--hfm-lime);
    font-style: italic;
    font-weight: 500;
}

.hfm-hero__lead {
    max-width: 39rem;
    margin: 2rem 0 0;
    color: rgba(255, 255, 255, .67);
    font-size: clamp(1rem, 1.4vw, 1.17rem);
}

.hfm-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 2.25rem;
}

.hfm-reassurance {
    display: flex;
    flex-wrap: wrap;
    gap: 1.35rem;
    margin: 1.5rem 0 0;
    padding: 0;
    color: rgba(255, 255, 255, .58);
    font-size: .7rem;
    font-weight: 730;
    list-style: none;
}

.hfm-reassurance li::before {
    margin-right: .45rem;
    color: var(--hfm-lime);
    content: "✓";
}

.hfm-hero__visual {
    position: relative;
    min-height: 34rem;
}

.hfm-photo-frame {
    position: absolute;
    inset: 0 0 0 4rem;
    overflow: hidden;
    background: #272e28;
    clip-path: polygon(9% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 11%);
}

.hfm-photo-frame::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 11, 9, .17), transparent 48%, rgba(169, 220, 37, .08));
    content: "";
}

.hfm-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 47% center;
    filter: saturate(.72) contrast(1.07) brightness(.75);
}

.hfm-photo-frame__index {
    position: absolute;
    z-index: 2;
    right: 1.5rem;
    bottom: 1.25rem;
    color: rgba(255, 255, 255, .68);
    font-size: .61rem;
    font-weight: 850;
    letter-spacing: .17em;
}

.hfm-hero__visual::before {
    position: absolute;
    z-index: 3;
    top: 2rem;
    left: 1.35rem;
    width: 4.5rem;
    height: 4.5rem;
    border-top: 3px solid var(--hfm-lime);
    border-left: 3px solid var(--hfm-lime);
    content: "";
}

.hfm-float {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: .9rem 1rem;
    color: var(--hfm-ink);
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--hfm-shadow);
    backdrop-filter: blur(8px);
}

.hfm-float small,
.hfm-float strong {
    display: block;
}

.hfm-float small {
    color: #747a74;
    font-size: .53rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.hfm-float strong {
    font-size: 1.05rem;
    letter-spacing: -.03em;
}

.hfm-float strong i {
    color: #6f756f;
    font-size: .65rem;
    font-style: normal;
    font-weight: 650;
}

.hfm-float--client {
    top: 3.8rem;
    right: -1.3rem;
}

.hfm-float--payment {
    bottom: 2.4rem;
    left: 0;
}

.hfm-avatar,
.hfm-payment-card__logo {
    display: grid;
    width: 2.65rem;
    height: 2.65rem;
    place-items: center;
    color: var(--hfm-ink);
    border-radius: 50%;
    background: var(--hfm-lime);
    font-size: .68rem;
    font-weight: 900;
}

.hfm-spark {
    color: #599600;
    font-size: 1.25rem;
}

.hfm-status-dot {
    width: .65rem;
    height: .65rem;
    border: 3px solid #e5f7bf;
    border-radius: 50%;
    background: #6cb805;
    box-sizing: content-box;
}

.hfm-stripe-mark {
    margin-left: .75rem;
    color: #635bff;
    font-size: .76rem;
    font-weight: 900;
}

.hfm-hero__ticker {
    position: relative;
    z-index: 5;
    display: flex;
    overflow: hidden;
    gap: 2.5rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .23);
    font-size: clamp(.9rem, 1.5vw, 1.25rem);
    font-weight: 900;
    letter-spacing: .16em;
    white-space: nowrap;
}

.hfm-hero__ticker strong {
    color: var(--hfm-lime);
}

.hfm-proof {
    padding: 1.4rem 0;
    color: rgba(255, 255, 255, .66);
    background: #111612;
}

.hfm-proof__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 2rem;
}

.hfm-proof p {
    margin: 0;
    color: #fff;
    font-size: .76rem;
    font-weight: 790;
}

.hfm-proof__grid div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: .61rem;
    font-weight: 850;
    letter-spacing: .13em;
}

.hfm-section {
    padding-block: clamp(5.8rem, 10vw, 9.5rem);
}

.hfm-section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, .55fr);
    align-items: end;
    gap: 5rem;
    margin-bottom: 4.5rem;
}

.hfm-section-heading h2,
.hfm-payments h2 {
    font-size: clamp(2.7rem, 4.6vw, 5rem);
}

.hfm-section-heading h2 em,
.hfm-payments h2 em {
    color: #688d00;
}

.hfm-section-heading--split > p {
    margin: 0 0 .4rem;
    color: var(--hfm-grey);
    font-size: 1.02rem;
}

.hfm-cockpit {
    display: grid;
    overflow: hidden;
    min-height: 38rem;
    grid-template-columns: 12rem 1fr;
    color: #fff;
    border-radius: var(--hfm-radius);
    background: #eef0e9;
    box-shadow: 0 38px 110px rgba(16, 22, 17, .2);
}

.hfm-cockpit__rail {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    padding: 2rem 1rem;
    background: #111612;
}

.hfm-cockpit__rail img {
    width: 4.8rem;
    margin: 0 auto 2rem;
}

.hfm-cockpit__rail span {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .75rem .9rem;
    color: #7e857f;
    border-left: 2px solid transparent;
    font-size: .72rem;
}

.hfm-cockpit__rail span.is-active {
    color: var(--hfm-lime);
    border-color: var(--hfm-lime);
    background: rgba(169, 220, 37, .08);
}

.hfm-cockpit__main {
    padding: clamp(1.3rem, 3.5vw, 3rem);
    color: var(--hfm-ink);
}

.hfm-cockpit__top,
.hfm-cockpit__top span,
.hfm-cockpit__top small,
.hfm-cockpit__top strong {
    display: flex;
}

.hfm-cockpit__top {
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.hfm-cockpit__top span {
    flex-direction: column;
}

.hfm-cockpit__top small {
    color: var(--hfm-grey);
    font-size: .59rem;
    font-weight: 900;
    letter-spacing: .13em;
}

.hfm-cockpit__top strong {
    margin-top: .2rem;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    letter-spacing: -.035em;
}

.hfm-cockpit__top button {
    padding: .75rem 1rem;
    border: 0;
    color: var(--hfm-ink);
    background: var(--hfm-lime);
    font-size: .68rem;
    font-weight: 850;
}

.hfm-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.hfm-kpis article {
    padding: 1.35rem;
    border: 1px solid rgba(11, 15, 12, .09);
    background: #fff;
}

.hfm-kpis span,
.hfm-kpis strong,
.hfm-kpis small {
    display: block;
}

.hfm-kpis span {
    color: var(--hfm-grey);
    font-size: .55rem;
    font-weight: 900;
    letter-spacing: .1em;
}

.hfm-kpis strong {
    margin-top: .45rem;
    font-size: clamp(1.55rem, 2.8vw, 2.25rem);
    letter-spacing: -.05em;
}

.hfm-kpis small {
    margin-top: .1rem;
    color: #688d00;
    font-size: .62rem;
    font-weight: 700;
}

.hfm-cockpit__lower {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 1rem;
    margin-top: 1rem;
}

.hfm-activity,
.hfm-tasks {
    min-width: 0;
    padding: 1.4rem;
    background: #fff;
}

.hfm-activity header,
.hfm-tasks header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: .82rem;
}

.hfm-activity header span,
.hfm-tasks header span {
    color: var(--hfm-grey);
    font-size: .62rem;
}

.hfm-chart {
    margin-top: 1.4rem;
}

.hfm-chart svg {
    display: block;
    width: 100%;
}

.hfm-chart .area {
    fill: url(#hfm-fill);
}

.hfm-chart .line {
    fill: none;
    stroke: #86b516;
    stroke-linecap: round;
    stroke-width: 4;
}

.hfm-tasks p {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin: .8rem 0 0;
    padding-top: .8rem;
    border-top: 1px solid var(--hfm-line);
    font-size: .68rem;
}

.hfm-tasks i {
    display: grid;
    width: 1.65rem;
    height: 1.65rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--hfm-grey);
    background: #eef0ea;
    font-size: .53rem;
    font-style: normal;
    font-weight: 900;
}

.hfm-tasks i.is-done {
    color: var(--hfm-ink);
    background: var(--hfm-lime);
}

.hfm-feature-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 4rem;
    border-top: 1px solid var(--hfm-line);
    border-left: 1px solid var(--hfm-line);
}

.hfm-feature-strip article {
    min-height: 13rem;
    padding: 1.5rem;
    border-right: 1px solid var(--hfm-line);
    border-bottom: 1px solid var(--hfm-line);
}

.hfm-feature-strip article > span {
    color: #789d0b;
    font-size: .63rem;
    font-weight: 900;
}

.hfm-feature-strip h3 {
    margin: 3rem 0 .5rem;
    font-size: 1rem;
}

.hfm-feature-strip p {
    margin: 0;
    color: var(--hfm-grey);
    font-size: .77rem;
}

.hfm-section--dark {
    color: #fff;
    background: var(--hfm-ink);
}

.hfm-specialties__grid {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(24rem, .7fr);
    align-items: center;
    gap: clamp(4rem, 9vw, 9rem);
}

.hfm-specialties h2 {
    font-size: clamp(2.9rem, 4.8vw, 5.2rem);
}

.hfm-specialties__copy > p:not(.hfm-eyebrow) {
    max-width: 39rem;
    margin: 2rem 0 0;
    color: rgba(255, 255, 255, .6);
}

.hfm-specialty-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 2.5rem;
}

.hfm-specialty-cloud span {
    padding: .7rem .95rem;
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .75);
    font-size: .68rem;
    font-weight: 760;
}

.hfm-specialty-cloud span.is-active {
    color: var(--hfm-ink);
    border-color: var(--hfm-lime);
    background: var(--hfm-lime);
}

.hfm-story-photo {
    position: relative;
    margin: 0;
}

.hfm-story-photo::before {
    position: absolute;
    z-index: 2;
    top: -1.4rem;
    right: -1.4rem;
    width: 5rem;
    height: 5rem;
    border-top: 3px solid var(--hfm-lime);
    border-right: 3px solid var(--hfm-lime);
    content: "";
}

.hfm-story-photo img {
    width: 100%;
    height: clamp(31rem, 52vw, 43rem);
    object-fit: cover;
    filter: saturate(.72) contrast(1.06);
    clip-path: polygon(0 0, 89% 0, 100% 9%, 100% 100%, 0 100%);
}

.hfm-story-photo figcaption {
    position: absolute;
    right: -2rem;
    bottom: 2rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    max-width: 13rem;
    padding: 1.1rem 1.3rem;
    color: var(--hfm-ink);
    background: var(--hfm-lime);
}

.hfm-story-photo figcaption strong {
    font-size: 2.3rem;
    line-height: 1;
}

.hfm-story-photo figcaption span {
    font-size: .56rem;
    font-weight: 900;
    letter-spacing: .09em;
}

.hfm-payments {
    background: #eef0e9;
}

.hfm-payments__grid {
    display: grid;
    grid-template-columns: minmax(28rem, .8fr) minmax(0, .75fr);
    align-items: center;
    gap: clamp(4rem, 9vw, 9rem);
}

.hfm-payment-card {
    position: relative;
    padding: clamp(1.5rem, 4vw, 3rem);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.2rem;
    background:
        radial-gradient(circle at 88% 8%, rgba(169, 220, 37, .17), transparent 14rem),
        #111612;
    box-shadow: 0 36px 90px rgba(10, 13, 11, .22);
}

.hfm-payment-card::after {
    position: absolute;
    z-index: -1;
    inset: 1.2rem -1.2rem -1.2rem 1.2rem;
    border: 1px solid rgba(10, 13, 11, .18);
    border-radius: inherit;
    content: "";
}

.hfm-payment-card__top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hfm-payment-card__top span:last-child,
.hfm-payment-card__top small,
.hfm-payment-card__top strong {
    display: block;
}

.hfm-payment-card__top small {
    color: rgba(255, 255, 255, .5);
    font-size: .55rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.hfm-payment-card__top strong {
    margin-top: .2rem;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    letter-spacing: -.04em;
}

.hfm-payment-card__bar {
    overflow: hidden;
    height: .35rem;
    margin: 2rem 0;
    background: rgba(255, 255, 255, .08);
}

.hfm-payment-card__bar span {
    display: block;
    width: 72%;
    height: 100%;
    background: var(--hfm-lime);
}

.hfm-payment-card__rows p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: .72rem;
}

.hfm-payment-card__rows i {
    display: inline-grid;
    width: 1.5rem;
    height: 1.5rem;
    margin-right: .55rem;
    place-items: center;
    border-radius: 50%;
    color: var(--hfm-ink);
    background: var(--hfm-lime);
    font-size: .6rem;
    font-style: normal;
}

.hfm-payment-card__rows strong {
    color: var(--hfm-lime);
}

.hfm-payment-card footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .5rem;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, .45);
    font-size: .58rem;
}

.hfm-payment-card footer b {
    color: #9e99ff;
    font-size: .85rem;
}

.hfm-payments__copy > p:not(.hfm-eyebrow) {
    margin: 2rem 0 0;
    color: var(--hfm-grey);
}

.hfm-payments__copy ol {
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}

.hfm-payments__copy li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--hfm-line);
}

.hfm-payments__copy li > span {
    color: #759e03;
    font-size: .62rem;
    font-weight: 900;
}

.hfm-payments__copy li strong,
.hfm-payments__copy li small {
    display: block;
}

.hfm-payments__copy li strong {
    font-size: .83rem;
}

.hfm-payments__copy li small {
    margin-top: .2rem;
    color: var(--hfm-grey);
    font-size: .7rem;
}

.hfm-pricing {
    background: #f8f8f3;
}

.hfm-section-heading--center {
    max-width: 58rem;
    margin: 0 auto 4rem;
    text-align: center;
}

.hfm-section-heading--center .hfm-eyebrow {
    justify-content: center;
}

.hfm-section-heading--center h2 {
    font-size: clamp(2.65rem, 4.5vw, 4.75rem);
}

.hfm-billing-toggle {
    display: inline-flex;
    margin-top: 2.2rem;
    padding: .25rem;
    border: 1px solid var(--hfm-line);
    background: #fff;
}

.hfm-billing-toggle button {
    padding: .7rem 1rem;
    border: 0;
    color: var(--hfm-grey);
    background: transparent;
    font-size: .68rem;
    font-weight: 850;
    cursor: pointer;
}

.hfm-billing-toggle button.is-active {
    color: #fff;
    background: var(--hfm-ink);
}

.hfm-billing-toggle span {
    margin-left: .35rem;
    color: #769e09;
    font-size: .5rem;
}

.hfm-billing-toggle button.is-active span {
    color: var(--hfm-lime);
}

.hfm-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 1rem;
}

.hfm-plan {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid var(--hfm-line);
    background: #fff;
}

.hfm-plan--featured {
    color: #fff;
    border-color: var(--hfm-ink);
    background: var(--hfm-ink);
    box-shadow: 0 28px 70px rgba(10, 13, 11, .16);
    transform: translateY(-1rem);
}

.hfm-plan__badge {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: .45rem .7rem;
    color: var(--hfm-ink);
    background: var(--hfm-lime);
    font-size: .5rem;
    font-weight: 950;
    letter-spacing: .1em;
}

.hfm-plan header > span {
    color: #739a08;
    font-size: .66rem;
    font-weight: 950;
    letter-spacing: .14em;
}

.hfm-plan header p {
    min-height: 3rem;
    margin: .7rem 0 0;
    color: var(--hfm-grey);
    font-size: .75rem;
}

.hfm-plan--featured header p,
.hfm-plan--featured .hfm-plan__billing {
    color: rgba(255, 255, 255, .52);
}

.hfm-plan__price {
    display: flex;
    align-items: flex-start;
    margin: 2rem 0 .2rem;
}

.hfm-plan__price strong {
    font-size: clamp(3.3rem, 5vw, 4.5rem);
    letter-spacing: -.07em;
    line-height: .85;
}

.hfm-plan__price > span {
    margin: .15rem 0 0 .45rem;
    font-size: 1.1rem;
    font-weight: 800;
}

.hfm-plan__price small {
    display: block;
    color: var(--hfm-grey);
    font-size: .55rem;
    font-weight: 650;
}

.hfm-plan__billing {
    margin: .5rem 0 1.7rem;
    color: var(--hfm-grey);
    font-size: .62rem;
}

.hfm-plan__limit {
    margin: 0;
    padding: 1.25rem 0;
    border-block: 1px solid var(--hfm-line);
    font-size: .78rem;
    font-weight: 750;
}

.hfm-plan--featured .hfm-plan__limit,
.hfm-plan--featured ul li {
    border-color: rgba(255, 255, 255, .1);
}

.hfm-plan__limit strong {
    margin-right: .25rem;
    color: #719706;
    font-size: 1.4rem;
}

.hfm-plan--featured .hfm-plan__limit strong {
    color: var(--hfm-lime);
}

.hfm-plan ul {
    flex: 1;
    margin: 1.2rem 0 2rem;
    padding: 0;
    list-style: none;
}

.hfm-plan ul li {
    padding: .65rem 0;
    border-bottom: 1px solid rgba(10, 13, 11, .07);
    font-size: .7rem;
}

.hfm-plan ul li::before {
    margin-right: .55rem;
    color: #739b07;
    content: "✓";
    font-weight: 900;
}

.hfm-plan--featured ul li::before {
    color: var(--hfm-lime);
}

.hfm-pricing__note {
    margin: 2rem 0 0;
    color: var(--hfm-grey);
    font-size: .67rem;
    font-weight: 700;
    text-align: center;
}

.hfm-final {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 7vw, 6.5rem) 0;
    color: #fff;
    background: var(--hfm-ink);
}

.hfm-final::after {
    position: absolute;
    right: -10rem;
    bottom: -17rem;
    width: 35rem;
    height: 35rem;
    border: 1px solid rgba(169, 220, 37, .18);
    border-radius: 50%;
    box-shadow: 0 0 0 3rem rgba(169, 220, 37, .03), 0 0 0 6rem rgba(169, 220, 37, .02);
    content: "";
}

.hfm-final__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 8rem 1fr auto;
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
}

.hfm-final__inner > img {
    width: 8rem;
}

.hfm-final h2 {
    font-size: clamp(2.6rem, 4.4vw, 4.8rem);
}

.hfm-footer {
    padding: 2rem 0;
    color: rgba(255, 255, 255, .5);
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: var(--hfm-ink);
}

.hfm-footer__grid {
    display: grid;
    grid-template-columns: 12rem 1fr auto;
    align-items: center;
    gap: 2rem;
    font-size: .61rem;
}

.hfm-footer p {
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.hfm-footer__grid > div {
    display: flex;
    gap: 1rem;
}

.hfm-footer a:hover {
    color: var(--hfm-lime);
}

.hfm-signup {
    width: min(94vw, 63rem);
    max-height: 92vh;
    padding: 0;
    border: 0;
    color: var(--hfm-ink);
    background: #fff;
    box-shadow: 0 40px 120px rgba(0, 0, 0, .45);
}

.hfm-signup[open] {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
}

.hfm-signup::backdrop {
    background: rgba(4, 6, 5, .82);
    backdrop-filter: blur(6px);
}

.hfm-signup__close {
    position: absolute;
    z-index: 3;
    top: .8rem;
    right: .8rem;
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    place-items: center;
    border: 1px solid rgba(10, 13, 11, .12);
    border-radius: 50%;
    color: var(--hfm-ink);
    background: #fff;
    font-size: 1.35rem;
    cursor: pointer;
}

.hfm-signup__brand {
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 4vw, 3.5rem);
    color: #fff;
    background:
        radial-gradient(circle at 90% 90%, rgba(169, 220, 37, .2), transparent 16rem),
        var(--hfm-ink);
}

.hfm-signup__brand > img {
    width: 6.5rem;
    margin-bottom: 4rem;
}

.hfm-signup h2 {
    font-size: clamp(2.5rem, 4.5vw, 4.2rem);
}

.hfm-signup__brand ul {
    margin: 2.5rem 0 0;
    padding: 0;
    color: rgba(255, 255, 255, .65);
    font-size: .71rem;
    list-style: none;
}

.hfm-signup__brand li {
    padding: .55rem 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.hfm-signup__brand li::before {
    margin-right: .5rem;
    color: var(--hfm-lime);
    content: "✓";
}

.hfm-signup__form {
    overflow-y: auto;
    padding: clamp(2rem, 4.5vw, 4rem);
}

.hfm-signup__form h3 {
    margin: 0 0 1.7rem;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    letter-spacing: -.05em;
}

.hfm-fields--two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .8rem;
}

.hfm-signup__form > label,
.hfm-fields label {
    display: grid;
    gap: .35rem;
    margin-bottom: .85rem;
}

.hfm-signup__form label > span {
    font-size: .63rem;
    font-weight: 850;
}

.hfm-signup__form input:not([type="checkbox"]) {
    width: 100%;
    min-height: 3rem;
    padding: .75rem .9rem;
    border: 1px solid #cfd3cb;
    border-radius: 0;
    outline: 0;
    background: #f8f8f4;
}

.hfm-signup__form input:not([type="checkbox"]):focus {
    border-color: #789d0d;
    box-shadow: 0 0 0 3px rgba(169, 220, 37, .2);
}

.hfm-signup__form label small {
    color: var(--hfm-grey);
    font-size: .56rem;
}

.hfm-consent {
    display: flex !important;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: .6rem !important;
    margin: 1rem 0 !important;
    color: var(--hfm-grey);
}

.hfm-consent input {
    margin-top: .2rem;
    accent-color: #7ba30a;
}

.hfm-consent span {
    font-size: .6rem !important;
    font-weight: 650 !important;
}

.hfm-signup__form .hfm-button {
    width: 100%;
}

.hfm-honeypot {
    position: absolute !important;
    left: -10000px;
    opacity: 0;
}

.hfm-form-status {
    min-height: 1.2rem;
    margin: .7rem 0 0;
    color: #a72b25;
    font-size: .65rem;
    font-weight: 720;
    text-align: center;
}

.hfm-form-status.is-success {
    color: #518000;
}

.hfm-signup__login {
    margin: .5rem 0 0;
    color: var(--hfm-grey);
    font-size: .62rem;
    text-align: center;
}

.hfm-signup__login a {
    color: #668d00;
    font-weight: 850;
}

@media (max-width: 1100px) {
    .hfm-header__inner {
        grid-template-columns: 11rem 1fr auto;
        gap: 1.2rem;
    }

    .hfm-logo {
        width: 10.5rem;
    }

    .hfm-header__actions .hfm-login {
        display: none;
    }

    .hfm-hero__grid {
        grid-template-columns: minmax(0, .95fr) minmax(26rem, 1.05fr);
        gap: 2.5rem;
    }

    .hfm-float--client {
        right: 0;
    }

    .hfm-specialties__grid,
    .hfm-payments__grid {
        gap: 4rem;
    }

    .hfm-plans {
        gap: .65rem;
    }
}

@media (max-width: 860px) {
    .hfm-header__inner {
        min-height: 4.8rem;
        grid-template-columns: 1fr auto;
    }

    .hfm-header__actions {
        display: none;
    }

    .hfm-menu {
        display: grid;
        width: 2.8rem;
        height: 2.8rem;
        place-content: center;
        gap: .4rem;
        border: 1px solid rgba(255, 255, 255, .25);
        color: #fff;
        background: transparent;
    }

    .hfm-menu > span:not(.screen-reader-text) {
        width: 1.15rem;
        height: 1px;
        background: currentColor;
    }

    .hfm-nav {
        position: fixed;
        top: 4.8rem;
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem 4vw 1.5rem;
        background: rgba(10, 13, 11, .98);
    }

    .hfm-nav.is-open {
        display: flex;
    }

    .hfm-nav a {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .hfm-hero {
        padding-top: 4.8rem;
    }

    .hfm-hero__grid {
        grid-template-columns: 1fr;
        padding-block: 4rem 5rem;
    }

    .hfm-hero__visual {
        min-height: 31rem;
    }

    .hfm-photo-frame {
        left: 2rem;
    }

    .hfm-proof__grid,
    .hfm-section-heading--split,
    .hfm-specialties__grid,
    .hfm-payments__grid {
        grid-template-columns: 1fr;
    }

    .hfm-proof__grid div {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .hfm-section-heading--split {
        gap: 1.4rem;
    }

    .hfm-cockpit {
        grid-template-columns: 5rem 1fr;
    }

    .hfm-cockpit__rail {
        align-items: center;
    }

    .hfm-cockpit__rail img {
        width: 3.5rem;
    }

    .hfm-cockpit__rail span {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
    }

    .hfm-cockpit__rail b {
        display: none;
    }

    .hfm-feature-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .hfm-specialties__grid {
        gap: 3rem;
    }

    .hfm-story-photo {
        max-width: 34rem;
        margin-inline: auto;
    }

    .hfm-payments__copy {
        order: -1;
    }

    .hfm-plans {
        grid-template-columns: 1fr;
        max-width: 35rem;
        margin-inline: auto;
    }

    .hfm-plan--featured {
        transform: none;
    }

    .hfm-final__inner {
        grid-template-columns: 6rem 1fr;
    }

    .hfm-final__inner > img {
        width: 6rem;
    }

    .hfm-final__inner .hfm-button {
        grid-column: 2;
        justify-self: start;
    }

    .hfm-footer__grid {
        grid-template-columns: 10rem 1fr;
    }

    .hfm-footer__grid > div {
        grid-column: 1 / -1;
        justify-content: space-between;
    }

    .hfm-signup[open] {
        grid-template-columns: 1fr;
    }

    .hfm-signup__brand {
        display: none;
    }
}

@media (max-width: 600px) {
    :root {
        --hfm-shell: min(90vw, 34rem);
    }

    .hfm-logo {
        width: 9.5rem;
    }

    .hfm-hero h1 {
        font-size: clamp(2.75rem, 13vw, 4rem);
    }

    .hfm-hero__actions {
        display: grid;
    }

    .hfm-hero__actions .hfm-button {
        width: 100%;
    }

    .hfm-reassurance {
        display: grid;
        gap: .55rem;
    }

    .hfm-hero__visual {
        min-height: 25rem;
    }

    .hfm-photo-frame {
        inset: 0;
    }

    .hfm-hero__visual::before {
        top: -1rem;
        left: -1rem;
    }

    .hfm-float {
        padding: .7rem;
        transform: scale(.88);
    }

    .hfm-float--client {
        top: 1.3rem;
        right: -.8rem;
        transform-origin: right top;
    }

    .hfm-float--payment {
        bottom: 1rem;
        left: -.8rem;
        transform-origin: left bottom;
    }

    .hfm-proof__grid {
        gap: 1rem;
    }

    .hfm-cockpit {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hfm-cockpit__rail {
        display: none;
    }

    .hfm-cockpit__top button {
        display: none;
    }

    .hfm-kpis {
        grid-template-columns: 1fr 1fr;
    }

    .hfm-kpis article:last-child {
        grid-column: 1 / -1;
    }

    .hfm-cockpit__lower {
        grid-template-columns: 1fr;
    }

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

    .hfm-feature-strip article {
        min-height: 10rem;
    }

    .hfm-feature-strip h3 {
        margin-top: 1.7rem;
    }

    .hfm-story-photo img {
        height: 31rem;
    }

    .hfm-story-photo figcaption {
        right: -.5rem;
    }

    .hfm-payments__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hfm-payment-card__rows p {
        align-items: flex-start;
        flex-direction: column;
    }

    .hfm-final__inner {
        grid-template-columns: 1fr;
    }

    .hfm-final__inner > img {
        display: none;
    }

    .hfm-final__inner .hfm-button {
        grid-column: 1;
    }

    .hfm-footer__grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hfm-footer p {
        text-align: left;
    }

    .hfm-fields--two {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hfm-signup__form {
        padding: 2rem 1.25rem;
    }
}

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

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