html, body {
    overflow-x: hidden;
}

[x-cloak] {
    display: none !important;
}

.simple-landing {
    background: #fff;
    color: #111111;
}

.simple-panel {
    width: 100%;
}

.simple-panel--dark {
    background: #111111;
    color: #fff;
}

.simple-panel--white {
    background: #ffffff;
    color: #111111;
}

.simple-panel--tint {
    background: #dff2f3;
    color: #111111;
}

.simple-shell {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
}

.simple-narrow {
    max-width: 860px;
    text-align: center;
}

.simple-hero {
    padding: 0;
}

.simple-hero__spacer {
    min-height: 34vh;
}

.simple-copy {
    padding: 96px 0;
    margin-left: calc((100% - 100vw) / 2);
    width: 100vw;
    position: relative;
}

.simple-kicker {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.72;
}

.simple-copy h1,
.simple-copy h2 {
    margin: 0;
    color: rgb(16, 14, 14);
    line-height: 1.5;
    font-weight: 800;
}

.simple-copy h1 {
    font-size: 36px;
}

.simple-copy h2 {
    font-size: 28px;
}

.simple-copy h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 700;
}

.simple-lead {
    margin: 1em auto;
    line-height: 1.5;
    font-size: 22px;
    font-weight: 600;
}

.simple-sublead {
    margin: 12px auto 0;
    line-height: 1.6;
    max-width: 64ch;
}

.simple-intro {
    margin: 64px 0;
    font-weight: 400;
}

.simple-intro p,
.simple-intro-text,
.simple-closing,
.simple-step p,
.simple-footer-cta p {
    margin: 2em 0;
    line-height: 1.33;
    font-size: 18px;
}

.simple-lines,
.simple-pill-grid,
.simple-mini-stack,
.simple-steps {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.simple-line,
.simple-pill,
.simple-mini-block,
.simple-step {
    font-size: 18px;
    border-radius: 18px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(17, 17, 17, 0.08);
}

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

.simple-pill {
    font-weight: 600;
}

.simple-pill:last-child {
    grid-column: 1 / -1;
}

.simple-mini-stack {
    margin-left: auto;
    margin-right: auto;
}

.simple-mini-block--title {
    font-weight: 700;
    background: rgba(255, 255, 255, 0.9);
}

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

.simple-step {
    text-align: center;
}

.simple-step__label {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.08);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.simple-step p {
    margin-top: 10px;
}

.simple-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #fff;
    color: #111111;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.12);
}

.finder-form-section {
    padding-top: 20px;
    padding-bottom: 72px;
}

.finder-form-card {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 24px 56px rgba(17, 17, 17, 0.08);
}

.finder-form-card__header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 28px;
}

.finder-form-card__header p {
    margin: 12px 0 0;
    line-height: 1.6;
    color: rgba(17, 17, 17, 0.72);
}

.finder-progress {
    height: 8px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.08);
    overflow: hidden;
    margin-bottom: 28px;
}

.finder-progress__bar {
    display: block;
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #111111, #4b5563);
    transition: width 220ms ease;
}

.finder-step[hidden] {
    display: none;
}

.finder-step h3 {
    margin-bottom: 20px;
    text-align: center;
}

.finder-grid {
    display: grid;
    gap: 16px;
}

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

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

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

.finder-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.finder-field label {
    font-size: 14px;
    font-weight: 700;
}

.finder-field input[type=text],
.finder-field input[type=email],
.finder-field input[type=url],
.finder-field input[type=tel],
.finder-field input[type=date],
.finder-field input[type=time],
.finder-field select,
.finder-field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(17, 17, 17, 0.14);
    border-radius: 18px;
    background: #fff;
    color: #111111;
    padding: 14px 16px;
    font-size: 16px;
    font: inherit;
    outline: none;
    min-height: 52px;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

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

.finder-field input:focus,
.finder-field select:focus,
.finder-field textarea:focus {
    border-color: #111111;
    box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.08);
}

.finder-field input:-webkit-autofill,
.finder-field input:-webkit-autofill:hover,
.finder-field input:-webkit-autofill:focus,
.finder-field select:-webkit-autofill,
.finder-field select:-webkit-autofill:hover,
.finder-field select:-webkit-autofill:focus,
.finder-field textarea:-webkit-autofill,
.finder-field textarea:-webkit-autofill:hover,
.finder-field textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: #111111;
    box-shadow: 0 0 0 1000px #ffffff inset;
    transition: background-color 9999s ease-out 0s;
}

.finder-field--inline {
    margin-bottom: 12px;
}

.finder-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
}

.finder-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    padding: 0;
}

.finder-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

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

.finder-choice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    background: rgba(255, 255, 255, 0.86);
    cursor: pointer;
    line-height: 1.35;
}

.finder-choice input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.finder-choice span {
    font-size: 15px;
}

.finder-service-hint {
    margin: 0 0 18px;
    color: rgba(17, 17, 17, 0.68);
    font-style: italic;
    line-height: 1.5;
}

.finder-field__hint {
    margin: -2px 0 0;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(17, 17, 17, 0.62);
}

.finder-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 26px;
}

.finder-actions--split {
    justify-content: space-between;
    gap: 16px;
}

.finder-button {
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    border: 0;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.finder-button:hover {
    transform: translateY(-1px);
}

.finder-button--primary {
    background: #111111;
    color: #fff;
    box-shadow: 0 14px 30px rgba(17, 17, 17, 0.2);
}

.finder-button--ghost {
    background: rgba(17, 17, 17, 0.06);
    color: #111111;
}

.finder-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 8px;
}

.finder-summary__block {
    padding: 20px;
    border-radius: 22px;
    background: #f8fafb;
    border: 1px solid rgba(17, 17, 17, 0.08);
}

.finder-summary__block h4 {
    margin: 0 0 12px;
    font-size: 15px;
}

.finder-summary__block p {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(17, 17, 17, 0.78);
}

.finder-success,
.finder-error {
    margin-top: 24px;
    padding: 20px 22px;
    border-radius: 22px;
    text-align: center;
}

.finder-success {
    background: #f0fdf4;
    border: 1px solid rgba(34, 197, 94, 0.18);
}

.finder-error {
    background: #fef2f2;
    border: 1px solid rgba(220, 38, 38, 0.18);
}

.finder-success h3,
.finder-error h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.finder-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

@media (max-width: 1024px) {
    .simple-steps,
    .finder-summary {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .simple-shell {
        width: min(100% - 24px, 1100px);
    }

    .simple-copy {
        padding: 26px 0 34px;
        margin-left: 0;
        width: 100%;
    }

    .simple-hero__spacer {
        min-height: 30vh;
    }

    .simple-pill-grid,
    .simple-steps,
    .finder-grid--2,
    .finder-grid--3,
    .finder-grid--4,
    .finder-choice-grid,
    .finder-choice-grid--multi {
        grid-template-columns: 1fr;
    }

    .simple-copy h1 {
        font-size: 28px;
    }

    .simple-copy h2 {
        font-size: 24px;
    }

    .simple-line,
    .simple-pill,
    .simple-mini-block,
    .simple-step,
    .finder-form-card,
    .finder-summary__block {
        padding: 14px 16px;
    }

    .finder-form-card {
        border-radius: 24px;
        padding: 20px;
    }

    .finder-actions,
    .finder-actions--split {
        flex-direction: column;
    }

    .finder-button {
        width: 100%;
    }

    .simple-footer-cta {
        padding: 54px 0 64px;
    }
}
