:root {
    --fd-yellow: #fcbc1c;
    --fd-yellow-hover: #f9d162;
    --fd-yellow-soft: #fff8de;
    --fd-graphite: #4b4b4b;
    --fd-graphite-2: #5e5e5e;
    --fd-text: #000000;
    --fd-muted: #5e5e5e;
    --fd-link: hwb(204 11% 45%);
    --fd-link-hover: hwb(194 15% 51%);
    --fd-line: #cccccc;
    --fd-line-soft: #dedede;
    --fd-surface: #ffffff;
    --fd-surface-soft: #f5f5f5;
    --fd-focus: #0056b3;
    --fd-module-width: 830px;
    --fd-radius-sm: 4px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 0;
}

body.fd-page {
    min-width: 0;
    margin: 0;
    overflow-wrap: break-word;
    background: var(--fd-surface);
    color: var(--fd-text);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
}

.fd-skip-link {
    position: absolute;
    top: -60px;
    left: 12px;
    z-index: 1000;
    padding: 10px 14px;
    background: #111111;
    color: #ffffff;
}

.fd-skip-link:focus {
    top: 12px;
    color: #ffffff;
}

.fd-module {
    width: min(100%, var(--fd-module-width));
    margin: 0 auto;
    padding: 24px;
    background: var(--fd-surface);
}

.fd-page-header {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--fd-line-soft);
}

.fd-page-title {
    margin: 0;
    padding-left: 12px;
    border-left: 4px solid var(--fd-yellow);
    color: var(--fd-text);
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.25;
}

.fd-page-subtitle {
    margin: 8px 0 0 16px;
    color: var(--fd-muted);
    font-size: 14px;
    line-height: 1.45;
}

.fd-lead {
    margin: 0 0 18px;
    color: var(--fd-muted);
    font-size: 16px;
}

.fd-intro-card {
    padding: 22px;
    border: 1px solid var(--fd-line-soft);
    border-left: 5px solid var(--fd-yellow);
    border-radius: var(--fd-radius-sm);
    background: var(--fd-surface-soft);
}

.fd-intro-card p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
}

.fd-intro-card cite {
    font-style: normal;
    font-weight: 700;
}

.fd-menu-list {
    overflow: hidden;
    border: 1px solid var(--fd-line-soft);
    border-radius: var(--fd-radius-sm);
    background: var(--fd-surface);
}

.fd-menu-item {
    display: grid;
    min-width: 0;
    min-height: 76px;
    grid-template-columns: 40px minmax(0, 1fr) 24px;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid var(--fd-line-soft);
    background: var(--fd-surface);
    color: var(--fd-text);
    text-decoration: none;
    transition: background-color .16s ease, box-shadow .16s ease;
}

.fd-menu-item:last-child {
    border-bottom: 0;
}

.fd-menu-item:hover {
    padding-left: 13px;
    border-left: 3px solid var(--fd-yellow);
    background: var(--fd-yellow-soft);
    color: var(--fd-text);
    text-decoration: none;
}

.fd-menu-item__code {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: var(--fd-radius-sm);
    background: var(--fd-graphite);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
}

.fd-menu-item__copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.fd-menu-item__copy strong {
    font-size: 16px;
    line-height: 1.4;
}

.fd-menu-item__copy small {
    margin-top: 2px;
    color: var(--fd-muted);
    font-size: 14px;
    line-height: 1.45;
}

.fd-menu-item__arrow {
    color: var(--fd-graphite);
    font-size: 22px;
    text-align: right;
}

.fd-info-panel {
    margin-top: 24px;
    padding: 18px 20px;
    border: 1px solid var(--fd-line-soft);
    border-left: 4px solid var(--fd-yellow);
    border-radius: var(--fd-radius-sm);
    background: var(--fd-surface-soft);
}

.fd-info-title {
    margin: 0 0 8px;
    color: var(--fd-text);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.fd-info-panel p {
    margin: 0 0 10px;
}

.fd-info-list {
    margin: 0 0 14px;
    padding-left: 22px;
}

.fd-info-list li + li {
    margin-top: 3px;
}

.fd-email-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 8px;
    color: var(--fd-link);
    font-weight: 700;
    overflow-wrap: anywhere;
    text-decoration: underline;
}

.fd-email-link:hover {
    color: var(--fd-link-hover);
}

.fd-contact-card {
    display: grid;
    gap: 12px;
    margin-top: 12px;
    padding: 18px 20px;
    border: 1px solid var(--fd-line-soft);
    border-radius: var(--fd-radius-sm);
    background: var(--fd-surface);
}

.fd-contact-item {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
    align-items: baseline;
}

.fd-contact-item strong {
    color: var(--fd-graphite);
}

.fd-contact-item a {
    color: var(--fd-link);
    font-weight: 700;
    overflow-wrap: anywhere;
    text-decoration: underline;
}

.fd-contact-item a:hover {
    color: var(--fd-link-hover);
}

.fd-checklist {
    display: grid;
    gap: 8px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.fd-checklist li {
    position: relative;
    padding-left: 26px;
}

.fd-checklist li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--fd-graphite);
    content: "✓";
    font-weight: 700;
}

.fd-content-section {
    margin-top: 24px;
}

.fd-section-title {
    margin: 0;
    color: var(--fd-text);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.35;
}

.fd-content-section > .fd-section-title {
    margin-bottom: 12px;
}

.fd-pdf-panel {
    overflow: hidden;
    border: 1px solid var(--fd-line-soft);
    border-radius: var(--fd-radius-sm);
    background: var(--fd-surface-soft);
}

.fd-pdf-panel__header {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--fd-line-soft);
}

.fd-pdf-frame {
    display: block;
    width: 100%;
    height: 70vh;
    min-height: 420px;
    max-height: 720px;
    border: 0;
    background: var(--fd-surface);
}

.fd-table-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.fd-table-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--fd-line-soft);
    border-radius: var(--fd-radius-sm);
    background: var(--fd-surface);
}

.fd-data-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    color: var(--fd-text);
    font-size: 14px;
}

.fd-data-table caption {
    padding: 12px 14px;
    background: var(--fd-surface-soft);
    color: var(--fd-muted);
    font-size: 13px;
    font-weight: 700;
    text-align: left;
}

.fd-data-table th,
.fd-data-table td {
    padding: 9px 12px;
    border-bottom: 1px solid var(--fd-line-soft);
    text-align: left;
    vertical-align: top;
}

.fd-data-table th {
    background: var(--fd-graphite);
    color: #ffffff;
    font-size: 13px;
}

.fd-data-table th:last-child,
.fd-data-table td:last-child {
    width: 92px;
    text-align: right;
    white-space: nowrap;
}

.fd-data-table tbody tr:nth-child(even) {
    background: var(--fd-yellow-soft);
}

.fd-data-table tbody tr:last-child td {
    border-bottom: 0;
}

.fd-action-panel {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding: 18px 20px;
    border: 1px solid var(--fd-line-soft);
    border-left: 4px solid var(--fd-yellow);
    border-radius: var(--fd-radius-sm);
    background: var(--fd-surface-soft);
}

.fd-action-panel p {
    margin: 0;
}

.fd-document-list {
    overflow: hidden;
    border: 1px solid var(--fd-line-soft);
    border-radius: var(--fd-radius-sm);
    background: var(--fd-surface);
}

.fd-document-list > a {
    display: grid;
    min-width: 0;
    grid-template-columns: 44px minmax(0, 1fr) 24px;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid var(--fd-line-soft);
    background: var(--fd-surface);
    color: var(--fd-text);
    text-decoration: none;
    transition: background-color .16s ease, box-shadow .16s ease;
}

.fd-document-list > a:last-child {
    border-bottom: 0;
}

.fd-document-list > a:hover {
    background: var(--fd-yellow-soft);
    color: var(--fd-text);
    text-decoration: none;
}

.fd-document-list > a:hover strong {
    color: var(--fd-link-hover);
    text-decoration: underline;
}

.fd-file-type {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: var(--fd-radius-sm);
    background: var(--fd-graphite);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
}

.fd-file-type--doc {
    background: var(--fd-graphite-2);
}

.fd-file-type--page {
    border: 1px solid var(--fd-graphite);
    background: var(--fd-surface);
    color: var(--fd-graphite);
    font-size: 9px;
}

.fd-document-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.fd-document-copy strong {
    font-size: 16px;
    line-height: 1.4;
}

.fd-document-copy small {
    margin-top: 3px;
    color: var(--fd-muted);
    font-size: 13px;
    line-height: 1.4;
}

.fd-document-arrow {
    color: var(--fd-graphite);
    font-size: 20px;
    text-align: right;
}

.fd-page-navigation {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--fd-line-soft);
}

.fd-page-navigation > span {
    color: var(--fd-muted);
    font-size: 13px;
    text-align: right;
}

.fd-page-navigation--two {
    grid-template-columns: auto auto;
    justify-content: space-between;
}

.fd-page-navigation--two .fd-btn:last-child {
    justify-self: end;
}

.fd-btn {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid transparent;
    border-radius: var(--fd-radius-sm);
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color .16s ease, border-color .16s ease;
}

.fd-btn--secondary {
    border-color: var(--fd-line);
    background: var(--fd-surface);
    color: #333333;
}

.fd-btn--primary {
    border-color: #d49a00;
    background: var(--fd-yellow);
    color: var(--fd-text);
}

.fd-btn--primary:hover {
    border-color: var(--fd-graphite);
    background: var(--fd-yellow-hover);
    color: var(--fd-text);
    text-decoration: none;
}

.fd-btn--secondary:hover {
    background: var(--fd-yellow);
    color: var(--fd-text);
    text-decoration: none;
}

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--fd-focus);
    outline-offset: 3px;
}

@media (max-width: 575.98px) {
    body.fd-page {
        font-size: 15px;
    }

    .fd-module {
        padding: 18px 14px;
    }

    .fd-page-title {
        font-size: 24px;
    }

    .fd-page-subtitle {
        margin-left: 0;
        font-size: 13px;
    }

    .fd-lead {
        font-size: 15px;
    }

    .fd-intro-card {
        padding: 18px;
    }

    .fd-intro-card p {
        font-size: 15px;
    }

    .fd-document-list > a {
        grid-template-columns: 38px minmax(0, 1fr) 18px;
        gap: 10px;
        padding: 12px;
    }

    .fd-menu-item {
        grid-template-columns: 36px minmax(0, 1fr) 18px;
        gap: 10px;
        padding: 12px;
    }

    .fd-menu-item:hover {
        padding-left: 9px;
    }

    .fd-menu-item__code {
        width: 36px;
        height: 36px;
    }

    .fd-menu-item__copy strong {
        font-size: 15px;
    }

    .fd-menu-item__copy small {
        font-size: 13px;
    }

    .fd-info-panel {
        padding: 16px;
    }

    .fd-info-title {
        font-size: 18px;
    }

    .fd-contact-card {
        padding: 16px;
    }

    .fd-contact-item {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .fd-section-title {
        font-size: 17px;
    }

    .fd-pdf-panel__header {
        align-items: stretch;
        flex-direction: column;
    }

    .fd-pdf-panel__header .fd-btn {
        width: 100%;
    }

    .fd-pdf-frame {
        height: 62vh;
        min-height: 360px;
    }

    .fd-table-grid {
        grid-template-columns: 1fr;
    }

    .fd-data-table {
        font-size: 13px;
    }

    .fd-data-table th,
    .fd-data-table td {
        padding: 8px 10px;
    }

    .fd-action-panel {
        align-items: stretch;
        flex-direction: column;
        padding: 16px;
    }

    .fd-action-panel .fd-btn {
        width: 100%;
    }

    .fd-file-type {
        width: 36px;
        height: 36px;
        font-size: 10px;
    }

    .fd-file-type--page {
        font-size: 8px;
    }

    .fd-document-copy strong {
        font-size: 15px;
    }

    .fd-document-copy small {
        font-size: 12px;
    }

    .fd-page-navigation {
        grid-template-columns: 1fr;
    }

    .fd-page-navigation .fd-btn {
        width: 100%;
    }

    .fd-page-navigation > span {
        text-align: center;
    }

    .fd-page-navigation--two {
        grid-template-columns: 1fr;
    }

    .fd-page-navigation--two .fd-btn,
    .fd-page-navigation--two .fd-btn:last-child {
        width: 100%;
        justify-self: stretch;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition: none !important;
    }
}
