/* Public informational and authentication screens translated from the Figma file.
   All selectors are scoped to fp-* classes so the shared home, header and footer stay untouched. */

.fp-auth,
.fp-page-hero,
.fp-contact,
.fp-faq,
.fp-not-found,
.fp-responsible-hero,
.fp-responsible-intro,
.fp-responsible-controls,
.fp-responsible-signs,
.fp-responsible-partners,
.fp-auth *,
.fp-page-hero *,
.fp-contact *,
.fp-faq *,
.fp-not-found *,
.fp-responsible-hero *,
.fp-responsible-intro *,
.fp-responsible-controls *,
.fp-responsible-signs *,
.fp-responsible-partners * {
    box-sizing: border-box;
}

.fp-auth h1,
.fp-page-hero h1,
.fp-contact h2,
.fp-not-found h1,
.fp-responsible-hero h1,
.fp-responsible-intro h2,
.fp-responsible-controls h2,
.fp-responsible-signs h2,
.fp-responsible-partners h2 {
    margin: 0;
    color: #17161c;
    font-family: "Cairo", "Arial Black", sans-serif;
    font-weight: 900;
}

.fp-auth p,
.fp-page-hero p,
.fp-contact p,
.fp-faq p,
.fp-not-found p,
.fp-responsible-hero p,
.fp-responsible-intro p,
.fp-responsible-controls p,
.fp-responsible-signs p,
.fp-responsible-partners p,
.fp-responsible-signs dl,
.fp-responsible-signs dd,
.fp-responsible-signs ul {
    margin: 0;
}

.fp-wide,
.fp-responsible-wide {
    width: min(calc(100% - 160px), 1280px);
    margin-inline: auto;
}

.fp-button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 32px;
    border: 0;
    border-radius: 9999px;
    background: #ffcc29;
    color: #17161c;
    font: 600 14px/1.3 "IBM Plex Sans", Arial, sans-serif;
    letter-spacing: -.4px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 150ms ease, transform 150ms ease;
}

.fp-button:hover {
    background: #f3bd0e;
    color: #17161c;
    transform: translateY(-1px);
}

.fp-button:focus-visible,
.fp-field input:focus-visible,
.fp-field select:focus-visible,
.fp-field textarea:focus-visible,
.fp-faq button:focus-visible,
.fp-faq input:focus-visible,
.fp-check input:focus-visible {
    outline: 3px solid rgba(122, 29, 255, .28);
    outline-offset: 2px;
}

.fp-button--wide {
    width: 100%;
}

.fp-mobile-only {
    display: none;
}

/* Authentication */

.account-verification-notice {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 20px;
    padding: 16px 24px;
    background: #f1eaff;
    color: #482079;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.account-verification-notice p { margin: 0; }
.account-verification-notice a { color: #6315ce; font-weight: 600; }

.fp-auth {
    display: flex;
    min-height: 640px;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 16px;
    background: #f3f2f7;
}

.fp-auth--signup {
    min-height: 825px;
}

.fp-auth-card {
    display: flex;
    width: 440px;
    min-height: 480px;
    flex-direction: column;
    gap: 24px;
    padding: 40px;
    border: 1px solid #e4e1ed;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 12px rgba(0, 0, 0, .05);
}

.fp-auth-card--signup {
    width: 520px;
    min-height: 665px;
}

.fp-auth-heading {
    text-align: center;
}

.fp-auth-heading h1 {
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -.75px;
}

.fp-auth-heading p,
.fp-auth-switch {
    color: #716f7e;
    font-size: 14px;
    line-height: 1.2;
}

.fp-auth-heading p {
    margin-top: 8px;
}

.fp-auth-switch {
    text-align: center;
}

.fp-auth-switch a,
.fp-auth-help a,
.fp-consents a {
    color: #7a1dff;
    font-weight: 600;
    text-decoration: none;
}

.fp-auth-switch a:hover,
.fp-auth-help a:hover,
.fp-consents a:hover {
    text-decoration: underline;
}

.fp-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fp-auth-form {
    gap: 16px;
}

.fp-field,
.fp-faq-search {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 8px;
    color: #17161c;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
}

.fp-field > span:first-child {
    color: #17161c;
    font-size: 12px;
    font-weight: 700;
}

.fp-field input,
.fp-field select,
.fp-field textarea {
    width: 100%;
    min-height: 0;
    min-width: 0;
    border: 1px solid #e4e1ed;
    border-radius: 8px;
    background: #f3f2f7;
    color: #17161c;
    font: 400 14px/1.2 "IBM Plex Sans", Arial, sans-serif;
}

.fp-field input,
.fp-field select {
    height: 42px;
    padding: 11px 16px;
}

.fp-field textarea {
    min-height: 120px;
    padding: 12px 16px;
    resize: vertical;
}

.fp-field input::placeholder,
.fp-field textarea::placeholder {
    color: #716f7e;
    opacity: 1;
}

.fp-field small {
    color: #c62828;
    font-size: 11px;
    font-weight: 500;
}

.fp-field small:empty {
    display: none;
}

.fp-field.has-error input,
.fp-field.has-error select,
.fp-field.has-error textarea {
    border-color: #c62828;
}

.fp-field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.fp-auth-help {
    display: flex;
    justify-content: flex-end;
    margin-top: -2px;
    font-size: 12px;
    line-height: 1.1;
}

.fp-consents {
    display: grid;
    gap: 8px;
}

.fp-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #17161c;
    font-size: 12px;
    line-height: 1.25;
}

.fp-check input {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    margin: 0;
    accent-color: #7a1dff;
}

.fp-form-alert {
    padding: 10px 12px;
    border: 1px solid #ffb4b4;
    border-radius: 8px;
    background: #fff2f2;
    color: #8b1d1d;
    font-size: 12px;
    line-height: 1.3;
}

.fp-form-alert.is-success {
    border-color: #86d9a6;
    background: #effbf3;
    color: #176b38;
}

.fp-form-alert[hidden] {
    display: none;
}

.fp-form.is-submitting .fp-button {
    cursor: wait;
    opacity: .72;
}

/* Shared purple page banners */

.fp-page-hero {
    display: flex;
    height: 216px;
    align-items: center;
    background: #7a1dff;
    color: #fff;
}

.fp-page-hero h1 {
    color: #fff;
    font-size: 64px;
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.fp-page-hero p {
    max-width: 770px;
    margin-top: 12px;
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
}

/* Contact */

.fp-contact {
    height: 780px;
    padding: 48px 0 80px;
    background: #fff;
}

.fp-contact-grid {
    display: grid;
    grid-template-columns: 752px 480px;
    gap: 48px;
}

.fp-contact-card {
    min-height: 652px;
    padding: 32px;
    border: 1px solid #e4e1ed;
    border-radius: 12px;
    background: #f3f2f7;
}

.fp-contact-card h2,
.fp-support > h2 {
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -.75px;
}

.fp-contact-form {
    margin-top: 24px;
}

.fp-contact-form .fp-field input,
.fp-contact-form .fp-field select,
.fp-contact-form .fp-field textarea {
    background: #fff;
}

.fp-message-field {
    position: relative;
}

.fp-message-field .character-count {
    display: none;
}

.fp-form-note {
    display: none;
}

.fp-support {
    min-height: 592px;
}

.fp-support-item {
    padding: 32px 24px;
}

.fp-support-item--featured {
    margin-top: 24px;
    border: 1px solid #7a1dff;
    border-radius: 12px;
}

.fp-support-item h3 {
    margin: 0 0 14px;
    color: #7a1dff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.fp-support-item a,
.fp-support-item strong {
    display: block;
    color: #17161c;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    text-decoration: none;
}

.fp-support-item p {
    margin-top: 12px;
    color: #716f7e;
    font-size: 12px;
    line-height: 1.2;
}

/* FAQ */

.fp-faq {
    height: 660px;
    padding: 48px 0 80px;
    background: #fff;
}

.fp-faq-container {
    min-height: 532px;
}

.fp-faq-categories {
    display: flex;
    gap: 12px;
}

.fp-faq-categories button {
    min-width: 100px;
    min-height: 29px;
    padding: 6px 20px;
    border: 1px solid #e4e1ed;
    border-radius: 9999px;
    background: #f3f2f7;
    color: #17161c;
    font: 600 12px/1.1 "IBM Plex Sans", Arial, sans-serif;
    cursor: pointer;
}

.fp-faq-categories button.is-active {
    border-color: #ffcc29;
    background: #ffcc29;
}

.fp-faq-search {
    margin-top: 40px;
    gap: 12px;
}

.fp-faq-search-control {
    position: relative;
    display: block;
}

.fp-faq-search input {
    width: 100%;
    height: 42px;
    padding: 11px 48px 11px 16px;
    border: 1px solid #e4e1ed;
    border-radius: 12px;
    background: #fff;
    color: #17161c;
    font: 600 12px/1.1 "IBM Plex Sans", Arial, sans-serif;
}

.fp-faq-search img {
    position: absolute;
    top: 12px;
    right: 16px;
    width: 18px;
    height: 18px;
}

.fp-faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 40px;
    padding: 24px;
    border: 1px solid #e4e1ed;
    border-radius: 16px;
}

.fp-faq-item {
    align-self: start;
    border: 1px solid #e4e1ed;
    border-radius: 8px;
    background: #f3f2f7;
    overflow: hidden;
}

.fp-faq-item h2 {
    margin: 0;
    font: inherit;
}

.fp-faq-item h2 button {
    display: flex;
    width: 100%;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    border: 0;
    background: transparent;
    color: #17161c;
    font: 600 14px/1.3 "IBM Plex Sans", Arial, sans-serif;
    text-align: left;
    cursor: pointer;
}

.fp-faq-toggle {
    position: relative;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border: 1px solid #e4e1ed;
    border-radius: 50%;
    background: #f3f2f7;
}

.fp-faq-toggle::before,
.fp-faq-toggle::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 1px;
    background: #17161c;
    content: "";
    transform: translate(-50%, -50%);
}

.fp-faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.fp-faq-item.is-open .fp-faq-toggle::after {
    display: none;
}

.fp-faq-answer {
    padding: 0 16px 16px;
    color: #716f7e;
    font-size: 13px;
    line-height: 1.4;
}

.fp-faq-answer[hidden] {
    display: none;
}

.fp-faq-empty {
    margin-top: 32px;
    padding: 32px;
    border-radius: 12px;
    background: #f3f2f7;
    text-align: center;
}

/* 404 */

.fp-not-found {
    height: 921px;
    background: #fff;
}

.fp-not-found-inner {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
}

.fp-not-found-art {
    display: block;
    width: 645px;
    height: 599px;
    object-fit: contain;
}

.fp-not-found-copy {
    width: min(calc(100% - 160px), 1280px);
    margin-top: 32px;
    text-align: center;
}

.fp-not-found-copy h1 {
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -.75px;
}

.fp-not-found-copy p {
    max-width: 630px;
    margin: 12px auto 0;
    color: #716f7e;
    font-size: 18px;
    line-height: 1.4;
}

.fp-not-found-button {
    width: 640px;
    min-height: 54px;
    margin-top: 32px;
}

/* Responsible play */

.fp-responsible-wide {
    max-width: 1232px;
}

.fp-responsible-hero {
    height: 294px;
    padding: 40px 0;
    background: #7a1dff;
    color: #fff;
}

.fp-responsible-hero-grid {
    display: grid;
    height: 214px;
    grid-template-columns: 552px 1fr;
    align-items: center;
    gap: 48px;
}

.fp-responsible-hero h1 {
    color: #fff;
    font-size: 64px;
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.fp-responsible-hero p {
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
}

.fp-responsible-hero .fp-button {
    width: 100%;
    margin-top: 28px;
}

.fp-responsible-intro {
    height: 480px;
    padding: 40px 0;
    background: #fff;
}

.fp-responsible-intro-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    align-items: center;
    gap: 48px;
}

.fp-responsible-intro img {
    width: 400px;
    height: 400px;
    object-fit: contain;
}

.fp-kicker {
    color: #7a1dff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -.4px;
}

.fp-responsible-intro h2,
.fp-responsible-controls h2,
.fp-responsible-signs h2,
.fp-responsible-partners h2 {
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -.75px;
}

.fp-responsible-intro .fp-lead {
    margin-top: 20px;
    color: #716f7e;
    font-size: 18px;
    line-height: 1.4;
}

.fp-responsible-intro .fp-lead + p {
    margin-top: 16px;
    color: #716f7e;
    font-size: 14px;
    line-height: 1.2;
}

.fp-responsible-controls {
    height: 778px;
    padding: 40px 0;
    background: #fff;
}

.fp-responsible-heading {
    max-width: 800px;
}

.fp-responsible-heading > p:last-child {
    margin-top: 8px;
    color: #716f7e;
    font-size: 14px;
    line-height: 1.2;
}

.fp-control-grid {
    display: grid;
    height: 516px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.fp-control-card {
    position: relative;
    display: flex;
    min-width: 0;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 24px;
    border: 1px solid #e4e1ed;
    border-radius: 12px;
    background: #f3f2f7;
    overflow: hidden;
}

.fp-control-card:last-child {
    border-color: #7a1dff;
}

.fp-control-card h3,
.fp-partner-grid h3,
.fp-support-banner h3 {
    margin: 0;
    color: #17161c;
    font-family: "Cairo", "Arial Black", sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.fp-control-card p {
    max-width: 235px;
    margin-top: 8px;
    color: #716f7e;
    font-size: 12px;
    line-height: 1.2;
}

.fp-control-card img {
    width: 116px;
    height: 116px;
    flex: 0 0 116px;
    align-self: flex-end;
    object-fit: contain;
}

.fp-responsible-signs {
    height: 449px;
    padding: 40px 0;
    background: #fff;
}

.fp-signs-grid {
    display: grid;
    grid-template-columns: 551px 633px;
    gap: 48px;
}

.fp-signs-grid > div > p {
    margin-top: 12px;
    color: #716f7e;
    font-size: 14px;
}

.fp-signs-grid ul {
    display: grid;
    gap: 12px;
    margin-top: 24px;
    padding: 0;
    color: #716f7e;
    font-size: 14px;
    list-style: none;
}

.fp-signs-grid li {
    position: relative;
    padding-left: 18px;
}

.fp-signs-grid li::before {
    position: absolute;
    top: .55em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7a1dff;
    content: "";
}

.fp-professional-support {
    min-height: 369px;
    padding: 32px;
    border: 1px solid #7a1dff;
    border-radius: 12px;
}

.fp-professional-support > p {
    margin-top: 12px;
    color: #716f7e;
    font-size: 14px;
}

.fp-professional-support dl {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.fp-professional-support dt {
    color: #17161c;
    font-weight: 600;
}

.fp-professional-support dd {
    margin-top: 2px;
}

.fp-professional-support a,
.fp-partner-grid a {
    color: #7a1dff;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.fp-responsible-partners {
    min-height: 557px;
    padding: 40px 0;
    background: #fff;
}

.fp-partner-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.fp-partner-grid article {
    min-height: 183px;
    padding: 24px;
    border: 1px solid #e4e1ed;
    border-radius: 12px;
    background: #f3f2f7;
}

.fp-partner-grid article:nth-child(2) {
    border-color: #7a1dff;
    background: #fff;
}

.fp-partner-grid p {
    margin: 10px 0 16px;
    color: #716f7e;
    font-size: 12px;
    line-height: 1.2;
}

.fp-support-banner {
    display: flex;
    min-height: 96px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
    padding: 20px 24px;
    border-radius: 12px;
    background: #7a1dff;
    color: #fff;
}

.fp-support-banner h3,
.fp-support-banner p {
    color: #fff;
}

.fp-support-banner p {
    margin-top: 4px;
    font-size: 12px;
}

.fp-support-banner .fp-button {
    flex: 0 0 auto;
}

@media (max-width: 1000px) and (min-width: 768px) {
    .fp-wide,
    .fp-responsible-wide {
        width: min(calc(100% - 48px), 920px);
    }

    .fp-contact-grid,
    .fp-signs-grid {
        grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr);
        gap: 32px;
    }

    .fp-contact-grid {
        grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
    }

    .fp-responsible-hero-grid,
    .fp-responsible-intro-grid {
        grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
        gap: 32px;
    }

    .fp-responsible-intro img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 767px) {
    .fp-desktop-only {
        display: none;
    }

    .fp-mobile-only {
        display: inline;
    }

    .fp-wide,
    .fp-responsible-wide {
        width: calc(100% - 32px);
    }

    .fp-auth {
        min-height: 0;
        padding: 40px 16px;
    }

    .fp-auth--signup {
        min-height: 839px;
    }

    .fp-auth-card,
    .fp-auth-card--signup {
        width: 100%;
        min-height: 402px;
        gap: 20px;
        padding: 24px;
    }

    .fp-auth-card--signup {
        min-height: 679px;
    }

    .fp-auth-heading h1 {
        font-size: 30px;
        line-height: 1.2;
        letter-spacing: -.9px;
    }

    .fp-auth-heading p,
    .fp-auth-switch {
        font-size: 12px;
        line-height: 1.1;
    }

    .fp-auth-form {
        gap: 14px;
    }

    .fp-field-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .fp-field input,
    .fp-field select {
        height: 42px;
    }

    .fp-check {
        font-size: 11px;
    }

    .fp-page-hero {
        height: 146px;
        align-items: flex-start;
        padding: 24px 0;
    }

    .fp-page-hero--faq {
        height: 187px;
    }

    .fp-page-hero h1 {
        font-size: 30px;
        line-height: 1.2;
        letter-spacing: -.9px;
    }

    .fp-page-hero p {
        max-width: 358px;
        margin-top: 8px;
        font-size: 14px;
        line-height: 1.2;
    }

    .fp-contact {
        height: 976px;
        padding: 24px 0 40px;
    }

    .fp-contact-grid {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .fp-support {
        min-height: 380px;
        order: 1;
    }

    .fp-contact-card {
        min-height: 500px;
        order: 2;
        padding: 16px;
    }

    .fp-contact-card h2,
    .fp-support > h2 {
        font-size: 26px;
        line-height: 1.23;
        letter-spacing: -.3px;
    }

    .fp-support-item {
        padding: 16px 12px;
    }

    .fp-support-item--featured {
        margin-top: 16px;
    }

    .fp-support-item a,
    .fp-support-item strong {
        font-size: 14px;
    }

    .fp-support-item p {
        margin-top: 8px;
    }

    .fp-contact-form {
        gap: 10px;
        margin-top: 12px;
    }

    .fp-contact-form .fp-field {
        gap: 5px;
    }

    .fp-contact-form .fp-field input,
    .fp-contact-form .fp-field select {
        height: 38px;
        padding-block: 9px;
    }

    .fp-contact-form .fp-field textarea {
        min-height: 108px;
        padding-block: 10px;
    }

    .fp-contact-form .fp-form-note {
        display: none;
    }

    .fp-faq {
        height: 900px;
        padding: 40px 0;
    }

    .fp-faq-container {
        width: 100%;
        min-height: 820px;
    }

    .fp-faq-categories {
        width: 100%;
        gap: 8px;
        padding: 0 12px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .fp-faq-categories::-webkit-scrollbar {
        display: none;
    }

    .fp-faq-categories button {
        min-width: max-content;
        min-height: 25px;
        padding: 5px 16px;
        font-size: 11px;
    }

    .fp-faq-search {
        margin-top: 24px;
        padding: 0 12px;
    }

    .fp-faq-search input {
        height: 38px;
    }

    .fp-faq-search img {
        top: 10px;
    }

    .fp-faq-list {
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 24px 12px 0;
        padding: 16px;
        border-radius: 12px;
    }

    .fp-faq-item h2 button {
        min-height: 55px;
        padding: 10px 12px;
        font-size: 12px;
        line-height: 1.3;
    }

    .fp-faq-toggle {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .fp-faq-answer {
        padding: 0 12px 12px;
        font-size: 12px;
    }

    .fp-not-found {
        height: 649.468px;
    }

    .fp-not-found-inner {
        padding: 48px 16px;
    }

    .fp-not-found-art {
        width: 358px;
        height: 332.468px;
        object-fit: contain;
    }

    .fp-not-found-copy {
        width: 358px;
        margin-top: 24px;
    }

    .fp-not-found-copy h1 {
        font-size: 26px;
        line-height: 1.23;
        letter-spacing: -.3px;
    }

    .fp-not-found-copy p {
        margin-top: 8px;
        font-size: 14px;
        line-height: 1.2;
    }

    .fp-not-found-button {
        width: 358px;
        min-height: 54px;
        margin-top: 24px;
    }

    .fp-responsible-hero {
        height: 395px;
        padding: 56px 0;
    }

    .fp-responsible-hero-grid {
        display: flex;
        height: 283px;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 16px;
    }

    .fp-responsible-hero h1 {
        font-size: 30px;
        line-height: 1.2;
        letter-spacing: -.9px;
    }

    .fp-responsible-hero p {
        font-size: 18px;
        line-height: 1.4;
    }

    .fp-responsible-hero .fp-button {
        margin-top: 12px;
    }

    .fp-responsible-intro {
        height: 771px;
        padding: 40px 0;
    }

    .fp-responsible-intro-grid {
        display: flex;
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 12px;
    }

    .fp-responsible-intro-grid > div {
        min-height: 321px;
    }

    .fp-responsible-intro img {
        width: 358px;
        height: 358px;
    }

    .fp-kicker {
        font-size: 14px;
    }

    .fp-responsible-intro h2,
    .fp-responsible-controls h2,
    .fp-responsible-signs h2,
    .fp-responsible-partners h2 {
        font-size: 26px;
        line-height: 1.23;
        letter-spacing: -.3px;
    }

    .fp-responsible-intro .fp-lead {
        margin-top: 12px;
        font-size: 18px;
    }

    .fp-responsible-controls {
        height: 782px;
        padding: 24px 0;
    }

    .fp-responsible-heading {
        max-width: none;
    }

    .fp-control-grid {
        display: flex;
        height: 618px;
        flex-direction: column;
        gap: 8px;
        margin-top: 24px;
    }

    .fp-control-card {
        min-height: 96px;
        flex: 1 1 0;
        align-items: center;
        padding: 12px 16px;
    }

    .fp-control-card h3 {
        font-size: 14px;
    }

    .fp-control-card p {
        max-width: none;
        margin-top: 4px;
        font-size: 11px;
    }

    .fp-control-card img {
        width: 68px;
        height: 68px;
        flex-basis: 68px;
    }

    .fp-responsible-signs {
        height: 681px;
        padding: 24px 0;
    }

    .fp-signs-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .fp-signs-grid > div {
        min-height: 249px;
    }

    .fp-signs-grid ul {
        gap: 8px;
        margin-top: 16px;
        font-size: 12px;
    }

    .fp-professional-support {
        min-height: 360px;
        padding: 24px;
    }

    .fp-professional-support > p {
        font-size: 12px;
    }

    .fp-professional-support dl {
        gap: 12px;
        margin-top: 20px;
        font-size: 12px;
    }

    .fp-responsible-partners {
        min-height: 727px;
        padding: 24px 0;
    }

    .fp-partner-grid {
        display: flex;
        height: 380px;
        flex-direction: column;
        gap: 8px;
        margin-top: 24px;
    }

    .fp-partner-grid article {
        min-height: 0;
        flex: 1 1 0;
        padding: 16px;
    }

    .fp-partner-grid h3 {
        font-size: 14px;
    }

    .fp-partner-grid p {
        margin: 6px 0;
        font-size: 11px;
    }

    .fp-support-banner {
        min-height: 159px;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 24px;
        padding: 20px;
    }

    .fp-support-banner .fp-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fp-button {
        transition: none;
    }
}
