/* ============================================================
   Davis Hugo — Custom CSS
   All color tokens from Davis's style.css:
     body bg      #0a101e
     dark-section #070d1b
     body text    #a9adb8
     headings     #fdfeff
     accent/gold  #fec544
     button text  #070d1b
   ============================================================ */

/* ── Sticky footer: body is a flex column so footer is always at
   viewport bottom even on short pages (e.g. 404).
   ds-page-main wraps block "main" in baseof.html and takes all
   remaining height via flex: 1.                                 ── */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
/* flex column so child sections stack normally on all pages AND so
   .ds-error-area_33adf493f2efd5d5 can use flex:1 to fill the remaining height on 404 */
.ds-page-main_6423b5f22a368fca {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ── Logo: cap size (st-site-branding has no CSS in style.css) ── */
.st-site-branding_4e29502a2700eac2 img {
    max-width: 120px;
    height: auto;
    display: block;
}

/* ── Play button: always visible on ALL screen sizes ─────────────
   Davis's style.css has:
     @media (max-width:991px) { .st-site-header_a8a4ab075389ddf9 .st-btn_5da82937e2736b33 { display:none !important } }
   We must beat that specificity. Wrapping the btn in .ds-play-btn-wrap_1effcfb365cf5602
   and targeting that wrapper gives us the extra class needed.         */
.ds-play-btn-wrap_1effcfb365cf5602 {
    display: inline-flex !important;
    align-items: center;
    flex-shrink: 0;
}
.ds-play-btn-wrap_1effcfb365cf5602 .st-btn_5da82937e2736b33 {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}
/* On mobile the button shows only "Play" — strip the 170px min-width so
   it wraps tightly around the short label instead of staying pill-sized. */
@media (max-width: 767px) {
    .ds-play-btn-wrap_1effcfb365cf5602 .st-btn_5da82937e2736b33 {
        min-width: unset;
        padding-left: 1.1em;
        padding-right: 1.1em;
    }
}

/* Short vs full label (same pattern as theme17) */
.lx-btn-short_4e8970304190415b { display: none; }
.lx-btn-full_3842bacfdd0d2955  { display: inline; }
@media (max-width: 767px) {
    .lx-btn-full_3842bacfdd0d2955  { display: none !important; }
    .lx-btn-short_4e8970304190415b { display: inline !important; }
}

/* ── Header right: flex so nav + play btn + hamburger align ────── */
.st-main-header-in_1c859203e48f9da9 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.st-main-header-right_a4ad67ad61a48647 {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ── Header: transparent at top, dark when scrolled ──────────────
   st-transparent-header zeroes bg + shadow (Davis built-in).
   st-sticky-active (added by main.js at scroll ≥ 10px) comes later
   in style.css so it wins and restores bg:#070d1b when scrolled.
   On mobile keep the header always solid — transparent looks broken
   without the full-width hero visible behind it on narrow screens.   */
@media (max-width: 991px) {
    .st-site-header_a8a4ab075389ddf9.st-style1_5c6588df7fb78de3.st-transparent-header_764e30658d64efe6 {
        background-color: #070d1b !important;
    }
}

/* ── Mobile hamburger button ──────────────────────────────────── */
.ds-hamburger_b32947e52f6b3aeb {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
}
.ds-hamburger_b32947e52f6b3aeb span {
    display: block;
    width: 20px;
    height: 2px;
    background: #a9adb8;
    border-radius: 1px;
}
@media (max-width: 991px) {
    .ds-hamburger_b32947e52f6b3aeb { display: flex; }
    /* Davis's own .st-munu-toggle: hide it since we use ds-hamburger */
    .st-munu-toggle { display: none !important; }
}

/* ── Mobile menu overlay ──────────────────────────────────────── */
.ds-mobile-menu_1fb2c4cc519c3983 {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 90vw;
    height: 100vh;
    background: #070d1b;
    z-index: 99999;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 30px 24px;
}
.ds-mobile-menu_1fb2c4cc519c3983.is-open {
    transform: translateX(0);
}
.ds-mobile-close_8d446fd1f34a5b34 {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: #a9adb8;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s;
}
.ds-mobile-close_8d446fd1f34a5b34:hover { color: #fdfeff; }
.ds-mobile-logo_9c06318cce9c53bc {
    display: block;
    margin-bottom: 28px;
    margin-top: 8px;
}
.ds-mobile-logo_9c06318cce9c53bc img {
    max-width: 100px;
    height: auto;
}
.ds-mobile-nav_a299cde09834254b {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.ds-mobile-nav_a299cde09834254b li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ds-mobile-nav_a299cde09834254b li a {
    display: block;
    padding: 14px 0;
    color: #a9adb8;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}
.ds-mobile-nav_a299cde09834254b li a:hover { color: #fec544; }
.ds-mobile-contact-info_52ddda1c838dab0c {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.ds-mobile-contact-info_52ddda1c838dab0c p {
    color: #a9adb8;
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ds-mobile-contact-info_52ddda1c838dab0c p i { color: #fec544; }
.ds-mobile-contact-info_52ddda1c838dab0c p a {
    color: #a9adb8;
    text-decoration: none;
}
.ds-mobile-contact-info_52ddda1c838dab0c p a:hover { color: #fdfeff; }
/* Backdrop */
.ds-mobile-backdrop_ffec74e2eefe3500 {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 99998;
}
.ds-mobile-backdrop_ffec74e2eefe3500.is-visible { display: block; }

/* ── Dropdown sub-menu (desktop ≥992px) ──────────────────────── */
.ds-sub-menu_25407a84e6f00bb2 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #070d1b;
    border: 1px solid rgba(255,255,255,0.08);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    z-index: 100;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.st-nav-list > li { position: relative; }
.st-nav-list > li:hover .ds-sub-menu_25407a84e6f00bb2 { display: block; }
.ds-sub-menu_25407a84e6f00bb2 li a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    color: #a9adb8;
    text-decoration: none;
    transition: color 0.2s;
}
.ds-sub-menu_25407a84e6f00bb2 li a:hover { color: #fec544; }

/* ── Hero wrap: single container that holds subheader + breadcrumb strip,
   with ONE #particles-js canvas spanning both zones.
   padding-top: 80px clears the fixed header (position:fixed, 80px tall). ── */
.ds-hero-wrap_abcca35fc63b63d9 {
    position: relative;
    background-color: #070d1b;
    overflow: hidden;
    padding-top: 80px;
}

/* ── Page subheader (h1 zone inside hero wrap) ───────────────────── */
.ds-subheader_8b33122e620dd9de {
    position: relative;   /* sits above the particles canvas */
    z-index: 10;
    padding: 110px 0 60px;
    text-align: center;
}
.ds-subheader_8b33122e620dd9de h1 {
    color: #fdfeff;
    font-size: 42px;
    margin: 0;
    line-height: 1.25;
}
@media (max-width: 767px) {
    .ds-subheader_8b33122e620dd9de { padding: 80px 0 40px; }
    .ds-subheader_8b33122e620dd9de h1 { font-size: 28px; }
}

/* ── Breadcrumb strip (Davis section-heading style, below subheader) ── */
.ds-breadcrumb-strip_f8482adcdea8fa56 {
    position: relative;   /* sits above the particles canvas */
    z-index: 10;
    padding: 40px 0;
    text-align: center;
}
@media (max-width: 767px) { .ds-breadcrumb-strip_f8482adcdea8fa56 { padding: 30px 0; } }
/* Homepage variant: no HOME link — extra bottom padding fills the gap
   the HOME link would otherwise occupy. */
.ds-breadcrumb-strip--home_0564dea3ecbc9f33 { padding-bottom: 80px; }
@media (max-width: 767px) { .ds-breadcrumb-strip--home_0564dea3ecbc9f33 { padding-bottom: 70px; } }

/* Stacking context for the whole strip content */
.ds-page-heading_1b513fb03bf0cecd {
    position: relative;
    z-index: 10;
}

/* Inner wrapper that the ghost text anchors to — sized by the title row only,
   so top:50% inside here always centres on the title, not on the HOME link. */
.ds-heading-core_c3a03a35748afb52 {
    position: relative;
}

/* Ghost watermark — anchors to ds-heading-core.
   top:100% positions the ghost's top edge at the bottom of the core (= the
   title's bottom edge). translate(-50%, calc(-50% + 13px)) then centres it
   horizontally and shifts the vertical centre down 13 px — exactly to the
   underscore line (bottom:-14px, height:2px → centre = 13px below title bottom).
   width:max-content lets the element be exactly as wide as the text so that
   translateX(-50%) is always pixel-perfect regardless of text length. */
.ds-heading-bg_4fd109ae1bc9c365 {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 13px));
    width: max-content;
    font-size: 82px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255,255,255,0.04);
    white-space: nowrap;
    margin: 0;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}
@media (max-width: 991px) { .ds-heading-bg_4fd109ae1bc9c365 { display: none; } }

/* Foreground title — mirrors st-section-heading-title but a touch smaller */
.ds-heading-title_7f0be479c39b7b42 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fec544;
    position: relative;   /* sits above the ghost within ds-heading-core */
    z-index: 1;
    letter-spacing: 1.5px;
    margin: 0;
}

/* Underscore: grey base + gold centre overlay — identical to Davis */
.ds-heading-title_7f0be479c39b7b42::before {
    content: "";
    position: absolute;
    background-color: #3f4551;
    width: 170px;
    height: 2px;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
}
.ds-heading-title_7f0be479c39b7b42::after {
    content: "";
    position: absolute;
    background-color: #fec544;
    width: 70px;
    height: 2px;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
}

/* HOME link below the underscore */
.ds-heading-home_4c6af33bdd01d876 {
    margin-top: 34px;
    position: relative;
    z-index: 10;
}
.ds-heading-home_4c6af33bdd01d876 a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: color 0.2s;
}
.ds-heading-home_4c6af33bdd01d876 a:hover { color: #fec544; }

/* ── Content areas ────────────────────────────────────────────── */
.ds-content-area_8c439fdedd54381f,
.ds-home-content-area_16c9d8a6220a6291 {
    padding: 0 0 60px 0;
}
.ds-content-area--no-bottom_075aeee13f3d69de { padding-bottom: 0; }
@media (max-width: 767px) {
    .ds-content-area_8c439fdedd54381f,
    .ds-home-content-area_16c9d8a6220a6291 { padding: 0 0 40px 0; }
}

/* ── Article prose ────────────────────────────────────────────── */
.ds-article_9faa9fc8dd8f6161,
.ds-article-home_479f7c2a12a1ca5a {
    font-size: 16px;
    line-height: 1.8;
    color: #a9adb8;
    width: 100%;
}
.ds-article_9faa9fc8dd8f6161 > * + *,
.ds-article-home_479f7c2a12a1ca5a > * + * { margin-top: 1.2em; }

.ds-article_9faa9fc8dd8f6161 h1,.ds-article_9faa9fc8dd8f6161 h2,.ds-article_9faa9fc8dd8f6161 h3,
.ds-article_9faa9fc8dd8f6161 h4,.ds-article_9faa9fc8dd8f6161 h5,.ds-article_9faa9fc8dd8f6161 h6,
.ds-article-home_479f7c2a12a1ca5a h1,.ds-article-home_479f7c2a12a1ca5a h2,.ds-article-home_479f7c2a12a1ca5a h3,
.ds-article-home_479f7c2a12a1ca5a h4,.ds-article-home_479f7c2a12a1ca5a h5,.ds-article-home_479f7c2a12a1ca5a h6 {
    color: #fdfeff;
    line-height: 1.3;
    font-weight: 700;
    margin-top: 1.3em;
    margin-bottom: 0.4em;
}
.ds-article_9faa9fc8dd8f6161 h1,.ds-article-home_479f7c2a12a1ca5a h1 { font-size: 36px; margin-top: 0.3em; margin-bottom: 0.6em; }
.ds-article_9faa9fc8dd8f6161 h2,.ds-article-home_479f7c2a12a1ca5a h2 { font-size: 28px; }
.ds-article_9faa9fc8dd8f6161 h3,.ds-article-home_479f7c2a12a1ca5a h3 { font-size: 22px; }
.ds-article_9faa9fc8dd8f6161 h4,.ds-article-home_479f7c2a12a1ca5a h4 { font-size: 18px; }
.ds-article_9faa9fc8dd8f6161 h5,.ds-article-home_479f7c2a12a1ca5a h5 { font-size: 15px; }
.ds-article_9faa9fc8dd8f6161 h6,.ds-article-home_479f7c2a12a1ca5a h6 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; }

/* Lists */
.ds-article_9faa9fc8dd8f6161 ul:not([class]),
.ds-article-home_479f7c2a12a1ca5a ul:not([class]) {
    list-style: disc;
    padding-left: 1.6em;
    margin-bottom: 1em;
}
.ds-article_9faa9fc8dd8f6161 ol:not([class]),
.ds-article-home_479f7c2a12a1ca5a ol:not([class]) {
    list-style: decimal;
    padding-left: 1.6em;
    margin-bottom: 1em;
}
.ds-article_9faa9fc8dd8f6161 ul:not([class]) li,
.ds-article_9faa9fc8dd8f6161 ol:not([class]) li,
.ds-article-home_479f7c2a12a1ca5a ul:not([class]) li,
.ds-article-home_479f7c2a12a1ca5a ol:not([class]) li {
    list-style: inherit;
    padding: 0;
    margin: 0 0 0.25em 0;
}
/* Links */
.ds-article_9faa9fc8dd8f6161 a, .ds-article-home_479f7c2a12a1ca5a a {
    color: #fec544;
    text-decoration: underline;
    transition: color 0.2s;
}
.ds-article_9faa9fc8dd8f6161 a:hover, .ds-article-home_479f7c2a12a1ca5a a:hover { color: #fdfeff; }

/* iFrames */
.ds-article_9faa9fc8dd8f6161 iframe, .ds-article-home_479f7c2a12a1ca5a iframe {
    width: 100% !important;
    max-width: 100% !important;
    height: 500px;
    display: block;
    border: none;
    margin: 1.5em 0;
}
@media (max-width: 767px) {
    .ds-article_9faa9fc8dd8f6161 iframe, .ds-article-home_479f7c2a12a1ca5a iframe { height: 280px; }
}

/* ── Tables: desktop = normal flow; tablet+mobile = horizontal scroll ── */
.ds-table-scroll {
    width: 100%;
    margin: 1.5em 0;
    border-radius: 4px;
}
@media (max-width: 991px) {
    .ds-table-scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .ds-table-scroll table { min-width: max-content; }
}

article table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
}
article table th {
    background: #fec544;
    color: #070d1b;
    padding: 11px 16px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    white-space: nowrap;
}
article table td {
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    vertical-align: top;
    color: #a9adb8;
}
article table tbody tr:nth-child(even) td { background: rgba(255,255,255,0.03); }
article table tbody tr:hover td { background: rgba(255,255,255,0.06); }
/* Tablet + mobile: scrollable table with nowrap so columns don't crush */
@media (max-width: 991px) {
    article table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    article table th,
    article table td { white-space: nowrap; }
}
@media (max-width: 767px) {
    article table th,
    article table td { padding: 8px 12px; }
}

/* ── ToC shortcode ────────────────────────────────────────────── */
.ds-toc_d00a484d56d57262 {
    background: rgba(255,255,255,0.04);
    border-left: 3px solid #fec544;
    padding: 16px 20px;
    margin-bottom: 28px;
    border-radius: 4px;
}
.ds-toc-toggle_0e8b7ff69a55b424 {
    background: none;
    border: none;
    padding: 0; margin: 0;
    font: inherit;
    color: #fdfeff;
    text-align: left;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
/* Remove the browser focus ring when clicked with a pointer; keep it for
   keyboard navigation so the element remains accessible.               */
.ds-toc-toggle_0e8b7ff69a55b424:focus:not(:focus-visible) { outline: none; }
.ds-toc-toggle_0e8b7ff69a55b424::after {
    content: "";
    display: inline-block;
    flex-shrink: 0;
    width: 0; height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    transition: transform 0.2s ease;
}
.ds-toc_d00a484d56d57262.is-open .ds-toc-toggle_0e8b7ff69a55b424::after { transform: rotate(180deg); }
.ds-toc-body_8fcdb487c387d0e1 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    margin-top: 0;
}
.ds-toc_d00a484d56d57262.is-open .ds-toc-body_8fcdb487c387d0e1 { max-height: 3000px; margin-top: 10px; }
.ds-toc-body_8fcdb487c387d0e1 ul { margin: 0; padding-left: 0; list-style: none; }
.ds-toc-body_8fcdb487c387d0e1 ul ul { padding-left: 14px; margin-top: 4px; }
.ds-toc-body_8fcdb487c387d0e1 li { margin-bottom: 4px; font-size: 14px; }
.ds-toc-body_8fcdb487c387d0e1 a { color: #a9adb8; text-decoration: none; }
.ds-toc-body_8fcdb487c387d0e1 a:hover { color: #fec544; text-decoration: underline; }

/* ── FAQ accordion ────────────────────────────────────────────── */
.ds-faq-wrapper_e1f161e142ecac09 { margin-top: 2.5rem; }
.ds-faq-title_6f1aa4b8f3fac628 { font-size: 22px; font-weight: 700; color: #fdfeff; margin-bottom: 1.2rem; }
.ds-accordion-box_e88ffb3a16d988b3 {
    list-style: none;
    padding: 0; margin: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.ds-accordion { border-bottom: 1px solid rgba(255,255,255,0.1); }
.ds-acc-btn {
    padding: 18px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #fdfeff;
    user-select: none;
}
.ds-acc-icon_6fb41adc953a2114 { flex-shrink: 0; font-size: 12px; color: #fec544; transition: transform 0.3s ease; }
.ds-accordion.is-open .ds-acc-icon_6fb41adc953a2114 { transform: rotate(180deg); }
.ds-acc-content_979d3c466c2f1ad5 {
    display: none;
    padding-bottom: 18px;
    font-size: 15px;
    line-height: 1.75;
    color: #a9adb8;
}
.ds-accordion.is-open .ds-acc-content_979d3c466c2f1ad5 { display: block; }

/* ── Section page: child card grid ───────────────────────────── */
.ds-card_5e103af10e21b452 {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    height: 100%;
    background: rgba(255,255,255,0.03);
    transition: border-color 0.2s, transform 0.2s;
}
.ds-card_5e103af10e21b452:hover {
    border-color: #fec544;
    transform: translateY(-2px);
}
.ds-card-inner_bd570c4d05d0350b { padding: 24px; }
.ds-card-title_afe2b1a1a5f5de62 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.ds-card-title_afe2b1a1a5f5de62 a { color: #fdfeff; text-decoration: none; }
.ds-card-title_afe2b1a1a5f5de62 a:hover { color: #fec544; }
.ds-card-divider_13d11472e8b4378d { width: 40px; height: 2px; background: #fec544; margin-bottom: 12px; }
.ds-card-desc_6ee3abea8dc7c2b5 { font-size: 14px; color: #a9adb8; line-height: 1.7; margin-bottom: 16px; }
.ds-card-btn_93f0ada4f0e88a82 { font-size: 13px; }

/* ── 404 page ─────────────────────────────────────────────────── */
/* flex:1 fills the full remaining viewport height (ds-page-main is a
   flex column). justify-content:center then truly centres the block
   vertically. padding-top:80px reserves space for the fixed header so
   the text is never hidden behind it.                                */
.ds-error-area_33adf493f2efd5d5 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px 40px;
    text-align: center;
}
.ds-error-code_e3229a96aadec808 { font-size: 48px; font-weight: 800; color: #fdfeff; margin-bottom: 16px; }
.ds-error-text_a18f2c0b49a37a0f { font-size: 18px; color: #a9adb8; margin-bottom: 32px; }
@media (max-width: 767px) {
    .ds-error-area_33adf493f2efd5d5 { padding: 80px 20px 40px; }
    .ds-error-code_e3229a96aadec808 { font-size: 32px; }
}

/* ── Contact page additions ───────────────────────────────────── */
/* Davis's st-dark-bg + native st-contact-* classes handle most styling.
   These fill gaps not covered by style.css.                           */
.ds-contact-section_21b96f5934de96f6 {
    padding: 70px 0 90px;
}
/* Address as map link — inherits contact-info item style, no underline */
.ds-contact-info_c63b43754d576451 .ds-address-link_ba8329f6314a114c {
    color: #a9adb8;
    text-decoration: none;
    transition: color 0.2s;
}
.ds-contact-info_c63b43754d576451 .ds-address-link_ba8329f6314a114c:hover { color: #fec544; }

/* ── Footer ───────────────────────────────────────────────────── */
.ds-footer_99c288ae862ff10d {
    background: #070d1b;
    color: rgba(255,255,255,0.55);
    padding: 50px 0 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
/* Logo + disclaimer wrapper */
.ds-footer-disclaimer_62c29db2f6712115 {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ds-footer-logo_8e798d0fb1e4b9bb img {
    max-width: 120px;
    height: auto;
}
.ds-footer-disclaimer-blocks_9b2e7e4a63ef3531 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}
@media (max-width: 767px) {
    .ds-footer-disclaimer-blocks_9b2e7e4a63ef3531 { grid-template-columns: 1fr; }
    .ds-footer-logo_8e798d0fb1e4b9bb { text-align: center; }
}
.ds-disclaimer-label_5ce4061b63e9694c {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 6px;
}
.ds-disclaimer-text_f37b58f40d46b873 {
    font-size: 12px;
    line-height: 1.65;
    color: rgba(255,255,255,0.4);
    margin: 0;
}
.ds-disclaimer-text_f37b58f40d46b873 strong { color: rgba(255,255,255,0.7); }
/* Footer nav links */
.ds-footer-links_971ffa20b0299909 {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ds-footer-links_971ffa20b0299909 ul {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; gap: 6px 20px;
}
.ds-footer-links_971ffa20b0299909 ul li a {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}
.ds-footer-links_971ffa20b0299909 ul li a:hover { color: #fec544; }
/* Bottom bar */
.ds-footer-bottom_f6d1a3ce552a2c03 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 0;
}
.ds-copyright_da34059a096e068c { font-size: 14px; color: rgba(255,255,255,0.35); }
.ds-trust-logos_4fd9ec0c774bc70d {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.ds-trust-logos_4fd9ec0c774bc70d img {
    height: 22px; width: auto;
    object-fit: contain;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: opacity 0.25s, filter 0.25s;
    max-width: none;
}
.ds-trust-logos_4fd9ec0c774bc70d img:hover { opacity: 1; filter: grayscale(0%); }
@media (max-width: 767px) {
    .ds-footer-links_971ffa20b0299909 ul { justify-content: center; }
    .ds-footer-bottom_f6d1a3ce552a2c03 { flex-direction: column; align-items: center; }
    .ds-trust-logos_4fd9ec0c774bc70d { justify-content: center; }
}
