/* =========================================================================
   Hand Initiatives — landing page
   ========================================================================= */

:root {
    /* Palette sampled directly from the design file (mockup.png). */
    --brand: #046122;
    --brand-dark: #02491A;
    --brand-bright: #0E6029;
    --brand-soft: #EAF3E2;
    --brand-softer: #F2F9EF;
    --lime: #B6D879;
    --lime-soft: #D2E5B8;

    --ink: #101A26;
    --ink-2: #2B3440;
    /* the design's body grey is #8A8B8F; nudged darker so text clears
       WCAG AA (4.6:1) on white */
    --body: #6B7076;
    --muted: #8A8F96;

    --line: #E7EAEF;
    --line-soft: #EFF2F5;
    --page: #FFFFFF;
    --panel: #F7F9F6;

    --dark: #0F1724;
    --dark-2: #1A2333;

    --gold: #FBBC1F;

    --shell: 1200px;
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 22px;
    --r-xl: 28px;

    --shadow-card: 0 2px 4px rgba(17, 24, 39, .04), 0 12px 32px rgba(17, 24, 39, .06);
    --shadow-pop: 0 8px 20px rgba(17, 24, 39, .07), 0 28px 60px rgba(17, 24, 39, .12);
    --shadow-btn: 0 6px 16px rgba(4, 97, 34, .26);

    --font-display: "Red Hat Display", "Segoe UI", Arial, sans-serif;
    --font-text: "Red Hat Text", "Segoe UI", Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--page);
    color: var(--body);
    font-family: var(--font-text);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img,
svg {
    max-width: 100%;
}

/* stroke-only icon sets: keep shapes unfilled (paths that set their own
   fill attribute still win over this inherited value) */
.hi-hero__checks svg,
.hi-assure__ico svg,
.hi-card__safe svg,
.hi-safenote svg,
.hi-why__list svg,
.hi-nav__close svg {
    fill: none;
}

img {
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

strong {
    font-weight: 700;
    color: var(--ink-2);
}

::selection {
    background: var(--brand);
    color: #fff;
}

:focus-visible {
    outline: 3px solid rgba(14, 96, 41, .45);
    outline-offset: 3px;
    border-radius: 6px;
}

.hi-shell {
    width: 100%;
    max-width: var(--shell);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------------------------------------------------------------- type -- */

.hi-h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(30px, 3.6vw, 42px);
    line-height: 1.16;
    letter-spacing: -.02em;
    color: var(--ink);
}

.hi-accent {
    color: var(--brand-bright);
}

/* ------------------------------------------------------------- buttons -- */

.hi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 48px;
    padding: 0 24px;
    border: 0;
    border-radius: 12px;
    font-family: var(--font-text);
    font-weight: 700;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}

.hi-btn--lg {
    height: 56px;
    padding: 0 28px;
    font-size: 16px;
}

.hi-btn--primary {
    background: var(--brand);
    color: #fff;
    box-shadow: var(--shadow-btn);
}

.hi-btn--primary:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(4, 97, 34, .32);
}

.hi-btn--ghost {
    background: #fff;
    color: var(--ink);
    border: 1.5px solid var(--line);
}

.hi-btn--ghost:hover {
    border-color: var(--brand);
    color: var(--brand);
    transform: translateY(-2px);
}

.hi-btn__play {
    flex: none;
    color: var(--brand);
}

.hi-btn:hover .hi-ico-arrow {
    transform: translateX(3px);
}

.hi-ico-arrow {
    flex: none;
    transition: transform .18s ease;
}

.hi-safenote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand);
}

.hi-safenote svg {
    flex: none;
}

/* -------------------------------------------------------------- header -- */

/* No backdrop-filter here on purpose: it would make the header a containing
   block for the position:fixed mobile drawer nested inside it. */
.hi-head {
    position: sticky;
    top: 0;
    z-index: 60;
    background: #fff;
    transition: box-shadow .2s ease;
}

.hi-head--stuck {
    box-shadow: 0 1px 0 var(--line), 0 8px 24px rgba(17, 24, 39, .06);
}

.hi-head__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 84px;
}

.hi-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex: none;
}

.hi-brand__mark {
    width: 42px;
    height: 42px;
    flex: none;
}

.hi-brand__text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 19px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--ink);
}

.hi-brand--light .hi-brand__text {
    color: #fff;
}

.hi-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-left: auto;
}

.hi-nav__list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hi-nav__link {
    position: relative;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink-2);
    transition: color .18s ease;
}

.hi-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    border-radius: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.hi-nav__link:hover {
    color: var(--brand);
}

.hi-nav__link:hover::after {
    transform: scaleX(1);
}

.hi-nav__close {
    display: none;
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 10px;
    background: var(--panel);
    color: var(--ink);
    cursor: pointer;
}

.hi-burger {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.hi-burger span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform .22s ease, opacity .22s ease;
}

.hi-nav__scrim {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(17, 24, 39, .45);
    opacity: 0;
    transition: opacity .25s ease;
}

.hi-nav__scrim.is-on {
    opacity: 1;
}

/* ---------------------------------------------------------------- hero -- */

.hi-hero {
    position: relative;
    padding: 58px 0 76px;
    overflow: hidden;
}

.hi-hero__blob {
    position: absolute;
    top: -140px;
    right: -60px;
    width: 470px;
    height: 470px;
    border-radius: 50%;
    background: var(--lime-soft);
    pointer-events: none;
}

.hi-hero__blob2 {
    position: absolute;
    top: 250px;
    left: 48%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: var(--lime);
    pointer-events: none;
}

.hi-hero__dots {
    position: absolute;
    pointer-events: none;
    background-image: radial-gradient(currentColor 1.6px, transparent 1.7px);
    background-size: 12px 12px;
    color: #C6D2BB;
    opacity: .75;
}

.hi-hero__dots--tr {
    top: 34px;
    right: 14px;
    width: 132px;
    height: 84px;
    z-index: 1;
}

.hi-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
    align-items: center;
    gap: 56px;
}

.hi-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 30px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.hi-hero__title {
    margin-top: 20px;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(42px, 5.4vw, 64px);
    line-height: 1.04;
    letter-spacing: -.03em;
    color: var(--ink);
}

.hi-hero__title-accent {
    color: var(--brand-bright);
}

.hi-hero__lead {
    max-width: 400px;
    margin-top: 20px;
    font-size: 16.5px;
    line-height: 1.62;
    color: var(--body);
}

.hi-hero__checks {
    margin-top: 24px;
    display: grid;
    gap: 12px;
}

.hi-hero__checks li {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink-2);
}

.hi-hero__checks svg {
    flex: none;
    color: var(--ink);
}

.hi-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hi-proofline {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.hi-proofline--plain {
    margin-top: 30px;
}

.hi-faces {
    display: flex;
    flex: none;
}

.hi-faces img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    box-shadow: 0 2px 6px rgba(17, 24, 39, .12);
    object-fit: cover;
}

.hi-faces img+img {
    margin-left: -13px;
}

.hi-proofline__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-2);
}

.hi-proofline__big {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 21px;
    line-height: 1.2;
    color: var(--ink);
}

.hi-stars {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 3px;
}

.hi-stars__set {
    display: inline-flex;
    gap: 2px;
    color: var(--gold);
}

.hi-stars__score {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
}

/* hero card ------------------------------------------------------------- */

.hi-hero__aside {
    position: relative;
}

.hi-doodle {
    position: absolute;
    left: -132px;
    bottom: 52px;
    width: 132px;
    opacity: .85;
    pointer-events: none;
}

.hi-card {
    position: relative;
    background: #fff;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-pop);
    padding: 30px 30px 26px;
}

.hi-card__ticks {
    position: absolute;
    top: -22px;
    left: 4px;
    color: var(--ink);
    pointer-events: none;
}

.hi-card__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 21px;
    line-height: 1.3;
    letter-spacing: -.01em;
    color: var(--ink);
    text-align: center;
}

.hi-card__title[hidden] {
    display: none;
}

.hi-card__form {
    min-height: 190px;
    margin-top: 22px;
}

.hi-card__title[hidden]+.hi-card__form {
    margin-top: 0;
}

.hi-card__assure {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--line-soft);
}

.hi-assure {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-2);
}

.hi-assure__ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 7px;
    flex: none;
}

.hi-assure__ico--amber {
    background: #FEF1E4;
    color: #E1802B;
}

.hi-assure__ico--green {
    background: var(--brand-soft);
    color: var(--brand);
}

.hi-card__safe {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 13px;
    color: var(--muted);
}

.hi-card__safe svg {
    flex: none;
    color: var(--brand);
}

/* =========================================================================
   Injected partner form (ZeroParallel "omForm")
   Markup is owned by the vendor script — these rules only re-skin it.
   ========================================================================= */

.hi-card__form iframe {
    width: 100%;
    border: 0;
}

.hi-card__form #omForm,
.hi-card__form .omForm {
    min-height: 312px !important;
    font-family: var(--font-text) !important;
}

.hi-card__form .omForm-container,
.hi-card__form .omForm-container_small {
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* header: back arrow + progress ----------------------------------------- */

.hi-card__form .omForm-header {
    display: flex !important;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px !important;
}

.hi-card__form .omForm-header__button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: none;
    padding: 0;
    border: 1.5px solid var(--line) !important;
    border-radius: 10px !important;
    background: #fff !important;
    color: var(--ink-2) !important;
    cursor: pointer;
    transition: border-color .18s ease, color .18s ease;
}

.hi-card__form .omForm-header__button:hover {
    border-color: var(--brand) !important;
    color: var(--brand) !important;
}

.hi-card__form .omForm-header__button-icon {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.hi-card__form .omForm-progress-bar {
    display: flex !important;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.hi-card__form .omForm-progress-bar__line {
    flex: 1 1 auto;
    height: 6px !important;
    border-radius: 999px !important;
    background: var(--line-soft) !important;
    overflow: hidden;
}

.hi-card__form .omForm-progress-bar__complete-line {
    height: 100% !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, var(--brand-bright), var(--brand)) !important;
    transition: width .35s ease;
}

.hi-card__form .omForm-progress-bar__percent {
    flex: none;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: var(--muted) !important;
}

/* step title ------------------------------------------------------------- */

.hi-card__form .omForm-scope__title,
.hi-card__form .omForm-text-h1 {
    margin: 0 0 20px !important;
    font-family: var(--font-display) !important;
    font-weight: 800 !important;
    font-size: 21px !important;
    line-height: 1.3 !important;
    letter-spacing: -.01em;
    color: var(--ink) !important;
    text-align: center !important;
}

/* amount / choice tiles -------------------------------------------------- */

.hi-card__form .omForm-group__row_radio {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 !important;
}

.hi-card__form .omForm-group__row-item_radio {
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hi-card__form .omForm-radio {
    position: relative;
    display: block !important;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: none !important;
    cursor: pointer;
}

.hi-card__form .omForm-radio input[type="radio"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}

.hi-card__form .omForm-radio__text {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 10px;
    border: 1.5px solid var(--line) !important;
    border-radius: 12px !important;
    background: #fff !important;
    font-family: var(--font-text) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    text-align: center;
    transition: border-color .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.hi-card__form .omForm-radio:hover .omForm-radio__text {
    border-color: var(--brand-bright) !important;
    color: var(--brand) !important;
}

.hi-card__form .omForm-radio input[type="radio"]:checked+.omForm-radio__text,
.hi-card__form .omForm-radio input[type="radio"]:checked~.omForm-radio__text,
.hi-card__form label.hi-picked .omForm-radio__text,
.hi-card__form label.hi-picked .omReApply-radio__text {
    border-color: var(--brand) !important;
    background: var(--brand) !important;
    color: #fff !important;
    box-shadow: var(--shadow-btn);
}

.hi-card__form .omForm-radio input[type="radio"]:focus-visible+.omForm-radio__text {
    box-shadow: 0 0 0 4px rgba(27, 163, 75, .22);
}

/* single-column choice lists (yes/no, long option labels) */
.hi-card__form .omForm-group__row_radio.omForm-group__row_column {
    grid-template-columns: minmax(0, 1fr);
}

/* the vendor's re-apply flow mirrors the same markup under omReApply-* */
.hi-card__form .omReApply-radio {
    position: relative;
    display: block !important;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: none !important;
    cursor: pointer;
}

.hi-card__form .omReApply-radio__text {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 10px;
    border: 1.5px solid var(--line) !important;
    border-radius: 12px !important;
    background: #fff !important;
    font-family: var(--font-text) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    text-align: center;
    transition: border-color .18s ease, background-color .18s ease, color .18s ease;
}

.hi-card__form .omReApply-radio:hover .omReApply-radio__text {
    border-color: var(--brand-bright) !important;
    color: var(--brand) !important;
}

/* fields ----------------------------------------------------------------- */

.hi-card__form .omForm-group {
    margin-bottom: 14px !important;
}

.hi-card__form .omForm-group__label,
.hi-card__form .omLabel {
    display: block;
    margin-bottom: 6px !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: var(--ink-2) !important;
}

.hi-card__form label {
    display: block;
    margin-bottom: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-2);
}

.hi-card__form .omForm-group__row.omForm-row {
    display: flex;
    gap: 10px;
}

.hi-card__form .omForm-group__message {
    display: block;
    margin-top: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: #D2453C;
}

.hi-card__form .omForm-scope__footer {
    margin-top: 18px !important;
}

.hi-card__form .omInputText:not([type="radio"]):not([type="checkbox"]),
.hi-card__form input[type="text"],
.hi-card__form input[type="tel"],
.hi-card__form input[type="email"],
.hi-card__form input[type="number"],
.hi-card__form input[type="password"],
.hi-card__form input[type="date"],
.hi-card__form select,
.hi-card__form textarea {
    width: 100% !important;
    height: 52px !important;
    padding: 0 15px !important;
    border: 1.5px solid var(--line) !important;
    border-radius: 12px !important;
    background-color: #fff !important;
    font-family: var(--font-text) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: var(--ink) !important;
    box-shadow: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.hi-card__form textarea {
    height: auto !important;
    padding: 13px 15px !important;
    line-height: 1.5;
}

.hi-card__form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5l5-5' stroke='%23626B79' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px 8px;
    padding-right: 40px;
}

.hi-card__form input:not([type="radio"]):not([type="checkbox"]):focus,
.hi-card__form select:focus,
.hi-card__form textarea:focus {
    border-color: var(--brand-bright) !important;
    box-shadow: 0 0 0 4px rgba(14, 96, 41, .14);
    outline: none;
}

.hi-card__form .omForm-button,
.hi-card__form .omForm-button_primary,
.hi-card__form input[type="submit"],
.hi-card__form input[type="button"] {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    min-height: 54px !important;
    padding: 0 22px !important;
    border: 0 !important;
    border-radius: 12px !important;
    background: var(--brand) !important;
    color: #fff !important;
    font-family: var(--font-text) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: none !important;
    cursor: pointer;
    box-shadow: var(--shadow-btn);
    transition: background-color .18s ease, transform .18s ease;
}

.hi-card__form .omForm-button:hover,
.hi-card__form .omForm-button_primary:hover,
.hi-card__form input[type="submit"]:hover,
.hi-card__form input[type="button"]:hover {
    background: var(--brand-dark) !important;
    transform: translateY(-1px);
}

.hi-card__form input[type="checkbox"] {
    accent-color: var(--brand);
}

/* ------------------------------------------------------------ dark strip -- */

.hi-strip {
    padding: 6px 0 0;
}

.hi-strip__box {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 30px 8px;
    border-radius: var(--r-lg);
    background: var(--dark);
}

.hi-strip__item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 4px 26px;
    border-left: 1px solid rgba(255, 255, 255, .1);
}

.hi-strip__item:first-child {
    border-left: 0;
}

.hi-strip__ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: none;
    border-radius: 11px;
    background: rgba(255, 255, 255, .08);
    color: #6EE79A;
}

.hi-strip__item h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 15.5px;
    line-height: 1.3;
    color: #fff;
}

.hi-strip__item p {
    margin-top: 5px;
    font-size: 13.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .62);
}

/* --------------------------------------------------------------- steps -- */

.hi-steps {
    padding: 84px 0 76px;
}

.hi-steps__grid {
    display: grid;
    grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}

.hi-steps__lead {
    max-width: 300px;
    margin-top: 18px;
    font-size: 15.5px;
    line-height: 1.65;
}

.hi-steps__intro .hi-btn {
    margin-top: 26px;
}

.hi-steps__intro .hi-safenote {
    display: flex;
    margin-top: 20px;
}

.hi-steps__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.hi-step {
    position: relative;
    padding: 24px 22px 26px;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: #fff;
    box-shadow: var(--shadow-card);
    transition: transform .22s ease, box-shadow .22s ease;
}

.hi-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-pop);
}

.hi-step__num {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 14px;
}

.hi-step__art {
    width: 130px;
    height: 130px;
    margin: 6px auto 20px;
}

.hi-step h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    line-height: 1.3;
    color: var(--ink);
}

.hi-step p {
    margin-top: 8px;
    font-size: 14.5px;
    line-height: 1.6;
}

.hi-step__link {
    position: absolute;
    top: 96px;
    right: -46px;
    width: 70px;
    z-index: 3;
    pointer-events: none;
}

/* --------------------------------------------------------------- why us -- */

.hi-why {
    padding: 26px 0 84px;
}

.hi-why__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}

.hi-why__visual {
    position: relative;
}

.hi-why__art {
    display: block;
    width: 100%;
    max-width: 620px;
    height: auto;
    margin: 0 auto;
}

.hi-why__list {
    margin-top: 26px;
    display: grid;
    gap: 15px;
}

.hi-why__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15.5px;
    font-weight: 500;
    color: var(--ink-2);
}

.hi-why__list svg {
    flex: none;
    color: var(--brand-bright);
}

/* ----------------------------------------------------------------- faq -- */

.hi-faq {
    padding: 8px 0 78px;
}

.hi-faq__title {
    text-align: center;
    margin-bottom: 36px;
}

.hi-faq__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

.hi-faq__col {
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: #fff;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.hi-acc+.hi-acc {
    border-top: 1px solid var(--line-soft);
}

.hi-acc__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    transition: color .18s ease;
}

.hi-acc__head::-webkit-details-marker {
    display: none;
}

.hi-acc__head:hover {
    color: var(--brand);
}

.hi-acc__sign {
    position: relative;
    width: 18px;
    height: 18px;
    flex: none;
}

.hi-acc__sign::before,
.hi-acc__sign::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink-2);
    transform: translate(-50%, -50%);
    transition: transform .22s ease, opacity .22s ease;
}

.hi-acc__sign::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.hi-acc[open] .hi-acc__sign::after {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
}

.hi-acc[open] .hi-acc__head {
    padding-bottom: 6px;
    color: var(--ink);
}

.hi-acc__body {
    padding: 0 52px 20px 20px;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--body);
}

.hi-acc__body a {
    color: var(--brand);
    font-weight: 600;
    text-decoration: underline;
}

/* ----------------------------------------------------------------- cta -- */

.hi-cta {
    padding: 0 0 84px;
}

.hi-cta__band {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    padding: 38px 46px;
    border-radius: var(--r-xl);
    background: #E8F2E7;
    overflow: hidden;
}

.hi-cta__doodle {
    position: absolute;
    right: 26px;
    bottom: 14px;
    opacity: .5;
    pointer-events: none;
}

.hi-cta__spark {
    position: absolute;
    right: 34px;
    top: 26px;
    opacity: .85;
    pointer-events: none;
}

.hi-cta__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    flex: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 22px rgba(17, 24, 39, .1);
}

.hi-cta__mark img {
    width: 46px;
    height: 46px;
}

.hi-cta__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(24px, 2.7vw, 31px);
    line-height: 1.22;
    letter-spacing: -.02em;
    color: var(--ink);
}

.hi-cta__copy p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.6;
    max-width: 380px;
}

.hi-cta__actions {
    display: grid;
    justify-items: center;
    gap: 14px;
}

/* -------------------------------------------------------------- footer -- */

.hi-foot {
    padding: 62px 0 26px;
    background: var(--dark);
    color: rgba(255, 255, 255, .66);
    font-size: 14.5px;
}

.hi-foot__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, .8fr) minmax(0, 1fr) minmax(0, 1.15fr) auto;
    gap: 40px;
    padding-bottom: 42px;
}

.hi-foot__blurb {
    margin-top: 18px;
    max-width: 260px;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .58);
}

.hi-foot__social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.hi-foot__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .09);
    color: #fff;
    transition: background-color .18s ease, transform .18s ease;
}

.hi-foot__social a:hover {
    background: var(--brand);
    transform: translateY(-2px);
}

.hi-foot__col {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.hi-foot__col h3 {
    margin-bottom: 6px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 16px;
    color: #fff;
}

.hi-foot__col a {
    font-size: 14px;
    color: rgba(255, 255, 255, .62);
    transition: color .18s ease;
}

.hi-foot__col a:hover {
    color: #fff;
}

.hi-foot__col--contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, .62);
}

.hi-foot__col--contact svg {
    flex: none;
    color: #6EE79A;
}

.hi-foot__badges {
    display: grid;
    align-content: start;
    gap: 12px;
}

.hi-badge {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    background: rgba(255, 255, 255, .05);
    color: #fff;
    white-space: nowrap;
}

.hi-badge span {
    display: grid;
    line-height: 1.25;
}

.hi-badge strong {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 13.5px;
    color: #fff;
}

.hi-badge em {
    font-style: normal;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
}

/* footer legal ----------------------------------------------------------- */

.hi-foot__legal {
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.hi-legal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 6px 0;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 15px;
    color: #fff;
}

.hi-legal__head::-webkit-details-marker {
    display: none;
}

.hi-legal .hi-acc__sign::before,
.hi-legal .hi-acc__sign::after {
    background: rgba(255, 255, 255, .8);
}

.hi-legal__body {
    padding-top: 14px;
    max-height: 320px;
    overflow-y: auto;
    font-size: 11.5px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .45);
}

.hi-legal__body p+p,
.hi-legal__body .hi-tbl+p {
    margin-top: 11px;
}

.hi-legal__body strong {
    color: rgba(255, 255, 255, .78);
}

.hi-tbl {
    margin: 14px 0;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    overflow: hidden;
}

.hi-tbl__row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hi-tbl__row+.hi-tbl__row {
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.hi-tbl__row--head {
    background: rgba(255, 255, 255, .05);
}

.hi-tbl__row--head .hi-tbl__cell {
    color: rgba(255, 255, 255, .72);
    font-weight: 700;
}

.hi-tbl__cell {
    padding: 9px 12px;
    font-size: 11.5px;
}

.hi-tbl__cell+.hi-tbl__cell {
    border-left: 1px solid rgba(255, 255, 255, .1);
}

.hi-foot__copy {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 26px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, .45);
}

/* =========================================================================
   Responsive
   ========================================================================= */

@media (max-width: 1180px) {
    .hi-nav {
        gap: 24px;
    }
    .hi-nav__list {
        gap: 22px;
    }
    .hi-hero__grid {
        gap: 36px;
    }
    .hi-steps__grid {
        grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
        gap: 40px;
    }
    .hi-step__art {
        width: 112px;
        height: 112px;
    }
    .hi-step__link {
        right: -40px;
        width: 60px;
    }
    .hi-why__grid {
        gap: 44px;
    }
    .hi-foot__grid {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, .8fr) minmax(0, 1fr) minmax(0, 1.1fr);
        gap: 32px;
    }
    .hi-foot__badges {
        grid-column: 1 / -1;
        grid-auto-flow: column;
        justify-content: start;
    }
}

@media (max-width: 1024px) {

    /* nav becomes a drawer */
    .hi-burger {
        display: flex;
    }
    .hi-nav__close {
        display: flex;
    }
    .hi-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 80;
        width: min(340px, 86vw);
        margin: 0;
        padding: 84px 26px 32px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        box-shadow: -18px 0 50px rgba(17, 24, 39, .16);
        transform: translateX(100%);
        transition: transform .3s cubic-bezier(.4, 0, .2, 1), visibility .3s;
        overflow-y: auto;
        /* keeps the closed drawer out of the tab order and off the
           scrollable area rather than merely parked off-screen */
        visibility: hidden;
    }
    .hi-nav.is-open {
        transform: translateX(0);
        visibility: visible;
    }
    .hi-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .hi-nav__list li+li {
        border-top: 1px solid var(--line-soft);
    }
    .hi-nav__link {
        display: block;
        padding: 15px 2px;
        font-size: 16px;
    }
    .hi-nav__link::after {
        display: none;
    }
    .hi-nav__cta {
        margin-top: 24px;
        width: 100%;
    }
    body.hi-locked {
        overflow: hidden;
    }

    .hi-hero {
        padding: 40px 0 64px;
    }
    .hi-hero__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 44px;
    }
    .hi-hero__lead,
    .hi-steps__lead {
        max-width: 520px;
    }
    .hi-doodle {
        display: none;
    }
    .hi-hero__aside {
        max-width: 520px;
        width: 100%;
        margin: 0 auto;
    }
    .hi-hero__blob {
        top: -180px;
        right: -140px;
        width: 400px;
        height: 400px;
    }
    .hi-hero__blob2,
    .hi-hero__dots--tr {
        display: none;
    }

    .hi-strip__box {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px 0;
        padding: 26px 10px;
    }
    .hi-strip__item {
        padding: 14px 22px;
    }
    .hi-strip__item:nth-child(odd) {
        border-left: 0;
    }
    .hi-strip__item:nth-child(n+3) {
        border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .hi-steps {
        padding: 66px 0 58px;
    }
    .hi-steps__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
    }
    .hi-steps__cards {
        gap: 18px;
    }
    .hi-step__link {
        display: none;
    }

    .hi-why {
        padding: 20px 0 66px;
    }
    .hi-why__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 42px;
    }
    .hi-why__visual {
        max-width: 520px;
        margin: 0 auto;
    }

    .hi-cta__band {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 22px 24px;
        padding: 34px 32px;
    }
    .hi-cta__actions {
        grid-column: 1 / -1;
        justify-items: start;
    }

    .hi-foot__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px;
    }
    .hi-foot__badges {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .hi-shell {
        padding: 0 18px;
    }
    html {
        scroll-padding-top: 80px;
    }

    .hi-head__row {
        height: 72px;
    }
    .hi-brand__mark {
        width: 38px;
        height: 38px;
    }
    .hi-brand__text {
        font-size: 17px;
    }

    .hi-hero {
        padding: 30px 0 52px;
    }
    .hi-hero__title {
        margin-top: 16px;
    }
    .hi-hero__lead {
        margin-top: 16px;
        font-size: 15.5px;
    }
    .hi-hero__actions {
        margin-top: 26px;
    }
    .hi-hero__actions .hi-btn {
        flex: 1 1 100%;
    }
    .hi-card {
        padding: 24px 20px 22px;
        border-radius: var(--r-lg);
    }
    .hi-card__title {
        font-size: 19px;
    }
    .hi-card__ticks {
        display: none;
    }
    .hi-card__assure {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .hi-assure {
        justify-content: flex-start;
    }

    .hi-strip__box {
        grid-template-columns: minmax(0, 1fr);
        padding: 12px 6px;
    }
    .hi-strip__item {
        border-left: 0;
        padding: 16px 20px;
    }
    .hi-strip__item+.hi-strip__item {
        border-top: 1px solid rgba(255, 255, 255, .1);
    }
    .hi-strip__item:nth-child(n+3) {
        border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .hi-steps {
        padding: 54px 0 46px;
    }
    .hi-steps__cards {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }
    .hi-step {
        display: grid;
        grid-template-columns: 92px minmax(0, 1fr);
        grid-template-rows: auto auto;
        align-content: center;
        column-gap: 18px;
        padding: 20px 20px 20px 62px;
    }
    .hi-step__num {
        top: 50%;
        left: 18px;
        transform: translateY(-50%);
    }
    .hi-step__art {
        grid-column: 1;
        grid-row: 1 / span 2;
        align-self: center;
        width: 92px;
        height: 92px;
        margin: 0;
    }
    .hi-step h3 {
        grid-column: 2;
        grid-row: 1;
        align-self: end;
        font-size: 17px;
    }
    .hi-step p {
        grid-column: 2;
        grid-row: 2;
        align-self: start;
    }

    .hi-why {
        padding: 16px 0 52px;
    }

    .hi-faq {
        padding: 4px 0 54px;
    }
    .hi-faq__title {
        margin-bottom: 26px;
    }
    .hi-faq__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }
    .hi-acc__head {
        padding: 16px;
        font-size: 14.5px;
    }
    .hi-acc__body {
        padding: 0 16px 18px;
    }

    .hi-cta {
        padding: 0 0 56px;
    }
    .hi-cta__band {
        grid-template-columns: minmax(0, 1fr);
        justify-items: center;
        text-align: center;
        padding: 32px 22px;
        gap: 18px;
    }
    .hi-cta__mark {
        width: 68px;
        height: 68px;
    }
    .hi-cta__mark img {
        width: 38px;
        height: 38px;
    }
    .hi-cta__copy p {
        margin-left: auto;
        margin-right: auto;
    }
    .hi-cta__actions {
        grid-column: auto;
        justify-items: center;
        width: 100%;
    }
    .hi-cta__actions .hi-btn {
        width: 100%;
    }
    .hi-cta__doodle {
        display: none;
    }

    .hi-foot {
        padding: 48px 0 22px;
    }
    .hi-foot__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
        padding-bottom: 32px;
    }
    .hi-foot__blurb {
        max-width: none;
    }
    .hi-foot__badges {
        grid-auto-flow: row;
    }
    .hi-badge {
        justify-content: flex-start;
    }

    /* stacked disclosure table */
    .hi-tbl__row--head {
        display: none;
    }
    .hi-tbl__row {
        grid-template-columns: minmax(0, 1fr);
    }
    .hi-tbl__cell {
        display: flex;
        justify-content: space-between;
        gap: 14px;
    }
    .hi-tbl__cell+.hi-tbl__cell {
        border-left: 0;
        border-top: 1px dashed rgba(255, 255, 255, .08);
    }
    .hi-tbl__cell::before {
        content: attr(data-th);
        font-weight: 700;
        color: rgba(255, 255, 255, .62);
    }
}

@media (max-width: 480px) {
    .hi-hero__title {
        font-size: 38px;
    }
    .hi-btn--lg {
        height: 52px;
        font-size: 15px;
    }
    .hi-faces img {
        width: 34px;
        height: 34px;
    }
    .hi-faces img+img {
        margin-left: -11px;
    }
    .hi-proofline__label {
        font-size: 13px;
    }
    .hi-step {
        grid-template-columns: 70px minmax(0, 1fr);
        column-gap: 14px;
        padding: 18px 16px 18px 54px;
    }
    .hi-step__art {
        width: 70px;
        height: 70px;
    }
    .hi-step__num {
        left: 14px;
        width: 26px;
        height: 26px;
        font-size: 13px;
    }
    .hi-cta__title {
        font-size: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }
}
