.spp {
    --spp-navy: #07073f;
    --spp-navy-2: #11115f;
    --spp-blue: #9fd7e4;
    --spp-blue-soft: #eaf7fa;
    --spp-gold: #f2c554;
    --spp-gold-soft: #fff7dc;
    --spp-ink: #15162b;
    --spp-muted: #5c6073;
    --spp-line: #dfe2ea;
    --spp-white: #fff;
    --spp-radius: 24px;
    --spp-shadow: 0 24px 70px rgba(7, 7, 63, 0.13);
    background: var(--spp-white);
    color: var(--spp-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow: hidden;
}

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

.spp img {
    display: block;
    max-width: 100%;
    height: auto;
}

.spp a {
    color: inherit;
}

.spp h1,
.spp h2,
.spp h3,
.spp p,
.spp ul,
.spp ol,
.spp figure {
    margin-top: 0;
}

.spp h1,
.spp h2,
.spp h3 {
    color: inherit;
    font-weight: 780;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.spp h1 {
    max-width: 13ch;
    margin-bottom: 24px;
    font-size: clamp(2.65rem, 5.9vw, 5.8rem);
}

.spp h2 {
    margin-bottom: 20px;
    font-size: clamp(2rem, 4vw, 3.75rem);
}

.spp h3 {
    margin-bottom: 14px;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.spp-shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.spp-skip {
    position: fixed;
    z-index: 10000;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    border-radius: 8px;
    background: var(--spp-white);
    color: var(--spp-navy);
    font-weight: 750;
    transform: translateY(-180%);
}

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

.spp :where(a, button, input, select, textarea, summary):focus-visible {
    outline: 3px solid #1c72d8;
    outline-offset: 4px;
}

.spp-header {
    position: relative;
    z-index: 30;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--spp-navy);
    color: var(--spp-white);
}

.spp-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    gap: 28px;
}

.spp-brand {
    flex: 0 1 340px;
}

.spp-brand img {
    width: min(340px, 100%);
}

.spp-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    font-size: 0.91rem;
    font-weight: 700;
}

.spp-nav a {
    text-decoration: none;
}

.spp-nav a:hover {
    color: var(--spp-gold);
}

.spp-nav__cta {
    padding: 11px 17px;
    border: 1px solid var(--spp-gold);
    border-radius: 999px;
    color: var(--spp-gold);
}

.spp-hero {
    position: relative;
    isolation: isolate;
    min-height: 750px;
    padding: clamp(76px, 9vw, 132px) 0 92px;
    background:
        radial-gradient(circle at 72% 28%, rgba(159, 215, 228, 0.17), transparent 28%),
        linear-gradient(145deg, #07073f 0%, #0a0a48 52%, #11115f 100%);
    color: var(--spp-white);
}

.spp-hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    content: "";
    mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.spp-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    align-items: center;
    gap: clamp(44px, 8vw, 112px);
}

.spp-eyebrow {
    margin-bottom: 18px;
    color: #b9e9f1;
    font-size: 0.76rem;
    font-weight: 820;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.spp-section--light .spp-eyebrow,
.spp-section--warm .spp-eyebrow,
.spp-section--form .spp-eyebrow {
    color: #3e6275;
}

.spp-lead {
    max-width: 660px;
    margin-bottom: 34px;
    color: #e4e7f4;
    font-size: clamp(1.06rem, 1.9vw, 1.35rem);
}

.spp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 38px;
}

.spp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 22px;
    border: 2px solid transparent;
    border-radius: 999px;
    font: inherit;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.spp-button:hover {
    transform: translateY(-2px);
}

.spp-button--gold {
    background: var(--spp-gold);
    color: var(--spp-navy);
    box-shadow: 0 15px 35px rgba(242, 197, 84, 0.22);
}

.spp-button--gold:hover {
    background: #ffdb7d;
}

.spp-button--outline {
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--spp-white);
}

.spp-button--outline:hover {
    border-color: var(--spp-white);
    background: rgba(255, 255, 255, 0.08);
}

.spp-fact-line {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin: 0;
    padding: 0;
    color: #cdd1e2;
    font-size: 0.84rem;
    list-style: none;
}

.spp-fact-line li {
    position: relative;
    padding-left: 17px;
}

.spp-fact-line li::before {
    position: absolute;
    top: 0.64em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--spp-gold);
    content: "";
}

.spp-hero__visual {
    position: relative;
    min-height: 510px;
}

.spp-visual-card {
    position: absolute;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: radial-gradient(circle at 45% 35%, #fff 0%, #e8edf3 63%, #bdc5d1 100%);
    box-shadow: 0 38px 80px rgba(0, 0, 0, 0.35);
}

.spp-visual-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.spp-visual-card--primary {
    top: 0;
    right: 0;
    width: min(420px, 82%);
    aspect-ratio: 1;
}

.spp-visual-card--secondary {
    bottom: 20px;
    left: 0;
    width: min(220px, 45%);
    aspect-ratio: 1;
    border: 8px solid var(--spp-navy);
}

.spp-visual-note {
    position: absolute;
    right: -18px;
    bottom: 2px;
    width: min(310px, 72%);
    margin: 0;
    padding: 18px 21px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    background: rgba(7, 7, 63, 0.88);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
}

.spp-visual-note strong,
.spp-visual-note span {
    display: block;
}

.spp-visual-note strong {
    margin-bottom: 4px;
    color: var(--spp-gold);
}

.spp-visual-note span {
    color: #dfe3f0;
    font-size: 0.82rem;
    line-height: 1.5;
}

.spp-section {
    padding: clamp(76px, 9vw, 128px) 0;
}

.spp-section--light {
    background: var(--spp-white);
}

.spp-section--warm {
    background: linear-gradient(180deg, #fffaf0, #fff 92%);
}

.spp-section--navy {
    background: var(--spp-navy);
    color: var(--spp-white);
}

.spp-section--form {
    background:
        linear-gradient(135deg, rgba(159, 215, 228, 0.24), transparent 45%),
        #f5f8fc;
}

.spp-section-heading {
    max-width: 780px;
    margin-bottom: 48px;
}

.spp-section-heading > p:last-child {
    color: var(--spp-muted);
    font-size: 1.08rem;
}

.spp-section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.spp-path-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.spp-path-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 510px;
    padding: 34px;
    border: 1px solid var(--spp-line);
    border-radius: var(--spp-radius);
    background: var(--spp-white);
    box-shadow: 0 14px 45px rgba(7, 7, 63, 0.07);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.spp-path-card:hover,
.spp-path-card.is-selected {
    border-color: #99bbc7;
    box-shadow: var(--spp-shadow);
    transform: translateY(-5px);
}

.spp-path-card__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 32px;
    border-radius: 14px;
    background: var(--spp-blue-soft);
    color: var(--spp-navy);
    font-weight: 850;
}

.spp-path-card p,
.spp-path-card li {
    color: var(--spp-muted);
}

.spp-path-card ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.spp-path-card li + li {
    margin-top: 8px;
}

.spp-path-card > a {
    margin-top: auto;
    color: var(--spp-navy);
    font-weight: 820;
    text-underline-offset: 5px;
}

.spp-system-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: clamp(48px, 9vw, 120px);
}

.spp-system-grid > div > p:not(.spp-eyebrow) {
    color: #d7dbea;
    font-size: 1.06rem;
}

.spp-text-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--spp-gold) !important;
    font-weight: 820;
    text-underline-offset: 6px;
}

.spp-system-steps {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.spp-system-steps li {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
}

.spp-system-steps li > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(242, 197, 84, 0.48);
    border-radius: 50%;
    color: var(--spp-gold);
    font-weight: 850;
}

.spp-system-steps strong {
    display: block;
    margin-bottom: 3px;
}

.spp-system-steps p {
    margin: 0;
    color: #cdd1df;
    font-size: 0.92rem;
}

.spp-status-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.spp-status-grid article {
    min-height: 290px;
    padding: 28px;
    border: 1px solid #e5e1d5;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
}

.spp-status-grid article p {
    color: var(--spp-muted);
}

.spp-status {
    display: inline-flex;
    margin-bottom: 24px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.spp-status--verified {
    background: #dff6ea;
    color: #155f3b;
}

.spp-status--review {
    background: #fff0bf;
    color: #6c4a00;
}

.spp-status--unavailable {
    background: #eceef3;
    color: #474b5b;
}

.spp-status-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 15px;
}

.spp-status-links a {
    color: #173f84;
    font-size: 0.85rem;
    font-weight: 780;
    text-underline-offset: 4px;
}

.spp-workflow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 55px 0 0;
    padding: 0;
    list-style: none;
}

.spp-workflow li {
    position: relative;
    padding: 28px 28px 15px;
    border-top: 1px solid var(--spp-line);
}

.spp-workflow li::before {
    position: absolute;
    top: -6px;
    left: 28px;
    width: 11px;
    height: 11px;
    border: 3px solid var(--spp-white);
    border-radius: 50%;
    background: var(--spp-navy);
    box-shadow: 0 0 0 1px var(--spp-navy);
    content: "";
}

.spp-workflow span {
    display: block;
    margin-bottom: 28px;
    color: #657487;
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.spp-workflow p {
    color: var(--spp-muted);
}

.spp-form-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: clamp(42px, 8vw, 100px);
}

.spp-form-intro {
    position: sticky;
    top: 32px;
}

.spp-form-assurances {
    display: grid;
    gap: 12px;
    margin-top: 35px;
}

.spp-form-assurances p {
    margin: 0;
    padding: 18px;
    border: 1px solid #d7e2ea;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.75);
}

.spp-form-assurances strong,
.spp-form-assurances span {
    display: block;
}

.spp-form-assurances strong {
    margin-bottom: 4px;
    color: var(--spp-navy);
}

.spp-form-assurances span {
    color: var(--spp-muted);
    font-size: 0.86rem;
}

.spp-form,
.spp-form-unavailable {
    padding: clamp(26px, 4vw, 46px);
    border: 1px solid #dce3eb;
    border-radius: var(--spp-radius);
    background: var(--spp-white);
    box-shadow: var(--spp-shadow);
}

.spp-request-context {
    display: grid;
    gap: 3px;
    margin-bottom: 14px;
    padding: 14px 18px;
    border: 1px solid #aac9d4;
    border-radius: 14px;
    background: var(--spp-blue-soft);
    color: var(--spp-navy);
}

.spp-request-context span {
    color: #3d5869;
    font-size: 0.9rem;
}

.spp-errors {
    margin-bottom: 26px;
    padding: 18px 20px;
    border: 2px solid #a3212b;
    border-radius: 14px;
    background: #fff1f2;
    color: #6c1118;
}

.spp-errors ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.spp-audience-fieldset,
.spp-consent {
    margin: 0 0 28px;
    padding: 0;
    border: 0;
}

.spp-audience-fieldset legend,
.spp-consent legend {
    margin-bottom: 12px;
    color: var(--spp-ink);
    font-weight: 800;
}

.spp-audience-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
}

.spp-audience-options label {
    position: relative;
    display: flex;
    min-height: 96px;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border: 2px solid #d8dee7;
    border-radius: 14px;
    background: #fff;
    color: #3f4354;
    cursor: pointer;
    font-size: 0.83rem;
    font-weight: 750;
    line-height: 1.35;
    text-align: center;
}

.spp-audience-options label:has(input:checked) {
    border-color: var(--spp-navy);
    background: var(--spp-blue-soft);
    color: var(--spp-navy);
}

.spp-audience-options input {
    position: absolute;
    top: 9px;
    left: 9px;
    width: 18px;
    height: 18px;
    accent-color: var(--spp-navy);
}

.spp-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.spp-form label {
    display: grid;
    align-content: start;
    gap: 7px;
    color: #333747;
    font-size: 0.87rem;
    font-weight: 730;
}

.spp-form :where(input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="date"], input[type="number"], select, textarea) {
    width: 100%;
    min-height: 49px;
    padding: 11px 13px;
    border: 1px solid #b9c2ce;
    border-radius: 9px;
    background: #fff;
    color: var(--spp-ink);
    font: inherit;
    font-size: 0.96rem;
}

.spp-form textarea {
    min-height: 165px;
    resize: vertical;
}

.spp-form input[type="file"] {
    max-width: 100%;
    padding: 13px;
    border: 1px dashed #9caabd;
    border-radius: 9px;
    background: #f8fafc;
    color: var(--spp-ink);
    font: inherit;
    font-size: 0.9rem;
}

.admin-bar .spp-form-intro {
    top: 64px;
}

.spp-form small {
    color: var(--spp-muted);
    font-weight: 500;
}

.spp-form__full {
    margin-top: 18px;
}

.spp-consent {
    display: grid;
    gap: 10px;
    margin-top: 28px;
    padding: 20px;
    border-radius: 14px;
    background: #f4f7fa;
}

.spp-consent label {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 10px;
    font-weight: 560;
}

.spp-consent input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--spp-navy);
}

.spp-form__privacy {
    color: var(--spp-muted);
    font-size: 0.82rem;
}

.spp-form__privacy a {
    color: #173f84;
}

.spp-form__submit {
    width: 100%;
    margin-top: 7px;
}

.spp-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.spp-faq-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(40px, 8vw, 100px);
}

.spp-faq details {
    border-top: 1px solid var(--spp-line);
}

.spp-faq details:last-child {
    border-bottom: 1px solid var(--spp-line);
}

.spp-faq summary {
    position: relative;
    padding: 22px 42px 22px 0;
    color: var(--spp-navy);
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

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

.spp-faq summary::after {
    position: absolute;
    top: 20px;
    right: 4px;
    color: #64748b;
    content: "+";
    font-size: 1.4rem;
}

.spp-faq details[open] summary::after {
    content: "–";
}

.spp-faq details p {
    max-width: 68ch;
    padding: 0 40px 22px 0;
    color: var(--spp-muted);
}

.spp-footer {
    padding: 42px 0;
    background: #04042f;
    color: var(--spp-white);
}

.spp-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.spp-footer p {
    margin: 4px 0 0;
    color: #c7cadb;
    font-size: 0.86rem;
}

.spp-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 20px;
    font-size: 0.85rem;
}

.spp-footer a {
    color: var(--spp-white);
    text-underline-offset: 4px;
}

@media (max-width: 980px) {
    .spp-nav > a:not(.spp-nav__cta) {
        display: none;
    }

    .spp-hero__grid,
    .spp-system-grid,
    .spp-form-layout,
    .spp-faq-layout {
        grid-template-columns: 1fr;
    }

    .spp-hero__copy {
        max-width: 760px;
    }

    .spp-hero__visual {
        width: min(620px, 100%);
        margin-inline: auto;
    }

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

    .spp-path-card:last-child {
        grid-column: 1 / -1;
        min-height: 420px;
    }

    .spp-form-intro {
        position: static;
    }
}

@media (max-width: 720px) {
    .spp-shell {
        width: min(100% - 28px, 1180px);
    }

    .spp-header__inner {
        min-height: 70px;
    }

    .spp-brand {
        max-width: 230px;
    }

    .spp-nav__cta {
        padding: 9px 12px;
        font-size: 0.76rem;
    }

    .spp-hero {
        min-height: 0;
        padding-top: 72px;
    }

    .spp-hero__grid {
        gap: 55px;
    }

    .spp h1 {
        font-size: clamp(2.6rem, 13vw, 4.3rem);
    }

    .spp-actions,
    .spp-button {
        width: 100%;
    }

    .spp-fact-line {
        display: grid;
    }

    .spp-hero__visual {
        min-height: 400px;
    }

    .spp-visual-card--primary {
        width: 82%;
    }

    .spp-visual-card--secondary {
        width: 43%;
    }

    .spp-visual-note {
        right: 0;
        width: 70%;
    }

    .spp-path-grid,
    .spp-status-grid,
    .spp-form-grid,
    .spp-audience-options {
        grid-template-columns: 1fr;
    }

    .spp-path-card,
    .spp-path-card:last-child {
        grid-column: auto;
        min-height: 0;
    }

    .spp-status-grid article {
        min-height: 0;
    }

    .spp-workflow {
        grid-template-columns: 1fr;
        margin-top: 35px;
    }

    .spp-workflow li {
        padding-left: 38px;
        border-top: 0;
        border-left: 1px solid var(--spp-line);
    }

    .spp-workflow li::before {
        top: 37px;
        left: -6px;
    }

    .spp-workflow span {
        margin-bottom: 12px;
    }

    .spp-audience-options label {
        min-height: 64px;
    }

    .spp-footer__inner {
        display: grid;
    }

    .spp-footer nav {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .spp-header__inner {
        gap: 12px;
    }

    .spp-brand {
        max-width: min(52vw, 190px);
    }

    .spp-nav__cta {
        min-height: 44px;
        max-width: 42vw;
    }
}

@media (max-width: 782px) {
    .admin-bar .spp-form-intro {
        top: 78px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .spp *,
    .spp *::before,
    .spp *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}

@media print {
    .spp-header,
    .spp-actions,
    .spp-section--form,
    .spp-faq,
    .spp-footer {
        display: none !important;
    }

    .spp,
    .spp-hero,
    .spp-section--navy,
    .spp-section--warm {
        background: #fff !important;
        color: #000 !important;
    }

    .spp-hero {
        min-height: 0;
        padding: 30px 0;
    }

    .spp-hero__visual {
        display: none;
    }

    .spp-hero__grid,
    .spp-system-grid {
        display: block;
    }

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

    .spp-path-card,
    .spp-status-grid article,
    .spp-system-steps li {
        break-inside: avoid;
        box-shadow: none;
    }
}
