@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --reed-bg: #0f1220;
    --reed-surface: #161a2b;
    --reed-surface-soft: #1d2338;
    --reed-panel: #202844;
    --reed-text: #f3f6ff;
    --reed-muted: #b7c0dc;

    --reed-primary: #5b7cff;
    --reed-primary-strong: #4a68e6;
    --reed-secondary: #22c1b5;
    --reed-accent: #f7b84b;

    --reed-link: #8fb2ff;
    --reed-link-hover: #c0d2ff;
    --reed-on-primary: #0b1433;

    --reed-border: rgba(177, 190, 227, 0.28);
    --reed-border-strong: rgba(177, 190, 227, 0.44);
    --reed-topbar-bg: rgba(11, 15, 30, 0.9);
    --reed-menu-bg: #141b31;
    --reed-cookie-bg: rgba(16, 22, 40, 0.95);
    --reed-shadow: 0 16px 34px rgba(3, 7, 15, 0.48);

    --reed-success: #35c78a;
    --reed-error: #ff6b7a;
    --reed-disabled-bg: #2a3045;
    --reed-disabled-text: #96a4ce;
    --reed-focus-ring: rgba(143, 178, 255, 0.55);
    --reed-state-success-bg: rgba(53, 199, 138, 0.2);
    --reed-state-error-bg: rgba(255, 107, 122, 0.2);
}

@media (prefers-color-scheme: light) {
    :root {
        --reed-bg: #f5f7ff;
        --reed-surface: #ffffff;
        --reed-surface-soft: #eef2ff;
        --reed-panel: #e9eeff;
        --reed-text: #1a2140;
        --reed-muted: #4b567f;

        --reed-primary: #3558e8;
        --reed-primary-strong: #2746c7;
        --reed-secondary: #0a8f87;
        --reed-accent: #b06a00;

        --reed-link: #2f51df;
        --reed-link-hover: #1e39b8;
        --reed-on-primary: #ffffff;

        --reed-border: rgba(73, 93, 164, 0.22);
        --reed-border-strong: rgba(73, 93, 164, 0.38);
        --reed-topbar-bg: rgba(255, 255, 255, 0.92);
        --reed-menu-bg: #f0f4ff;
        --reed-cookie-bg: rgba(245, 247, 255, 0.96);
        --reed-shadow: 0 16px 34px rgba(23, 35, 75, 0.14);

        --reed-success: #166645;
        --reed-error: #c7334a;
        --reed-disabled-bg: #d8deef;
        --reed-disabled-text: #55618a;
        --reed-focus-ring: rgba(53, 88, 232, 0.35);
        --reed-state-success-bg: rgba(31, 143, 95, 0.15);
        --reed-state-error-bg: rgba(199, 51, 74, 0.15);
    }
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html {
    scroll-behavior: smooth;
}

body.mxw-body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--reed-text);
    line-height: 1.65;
    letter-spacing: 0.01em;
    background:var(--reed-bg);}

.mxw-main,
.mxw-topbar__frame,
.mxw-footer__inner {
    width: min(1200px, calc(100% - 3rem));
    margin: 0 auto;
}

.mxw-main { margin-top: 2rem; margin-bottom: 3rem; }
.mxw-main__inner { width: 100%; }

h1, h2, h3 { margin: 0 0 1rem; line-height: 1.25; }
p, ul, ol { margin: 0 0 1rem; }
a { color: var(--reed-link); }
a:hover { color: var(--reed-link-hover); }
img { display: block; max-width: 100%; border-radius: 14px; }

.mxw-topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(12px);
    background: var(--reed-topbar-bg);
    border-bottom: 1px solid var(--reed-border);
}

.mxw-topbar__frame {
    min-height: 78px;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 1rem;
}

.mxw-brand__logo { width: 156px; height: auto; }

.mxw-nav { display: flex; align-items: center; gap: 1.4rem; margin: 0 auto; }
.mxw-nav a,
.mxw-drawer > a {
    color: var(--reed-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
}
.mxw-nav a:hover,
.mxw-drawer > a:hover {
    color: var(--reed-on-primary);
    background: var(--reed-primary);
}

.mxw-menu-toggle {
    display: none;
    width: 34px;
    height: 34px;
    padding: 0;
    border: none;
    background: transparent;
    position: relative;
}

.mxw-menu-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 4px;
    background: var(--reed-text);
    transition: 0.2s;
}
.mxw-menu-toggle span:nth-child(1) { top: 6px; }
.mxw-menu-toggle span:nth-child(2) { top: 15px; }
.mxw-menu-toggle span:nth-child(3) { top: 24px; }
.mxw-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.mxw-menu-toggle.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.mxw-menu-toggle.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mxw-auth { display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; }

.mxw-btn {
    border-radius: 12px;
    padding: 0.58rem 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
     color: var(--reed-on-primary);
}

.mxw-btn--solid {
    background: linear-gradient(135deg, var(--reed-primary), var(--reed-secondary));
    box-shadow: 0 10px 20px color-mix(in srgb, var(--reed-primary) 35%, transparent);
}
.mxw-btn--solid:hover { background: linear-gradient(135deg, var(--reed-primary-strong), var(--reed-secondary)); color: var(--reed-on-primary); }
.mxw-btn--ghost {
    border-color: var(--reed-border-strong);
    color: var(--reed-on-primary);
    background: color-mix(in srgb, var(--reed-panel) 72%, transparent);
}
.mxw-btn--ghost:hover { border-color: var(--reed-primary); color: var(--reed-text); }


.mxw-btn:focus-visible,
.mxw-nav a:focus-visible,
.mxw-drawer > a:focus-visible,
.mxw-lang summary:focus-visible,
.mxw-outline-toggle:focus-visible {
    outline: 3px solid var(--reed-focus-ring);
    outline-offset: 2px;
}

.mxw-btn[aria-disabled="true"],
.mxw-btn:disabled {
    background: var(--reed-disabled-bg);
    color: var(--reed-disabled-text);
    border-color: var(--reed-border);
    cursor: not-allowed;
    box-shadow: none;
}

.mxw-state--success {
    color: var(--reed-success);
    background: var(--reed-state-success-bg);
}

.mxw-state--error {
    color: var(--reed-error);
    background: var(--reed-state-error-bg);
}

.mxw-hero-block .mxw-btn--ghost,
.mxw-content-shell .mxw-btn--ghost {
    color: var(--reed-primary);
    border-color: color-mix(in srgb, var(--reed-primary) 45%, transparent);
}
.mxw-hero-block .mxw-btn--ghost:hover,
.mxw-content-shell .mxw-btn--ghost:hover {
    border-color: var(--reed-primary);
    color: var(--reed-primary);
}

.mxw-drawer { display: none; }
.mxw-page-wrap,
.mxw-main-column { width: 100%; }

.mxw-hero-block,
.mxw-content-shell {
    background: var(--reed-surface-soft);
    border-radius: 18px;
    
    padding: 3rem;
}

.mxw-hero-block { margin-bottom: 1rem; }
.mxw-hero-block h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); }


.mxw-hero-block--image-right {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 40%);
    grid-template-areas:
        "text media"
        "cta media";
    align-items: center;
    column-gap: 1.2rem;
    row-gap: .8rem;
}

.mxw-hero-block--image-right .mxw-hero-block__text { grid-area: text; }
.mxw-hero-block--image-right .mxw-hero-block__media { grid-area: media; }
.mxw-hero-block--image-right .mxw-hero-block__cta { grid-area: cta; }
.mxw-hero-block--image-right .mxw-hero-block__media img {
    width: 100%;
    height: auto;
    display: block;
}

.mxw-content-shell h2 { font-size: clamp(1.45rem, 2.2vw, 1.9rem); }
.mxw-content-shell h2,
.mxw-content-shell h3,
.mxw-content-shell h4 {
    color: var(--reed-text);
    line-height: 1.35;
    letter-spacing: 0;
}
.mxw-content-shell p,
.mxw-content-shell li,
.mxw-content-shell td,
.mxw-content-shell th,
.mxw-outline,
.mxw-footer {
    color: var(--reed-muted);
}
.mxw-content-shell ul,
.mxw-content-shell ol { padding-left: 1.2rem; }
.mxw-content-shell code {
    background: var(--reed-surface-soft);
    border-radius: 6px;
    padding: 0.08rem 0.35rem;
}
/* Обёртка (figure.table) — именно она отвечает за скролл и скругления */
figure.table {
  width: 100%;
  margin: 1rem 0;
  overflow-x: auto;
  border: 1px solid var(--reed-border);
  border-radius: 12px;
 
}

/* Таблица остаётся таблицей */
.mxw-content-shell figure.table > table {
  width: 100%;
  border-collapse: separate; /* важно для border-radius через обёртку */
  border-spacing: 0;
  margin: 0;                /* чтобы не раздувать обёртку */
}

/* Шапка */
.mxw-content-shell thead {
  background: color-mix(in srgb, var(--reed-primary) 18%, transparent);
}

.mxw-content-shell th,
.mxw-content-shell td {
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--reed-border);
  text-align: left;
  vertical-align: top;
}

.mxw-content-shell tr:last-child td {
  border-bottom: none;
}

.mxw-content-shell th {
  font-weight: 600;
  color: var(--reed-text);
}

.mxw-hero-block h1 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.mxw-content-block h2 {
    font-size: clamp(1.45rem, 2.2vw, 1.9rem);
}

.mxw-content-block ul,
.mxw-content-block ol {
    padding-left: 1.2rem;
}

.mxw-content-block code {
    background: var(--reed-surface-soft);
    border-radius: 6px;
    padding: 0.08rem 0.35rem;
}

.mxw-cta-group {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.mxw-content-block .mxw-btn--ghost {
    color: var(--reed-primary);
    border-color: color-mix(in srgb, var(--reed-primary) 45%, transparent);
}

.mxw-content-block .mxw-btn--ghost:hover {
    border-color: var(--reed-primary);
    color: var(--reed-primary);
}

.mxw-outline-toggle {
display: inline-flex;
    border-radius: 999px;
    background: var(--reed-surface-soft);
    color: var(--reed-text);
    border: 1px solid var(--reed-border-strong);
    font-weight: 600;
    margin: 0 0 1rem;
    cursor: pointer;
    padding: 10px 20px;
}

.mxw-outline {
    display: none;
    
    border: 1px solid var(--reed-border);
    border-radius: 12px;
    padding: 0.9rem;
    margin-bottom: 1rem;
}

.mxw-outline.is-open { display: block; }

.mxw-outline__title { font-size: 1rem; font-weight: 700; margin-bottom: 0.7rem; }
.mxw-outline__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.35rem; }
.mxw-outline__list a { color: var(--reed-muted); text-decoration: none; }
.mxw-outline__list a:hover { color: var(--reed-primary); }

.mxw-content-divider {
    border: 0;
    border-top: 1px solid var(--reed-border);
    margin: 1.25rem 0;
}

.mxw-faq-list { display: grid; gap: 0.75rem; }
.mxw-faq-entry {
    border: 1px solid var(--reed-border);
    border-radius: 14px;

}

.mxw-faq-entry__trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1rem;
    font-size: 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
}

.mxw-faq-entry__trigger h3 { margin: 0; font-size: 1.3rem; }
.mxw-faq-entry__glyph {
    font-size: 1.35rem;
    line-height: 1;
    color: var(--reed-primary);
    transition: transform 0.2s;
}
.mxw-faq-entry__trigger.is-open .mxw-faq-entry__glyph { transform: rotate(45deg); }
.mxw-faq-entry__answer { display: none; padding: 0 1rem 1rem; }
.mxw-faq-entry__answer.is-open { display: block; }

.mxw-footer {
    background: var(--reed-surface-soft);
    color: var(--reed-muted);
    margin-top: 1rem;
    border-top: 1px solid var(--reed-border);
}

.mxw-footer__inner {
    display: grid;
    gap: 1.35rem;
    border-radius: 18px;
    padding: 2.4rem 2.2rem;
}

.mxw-footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.mxw-footer__company {
    max-width: 680px;
}

.mxw-footer__kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
    color: var(--reed-muted);
}

.mxw-footer__brand {
    margin: 0.2rem 0 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--reed-text);
}

.mxw-footer__mission {
    margin: 0.5rem 0 0;
    color: var(--reed-muted);
}

.mxw-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 0.8rem;
    border-top: 1px solid var(--reed-border);
    border-bottom: 1px solid var(--reed-border);
    padding: 0.9rem 0;
}

.mxw-footer__links a {
    color: var(--reed-text);
    text-decoration: none;
    border: 1px solid var(--reed-border);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.42rem 0.8rem;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.mxw-footer__links a:hover {
    color: var(--reed-link-hover);
    border-color: var(--reed-primary);
    background: color-mix(in srgb, var(--reed-primary) 18%, transparent);
}

.mxw-footer__compliance {
    display: grid;
    gap: 0.55rem;
}

.mxw-footer__compliance-title {
    margin: 0;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--reed-muted);
}

.mxw-footer__logos {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.mxw-footer__logos-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
}

.mxw-footer__logos-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.95;
}

.mxw-footer__logos-item a {
    display: inline-flex;
    border-radius: 50%;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mxw-footer__logos-item a:hover {
    transform: translateY(-1px);
    opacity: 0.85;
}

.mxw-footer__legal {
    display: grid;
    gap: 0.45rem;
}

.mxw-footer__copyright {
    margin: 0;
    color: var(--reed-text);
    font-weight: 500;
}

.mxw-footer__disclaimer,
.footer-extra-text {
    margin: 0;
    color: var(--reed-muted);
    font-size: 0.92rem;
}

.mxw-lang { position: relative; }
.mxw-lang summary {
    list-style: none;
    cursor: pointer;
    border-radius: 10px;
    border: 1px solid var(--reed-border-strong);
    color: var(--reed-text);
    padding: 0.45rem 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.mxw-lang summary::-webkit-details-marker { display: none; }
.mxw-lang__status {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--reed-success);
}

.mxw-lang__marker {
    color: var(--reed-link);
    font-weight: 700;
}

.mxw-lang ul {
    position: absolute;
    right: 0;
    bottom: calc(100% + 0.4rem);
    margin: 0;
    padding: 0.35rem;
    min-width: 130px;
    list-style: none;
    border-radius: 10px;
    border: 1px solid var(--reed-border);
    background: var(--reed-panel);
    box-shadow: var(--reed-shadow);
}
.mxw-lang ul a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: var(--reed-text);
    border-radius: 8px;
    padding: 0.4rem 0.5rem;
}
.mxw-lang ul a:hover,
.mxw-lang ul a.is-current { background: color-mix(in srgb, var(--reed-primary) 18%, transparent); }

@media (max-width: 980px) {
    .mxw-topbar__frame { grid-template-columns: auto 1fr auto; }

    .mxw-nav--desktop,
    .mxw-auth--desktop {
        display: none;
    }

    .mxw-menu-toggle { display: block; margin-left: auto;}

    .mxw-drawer {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: var(--reed-menu-bg);
        padding: 1rem;
        border-top: 1px solid var(--reed-border);
        flex-direction: column;
        gap: 0.65rem;
        display: flex;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: 0.25s;
    }

    .mxw-drawer.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mxw-lang ul {
        right: auto;
        left: 0;
    }

    .mxw-footer__inner {
        padding: 1.7rem 1.1rem;
    }

    .mxw-footer__brand {
        font-size: 1.1rem;
    }

    .mxw-footer__links {
        gap: 0.5rem;
    }

    .mxw-footer__links a {
        width: 100%;
        text-align: center;
    }
}

.mxw-section-base {
    padding: 1rem 0;
}

.mxw-section-base__header {
    margin-bottom: .7rem;
}

.mxw-section-base__subtitle {
    margin: .25rem 0 0;
    font-size: .92rem;
    color: var(--reed-muted);
}

 .mxw-text-image-left__grid,
.mxw-text-image-float__layout {
    display: contents;
}

.mxw-text-image-left {
    display: grid;
    grid-template-columns: minmax(180px, 320px) 1fr;
    gap: 1rem;
    align-items: start;
}

.mxw-text-image-left--image-right .mxw-text-image-left__media {
    order: 2;
}

.mxw-text-image-float__media {
    width: min(320px, 42%);
    margin-bottom: .55rem;
}

.mxw-text-image-float__media img {
    width: 100%;
    height: auto;
}

.mxw-text-image-float--left .mxw-text-image-float__media {
    float: left;
    margin-right: 1rem;
}

.mxw-text-image-float--right .mxw-text-image-float__media {
    float: right;
    margin-left: 1rem;
}

.mxw-text-image-float::after {
    content: "";
    display: table;
    clear: both;
}

.mxw-text-image-left__media img {
    width: 100%;
    height: auto;
}

.mxw-mini-cards,
.mxw-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: .75rem;
}

.mxw-catalog-extended {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
}

.mxw-catalog-extended__item,
.mxw-catalog-image-only__item,
.mxw-mini-cards__item,
.mxw-gallery-slider__item,
.mxw-gallery-grid figure,
.mxw-section-fallback,
.mxw-catalog-list-view__item {
    background: var(--reed-surface-soft);
    border: 1px solid var(--reed-border);
    border-radius: 12px;
    padding: .85rem;
}

.mxw-catalog-extended__item {
    color: inherit;
    text-decoration: none;
    display: grid;
    gap: .55rem;
}

.mxw-catalog-extended__item img,
.mxw-catalog-image-only__item img,
.mxw-catalog-list-view__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.mxw-catalog-image-only {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .75rem;
}

.mxw-catalog-image-only__item {
    display: block;
    padding: .4rem;
}

.mxw-mini-inline,
.mxw-catalog-list {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: .55rem;
}

.mxw-catalog-list-view {
    display: grid;
    gap: .75rem;
}

.mxw-catalog-list-view__item {
    display: grid;
    gap: .85rem;
    grid-template-columns: minmax(120px, 180px) 1fr;
    align-items: start;
}

.mxw-catalog-list-view__image {
    display: block;
}

.mxw-catalog-list-view__link {
    display: inline-block;
    margin-top: .5rem;
}

.mxw-gallery-slider {
    display: grid;
    gap: .65rem;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 1fr);
    overflow-x: auto;
}

.mxw-gallery-grid img,
.mxw-gallery-slider img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.mxw-text-compact > *:first-child {
    margin-top: 0;
}

@media (max-width: 860px) {
    .mxw-text-image-left {
        grid-template-columns: 1fr;
    }

    .mxw-text-image-left--image-right .mxw-text-image-left__media {
        order: initial;
    }

    .mxw-text-image-float__media {
        width: 100%;
        float: none;
        margin-left: 0;
        margin-right: 0;
    }

    .mxw-catalog-extended {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mxw-catalog-image-only {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mxw-catalog-list-view__item {
        grid-template-columns: 1fr;
    }

    .mxw-hero-block--image-right {
        grid-template-columns: 1fr;
        grid-template-areas:
            "text"
            "media"
            "cta";
    }
    .mxw-hero-block, .mxw-content-shell {
    background: var(--reed-surface-soft);
    border-radius: 18px;
    padding: 1rem;
}
}

.mxw-cookie {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 60;
    display: none;
    gap: 0.8rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    border: 1px solid var(--reed-border);
    background: var(--reed-cookie-bg);
    box-shadow: var(--reed-shadow);
}

.mxw-cookie.is-visible {
    display: flex;
}

.mxw-cookie__text {
    margin: 0;
    color: var(--reed-text);
    max-width: 760px;
}

.mxw-cookie__actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.mxw-cookie__btn {
    cursor: pointer;
}

/* Aurora parity: nested navigation + cleaner footer overrides */
.mxw-nav-link,
.mxw-drawer-link,
.mxw-drawer-sublink {
    color: var(--reed-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    display: inline-flex;
    align-items: center;
}

.mxw-nav-item {
    position: relative;
}

.mxw-nav-item--has-children > .mxw-nav-link {
    padding-right: 1.55rem;
}

.mxw-nav-item--has-children::after {
    content: "";
    position: absolute;
    right: 0.55rem;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid color-mix(in srgb, var(--reed-text) 78%, transparent);
    border-bottom: 2px solid color-mix(in srgb, var(--reed-text) 78%, transparent);
    transform: translateY(-62%) rotate(45deg);
    pointer-events: none;
}

.mxw-nav-submenu {
    position: absolute;
    left: 0;
    top: calc(100% + 0.45rem);
    min-width: 230px;
    padding: 0.35rem;
    border-radius: 14px;
    background: color-mix(in srgb, var(--reed-surface) 86%, #08111f);
    box-shadow: var(--reed-shadow);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(7px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 40;
}

.mxw-nav-item--has-children:hover > .mxw-nav-submenu,
.mxw-nav-item--has-children:focus-within > .mxw-nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mxw-nav-sublink {
    width: 100%;
    border-radius: 10px;
    padding: 0.5rem 0.7rem;
}

.mxw-nav-link:hover,
.mxw-nav-sublink:hover,
.mxw-drawer-link:hover,
.mxw-drawer-sublink:hover {
    color: var(--reed-on-primary);
    background: var(--reed-primary);
}

.mxw-drawer-link,
.mxw-drawer-sublink {
    display: block;
}

.mxw-drawer-item {
    width: 100%;
}

.mxw-drawer-parent {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.mxw-drawer-parent .mxw-drawer-link {
    flex: 1;
}

.mxw-drawer-subtoggle {
    border: 1px solid color-mix(in srgb, var(--reed-border-strong) 85%, transparent);
    background: color-mix(in srgb, var(--reed-surface) 88%, transparent);
    color: var(--reed-text);
    width: 30px;
    min-width: 30px;
    height: 30px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mxw-drawer-subtoggle span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-1px) rotate(45deg);
    transition: transform 0.2s ease;
}

.mxw-drawer-subtoggle.is-open span {
    transform: translateY(1px) rotate(225deg);
}

.mxw-drawer-submenu {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.4rem;
    margin-left: 0.65rem;
    padding-left: 0.7rem;
    border-left: 1px solid color-mix(in srgb, var(--reed-border) 90%, transparent);
}

.mxw-drawer-submenu.is-open {
    display: flex;
}

.mxw-drawer-sublink {
    font-size: 0.9rem;
    padding: 0.35rem 0.7rem;
}

.mxw-btn:focus-visible,
.mxw-nav-link:focus-visible,
.mxw-nav-sublink:focus-visible,
.mxw-drawer-link:focus-visible,
.mxw-drawer-sublink:focus-visible,
.mxw-drawer-subtoggle:focus-visible,
.mxw-outline-toggle:focus-visible {
    outline: 3px solid var(--reed-focus-ring);
    outline-offset: 2px;
}

.mxw-footer {
    background:
        radial-gradient(circle at top, color-mix(in srgb, var(--reed-primary) 16%, transparent), transparent 42%),
        var(--reed-surface-soft);
    border-top: 1px solid color-mix(in srgb, var(--reed-border) 70%, transparent);
}

.mxw-footer__inner {
    gap: 1.8rem;
    padding: 2.8rem 0 2.4rem;
}

.mxw-footer__top {
    display: grid;
    gap: 0.9rem;
}

.mxw-footer__company {
    max-width: 760px;
}

.mxw-footer__mission {
    max-width: 58ch;
}

.mxw-footer__meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.4rem 2rem;
    align-items: end;
}

.mxw-footer__links {
    gap: 0.45rem 1rem;
    align-items: center;
    border: 0;
    padding: 0;
}

.mxw-footer__links a {
    color: color-mix(in srgb, var(--reed-text) 92%, var(--reed-muted));
    border: 0;
    border-radius: 0;
    letter-spacing: 0.01em;
    padding: 0.18rem 0;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.mxw-footer__links a:hover {
    color: var(--reed-link-hover);
    background: transparent;
}

.mxw-footer__compliance {
    gap: 0.6rem;
    justify-items: end;
}

.mxw-footer__logos {
    justify-content: flex-end;
    gap: 0.9rem;
}

.mxw-footer__logos-item {
    width: 40px;
    height: 40px;
}

.mxw-footer__logos-item a {
    transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}

.mxw-footer__logos-item a:hover {
    opacity: 0.9;
    filter: brightness(1.05);
}

.mxw-footer__legal {
    gap: 0.5rem;
    padding-top: 1.1rem;
    border-top: 1px solid color-mix(in srgb, var(--reed-border) 60%, transparent);
}

@media (max-width: 980px) {
    .mxw-nav-submenu {
        display: none;
    }

    .mxw-footer__inner {
        padding: 1.9rem 0 1.6rem;
    }

    .mxw-footer__meta {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .mxw-footer__compliance,
    .mxw-footer__logos {
        justify-items: start;
        justify-content: flex-start;
    }

    .mxw-footer__links a {
        width: auto;
        text-align: left;
    }
}

/* Button contrast fixes */
.mxw-btn {
    font-weight: 700;
}

.mxw-btn--solid {
    color: #ffffff;
    text-shadow: 0 1px 1px rgba(8, 14, 34, 0.22);
}

.mxw-btn--solid:hover,
.mxw-btn--solid:focus-visible {
    color: #ffffff;
}

.mxw-topbar .mxw-btn--ghost,
.mxw-auth .mxw-btn--ghost {
    color: var(--reed-text);
    border-color: color-mix(in srgb, var(--reed-primary) 30%, #ffffff 22%);
    background: color-mix(in srgb, var(--reed-surface) 84%, #ffffff 8%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.mxw-topbar .mxw-btn--ghost:hover,
.mxw-topbar .mxw-btn--ghost:focus-visible,
.mxw-auth .mxw-btn--ghost:hover,
.mxw-auth .mxw-btn--ghost:focus-visible {
    color: #ffffff;
    border-color: color-mix(in srgb, var(--reed-primary) 60%, #ffffff 25%);
    background: color-mix(in srgb, var(--reed-primary) 22%, var(--reed-surface));
}

/* maxwin identity overrides */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=Barlow+Condensed:wght@600;700&display=swap');

:root {
    --reed-bg: #050505;
    --reed-surface: #0f0f10;
    --reed-surface-soft: #141416;
    --reed-panel: #1b1b1d;
    --reed-text: #f4f1e8;
    --reed-muted: #b7b09d;

    --reed-primary: #ffd400;
    --reed-primary-strong: #ffbf00;
    --reed-secondary: #ffea70;
    --reed-accent: #ff8a00;

    --reed-link: #ffe45a;
    --reed-link-hover: #fff2a6;
    --reed-on-primary: #050505;

    --reed-border: rgba(255, 212, 0, 0.16);
    --reed-border-strong: rgba(255, 212, 0, 0.34);
    --reed-topbar-bg: rgba(5, 5, 5, 0.92);
    --reed-menu-bg: #101011;
    --reed-cookie-bg: rgba(14, 14, 14, 0.97);
    --reed-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);

    --reed-success: #6edc76;
    --reed-error: #ff6f61;
    --reed-disabled-bg: #2a2a2d;
    --reed-disabled-text: #8c897f;
    --reed-focus-ring: rgba(255, 212, 0, 0.42);
    --reed-state-success-bg: rgba(110, 220, 118, 0.15);
    --reed-state-error-bg: rgba(255, 111, 97, 0.14);
}

@media (prefers-color-scheme: light) {
    :root {
        --reed-bg: #f5f0de;
        --reed-surface: #fff9ec;
        --reed-surface-soft: #f3ecd9;
        --reed-panel: #e7dec8;
        --reed-text: #181512;
        --reed-muted: #625947;

        --reed-primary: #ffc400;
        --reed-primary-strong: #f0ad00;
        --reed-secondary: #ffe07a;
        --reed-accent: #b36a00;

        --reed-link: #8a6200;
        --reed-link-hover: #5c4200;
        --reed-on-primary: #12100c;

        --reed-border: rgba(120, 87, 10, 0.16);
        --reed-border-strong: rgba(120, 87, 10, 0.28);
        --reed-topbar-bg: rgba(255, 249, 236, 0.95);
        --reed-menu-bg: #fff4d4;
        --reed-cookie-bg: rgba(255, 248, 229, 0.97);
        --reed-shadow: 0 18px 34px rgba(73, 48, 0, 0.12);
        --reed-focus-ring: rgba(255, 196, 0, 0.3);
    }
}

body.mxw-body {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    letter-spacing: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 212, 0, 0.12), transparent 24%),
        radial-gradient(circle at top right, rgba(255, 138, 0, 0.08), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0)),
        var(--reed-bg);
}

h1,
h2,
h3,
.mxw-footer__brand,
.mxw-faq-entry__trigger h3,
.mxw-nav-link,
.mxw-drawer-link {
    font-family: 'Barlow Condensed', 'Space Grotesk', sans-serif;
    letter-spacing: 0.01em;
}

.mxw-topbar {
    border-bottom: 1px solid color-mix(in srgb, var(--reed-primary) 22%, transparent);
    box-shadow: 0 1px 0 rgba(255, 212, 0, 0.05);
}

.mxw-topbar__frame {
    min-height: 88px;
    gap: 1.2rem;
}

.mxw-brand__logo {
    width: 168px;
}

.mxw-nav-link,
.mxw-drawer-link,
.mxw-drawer-sublink {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mxw-nav-link:hover,
.mxw-nav-sublink:hover,
.mxw-drawer-link:hover,
.mxw-drawer-sublink:hover {
    color: #050505;
    background: var(--reed-primary);
}

.mxw-menu-toggle span {
    background: var(--reed-primary);
}

.mxw-hero-block,
.mxw-content-shell,
.mxw-catalog-extended__item,
.mxw-catalog-image-only__item,
.mxw-mini-cards__item,
.mxw-gallery-slider__item,
.mxw-gallery-grid figure,
.mxw-section-fallback,
.mxw-catalog-list-view__item,
.mxw-faq-entry,
.mxw-outline,
.mxw-cookie {
    border-radius: 10px;
}

.mxw-hero-block,
.mxw-content-shell {
    background:
        linear-gradient(180deg, rgba(255, 212, 0, 0.035), transparent 26%),
        var(--reed-surface-soft);
    border: 1px solid color-mix(in srgb, var(--reed-primary) 12%, transparent);
}

.mxw-btn {
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-family: 'Barlow Condensed', 'Space Grotesk', sans-serif;
    font-size: 1rem;
    padding: 0.68rem 1.2rem;
}

.mxw-btn--solid {
    color: #050505;
    background: linear-gradient(135deg, #ffe34d, var(--reed-primary));
    box-shadow: 0 12px 24px rgba(255, 212, 0, 0.2);
    text-shadow: none;
}

.mxw-btn--solid:hover,
.mxw-btn--solid:focus-visible {
    color: #050505;
    background: linear-gradient(135deg, #fff07f, var(--reed-primary-strong));
}

.mxw-topbar .mxw-btn--ghost,
.mxw-auth .mxw-btn--ghost {
    color: var(--reed-text);
    border-color: rgba(255, 212, 0, 0.26);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: inset 0 0 0 1px rgba(255, 212, 0, 0.04);
}

.mxw-topbar .mxw-btn--ghost:hover,
.mxw-topbar .mxw-btn--ghost:focus-visible,
.mxw-auth .mxw-btn--ghost:hover,
.mxw-auth .mxw-btn--ghost:focus-visible {
    color: #050505;
    border-color: var(--reed-primary);
    background: var(--reed-primary);
}

.mxw-outline-toggle,
.mxw-drawer-subtoggle {
    border-radius: 8px;
}

.mxw-footer {
    background:
        linear-gradient(180deg, rgba(255, 212, 0, 0.06), transparent 24%),
        var(--reed-surface-soft);
}

.mxw-footer__kicker {
    color: color-mix(in srgb, var(--reed-primary) 72%, var(--reed-muted));
}

.mxw-footer__links a:hover {
    color: var(--reed-primary);
}

/* maxwin identity overrides */
:root {
    --reed-bg: #0b0d10;
    --reed-surface: #16191d;
    --reed-surface-soft: #1d2126;
    --reed-panel: #232830;
    --reed-text: #f3f4f6;
    --reed-muted: #a6adb8;

    --reed-primary: #ffe600;
    --reed-primary-strong: #ffd000;
    --reed-secondary: #fff27a;
    --reed-accent: #2d8cff;

    --reed-link: #7db8ff;
    --reed-link-hover: #b4d8ff;
    --reed-on-primary: #080808;

    --reed-border: rgba(125, 184, 255, 0.14);
    --reed-border-strong: rgba(255, 230, 0, 0.3);
    --reed-topbar-bg: rgba(11, 13, 16, 0.94);
    --reed-menu-bg: #171b20;
    --reed-cookie-bg: rgba(20, 23, 28, 0.97);
    --reed-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);

    --reed-success: #5bd58b;
    --reed-error: #ff6b6b;
    --reed-disabled-bg: #30343a;
    --reed-disabled-text: #8a9099;
    --reed-focus-ring: rgba(125, 184, 255, 0.34);
    --reed-state-success-bg: rgba(91, 213, 139, 0.14);
    --reed-state-error-bg: rgba(255, 107, 107, 0.14);
}

@media (prefers-color-scheme: light) {
    :root {
        --reed-bg: #f2f4f7;
        --reed-surface: #ffffff;
        --reed-surface-soft: #e8ecf1;
        --reed-panel: #dde4ec;
        --reed-text: #13161a;
        --reed-muted: #596271;

        --reed-primary: #ffdb00;
        --reed-primary-strong: #f4c400;
        --reed-secondary: #fff089;
        --reed-accent: #1c73e8;

        --reed-link: #155ec0;
        --reed-link-hover: #0f4a97;
        --reed-on-primary: #111111;

        --reed-border: rgba(28, 115, 232, 0.12);
        --reed-border-strong: rgba(255, 219, 0, 0.28);
        --reed-topbar-bg: rgba(255, 255, 255, 0.96);
        --reed-menu-bg: #edf2f8;
        --reed-cookie-bg: rgba(245, 248, 252, 0.98);
        --reed-shadow: 0 18px 34px rgba(24, 42, 67, 0.12);
        --reed-focus-ring: rgba(28, 115, 232, 0.24);
    }
}

body.mxw-body {
    background:
        radial-gradient(circle at top left, rgba(255, 230, 0, 0.13), transparent 22%),
        radial-gradient(circle at 86% 12%, rgba(45, 140, 255, 0.16), transparent 18%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
        var(--reed-bg);
}

.mxw-topbar {
    border-bottom: 1px solid rgba(125, 184, 255, 0.16);
    box-shadow: 0 1px 0 rgba(255, 230, 0, 0.05);
}

.mxw-nav-link:hover,
.mxw-nav-sublink:hover,
.mxw-drawer-link:hover,
.mxw-drawer-sublink:hover {
    color: #081018;
    background: linear-gradient(135deg, var(--reed-accent), var(--reed-primary));
}

.mxw-menu-toggle span {
    background: linear-gradient(135deg, var(--reed-accent), var(--reed-primary));
}

.mxw-hero-block,
.mxw-content-shell {
    background:
        radial-gradient(circle at top right, rgba(45, 140, 255, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(255, 230, 0, 0.03), transparent 26%),
        var(--reed-surface-soft);
    border: 1px solid rgba(125, 184, 255, 0.12);
}

.mxw-btn--solid {
    color: #080808;
    background: linear-gradient(135deg, #fff37a, var(--reed-primary));
    box-shadow:
        0 12px 24px rgba(255, 230, 0, 0.22),
        0 0 0 1px rgba(45, 140, 255, 0.1);
}

.mxw-btn--solid:hover,
.mxw-btn--solid:focus-visible {
    color: #080808;
    background: linear-gradient(135deg, #ffffff, var(--reed-primary-strong));
}

.mxw-topbar .mxw-btn--ghost,
.mxw-auth .mxw-btn--ghost {
    color: var(--reed-text);
    border-color: rgba(125, 184, 255, 0.24);
    background: rgba(125, 184, 255, 0.06);
    box-shadow: inset 0 0 0 1px rgba(255, 230, 0, 0.03);
}

.mxw-topbar .mxw-btn--ghost:hover,
.mxw-topbar .mxw-btn--ghost:focus-visible,
.mxw-auth .mxw-btn--ghost:hover,
.mxw-auth .mxw-btn--ghost:focus-visible {
    color: #081018;
    border-color: var(--reed-accent);
    background: linear-gradient(135deg, rgba(125, 184, 255, 0.9), rgba(255, 230, 0, 0.9));
}

.mxw-outline-toggle,
.mxw-drawer-subtoggle {
    border-color: rgba(125, 184, 255, 0.22);
}

.mxw-drawer-subtoggle {
    color: var(--reed-link);
}

.mxw-outline__list a:hover,
.mxw-footer__links a:hover {
    color: var(--reed-link-hover);
}

.mxw-footer {
    background:
        radial-gradient(circle at 82% 0%, rgba(45, 140, 255, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(255, 230, 0, 0.05), transparent 24%),
        var(--reed-surface-soft);
}

.mxw-footer__kicker {
    color: color-mix(in srgb, var(--reed-primary) 68%, var(--reed-link));
}

/* MaxWin identity overrides */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Sora:wght@600;700&display=swap');

:root {
    --reed-bg: #12061c;
    --reed-surface: #1b0d2a;
    --reed-surface-soft: #241036;
    --reed-panel: #30164a;
    --reed-text: #f7ecff;
    --reed-muted: #cfb6de;

    --reed-primary: #be2cff;
    --reed-primary-strong: #d44bff;
    --reed-secondary: #ff4fd8;
    --reed-accent: #8e43ff;

    --reed-link: #d98cff;
    --reed-link-hover: #efc1ff;
    --reed-on-primary: #fff7ff;

    --reed-border: rgba(190, 44, 255, 0.16);
    --reed-border-strong: rgba(255, 79, 216, 0.32);
    --reed-topbar-bg: rgba(18, 6, 28, 0.92);
    --reed-menu-bg: #1e0d2f;
    --reed-cookie-bg: rgba(28, 11, 44, 0.97);
    --reed-shadow: 0 18px 46px rgba(12, 4, 20, 0.46);

    --reed-success: #68d79d;
    --reed-error: #ff6f9f;
    --reed-disabled-bg: #3b254f;
    --reed-disabled-text: #a892bb;
    --reed-focus-ring: rgba(212, 75, 255, 0.34);
    --reed-state-success-bg: rgba(104, 215, 157, 0.14);
    --reed-state-error-bg: rgba(255, 111, 159, 0.14);
}

@media (prefers-color-scheme: light) {
    :root {
        --reed-bg: #fbf2ff;
        --reed-surface: #ffffff;
        --reed-surface-soft: #f5e8ff;
        --reed-panel: #ecd7fb;
        --reed-text: #241230;
        --reed-muted: #6e4f84;

        --reed-primary: #a600ff;
        --reed-primary-strong: #8f11d8;
        --reed-secondary: #ff4ac7;
        --reed-accent: #6f32ff;

        --reed-link: #8d2fff;
        --reed-link-hover: #5f13b8;
        --reed-on-primary: #ffffff;

        --reed-border: rgba(146, 38, 212, 0.14);
        --reed-border-strong: rgba(166, 0, 255, 0.26);
        --reed-topbar-bg: rgba(255, 255, 255, 0.95);
        --reed-menu-bg: #f4e8ff;
        --reed-cookie-bg: rgba(250, 241, 255, 0.98);
        --reed-shadow: 0 18px 38px rgba(121, 52, 178, 0.12);
        --reed-focus-ring: rgba(111, 50, 255, 0.24);
    }
}

body.mxw-body {
    font-family: 'Outfit', system-ui, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(190, 44, 255, 0.2), transparent 24%),
        radial-gradient(circle at 82% 10%, rgba(255, 79, 216, 0.16), transparent 18%),
        radial-gradient(circle at 50% 0%, rgba(142, 67, 255, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
        var(--reed-bg);
}

h1,
h2,
h3,
.mxw-footer__brand,
.mxw-faq-entry__trigger h3,
.mxw-nav-link,
.mxw-drawer-link {
    font-family: 'Sora', 'Outfit', sans-serif;
}

.mxw-topbar {
    border-bottom: 1px solid color-mix(in srgb, var(--reed-primary) 24%, transparent);
    box-shadow: 0 1px 0 rgba(255, 79, 216, 0.06);
}

.mxw-brand__logo {
    width: 170px;
    filter: drop-shadow(0 0 18px rgba(190, 44, 255, 0.16));
}

.mxw-nav-link,
.mxw-drawer-link,
.mxw-drawer-sublink {
    letter-spacing: 0.02em;
}

.mxw-nav-link:hover,
.mxw-nav-sublink:hover,
.mxw-drawer-link:hover,
.mxw-drawer-sublink:hover {
    color: #fff7ff;
    background: linear-gradient(135deg, var(--reed-accent), var(--reed-secondary));
}

.mxw-menu-toggle span {
    background: linear-gradient(135deg, var(--reed-primary), var(--reed-secondary));
}

.mxw-hero-block,
.mxw-content-shell {
    background:
        radial-gradient(circle at top right, rgba(255, 79, 216, 0.11), transparent 24%),
        linear-gradient(180deg, rgba(190, 44, 255, 0.055), transparent 30%),
        var(--reed-surface-soft);
    border: 1px solid color-mix(in srgb, var(--reed-primary) 18%, transparent);
}

.mxw-btn {
    border-radius: 14px;
    font-family: 'Sora', 'Outfit', sans-serif;
    letter-spacing: 0.01em;
}

.mxw-btn--solid {
    color: #071006;
    background: linear-gradient(135deg, #b9ff3b, #71f56f);
    box-shadow:
        0 14px 30px rgba(113, 245, 111, 0.26),
        0 0 0 1px rgba(255, 255, 255, 0.04);
    text-shadow: none;
}

.mxw-btn--solid:hover,
.mxw-btn--solid:focus-visible {
    color: #071006;
    background: linear-gradient(135deg, #d6ff78, #8cff7c);
}

.mxw-topbar .mxw-btn--ghost,
.mxw-auth .mxw-btn--ghost {
    color: #071006;
    border-color: rgba(140, 255, 124, 0.72);
    background: linear-gradient(135deg, rgba(185, 255, 59, 0.96), rgba(113, 245, 111, 0.92));
    box-shadow:
        0 10px 22px rgba(113, 245, 111, 0.18),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.mxw-topbar .mxw-btn--ghost:hover,
.mxw-topbar .mxw-btn--ghost:focus-visible,
.mxw-auth .mxw-btn--ghost:hover,
.mxw-auth .mxw-btn--ghost:focus-visible {
    color: #071006;
    border-color: #d6ff78;
    background: linear-gradient(135deg, #d6ff78, #8cff7c);
}

.mxw-outline-toggle,
.mxw-drawer-subtoggle {
    border-radius: 10px;
}

.mxw-drawer-subtoggle {
    color: #f0c3ff;
}

.mxw-footer {
    background:
        radial-gradient(circle at 86% 0%, rgba(255, 79, 216, 0.14), transparent 22%),
        linear-gradient(180deg, rgba(190, 44, 255, 0.06), transparent 26%),
        var(--reed-surface-soft);
}

.mxw-footer__kicker {
    color: color-mix(in srgb, var(--reed-secondary) 64%, var(--reed-link));
}

.mxw-footer__links a:hover,
.mxw-outline__list a:hover {
    color: var(--reed-link-hover);
}
