:root {
    color-scheme: light;
    --target-bg: #ffffff;
    --target-panel: #f8fafc;
    --target-text: #111827;
    --target-muted: #5f6f82;
    --target-line: #dbe3ea;
    --target-brand: #0f766e;
    --target-brand-dark: #115e59;
    --target-accent: #2563eb;
    --target-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.rich-target-page {
    background: var(--target-bg);
    color: var(--target-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.target-nav {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--target-line);
    position: sticky;
    top: 0;
    z-index: 20;
}

.target-nav-shell,
.target-hero,
.target-section,
.target-bottom-cta,
.target-footer {
    margin: 0 auto;
    max-width: 1120px;
    padding-left: 24px;
    padding-right: 24px;
}

.target-nav-shell {
    align-items: center;
    display: flex;
    gap: 18px;
    min-height: 76px;
}

.target-brand {
    align-items: center;
    color: var(--target-brand);
    display: inline-flex;
    flex: 0 0 auto;
    gap: 10px;
    font-size: 21px;
    font-weight: 900;
}

.target-brand img {
    height: 38px;
    width: 38px;
}

.target-nav-toggle,
.target-menu-button {
    display: none;
}

.target-nav-links {
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    gap: 4px;
    justify-content: center;
}

.target-nav-links a {
    border-radius: 8px;
    color: var(--target-muted);
    font-size: 15px;
    font-weight: 800;
    padding: 10px 11px;
}

.target-nav-links a:hover,
.target-nav-links a:focus-visible {
    background: #e6fffb;
    color: var(--target-brand);
}

.target-nav-action,
.target-button {
    align-items: center;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-weight: 900;
    justify-content: center;
    min-height: 48px;
    padding: 11px 18px;
}

.target-nav-action,
.target-button.primary {
    background: var(--target-brand);
    color: #ffffff;
}

.target-button.secondary {
    background: #ffffff;
    border: 1px solid var(--target-line);
    color: var(--target-text);
}

.target-hero {
    display: grid;
    gap: 36px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
    padding-bottom: 72px;
    padding-top: 78px;
}

.target-eyebrow,
.section-heading span,
.form-heading span {
    color: var(--target-brand);
    display: inline-block;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.target-hero h1 {
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.06;
    margin: 14px 0 0;
}

.target-hero p,
.section-heading p,
.target-bottom-cta p,
.target-summary p,
.target-summary li,
.contact-options p,
.form-heading p,
.faq-list p {
    color: var(--target-muted);
    font-size: 17px;
    line-height: 1.7;
}

.target-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.target-summary {
    align-self: start;
    background: linear-gradient(160deg, #ecfeff, #f8fafc);
    border: 1px solid var(--target-line);
    border-radius: 8px;
    box-shadow: var(--target-shadow);
    padding: 24px;
}

.target-summary strong {
    display: block;
    font-size: 22px;
}

.target-summary ul {
    margin: 14px 0 0;
    padding-left: 20px;
}

.target-section {
    padding-bottom: 54px;
    padding-top: 54px;
}

.section-heading {
    max-width: 760px;
}

.section-heading h2,
.target-bottom-cta h2,
.form-heading h2 {
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.14;
    margin: 10px 0 0;
}

.faq-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.faq-list details {
    background: #ffffff;
    border: 1px solid var(--target-line);
    border-radius: 8px;
    padding: 18px 20px;
}

.faq-list summary {
    cursor: pointer;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.5;
}

.faq-list p {
    margin: 12px 0 0;
}

.target-bottom-cta {
    padding-bottom: 82px;
    padding-top: 62px;
    text-align: center;
}

.target-bottom-cta .target-actions {
    justify-content: center;
}

.contact-grid {
    align-items: start;
    display: grid;
    gap: 32px;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
}

.contact-options {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.contact-options article,
.contact-form {
    background: #ffffff;
    border: 1px solid var(--target-line);
    border-radius: 8px;
    box-shadow: var(--target-shadow);
    padding: 22px;
}

.contact-options h3 {
    margin: 0;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 7px;
}

.contact-form label span {
    font-size: 14px;
    font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    color: var(--target-text);
    font: inherit;
    padding: 12px 13px;
    width: 100%;
}

.contact-form textarea {
    resize: vertical;
}

.form-status {
    color: var(--target-brand-dark);
    font-size: 14px;
    font-weight: 800;
    min-height: 22px;
}

.target-footer {
    align-items: center;
    border-top: 1px solid var(--target-line);
    color: var(--target-muted);
    display: flex;
    gap: 18px;
    justify-content: space-between;
    padding-bottom: 34px;
    padding-top: 34px;
}

.target-footer a {
    color: var(--target-brand);
    font-weight: 900;
}

@media (max-width: 920px) {
    .target-hero,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .target-nav-shell {
        flex-wrap: wrap;
        gap: 12px;
        padding-bottom: 12px;
        padding-top: 12px;
    }

    .target-menu-button {
        align-items: center;
        border: 1px solid #cbd5e1;
        border-radius: 8px;
        cursor: pointer;
        display: inline-flex;
        flex: 0 0 48px;
        flex-direction: column;
        gap: 4px;
        height: 48px;
        justify-content: center;
        margin-left: auto;
        order: 2;
        width: 48px;
    }

    .target-menu-button span {
        background: var(--target-text);
        border-radius: 999px;
        display: block;
        height: 2px;
        width: 18px;
    }

    .target-nav-action {
        flex: 1 0 100%;
        order: 3;
    }

    .target-nav-links {
        background: #ffffff;
        border: 1px solid var(--target-line);
        border-radius: 8px;
        box-shadow: var(--target-shadow);
        display: none;
        flex: 0 0 100%;
        order: 4;
        padding: 10px;
    }

    .target-nav-links a {
        display: block;
        padding: 12px 14px;
        text-align: left;
    }

    .target-nav-toggle:checked ~ .target-nav-links {
        display: grid;
    }

    .target-hero,
    .target-section,
    .target-bottom-cta,
    .target-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .target-hero {
        padding-bottom: 48px;
        padding-top: 52px;
    }

    .target-section {
        padding-bottom: 42px;
        padding-top: 42px;
    }

    .target-actions,
    .target-button {
        width: 100%;
    }

    .target-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}
